* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2C2C2C;
    --secondary: #6B6B6B;
    --accent: #D4AF37;
    --light: #F8F8F8;
    --white: #FFFFFF;
    --border: #E5E5E5;
    --overlay: rgba(0, 0, 0, 0.6);
}

/* Custom Fonts */
@font-face {
    font-family: 'TheHills';
    src: url('fonts/the-hills-font/TheHillsPersonalUseOnly-mrdv.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    font-feature-settings: "liga" 1, "kern" 1;
}

@font-face {
    font-family: 'CuteZealand';
    src: url('fonts/cute-zealand-font/CuteZealand-ZPvJ.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
    font-feature-settings: "liga" 1, "kern" 1;
}

        body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: var(--white);
    color: var(--primary);
    line-height: 1.6;
            overflow-x: hidden;
}

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

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
    padding: 12px 0;
    background: transparent;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        nav.scrolled {
    background: var(--primary);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--primary);
        }

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

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    width: 80px;
    margin: 0;
    padding: 0;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
}

        .nav-links a {
    color: var(--white);
            text-decoration: none;
    font-weight: 500;
            transition: color 0.3s ease;
        }

nav.scrolled .nav-links a {
    color: var(--white);
}

.nav-links a:hover {
    color: var(--accent);
}

.cta-button {
    background: var(--white);
    color: var(--primary);
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

nav.scrolled .cta-button {
    background: var(--white);
    color: var(--primary);
}

.cta-button:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-1px);
}

/* Mobile menu toggle button - hidden on desktop */
.mobile-menu-toggle {
    display: none;
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

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

.dropdown-menu li {
    list-style: none;
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Header styling for contact, about, and destinations pages */
body.contact-page nav,
body.about-page nav,
body.destinations-page nav {
    background: var(--primary);
}

/* Remove transitions for destinations page to prevent opacity animations */
body.destinations-page nav {
    transition: none !important;
    background: var(--primary) !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
}

body.destinations-page nav .nav-links a {
    transition: none !important;
}

body.destinations-page nav .logo-img {
    transition: none !important;
}

/* Override any scrolled state for destinations page */
body.destinations-page nav.scrolled {
    background: var(--primary) !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    border-bottom: none !important;
}

body.contact-page nav .nav-links a,
body.about-page nav .nav-links a,
body.destinations-page nav .nav-links a {
    color: var(--white);
}

body.contact-page nav .logo-img,
body.about-page nav .logo-img,
body.destinations-page nav .logo-img {
    filter: brightness(0) invert(1);
}

/* Mobile navigation styling for contact, about, and destinations pages */
@media (max-width: 768px) {
    body.contact-page nav .nav-links,
    body.about-page nav .nav-links,
    body.destinations-page nav .nav-links {
        background: var(--primary);
    }
    
    body.contact-page nav .nav-links a,
    body.about-page nav .nav-links a,
    body.destinations-page nav .nav-links a {
        color: var(--white);
    }
    
    /* Ensure mobile menu toggle button is white on these pages */
    body.contact-page nav .mobile-menu-toggle,
    body.about-page nav .mobile-menu-toggle,
    body.destinations-page nav .mobile-menu-toggle {
        color: var(--white);
    }
}



/* Hero Section with Background Video */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.hero-content h1 {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--white);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: clamp(18px, 3vw, 24px);
    color: var(--white);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
    opacity: 0.9;
}

/* Carousel Navigation */


/* Property Types Section */
.property-types {
    padding: 80px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--primary);
}

.property-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.property-type {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.property-image-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.property-image-link:hover {
    transform: translateY(-5px);
}

.property-image {
    margin-bottom: 25px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    position: relative;
    line-height: 0;
    font-size: 0;
}

.property-image img,
.property-image video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
}

.property-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
        radial-gradient(circle at center, transparent 40%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
    z-index: 5;
}

.property-type:hover .property-image img,
.property-type:hover .property-image video {
    transform: scale(1.02);
}

.property-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.location-text {
    font-family: 'The Hills', serif;
    font-size: 96px;
    color: var(--white);
    font-weight: bold;
    letter-spacing: 3px;
    text-align: center;
    line-height: 1.1;
}

.location-text.nz-text {
    font-family: 'Cute Zealand', serif;
    font-size: 78px;
    color: var(--white);
    font-weight: bold;
    letter-spacing: 4px;
    line-height: 1.1;
}

.large-location {
    font-size: 120px !important;
    letter-spacing: 4px !important;
    margin-top: -20px;
}

.book-now-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 18px 24px;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
    z-index: 15;
    display: inline-block;
}

.video-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 5;
    cursor: pointer;
    text-decoration: none;
}

.video-overlay-link:hover {
    background: rgba(0, 0, 0, 0.1);
}

.book-now-overlay:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateX(-50%) translateY(-2px);
}

.property-content h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--primary);
    width: 100%;
}

.property-content p {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 30px;
    line-height: 1.6;
    width: 100%;
    max-width: 500px;
}

.property-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 18px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-1px);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 18px 24px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

