/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #F7F9FC;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #0A2540;
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-brand h2 {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
}

.nav-brand h2 a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-brand h2 a:hover {
    color: #FFA500;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #3A8DDE;
}

/* Navigation Submenu */
.nav-item-has-submenu {
    position: relative;
}

.nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #0A2540;
    list-style: none;
    padding: 1rem 0;
    min-width: 200px;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item-has-submenu:hover .nav-submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-submenu li {
    margin: 0;
}

.nav-submenu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.nav-submenu a:hover {
    background: rgba(58, 141, 222, 0.2);
    color: #3A8DDE;
}

.nav-menu .fa-chevron-down {
    font-size: 0.75rem;
    margin-left: 0.5rem;
}

/* Mobile Menu Styles */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle .hamburger {
    width: 25px;
    height: 3px;
    background: white;
    position: relative;
    transition: all 0.3s ease;
}

.mobile-menu-toggle .hamburger::before,
.mobile-menu-toggle .hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

.mobile-menu-toggle .hamburger::before {
    top: -8px;
}

.mobile-menu-toggle .hamburger::after {
    bottom: -8px;
}

.mobile-menu-toggle.mobile-menu-open .hamburger {
    background: transparent;
}

.mobile-menu-toggle.mobile-menu-open .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.mobile-menu-toggle.mobile-menu-open .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background: #0A2540;
        flex-direction: column;
        padding: 2rem 0;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        box-shadow: 0 4px 12px rgba(0,0,0,0.15);
        z-index: 1000;
    }
    
    .nav-menu.mobile-menu-active {
        transform: translateX(0);
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 1rem 0;
    }
    
    .nav-menu a {
        display: block;
        padding: 0.75rem 2rem;
        font-size: 1.1rem;
    }
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #0A2540 0%, #3A8DDE 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 80px;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-service-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    text-decoration: none;
    color: #0A2540;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    background: white;
}

.service-card i {
    font-size: 2.5rem;
    color: #3A8DDE;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: #0A2540;
}

.service-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

