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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -1px;
}

h2 {
    font-size: 2.5rem;
    color: #1a1a1a;
}

h3 {
    font-size: 1.5rem;
    color: #333;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

a {
    color: #b8860b;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #8b6508;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: #b8860b;
    border-color: #b8860b;
}

.btn-secondary:hover {
    background-color: #b8860b;
    color: white;
}

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

/* Navigation */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar.navbar-hero {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: transparent;
    box-shadow: none;
    z-index: 100;
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 40px;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.navbar.navbar-hero .nav-brand {
    flex-shrink: 0;
}

.nav-brand {
    flex-shrink: 0;
}

.nav-logo-link {
    display: inline-block;
}

.nav-logo {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 2px;
}

.navbar.navbar-hero .logo-text {
    color: white;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

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

.navbar.navbar-hero .nav-menu a {
    color: white;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.nav-menu a {
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.navbar.navbar-hero .nav-menu a:hover {
    color: #d4af37;
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
}

.dropdown-toggle::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    margin-left: 6px;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: white;
    list-style: none;
    min-width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-top: 10px;
}

.dropdown-menu li {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu li:last-child {
    border-bottom: none;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: #333;
}

.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: #b8860b;
}

.dropdown.active .dropdown-menu {
    display: block;
}

.dropdown.active .dropdown-toggle::after {
    transform: rotate(135deg);
}

.btn-contact {
    background-color: #b8860b;
    color: white;
    padding: 10px 20px;
    border-radius: 4px;
    font-weight: 600;
}

.btn-contact:hover {
    background-color: #8b6508;
}

.navbar.navbar-hero .btn-contact {
    background-color: #b8860b;
    color: white;
}

.navbar.navbar-hero .btn-contact:hover {
    background-color: #d4af37;
    color: #1a1a1a;
}

.social-icons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #b8860b;
}

.social-icons svg {
    width: 18px;
    height: 18px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section with Video */
.hero-section {
    position: relative;
    width: 100%;
    height: 75vh;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #000;
}

.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.hero-logo-center {
    position: absolute;
    top: 20px;
    left: 40px;
    transform: none;
    z-index: 10;
    max-width: 250px;
    width: auto;
}

.hero-logo-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.4));
}

.hero-content-wrapper {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 60px;
}

.hero-content {
    max-width: 1000px;
    text-align: center;
    color: white;
    width: 90%;
}

.hero-content h1 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}

.tagline {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1rem;
    font-style: italic;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
}

.hero-cta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-content: center;
    margin-top: 2.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.cta-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    text-align: center;
    transition: all 0.3s ease;
}

.cta-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
    transform: translateY(-8px);
}

.cta-card h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.cta-card .show-more {
    display: inline-block;
    color: #b8860b;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-card .show-more:hover {
    color: #8b6508;
}

/* Hero Content Section with Background Image */
.hero-content-section {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    overflow: hidden;
}

.hero-content-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.15);
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
}

.hero-content-section .hero-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: #1a1a1a;
    width: 100%;
}

.hero-content-section .hero-content h1 {
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    line-height: 1.4;
    letter-spacing: -0.5px;
    text-shadow: none;
}

.hero-content-section .subtitle {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    text-shadow: none;
}

.hero-content-section .tagline {
    font-size: 0.95rem;
    color: #999;
    margin-bottom: 1rem;
    font-style: italic;
    text-shadow: none;
}

.hero-content-section .hero-cta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-content: center;
    margin-top: 2.5rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-content-section .cta-card {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: center;
}

.hero-content-section .cta-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transform: translateY(-3px);
}

.hero-content-section .cta-subtitle {
    font-size: 0.85rem;
    color: #1a1a1a;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.hero-content-section .cta-card h3 {
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
    font-weight: 700;
}

.hero-content-section .cta-card .show-more {
    display: inline-block;
    color: #b8860b;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.hero-content-section .cta-card .show-more:hover {
    color: #8b6508;
}

/* White Introduction Section */
.intro-section {
    background-color: #ffffff;
    padding: 40px 20px;
    width: 100%;
}

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