/* Why Us Section */
.why-us {
    padding: 80px 0;
    background: #FFF8E1;
}

.why-us h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--primary);
    text-align: center;
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    background: transparent;
    padding: 20px 15px;
    transition: none;
}

.value-item:hover {
    transform: none;
}

.value-image {
    margin-bottom: 30px;
    overflow: hidden;
}

.value-image img,
.value-image video {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.value-item:hover .value-image img,
.value-item:hover .value-image video {
    transform: scale(1.1);
}

.value-item h3 {
    color: var(--primary);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
    text-align: left;
}

.value-item p {
    color: var(--secondary);
    line-height: 1.6;
    font-size: 16px;
    text-align: left;
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: #FFF8E1;
}

.reviews-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-left {
    text-align: left;
}

.reviews-left .section-title {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--primary);
    line-height: 1.2;
}

.quote-icon {
    color: var(--accent);
    position: absolute;
    z-index: 10;
}

.quote-icon.quote-open {
    top: -20px;
    left: -20px;
}

.quote-icon.quote-close {
    bottom: -20px;
    right: -20px;
}

.quote-icon svg {
    width: 60px;
    height: 60px;
}

.reviews-right {
    position: relative;
}

.reviews-carousel {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
}

.reviews-track {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.review-card {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: left;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    max-height: 300px;
    overflow-y: auto;
}



.review-card.active {
    opacity: 1;
    visibility: visible;
}

.review-text {
    color: var(--secondary);
    line-height: 1.6;
    font-size: 16px;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
}

.review-rating {
    margin-bottom: 15px;
    font-size: 20px;
    color: var(--accent);
    letter-spacing: 2px;
}

/* Reviews Carousel Navigation */
.reviews-nav {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.review-line {
    width: 25px;
    height: 3px;
    background: #e0e0e0;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.review-line.active {
    background: var(--primary);
}

.review-line:hover {
    background: var(--accent);
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--white);
    text-align: center;
}

.about-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    flex-direction: column;
}

.about-badge {
    flex-shrink: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 25px;
}

.superhost-badge {
    max-width: 120px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
    padding: 25px;
}

.superhost-badge:hover {
    transform: scale(1.05);
}