.hero-cta {
    text-align: center;
    margin: 2rem 0;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

.hero-phone {
    margin-top: 1rem;
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

.hero-phone a {
    color: #FFD700;
    text-decoration: none;
    font-weight: 600;
}

.hero-phone a:hover {
    text-decoration: underline;
}

.hero-service-links-secondary {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.service-card-small {
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    color: #0A2540;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.95rem;
}

.service-card-small:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.service-card-small i {
    color: #3A8DDE;
    font-size: 1.25rem;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
}

.btn-primary {
    background: #3A8DDE;
    color: white;
}

.btn-primary:hover {
    background: #2a7bc8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #0A2540;
    transform: translateY(-2px);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 37, 64, 0.3);
    z-index: 1;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.intro {
    background: white;
    text-align: center;
}

.intro h2 {
    font-size: 2.5rem;
    color: #0A2540;
    margin-bottom: 1.5rem;
}

.intro-text {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    line-height: 1.8;
}

/* Services Overview Section */
.services-overview {
    padding: 80px 0;
    background: white;
}

.services-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0A2540;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-link-card {
    background: #F7F9FC;
    padding: 2rem;
    border-radius: 12px;
    text-decoration: none;
    color: #0A2540;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-link-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    background: white;
}

.service-link-card i {
    font-size: 2.5rem;
    color: #3A8DDE;
    margin-bottom: 1rem;
}

.service-link-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.service-link-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0;
}

/* Listings Section */
.listings {
    background: #F7F9FC;
}

.listings h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0A2540;
    margin-bottom: 3rem;
}

/* RealScout Widget Styling */
realscout-office-listings {
    display: block;
    width: 100%;
    min-height: 600px;
    margin: 2rem 0;
}

.search-bar {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.search-input, .search-select {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    min-width: 150px;
}

.search-input:focus, .search-select:focus {
    outline: none;
    border-color: #3A8DDE;
    box-shadow: 0 0 0 3px rgba(58, 141, 222, 0.1);
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.property-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.property-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.property-image {
    height: 200px;
    background: linear-gradient(45deg, #3A8DDE, #16B286);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-badge {
    background: #16B286;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    position: absolute;
    top: 16px;
    right: 16px;
}

.property-info {
    padding: 1.5rem;
}

.property-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0A2540;
    margin-bottom: 0.5rem;
}

.property-details {
    color: #666;
    margin-bottom: 0.5rem;
}

.property-address {
    color: #3A8DDE;
    font-weight: 600;
}

.listings-cta {
    text-align: center;
}

/* Features Section */
.why-skye {
    background: white;
}

.why-skye h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0A2540;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature {
    text-align: center;
    padding: 2rem;
}

.feature i {
    font-size: 3rem;
    color: #3A8DDE;
    margin-bottom: 1rem;
}

.feature h3 {
    font-size: 1.5rem;
    color: #0A2540;
    margin-bottom: 1rem;
}

.feature p {
    color: #666;
    line-height: 1.6;
}

/* Advisor Section */
.advisor {
    background: #F7F9FC;
}

.advisor h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0A2540;
    margin-bottom: 3rem;
}

.advisor-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.advisor-image {
    text-align: center;
}

.headshot-placeholder {
    width: 200px;
    height: 200px;
    background: #3A8DDE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.headshot-placeholder i {
    font-size: 4rem;
    color: white;
}

.advisor-text h3 {
    font-size: 2rem;
    color: #0A2540;
    margin-bottom: 1rem;
}

.advisor-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.trust-badges {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.badge {
    background: #16B286;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

/* FAQ Section */
.faq {
    background: #F7F9FC;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0A2540;
    margin-bottom: 3rem;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: white;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0A2540;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f0f4f8;
}

.faq-question:focus {
    outline: 3px solid rgba(58, 141, 222, 0.5);
    outline-offset: -3px;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: #3A8DDE;
}

.faq-question[aria-expanded="true"] i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.8;
    margin: 0;
}

/* Insights Section */
.insights {
    background: white;
}

.insights h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #0A2540;
    margin-bottom: 3rem;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.blog-card {
    background: #F7F9FC;
    padding: 2rem;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-4px);
}

.blog-card h3 {
    font-size: 1.25rem;
    color: #0A2540;
    margin-bottom: 1rem;
}

.blog-card p {
    color: #666;
    margin-bottom: 1rem;
}

.read-more {
    color: #3A8DDE;
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

.blog-cta {
    text-align: center;
}

/* Footer */
.footer {
    background: #0A2540;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 1rem;
    color: #3A8DDE;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info i {
    margin-right: 0.5rem;
    color: #3A8DDE;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    color: #3A8DDE;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #3A8DDE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #2a7bc8;
}

/* Google Business Profile Styles */
.gmb-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.gmb-info p {
    margin: 0;
    color: #666;
    font-size: 0.9rem;
}

.gmb-info .fas.fa-star {
    color: #FFD700;
    margin-right: 0.25rem;
}

.gmb-link, .review-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #3A8DDE;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.gmb-link:hover, .review-link:hover {
    color: #2a7bc8;
    text-decoration: underline;
}

.gmb-link .fab.fa-google {
    color: #4285F4;
}

.review-link .fas.fa-edit {
    color: #16B286;
}

.review-request-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #16B286;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    margin-top: 0.5rem;
}

.review-request-btn:hover {
    background: #139a73;
}

.review-request-btn .fas.fa-star {
    color: #FFD700;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-legal {
    display: flex;
    gap: 1rem;
}

.footer-legal a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.875rem;
}

.footer-legal a:hover {
    color: #3A8DDE;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: #3A8DDE;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
}

.back-to-top.visible {
    display: flex;
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    background: #2a7bc8;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.back-to-top:focus {
    outline: 3px solid rgba(58, 141, 222, 0.5);
    outline-offset: 2px;
}