.intro-content h2 {
    text-align: left;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 2rem;
    font-weight: 700;
}

.intro-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.intro-left {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.intro-paragraph {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

.intro-quote {
    font-size: 1.2rem;
    font-style: italic;
    color: #555;
    border-left: 4px solid #b8860b;
    padding-left: 1.5rem;
    margin: 2rem 0 0.5rem 0;
    line-height: 1.6;
}

.intro-signature {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
    margin: 0 0 1rem 0;
}

.intro-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Services Section (Buy, Sell, New Development) */
.services-section {
    background-image: url('images/wsaterview.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 120px 20px;
    width: 100%;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.services-grid {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.service-card {
    background-color: transparent;
    padding: 2rem;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    box-shadow: none;
    transform: none;
}

.service-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.service-card h3 {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 1);
    margin-bottom: 1rem;
    margin-top: 0.5rem;
    letter-spacing: 0.5px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.btn-link {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 1rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.btn-link:hover {
    color: #d4af37;
}

/* Neighborhood Guide Section */
.neighborhood-guide {
    background-color: #f9f9f9;
    padding: 80px 20px;
}

.neighborhood-guide h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.neighborhood-guide .section-subtitle {
    text-align: center;
    margin-bottom: 3rem;
}

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

.neighborhood-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.neighborhood-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.neighborhood-card h3 {
    color: #1a1a1a;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.neighborhood-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.neighborhood-card .btn-link {
    color: #b8860b;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
    align-self: flex-start;
}

.neighborhood-card .btn-link:hover {
    color: #8b6508;
}

/* Featured Properties Section */
.featured-properties {
    padding: 80px 20px;
    background-color: #fff;
}

.featured-properties h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* Carousel Wrapper and Container */
.carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.carousel-container {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
}

.properties-carousel {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 0;
    /* Hide scrollbar but keep functionality */
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.properties-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    flex: 0 0 calc(25% - 1.5rem);
    min-width: 280px;
}

/* Carousel Arrow Buttons */
.carousel-arrow {
    position: relative;
    background-color: #fff;
    border: 2px solid #e8e8e8;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #333;
    flex-shrink: 0;
}

.carousel-arrow:hover {
    border-color: #b8860b;
    color: #b8860b;
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.2);
}

.carousel-arrow:active {
    transform: scale(0.95);
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
}

/* Property Card Styles */
.property-card {
    background-color: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.property-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transform: translateY(-5px);
}

.property-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f5f5f5;
    flex-shrink: 0;
}

.property-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-card:hover .property-image img {
    transform: scale(1.05);
}

.property-card h3 {
    padding: 20px 20px 10px;
    margin: 0;
    flex-grow: 0;
}

/* Text-only property card (no photo available) */
.property-card:not(:has(.property-image)) h3 {
    padding-top: 28px;
}

.property-card h3 a {
    color: #333;
    text-decoration: none;
}

.property-card h3 a:hover {
    color: #b8860b;
}

.property-card p {
    padding: 0 20px 20px;
    color: #666;
    margin: 0;
    font-size: 0.95rem;
    flex-grow: 1;
}

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

/* Specialties Section */
.specialties {
    background-color: #f5f5f5;
    padding: 80px 20px;
}

.specialties h2 {
    text-align: center;
    margin-bottom: 3rem;
}

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

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

.specialty-card:hover {
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transform: translateY(-5px);
    border-top: 4px solid #b8860b;
}

.specialty-card h3 {
    color: #1a1a1a;
    margin-bottom: 1rem;
}

.specialty-card p {
    color: #666;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

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

.cta-section p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #bbb;
    padding: 60px 20px 20px;
}

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

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

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

.footer-column a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #b8860b;
}

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    text-align: center;
    color: #888;
    font-size: 0.9rem;
}

.fair-housing {
    margin-top: 1rem;
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: white;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .navbar.navbar-hero .nav-menu {
        background-color: rgba(26, 26, 26, 0.95);
        backdrop-filter: blur(10px);
    }

    .navbar.navbar-hero .nav-menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar.navbar-hero .nav-menu a {
        color: white;
        text-shadow: none;
    }

    .nav-menu.active {
        max-height: 500px;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu a {
        display: block;
        padding: 15px 20px;
    }

    .social-icons {
        justify-content: center;
        border-top: 1px solid #f0f0f0;
        padding: 15px 20px;
    }

    .navbar.navbar-hero .social-icons {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background-color: #f9f9f9;
    }

    .navbar.navbar-hero .dropdown-menu {
        background-color: rgba(255, 255, 255, 0.05);
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-toggle::after {
        margin-left: auto;
    }

    .btn-contact {
        width: calc(100% - 40px);
        margin: 10px 20px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero-section {
        height: 80vh;
        min-height: 500px;
    }

    .navbar-inner {
        padding: 12px 20px;
    }

    .nav-logo {
        height: 35px;
    }

    .hero-logo-center {
        max-width: 300px;
    }

    .hero-content-wrapper {
        padding-bottom: 30px;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-cta {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .hero-content-section .hero-cta {
        grid-template-columns: 1fr;
    }

    .cta-card {
        padding: 1.5rem;
    }

    .hero-content-section {
        padding: 40px 20px;
        min-height: auto;
    }

    .hero-content-wrapper {
        width: 100%;
    }

    .hero-content-section .hero-content h1 {
        font-size: 1.6rem;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .stats .container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item h3 {
        font-size: 2rem;
    }

    .carousel-wrapper {
        gap: 1rem;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: 250px;
    }

    .neighborhoods-grid {
        grid-template-columns: 1fr;
    }

    .specialty-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero-section {
        height: 70vh;
        min-height: 400px;
    }

    .navbar-inner {
        padding: 10px 15px;
    }

    .nav-logo {
        height: 30px;
    }

    .hero-logo-center {
        max-width: 250px;
    }

    .hero-content-wrapper {
        padding-bottom: 20px;
    }

    .hero-content h1 {
        font-size: 1.2rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .tagline {
        font-size: 0.85rem;
    }

    .hero-cta {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .cta-card {
        padding: 1.2rem;
    }

    .hero-content-section {
        padding: 30px 15px;
        min-height: auto;
    }

    .hero-content-wrapper {
        width: 100%;
    }

    .hero-content-section .hero-content h1 {
        font-size: 1.2rem;
    }

    .hero-content-section .subtitle {
        font-size: 0.9rem;
    }

    .hero-content-section .tagline {
        font-size: 0.85rem;
    }

    .hero-content-section .hero-cta {
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .hero-content-section .cta-card h3 {
        font-size: 1rem;
    }

    .hero-content-section .cta-subtitle {
        font-size: 0.75rem;
    }

    .intro-two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-content h2 {
        font-size: 2rem;
    }

    .intro-paragraph {
        font-size: 1rem;
    }

    .intro-quote {
        font-size: 1.1rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .social-icons {
        gap: 0.8rem;
    }

    .social-icons a {
        width: 16px;
        height: 16px;
    }

    .featured-properties,
    .specialties,
    .cta-section,
    .neighborhood-guide {
        padding: 50px 15px;
    }

    .intro-section,
    .services-section {
        padding: 50px 15px;
    }

    .neighborhoods-grid {
        grid-template-columns: 1fr;
    }

    .stat-item h3 {
        font-size: 1.5rem;
    }

    .property-image {
        height: 200px;
    }

    .carousel-wrapper {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .carousel-card {
        flex: 0 0 calc(100% - 1rem);
        min-width: 240px;
    }

    .properties-carousel {
        gap: 1.5rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 12px 30px;
        font-size: 1rem;
    }
}

/* ===================================================
   INTERIOR PAGE COMPONENTS (about, contact, properties,
   resources, neighborhoods, collections)
   =================================================== */

/* Standard (non-hero-video) navbar sits inline at top of interior pages */
.navbar.navbar-standard {
    position: sticky;
    top: 0;
}

/* Page Hero / Title Banner */
.page-hero {
    position: relative;
    padding: 90px 20px 70px;
    background-color: #1a1a1a;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.page-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.page-hero h1 {
    color: #fff;
    font-size: 2.6rem;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.page-hero .page-subtitle {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1.1rem;
    font-weight: 400;
    max-width: 700px;
    margin: 0 auto;
}

.breadcrumb {
    position: relative;
    z-index: 2;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.85);
}

.breadcrumb a:hover {
    color: #d4af37;
}

/* Generic Content Sections */
.content-section {
    padding: 70px 20px;
    background-color: #fff;
}

.content-section.alt-bg {
    background-color: #f9f9f9;
}

.content-narrow {
    max-width: 820px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 1.9rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section h3.eyebrow {
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #b8860b;
    margin-bottom: 0.5rem;
}

.content-section p {
    color: #555;
    font-size: 1.02rem;
}

.pull-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: #333;
    border-left: 4px solid #b8860b;
    padding-left: 1.5rem;
    margin: 2rem 0;
    line-height: 1.6;
}

/* Miami Pulse Archive Accordion */
.pulse-archive {
    border-top: 1px solid #e5e5e5;
}

.pulse-archive summary {
    max-width: 820px;
    margin: 0 auto;
    padding: 20px 20px;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a1a;
    cursor: pointer;
    list-style: none;
    transition: color 0.3s ease;
}

.pulse-archive summary:hover {
    color: #b8860b;
}

.pulse-archive summary::-webkit-details-marker {
    display: none;
}

.pulse-archive summary::before {
    content: '+';
    display: inline-block;
    width: 1.2rem;
    color: #b8860b;
    font-weight: 700;
}

.pulse-archive[open] summary::before {
    content: '\2212';
}

/* Image Gallery Grid (property detail pages) */
.detail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.detail-gallery img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.detail-gallery.two-col {
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

.detail-gallery.two-col img {
    height: 340px;
}

/* Spec / Fact Grid */
.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.spec-item {
    background-color: #f9f9f9;
    border-left: 3px solid #b8860b;
    padding: 1rem 1.25rem;
    border-radius: 4px;
}

.spec-item .spec-label {
    display: block;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #888;
    margin-bottom: 0.3rem;
}

.spec-item .spec-value {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1a1a1a;
}

.amenity-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
    margin: 1.5rem 0 2rem;
}

.amenity-list li {
    padding-left: 1.6rem;
    position: relative;
    color: #555;
}

.amenity-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #b8860b;
    font-weight: 700;
}

/* Collection Grid (Miami High Rises, Brickell Skyline) */
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 60px 0;
}

/* Simple Inquiry / Contact Form */
.inquiry-form {
    max-width: 640px;
    margin: 2rem auto 0;
    display: grid;
    gap: 1.2rem;
}

.inquiry-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.4rem;
}

.inquiry-form input,
.inquiry-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 0.95rem;
}

.inquiry-form input:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: #b8860b;
}

.inquiry-form button {
    justify-self: start;
}

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

/* Status/Notice badges (e.g. Under Contract) */
.status-badge {
    display: inline-block;
    background-color: #b8860b;
    color: #fff;
    padding: 6px 16px;
    border-radius: 3px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

/* Legal / Policy Pages */
.legal-section h2 {
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-top: 2.5rem;
}

.legal-section h2:first-child {
    margin-top: 0;
}

.legal-section p, .legal-section li {
    color: #555;
    font-size: 0.95rem;
}

.legal-section ul {
    margin: 0 0 1rem 1.5rem;
}

/* Resource link lists */
.resource-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.resource-columns h3 {
    font-size: 1.15rem;
    color: #1a1a1a;
    margin-bottom: 0.75rem;
}

.resource-columns ul {
    list-style: none;
}

.resource-columns li {
    margin-bottom: 0.6rem;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 70px 20px 50px;
    }
    .page-hero h1 {
        font-size: 2rem;
    }
    .content-section {
        padding: 50px 20px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .hero-cta,
    .cta-section,
    .footer {
        display: none;
    }
}