.guest-favorite-badge {
    max-width: 180px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.guest-favorite-badge:hover {
    transform: scale(1.05);
}

.vrbo-badge {
    max-width: 180px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.vrbo-badge:hover {
    transform: scale(1.05);
}

/* Mobile responsive for about badges */
@media (max-width: 768px) {
    .about-badge {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-badge img {
        max-width: 140px;
    }
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-logo {
    flex-shrink: 0;
}

.about-logo-img {
    max-width: 120px;
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.about-logo-img:hover {
    transform: scale(1.05);
}

.about-image img {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-text {
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.about-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid var(--primary);
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.about-link:hover {
    color: var(--accent);
}

/* Mailing List Section */
.mailing-list {
    padding: 80px 0;
    background: var(--light);
    text-align: center;
}

.mailing-list h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--primary);
}

.mailing-list p {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.mailing-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.mailing-form input[type="email"] {
    flex: 1;
    min-width: 250px;
    padding: 15px 20px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s ease;
}

.mailing-form input[type="email"]:focus {
    border-color: var(--accent);
}

.mailing-form button {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 15px 30px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mailing-form button:hover {
    background: var(--accent);
}

.success-message {
    display: none;
    color: var(--accent);
    font-weight: 600;
    margin-top: 20px;
}

/* Footer */
footer {
    padding: 40px 0 20px;
    background: var(--white);
    color: var(--primary);
}

.footer-content {
    text-align: center;
    margin-bottom: 5px;
}

.footer-section h3 {
    color: var(--accent);
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: 600;
}

.social-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 10px;
}

.social-icon {
    color: var(--primary);
    text-decoration: none;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    color: var(--accent);
    background: rgba(212, 175, 55, 0.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 5px;
    border-top: 1px solid var(--border);
    color: var(--secondary);
    font-size: 20px;
}

/* Logo Intro Animation */
.logo-intro {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: black;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: logoIntro 3s ease-in-out forwards;
}

.logo-intro img {
    width: 330px;
    height: 330px;
    opacity: 0;
    animation: logoFadeIn 1s ease-in-out 0.5s forwards;
    object-fit: contain;
    max-width: 90vw;
    max-height: 90vh;
}

@keyframes logoIntro {
    0% {
        opacity: 1;
    }
    70% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Hide main content during intro */
.main-content {
    opacity: 0;
    animation: contentFadeIn 1s ease-in-out 3s forwards;
}

@keyframes contentFadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Logo Intro Responsive */
@media (max-width: 768px) {
    .logo-intro img {
        width: 240px;
        height: 240px;
        max-width: 80vw;
        max-height: 80vh;
    }
}

@media (max-width: 480px) {
    .logo-intro img {
        width: 180px;
        height: 180px;
        max-width: 85vw;
        max-height: 85vh;
    }
}

/* Mobile Responsiveness - The Cliffs Style */
@media (max-width: 768px) {
    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 20px;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: var(--primary);
        backdrop-filter: blur(15px);
        padding: 30px 20px;
        border-top: 1px solid var(--primary);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-links li {
        text-align: center;
    }
    
    .nav-links a {
        color: var(--white);
        font-size: 18px;
        font-weight: 500;
        padding: 10px 0;
        display: block;
    }
    
    /* Mobile menu toggle button */
    .mobile-menu-toggle {
        display: block;
        background: none;
        border: none;
        font-size: 28px;
        color: var(--white);
        cursor: pointer;
        padding: 8px;
        margin-right: 15px;
        border-radius: 4px;
        transition: all 0.3s ease;
    }
    
    .mobile-menu-toggle:hover {
        color: var(--accent);
        background: rgba(255, 255, 255, 0.1);
    }
    
    /* Hide Book Now button on mobile to save space */
    .cta-button {
        display: none;
    }
    
    .logo-img {
        width: 50px;
        height: auto;
    }
    
    /* Hero Section Mobile */
    .hero-content h1 {
        font-size: clamp(32px, 12vw, 48px);
        line-height: 1.1;
        margin-bottom: 15px;
    }
    
    .hero-subtitle {
        font-size: clamp(16px, 4.5vw, 20px);
        max-width: 90%;
        line-height: 1.4;
    }
    
    /* Property Types Mobile - Stacked Layout */
    .property-types {
        padding: 60px 0;
    }
    
    .property-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    /* About Section Mobile */
    .about-content {
        flex-direction: column;
        gap: 50px;
    }
    
    .superhost-badge {
        max-width: 100px;
    }
    
    .about-logo-img {
        max-width: 100px;
    }
    
    .property-image {
        margin-bottom: 30px;
        line-height: 0;
        font-size: 0;
    }
    
    .property-image img {
        height: 300px;
        display: block;
        margin: 0;
        padding: 0;
    }
    
    .location-text {
        font-size: 64px;
        letter-spacing: 2px;
    }
    
    .location-text.nz-text {
        font-size: 72px;
        letter-spacing: 3px;
    }
    
    .book-now-overlay {
        bottom: 20px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .property-content h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .property-content p {
        font-size: 16px;
        margin-bottom: 25px;
    }
    
    .property-actions {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    /* Section Spacing Mobile */
    .why-us,
    .about,
    .mailing-list {
        padding: 60px 0;
    }
    
    .why-us h2,
    .about h2,
    .mailing-list h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .value-item {
        padding: 30px 25px;
    }
    
    .value-image {
        margin-bottom: 20px;
    }
    
    .value-image img,
    .value-image video {
        height: 300px;
    }
    
    .value-item:hover .value-image img,
    .value-item:hover .value-image video {
        transform: scale(1.05);
    }
    
    .value-item h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .value-item p {
        font-size: 15px;
    }
    
    .reviews-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        padding: 0 20px;
    }
    
    .reviews-left .section-title {
        font-size: 36px;
        text-align: center;
    }
    
    .quote-icon {
        position: absolute;
        z-index: 10;
        opacity: 0.15;
        filter: brightness(1);
    }
    
    .quote-icon.quote-open {
        top: -15px;
        left: -15px;
    }
    
    .quote-icon.quote-close {
        bottom: -15px;
        right: -15px;
    }
    
    .quote-icon svg {
        width: 50px;
        height: 50px;
    }
    
    .reviews-carousel {
        max-width: 90%;
    }
    
    .reviews-track {
        height: 250px;
    }
    
    .review-card {
        padding: 25px;
        max-height: 250px;
        overflow-y: auto;
    }
    
    .review-text {
        font-size: 15px;
    }
    
    .review-rating {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .reviews-nav {
        gap: 8px;
        margin-top: 25px;
    }
    
    .review-line {
        width: 20px;
        height: 3px;
    }
    
    .about-text,
    .mailing-list p {
        font-size: 16px;
        max-width: 90%;
    }
    
    /* Mailing Form Mobile */
    .mailing-form {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .mailing-form input[type="email"] {
        min-width: 100%;
        max-width: 300px;
    }
    
    .mailing-form button {
        width: 100%;
        max-width: 300px;
    }
    
    /* Footer Mobile */
    footer {
        padding: 30px 0 15px;
    }
    
    .social-icons {
        gap: 15px;
    }
    
    .footer-bottom {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 5px;
    }
    
    .logo-img {
        width: 80px;
        height: auto;
    }
    
    /* Extra Small Mobile Adjustments */
    .hero-content {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: clamp(28px, 10vw, 36px);
    }
    
    .hero-subtitle {
        font-size: clamp(14px, 4vw, 16px);
    }
    
    .property-content h2 {
        font-size: 24px;
    }
    
    .location h2,
    .about h2,
    .mailing-list h2 {
        font-size: 24px;
    }
    
    .property-actions {
        gap: 12px;
    }
    
    .btn-primary,
    .btn-secondary {
        max-width: 250px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .social-icons {
        gap: 10px;
    }
}
