/* General Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; line-height: 1.6; color: #333; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
header { background: white; box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: fixed; width: 100%; top: 0; z-index: 1000;} 
nav { display: flex; justify-content: space-between; align-items: center; padding: 0; }
.logo { font-size: 1.4rem; font-weight: 700; color: #005A9C; }
.nav-links { display: flex; gap: 2rem; list-style: none; align-items: center; }
.nav-links a { text-decoration: none; color: #333; font-weight: 500; transition: color 0.3s; }
.nav-links a:hover { color: #005A9C; }
.auth-buttons { display: flex; gap: 1rem; }
.btn-login, .btn-signup { padding: 10px 20px; border-radius: 6px; text-decoration: none; font-weight: 600; transition: all 0.3s; }
.btn-login { background: #005A9C; color: white; }
.btn-login:hover { background: #FDB927; }
.btn-signup { background: #005A9C; color: white; }
.btn-signup:hover { background: #FDB927; }

/* Dropdown styles */
.dropdown {position: relative; display: inline-block;}
.dropdown-content {display: none; position: absolute; background-color: #005A9C; min-width: 80px; box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2); z-index: 1;border-radius: 15px;}
.dropdown:hover .dropdown-content {display: block; }
.dropdown-content a { color: black; padding: 12px 16px; text-decoration: none; display: block;}
.dropdown-content a:hover { background-color: #FDB927; border-radius: 15px;}
.dropbtn {background-color: transparent; color: #005A9C; width: auto; padding: 6px 12px; font-size: 16px; border: none; cursor: pointer;}

/* Hero */
.hero { background: linear-gradient(135deg, #005A9C 0%, #ffffff 100%); color: white; padding: 120px 0 80px; margin-top: 70px; }
.hero-content { text-align: center; }
.hero h1 { font-size: 3.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.hero p { font-size: 1.3rem; margin-bottom: 2rem; opacity: 0.9; }
.btn { display: inline-block; background: #005A9C; color: #FDB927; padding: 15px 35px; text-decoration: none; border-radius: 8px; font-weight: 600; transition: all 0.3s; }
.btn:hover { background: #005A9C; }

/* Instagram section */
.instagram { max-width: 1200px; margin: 0 auto; padding: 80px 0;}

/* Stats */
.stats { padding: 80px 0; background: #f8fafc; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 3rem; }
.stat-card { background: white; padding: 2.5rem; text-align: center; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); transition: transform 0.3s; }
.stat-card:hover { transform: translateY(-5px); }
.stat-number { font-size: 3rem; font-weight: 700; color: #FDB927; margin-bottom: 0.5rem; }
.stat-label { color: #64748b; font-size: 1.1rem; }

/* Featured Locations */
.locations { padding: 80px 0; }
.location-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.location-card { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: all 0.3s; }
.location-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
.location-image { width: 100%; height: 200px; background: linear-gradient(45deg, #005A9C, #ffffff); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: white; }
.location-content { padding: 2rem; }
.location-title { font-size: 1.3rem; font-weight: 600; color: #FDB927; margin-bottom: 0.5rem; }
.location-count { color: #64748b; }
.downtown-image, .southbay-image, .santamonica-image { width: 100%; height: auto; object-fit: cover; border-radius: 8px;}

/* About Content */
.about-content { padding: 80px 0; }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; margin-bottom: 4rem; }
.content-text h2 { font-size: 2.5rem; color: #005A9C; margin-bottom: 1.5rem; }
.content-text p { color: #64748b; margin-bottom: 1.5rem; line-height: 1.8; }
.content-image { background: linear-gradient(45deg, #005A9C, #ffffff); border-radius: 20px; height: 400px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: white; }
        

/* Values */
.values { padding: 80px 0; background: #f8fafc; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.value-card { background: white; padding: 2.5rem; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); text-align: center; transition: transform 0.3s; }
.value-card:hover { transform: translateY(-5px); }
.value-icon { font-size: 3rem; margin-bottom: 1.5rem; }
.value-title { font-size: 1.5rem; font-weight: 600; color: #005A9C; margin-bottom: 1rem; }
.value-description { color: #64748b; line-height: 1.6; }

/* Team */
.team { padding: 80px 0; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; margin-top: 3rem; }
.team-member { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.08); transition: transform 0.3s; }
.team-member:hover { transform: translateY(-5px); }
.member-photo { width: 200px;  /* Example fixed width for the container */ height: 200px; /* Example fixed height for the container */ border: 1px solid #ccc; /* Optional: adds a visible border */ }
.member-photo img { max-width: 100%; /* Ensure image fits within the defined width */ max-height: 100%; /* Ensure image fits within the defined height */ height: auto;    /* Maintain aspect ratio */ display: block; margin: 0 auto;  /* Centers the image */ }
.member-info { padding: 2rem; text-align: center; }
.member-name { font-size: 1.3rem; font-weight: 600; color: #005A9C; margin-bottom: 0.5rem; }
.member-title { color: #64748b; margin-bottom: 1rem; }
.member-bio { color: #64748b; line-height: 1.6; font-size: 0.95rem; }

/* Properties */
.properties { padding: 80px 0; }
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 1rem; color: #FDB927; }
.section-subtitle { text-align: center; color: #64748b; margin-bottom: 3rem; font-size: 1.1rem; }
.property-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; margin-top: 3rem; }
.property-card { background: white; border-radius: 15px; overflow: hidden; box-shadow: 0 5px 15px rgba(0,0,0,0.1); transition: all 0.3s; }
.property-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
.property-image { width: 100%; height: 250px; background: linear-gradient(45deg, #005A9C, #ffffff); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; color: white; }
.property-content { padding: 2rem; }
.property-title { font-size: 1.5rem; font-weight: 600; color: #FDB927; margin-bottom: 0.5rem; }
.property-details { color: #64748b; margin-bottom: 1rem; }
.property-price { font-size: 1.8rem; font-weight: 700; color: #FDB927; }
.property-features { display: flex; gap: 1rem; margin-top: 1rem; flex-wrap: wrap; }
.feature-tag { background: #f1f5f9; color: #475569; padding: 4px 12px; border-radius: 20px; font-size: 0.85rem; }

/* Testimonials */
.testimonials { padding: 80px 0; background: #f8fafc; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 2rem; margin-top: 3rem; }
.testimonial-card { background: white; padding: 2.5rem; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); position: relative; }
.testimonial-text { font-style: italic; color: #475569; margin-bottom: 1.5rem; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.author-avatar { width: 50px; height: 50px; border-radius: 50%; background: linear-gradient(45deg, #005A9C, #005A9C); display: flex; align-items: center; justify-content: center; color: white; font-weight: 600; }
.author-info h4 { color: #005A9C; margin-bottom: 0.2rem; }
.author-info p { color: #64748b; font-size: 0.9rem; }

/* Services */
.services { padding: 80px 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.service-card { background: white; padding: 2.5rem; text-align: center; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); transition: all 0.3s; }
.service-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
.service-icon { font-size: 3rem; margin-bottom: 1.5rem; }
.service-title { font-size: 1.5rem; font-weight: 600; color: #FDB927; margin-bottom: 1rem; }
.service-description { color: #64748b; line-height: 1.6; }

/* Services Overview */
.services-overview { padding: 80px 0; }
.overview-content { text-align: center; max-width: 800px; margin: 0 auto 4rem; }
.overview-content h2 { font-size: 2.5rem; color: #005A9C; margin-bottom: 1.5rem; }
.overview-content p { color: #64748b; line-height: 1.8; font-size: 1.1rem; }

 /* Main Services */
.main-services { padding: 80px 0; background: #f8fafc; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 3rem; margin-top: 4rem; }
.service-card { background: white; border-radius: 20px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,0,0,0.1); transition: transform 0.3s; }
.service-card:hover { transform: translateY(-10px); }
.service-image { height: 200px; background: linear-gradient(45deg, #005A9C, #ffffff); display: flex; align-items: center; justify-content: center; font-size: 3rem; color: white; }
.service-content { padding: 2.5rem; }
.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-title { font-size: 1.8rem; font-weight: 600; color: #005A9C; margin-bottom: 1rem; }
.service-description { color: #64748b; line-height: 1.6; margin-bottom: 1.5rem; }
.service-features { list-style: none; margin-bottom: 2rem; }
.service-features li { color: #64748b; margin-bottom: 0.5rem; padding-left: 1.5rem; position: relative; }
.service-features li::before { content: '✓'; color: #005A9C; position: absolute; left: 0; font-weight: bold; }
.service-link { display: inline-flex; align-items: center; color: #005A9C; text-decoration: none; font-weight: 600; transition: color 0.3s; }
.service-link:hover { color: #2563eb; }
.service-link::after { content: '→'; margin-left: 0.5rem; transition: transform 0.3s; }
.service-link:hover::after { transform: translateX(5px); }

/* Process */
.process { padding: 80px 0; }
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin-top: 4rem; }
.process-step { text-align: center; }
.step-number { display: flex; align-items: center; justify-content: center; width: 60px; height: 60px; background: #005A9C; color: white; border-radius: 50%; font-size: 1.5rem; font-weight: 600; margin: 0 auto 1.5rem; }
.step-title { font-size: 1.3rem; font-weight: 600; color: #005A9C; margin-bottom: 1rem; }
.step-description { color: #64748b; line-height: 1.6; }

/* Specialized Services */
.specialized { padding: 80px 0; background: #f8fafc; }
.specialized-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.specialty-card { background: white; padding: 2.5rem; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); transition: all 0.3s; text-align: center; }
.specialty-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.15); }
.specialty-icon { font-size: 3rem; margin-bottom: 1.5rem; }
.specialty-title { font-size: 1.5rem; font-weight: 600; color: #005A9C; margin-bottom: 1rem; }
.specialty-description { color: #64748b; line-height: 1.6; }

/* Industries */
.industries { padding: 80px 0; }
.industry-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; margin-top: 3rem; }
.industry-card { background: white; border: 2px solid #e5e7eb; padding: 2rem; border-radius: 15px; text-align: center; transition: all 0.3s; }
.industry-card:hover { border-color: #005A9C; transform: translateY(-5px); }
.industry-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.industry-name { font-size: 1.2rem; font-weight: 600; color: #005A9C; }

/* CTA */
.cta { background: #005A9C; color: white; padding: 80px 0; text-align: center; }
.cta h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.cta p { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9; }
.btn-secondary { background: white; color: #005A9C; }
.btn-secondary:hover { background: #f1f5f9; }

/* Section Title */    
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 1rem; color: #005A9C; }
.section-subtitle { text-align: center; color: #64748b; margin-bottom: 3rem; font-size: 1.1rem; }
        
/* Signup Section */
.signup-section { min-height: 100vh; display: flex; align-items: center; padding: 120px 0 80px; }
.signup-container { max-width: 600px; margin: 0 auto; width: 100%; }
.signup-card { background: white; padding: 3rem; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.signup-header { text-align: center; margin-bottom: 2rem; }
.signup-header h1 { font-size: 2.5rem; color: #1e40af; margin-bottom: 0.5rem; }
.signup-header p { color: #64748b; }
        
/* Form */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.5rem; }
.form-label { display: block; margin-bottom: 0.5rem; font-weight: 500; color: #374151; }
.form-input { width: 100%; padding: 12px 16px; border: 2px solid #e5e7eb; border-radius: 8px; font-size: 1rem; transition: border-color 0.3s; }
.form-input:focus { outline: none; border-color: #1e40af; }
.form-select { width: 100%; padding: 12px 16px; border: 2px solid #e5e7eb; border-radius: 8px; font-size: 1rem; transition: border-color 0.3s; background: white; }
.form-select:focus { outline: none; border-color: #1e40af; }
.form-checkbox { display: flex; align-items: flex-start; margin-bottom: 1.5rem; }
.form-checkbox input { margin-right: 0.5rem; margin-top: 0.2rem; }
.form-checkbox label { color: #64748b; font-size: 0.9rem; }
        
/* Password Strength */
.password-strength { margin-top: 0.5rem; height: 4px; background: #e5e7eb; border-radius: 2px; overflow: hidden; }
.strength-bar { height: 100%; transition: width 0.3s, background-color 0.3s; }
.strength-weak { background: #dc2626; width: 33%; }
.strength-medium { background: #f59e0b; width: 66%; }
.strength-strong { background: #16a34a; width: 100%; }

/* Buttons */
.btn { display: inline-block; width: 100%; padding: 14px 24px; border: none; border-radius: 8px; font-size: 1rem; font-weight: 600; text-decoration: none; text-align: center; transition: all 0.3s; cursor: pointer; }
.btn-primary { background: #1e40af; color: white; }
.btn-primary:hover { background: #2563eb; }
.btn-secondary { background: #f1f5f9; color: #1e40af; margin-top: 1rem; }
.btn-secondary:hover { background: #e2e8f0; }
        
/* Links */
.form-footer { text-align: center; margin-top: 1.5rem; }
.form-footer p { color: #64748b; }
.form-footer a { color: #1e40af; text-decoration: none; font-weight: 500; }
.form-footer a:hover { text-decoration: underline; }
        
/* Alert */
.alert { padding: 1rem; border-radius: 8px; margin-bottom: 1.5rem; }
.alert-error { background: #fef2f2; border: 1px solid #fecaca; color: #dc2626; }
.alert-success { background: #f0fdf4; border: 1px solid #bbf7d0; color: #16a34a; }
        
/* Contact Section */
.contact-section { padding: 80px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.contact-info { background: #f8fafc; padding: 3rem; border-radius: 20px; }
.contact-form { background: white; padding: 3rem; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }

/* Business Hours */
.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1rem; }
.hours-item { display: flex; justify-content: space-between; color: #64748b; }
.hours-item.closed { color: #dc2626; }

/* Social Links */
.social-links { display: flex; gap: 1rem; margin-top: 2rem; }
.social-link { display: flex; align-items: center; justify-content: center; width: 50px; height: 50px; background: #ffffff; color: #005A9C; border-radius: 50%; text-decoration: none; transition: all 0.3s; }

/* Map */
.map-section { padding: 0 0 80px; }
.map-container { height: 400px; background: linear-gradient(45deg, #ffffff, #005A9C); border-radius: 20px; display: flex; align-items: center; justify-content: center; color: white; font-size: 1.2rem; }

/* Offices */
.offices { padding: 80px 0; background: #f8fafc; }
.offices-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin-top: 3rem; }
.office-card { background: white; padding: 2.5rem; border-radius: 15px; box-shadow: 0 5px 15px rgba(0,0,0,0.08); transition: transform 0.3s; }
.office-card:hover { transform: translateY(-5px); }
.office-name { font-size: 1.5rem; font-weight: 600; color: #005A9C; margin-bottom: 1rem; }
.office-address { color: #64748b; margin-bottom: 1rem; }
.office-contact { color: #64748b; font-size: 0.95rem; }
        
/* Section Title */
.section-title { text-align: center; font-size: 2.5rem; margin-bottom: 1rem; color: #005A9C; }
.section-subtitle { text-align: center; color: #64748b; margin-bottom: 3rem; font-size: 1.1rem; }

    
/* Form */
.form-title { font-size: 2rem; color: #005A9C; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-label { display: block; margin-bottom: 0.5rem; font-weight: 500; color: #374151; }
.form-input, .form-textarea, .form-select { width: 100%; padding: 12px 16px; border: 2px solid #e5e7eb; border-radius: 8px; font-size: 1rem; transition: border-color 0.3s; background: white; }
.form-input:focus, .form-textarea:focus, .form-select:focus { outline: none; border-color: #005A9C; }
.form-textarea { min-height: 120px; resize: vertical; }


/* Footer */
.footer { background: #005A9C; color: white; padding: 50px 0 30px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 2rem; }
.footer-section h3 { margin-bottom: 1rem; color: #FDB927; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.5rem; }
.footer-section a { color: #94a3b8; text-decoration: none; transition: color 0.3s; }
.footer-section a:hover { color: white; }
.footer-bottom { border-top: 1px solid #334155; padding-top: 2rem; text-align: center; color: #64748b; }

/* Mobile Menu */
.mobile-menu-toggle { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; }

/* Responsive */
@media (max-width: 768px) {
.hero h1 { font-size: 2.5rem; }
.mobile-menu-toggle { display: block; }
.nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: white; flex-direction: column; padding: 1rem; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.nav-links.active { display: flex; }
.auth-buttons { flex-direction: column; width: 100%; }
.property-grid { grid-template-columns: 1fr; }
.stats-grid { grid-template-columns: repeat(2, 1fr); }
}

/*Blog Post Slider*/
.post-slider{ border: 1px solid  blue; position: relative;}
.post-slider .post-wrapper { width: 84%; height: 350px; margin: 0px auto; border: 1px dashed blue;}
.post-slider .post-wrapper .post { width: 84%; display: inline-block; background: blue;}