/* Skip Link for Accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #0A2540;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    z-index: 10000;
    border-radius: 0 0 4px 0;
}

.skip-link:focus {
    top: 0;
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 3px solid #3A8DDE;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Service Page Styles */
.service-hero {
    background: linear-gradient(135deg, #0A2540 0%, #3A8DDE 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 80px;
}

.service-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.service-hero .hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.why-section, .process-section, .value-section, .examples-section {
    padding: 80px 0;
}

.why-section {
    background: white;
}

.process-section {
    background: #F7F9FC;
}

.value-section {
    background: white;
}

.examples-section {
    background: #F7F9FC;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3A8DDE;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step h3 {
    color: #0A2540;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.step p {
    color: #666;
    line-height: 1.8;
}

.value-list {
    list-style: none;
    padding: 0;
    max-width: 700px;
    margin: 2rem auto;
}

.value-list li {
    padding: 1rem;
    margin-bottom: 0.5rem;
    background: #F7F9FC;
    border-left: 4px solid #3A8DDE;
    border-radius: 4px;
}

.value-list strong {
    color: #0A2540;
}

.lead-text {
    font-size: 1.2rem;
    color: #666;
    text-align: center;
    margin-bottom: 2rem;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-style: italic;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.testimonial-author {
    color: #0A2540;
    font-weight: 600;
    text-align: right;
}

.cta-section {
    background: linear-gradient(135deg, #0A2540 0%, #3A8DDE 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.cta-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-top: 1rem;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.comparison-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.comparison-card h3 {
    color: #0A2540;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: center;
}

.comparison-card ul {
    list-style: none;
    padding: 0;
}

.comparison-card li {
    padding: 0.75rem 0;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.comparison-card .fa-check {
    color: #16B286;
}

.comparison-card .fa-times {
    color: #e74c3c;
}

/* Buyer Profiles */
.buyer-profiles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.profile-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.profile-card:hover {
    transform: translateY(-5px);
}

.profile-card i {
    font-size: 3rem;
    color: #3A8DDE;
    margin-bottom: 1rem;
}

.profile-card h3 {
    color: #0A2540;
    margin-bottom: 1rem;
}

.profile-card p {
    color: #666;
    line-height: 1.6;
}

/* Value Factors */
.value-factors {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.factor-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
}

.factor-card i {
    font-size: 2.5rem;
    color: #3A8DDE;
    margin-bottom: 1rem;
}

.factor-card h3 {
    color: #0A2540;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.factor-card p {
    color: #666;
    line-height: 1.6;
}

/* Valuation Features */
.valuation-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-box {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    text-align: center;
}

.feature-box i {
    font-size: 2.5rem;
    color: #3A8DDE;
    margin-bottom: 1rem;
}

.feature-box h3 {
    color: #0A2540;
    margin-bottom: 1rem;
}

.feature-box p {
    color: #666;
    line-height: 1.6;
}

/* Form Styles */
.form-section {
    background: white;
    padding: 80px 0;
}

.valuation-form {
    max-width: 700px;
    margin: 0 auto;
    background: #F7F9FC;
    padding: 3rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #0A2540;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3A8DDE;
    box-shadow: 0 0 0 3px rgba(58, 141, 222, 0.1);
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.checkbox-label:hover {
    background: rgba(58, 141, 222, 0.05);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.form-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Form Message Styles */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message i {
    font-size: 1.25rem;
}

.form-message.success i {
    color: #16B286;
}

.form-message.error i {
    color: #e74c3c;
}

/* Form Loading State */
.form-loading {
    opacity: 0.6;
    pointer-events: none;
    position: relative;
}

.form-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    margin: -15px 0 0 -15px;
    border: 3px solid #3A8DDE;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.form-message {
    text-align: center;
    font-weight: 600;
    animation: slideIn 0.3s ease;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-message.info {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.financing-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-box {
    background: #F7F9FC;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #3A8DDE;
}

.info-box h3 {
    color: #0A2540;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-box h3 i {
    color: #3A8DDE;
}

.info-box p {
    color: #666;
    line-height: 1.6;
}

/* Contact Page Styles */
.contact-methods {
    padding: 80px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: #F7F9FC;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.contact-card i {
    font-size: 3rem;
    color: #3A8DDE;
    margin-bottom: 1rem;
}

.contact-card h3 {
    color: #0A2540;
    margin-bottom: 1rem;
}

.contact-link {
    color: #3A8DDE;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-note {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.calendly-section {
    padding: 80px 0;
    background: #F7F9FC;
}

.calendly-embed {
    margin-top: 2rem;
}

.hours-section {
    padding: 80px 0;
    background: white;
}

.hours-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.hours-card {
    background: #F7F9FC;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.hours-card i {
    font-size: 2.5rem;
    color: #3A8DDE;
    margin-bottom: 1rem;
}

.hours-card h3 {
    color: #0A2540;
    margin-bottom: 1rem;
}

.hours-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.hours-card strong {
    color: #0A2540;
}

.hours-note {
    font-size: 0.9rem;
    color: #999;
    margin-top: 0.5rem;
}

.social-section {
    padding: 80px 0;
    background: #F7F9FC;
    text-align: center;
}

.social-links-large {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #0A2540;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    min-width: 150px;
}

.social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.social-link i {
    font-size: 2.5rem;
    color: #3A8DDE;
}

.social-link span {
    font-weight: 600;
}

/* About Page Styles */
.about-content {
    padding: 80px 0;
    background: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    text-align: center;
}

.headshot-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #3A8DDE 0%, #0A2540 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
}

.headshot-placeholder i {
    font-size: 6rem;
    margin-bottom: 1rem;
}

.headshot-placeholder p {
    font-size: 1rem;
    margin: 0;
}

.about-text h2 {
    color: #0A2540;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.about-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.credentials-section {
    padding: 80px 0;
    background: #F7F9FC;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.credential-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.credential-card i {
    font-size: 2.5rem;
    color: #3A8DDE;
    margin-bottom: 1rem;
}

.credential-card h3 {
    color: #0A2540;
    margin-bottom: 1rem;
}

.credential-card p {
    color: #666;
    line-height: 1.6;
}

.philosophy-section {
    padding: 80px 0;
    background: white;
}

.philosophy-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.philosophy-item {
    background: #F7F9FC;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #3A8DDE;
}

.philosophy-item i {
    font-size: 2rem;
    color: #3A8DDE;
    margin-bottom: 1rem;
}

.philosophy-item h3 {
    color: #0A2540;
    margin-bottom: 1rem;
}

.philosophy-item p {
    color: #666;
    line-height: 1.6;
}

.testimonials-section {
    padding: 80px 0;
    background: #F7F9FC;
}

.testimonial-stars {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.testimonial-detail {
    color: #3A8DDE;
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Community Page Styles */
.community-overview {
    padding: 80px 0;
    background: white;
}

.community-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-box {
    text-align: center;
    padding: 2rem;
    background: #F7F9FC;
    border-radius: 12px;
}

.stat-box i {
    font-size: 2.5rem;
    color: #3A8DDE;
    margin-bottom: 1rem;
}

.stat-box h3 {
    color: #0A2540;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.stat-box p {
    color: #666;
}

.lifestyle-section {
    padding: 80px 0;
    background: #F7F9FC;
}

.lifestyle-tabs {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    justify-content: center;
}

.tab-button {
    padding: 12px 24px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    color: #666;
    transition: all 0.3s ease;
}

.tab-button:hover {
    border-color: #3A8DDE;
    color: #3A8DDE;
}

.tab-button.active {
    background: #3A8DDE;
    color: white;
    border-color: #3A8DDE;
}

.tab-content {
    display: none;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    color: #0A2540;
    margin-bottom: 1rem;
}

.tab-content ul {
    list-style: none;
    padding: 0;
}

.tab-content li {
    padding: 0.5rem 0;
    color: #666;
    padding-left: 1.5rem;
    position: relative;
}

.tab-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16B286;
    font-weight: bold;
}

.demographics-section {
    padding: 80px 0;
    background: white;
}

.demographics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.demo-card {
    background: #F7F9FC;
    padding: 2rem;
    border-radius: 12px;
}

.demo-card h3 {
    color: #0A2540;
    margin-bottom: 1rem;
}

.demo-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.demo-card li {
    padding: 0.5rem 0;
    color: #666;
    padding-left: 1.5rem;
    position: relative;
}

.demo-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3A8DDE;
    font-weight: bold;
}

.school-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

.hoa-section {
    padding: 80px 0;
    background: #F7F9FC;
}

.hoa-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.hoa-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.hoa-card h3 {
    color: #0A2540;
    margin-bottom: 1rem;
}

.hoa-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.hoa-card li {
    padding: 0.5rem 0;
    color: #666;
    padding-left: 1.5rem;
    position: relative;
}

.hoa-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16B286;
}

.hoa-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #999;
    font-style: italic;
}

.safety-section {
    padding: 80px 0;
    background: white;
}

.safety-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.safety-card {
    background: #F7F9FC;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.safety-card i {
    font-size: 2.5rem;
    color: #3A8DDE;
    margin-bottom: 1rem;
}

.safety-card h3 {
    color: #0A2540;
    margin-bottom: 1rem;
}

.safety-card p {
    color: #666;
}

.attractions-section {
    padding: 80px 0;
    background: #F7F9FC;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.attraction-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.attraction-card i {
    font-size: 2.5rem;
    color: #3A8DDE;
    margin-bottom: 1rem;
}

.attraction-card h3 {
    color: #0A2540;
    margin-bottom: 1rem;
}

.attraction-card p {
    color: #666;
}

/* Investment & Blog Styles */
.investment-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.metric-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.metric-card h3 {
    color: #0A2540;
    margin-bottom: 1rem;
}

.metric-card p {
    color: #666;
    line-height: 1.6;
}

.blog-section {
    padding: 80px 0;
    background: white;
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-post-card {
    background: #F7F9FC;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-5px);
}

.blog-post-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.blog-category {
    background: #3A8DDE;
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-weight: 600;
}

.blog-date {
    color: #666;
}

.blog-post-card h2 {
    color: #0A2540;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.blog-post-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.read-more {
    color: #3A8DDE;
    text-decoration: none;
    font-weight: 600;
}

.read-more:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .search-bar {
        flex-direction: column;
        align-items: center;
    }
    
    .advisor-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero h1 {
        font-size: 1.75rem;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .hero-service-links {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .nav-submenu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        padding: 0;
        margin-top: 0.5rem;
    }
    
    .nav-item-has-submenu:hover .nav-submenu {
        transform: none;
    }
    
    .nav-submenu a {
        padding: 0.5rem 1rem;
        color: rgba(255,255,255,0.8);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-service-links-secondary {
        flex-direction: column;
        align-items: center;
    }
} 