/* 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;
}

/* 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;
}

.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;
}

/* 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;
}

/* 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;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .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;
    }
} 