:root {
    --primary: #1a1a1a;
    --primary-light: #2d2d2d;
    --accent: #E11D48;
    --accent-hover: #BE123C;
    --text-main: #1a1a1a;
    --text-muted: #6b7280;
    --bg-light: #FAFAF9;
    --bg-warm: #F5F5F0;
    --bg-dark: #1a1a1a;
    --white: #FFFFFF;
    --border-light: #E5E5E5;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --glass: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(0, 0, 0, 0.08);
    --base-font-size: 16px;
}

html {
    font-size: var(--base-font-size);
}

@media (min-width: 1366px) {
    :root {
        --base-font-size: 17px;
    }
    
    h1 { font-size: 3.25rem; }
    h2 { font-size: 2.6rem; }
    
    .hero h1 {
        font-size: 4rem;
    }
}

@media (min-width: 1440px) {
    :root {
        --base-font-size: 18px;
    }
    
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.75rem; }
    section > .container > .text-center h2 { font-size: 3rem; }
    
    .hero h1 { font-size: 4.5rem; }
    .hero p { font-size: 1.35rem; }
    
    .foco-grid { gap: 2.5rem; }
    .listing-grid { gap: 2rem; }
    .blog-grid { gap: 2rem; }
    
    .container { max-width: 1320px; padding: 0 32px; }
    section { padding: 120px 0; }
}

@media (min-width: 1920px) {
    :root {
        --base-font-size: 20px;
    }
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-overflow-scrolling: touch;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    color: var(--primary);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-light);
}

h1, h2, h3, .serif {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h1 { line-height: 1.1; font-size: 3rem; }
h2 { 
    line-height: 1.25; 
    font-weight: 800;
    letter-spacing: -0.03em;
    font-size: 2.5rem;
}

section > .container > .text-center h2 {
    font-size: 2.75rem;
    margin-top: 1rem;
}

p {
    font-size: 1rem;
    line-height: 1.7;
}

section > .container > .text-center > span.text-accent {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

/* Base Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Typography */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-white { color: var(--white); }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.25rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    border: none;
    outline: none;
    font-family: inherit;
    text-decoration: none;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.25);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(225, 29, 72, 0.35);
}

.btn-outline {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
    border-radius: 8px;
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(225, 29, 72, 0.2);
}

/* CTA Section */
.cta-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-buttons {
    width: 100%;
    max-width: 500px;
}

.btn-cta-primary,
.btn-cta-outline {
    flex: 1;
    min-width: 150px;
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(225, 29, 72, 0.25);
}

.btn-cta-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(225, 29, 72, 0.35);
}

.btn-cta-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
}

.btn-cta-outline:hover {
    border-color: var(--white);
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-3px);
}

@media (max-width: 480px) {
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-cta-primary,
    .btn-cta-outline {
        width: 100%;
    }
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
}

header.scrolled .logo-img,
header.header-solid .logo-img {
    height: 58px;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Header/Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0.3rem 0;
    transition: all 0.3s ease;
    background: transparent;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-container {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header.scrolled,
header.header-solid {
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.25rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid var(--border-light);
}

header .logo {
    display: flex;
    align-items: center;
    z-index: 1002;
}

header nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none;
    margin: 0;
    padding: 0;
    margin-left: 3rem;
}

.nav-links li {
    display: flex;
    align-items: center;
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.nav-links .btn {
    padding: 0.7rem 1.5rem;
    font-size: 0.7rem;
}

header .nav-links a {
    color: var(--white);
    font-weight: 500;
    font-size: 0.8rem;
    opacity: 0.9;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

header.scrolled .nav-links a,
header.header-solid .nav-links a {
    color: var(--primary);
    opacity: 1;
}

header.scrolled .nav-links a:hover,
header.header-solid .nav-links a:hover {
    color: var(--accent);
}

header .menu-toggle {
    display: none;
    color: var(--white);
}

.mobile-menu-close {
    display: flex;
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--primary);
    transition: var(--transition);
}

.mobile-menu-close:hover {
    background: var(--accent);
    color: var(--white);
}

.nav-links.active .mobile-menu-close {
    display: flex;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.88) 0%, rgba(26, 26, 26, 0.72) 50%, rgba(26, 26, 26, 0.55) 100%), url('images/urban6.png');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: var(--white);
    position: relative;
    padding: 140px 40px 100px;
    contain: layout style;
}

@media (min-width: 1440px) {
    .hero {
        padding: 160px 60px 120px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 20% 80%, rgba(225, 29, 72, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(26, 26, 26, 0.3) 100%);
    pointer-events: none;
}

.hero-content {
    max-width: 720px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-tagline {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    display: inline-block;
    margin-top: 2rem;
    margin-bottom: 1.2rem;
    padding: 0.5rem 1rem;
    background: rgba(225, 29, 72, 0.15);
    border: 1px solid rgba(225, 29, 72, 0.3);
    border-radius: 4px;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 4rem);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero h1 .text-accent {
    color: var(--accent);
    position: relative;
}

.hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9) !important;
    opacity: 1;
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.75;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-buttons .btn {
    padding: 1.1rem 2.5rem;
    font-size: 0.8rem;
    border-radius: 8px;
}

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

.yield-item {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
}

.yield-item.low {
    background-color: var(--bg-warm);
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 12px;
}

.yield-item.high {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--white);
    border: 2px solid var(--accent);
    box-shadow: 0 8px 24px rgba(225, 29, 72, 0.2);
    border-radius: 12px;
}

.yield-value {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

/* FOCO Model */
.foco {
    background: var(--bg-light);
    color: var(--primary);
    position: relative;
}

.foco-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.foco-item {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.foco-item:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(225, 29, 72, 0.12);
}

/* Override inline opacity on foco paragraphs — ensure readability on light backgrounds */
.foco-item p {
    color: var(--text-muted);
    opacity: 1 !important;
    line-height: 1.75;
    font-size: 0.95rem;
}

.foco-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--accent) 0%, #c91d3a 100%);
    color: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.6rem;
    box-shadow: 0 8px 20px rgba(225, 29, 72, 0.25);
}

.foco-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

/* FOCO Highlight Card - Exit Anytime */
.foco-highlight {
    position: relative;
}

.foco-star-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 2.2rem;
    color: #fbbf24;
    z-index: 5;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.5);
    line-height: 1;
}

@media (max-width: 768px) {
    .foco-star-badge {
        top: 14px;
        right: 14px;
        font-size: 1.8rem;
    }

    .foco-tnc {
        display: block;
        margin-top: 1rem;
        font-size: 0.7rem;
        color: #9ca3af;
        letter-spacing: 0.02em;
    }
}

@media (max-width: 480px) {
    .foco-star-badge {
        top: 10px;
        right: 10px;
font-size: 1.5rem;
    }

    .foco-tnc {
        font-size: 0.65rem;
        margin-top: 0.75rem;
    }
}

/* Listings Showcase */
.listings {
    background: linear-gradient(180deg, var(--bg-warm) 0%, #f0ede8 100%);
    position: relative;
}

.listings::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--white) 0%, transparent 100%);
    pointer-events: none;
}

.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
    position: relative;
    z-index: 1;
}

.listing-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

.listing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
    border-color: var(--accent);
}

.listing-img {
    height: 250px;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
}

.listing-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.listing-content .book-now-btn {
    margin-top: auto;
}

.listing-city {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted) !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: var(--bg-light);
    padding: 0.35rem 0.75rem;
    border-radius: 6px;
}

.listing-title {
    font-size: 1.3rem;
    margin: 0.6rem 0;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.01em;
}

/* Slideshow Component */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.slide {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    will-change: opacity;
}

.slide.active {
    display: block;
}

@keyframes fade {
    from { opacity: .4 } 
    to { opacity: 1 }
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%) translateZ(0);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    border-radius: 50%;
    user-select: none;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.15);
    padding: 0;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    background-color: rgba(0,0,0,0.8);
}

.dots-container {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    z-index: 10;
}

.dot {
    cursor: pointer;
    height: 6px;
    width: 20px;
    margin: 0 3px;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 3px;
    display: inline-block;
    transition: all 0.4s ease;
}

.dot.active, .dot:hover {
    background-color: white;
    width: 28px;
}

.book-now-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--primary);
    color: white;
    text-align: center;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    margin-top: 1rem;
    border-radius: 10px;
    transition: var(--transition);
}

.book-now-btn:hover {
    background-color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(225, 29, 72, 0.2);
}


/* Listing Amenities Row */
.listing-amenities {
    display: flex;
    gap: 0.75rem;
    margin: 0.75rem 0;
    flex-wrap: wrap;
}

.listing-amenities span {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

@media (max-width: 768px) {
    .listing-amenities {
        gap: 0.5rem;
    }

    .listing-amenities span {
        font-size: 0.7rem;
    }
}

/* Proof Section */
.proof {
    background: linear-gradient(135deg, var(--primary) 0%, #252525 100%);
    color: var(--white);
    border-top: none;
    position: relative;
    overflow: hidden;
}

.proof::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(225, 29, 72, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.proof p {
    color: rgba(255, 255, 255, 0.75) !important;
}

.proof-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 3rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(225, 29, 72, 0.05);
}

.stat-item:last-child {
    border-right: none;
}

.stat-value {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--accent);
    display: block;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* =====================
   Book Widget Section
   ===================== */
.book-widget-section {
    background: #f2f2f0;
    border-top: 3px solid var(--accent);
    padding: 56px 0 60px;
}

.book-widget-header {
    text-align: center;
    margin-bottom: 2rem;
}

.book-widget-eyebrow {
    display: inline-block;
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.6rem;
}

.book-widget-title {
    font-size: 2rem;
    color: var(--primary);
    letter-spacing: -0.02em;
    margin: 0;
}

.book-widget-card {
    max-width: 880px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 14px;
    border: 1.5px solid rgba(0, 0, 0, 0.09);
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.07);
    overflow: hidden;
}

.book-widget-trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 1.4rem;
    flex-wrap: wrap;
}

.book-widget-trust span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--text-muted);
    font-size: 0.82rem;
    font-weight: 500;
}

.book-widget-trust svg {
    color: var(--accent);
}

@media (max-width: 600px) {
    .book-widget-trust {
        gap: 0.75rem 1.5rem;
    }
    .book-widget-title {
        font-size: 1.6rem;
    }
}

/* Book Widget Mobile */
@media (max-width: 768px) {
    .book-widget-section {
        padding: 40px 16px 50px !important;
    }

    .book-widget-header {
        margin-bottom: 1.5rem;
    }

    .book-widget-eyebrow {
        font-size: 0.65rem;
    }

    .book-widget-title {
        font-size: 1.4rem;
    }

    .book-widget-card {
        border-radius: 10px;
    }

    .book-widget-trust {
        gap: 0.6rem 1rem;
    }

    .book-widget-trust span {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .book-widget-section {
        padding: 35px 12px 40px !important;
    }

    .book-widget-title {
        font-size: 1.2rem;
    }

    .book-widget-trust {
        flex-direction: column;
        gap: 0.5rem;
    }

    .book-widget-trust span {
        font-size: 0.7rem;
    }
}

/* Footer Section */
footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-links h4 {
    margin-bottom: 1.25rem;
    color: var(--accent);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links li {
    margin-bottom: 0.75rem;
    opacity: 0.85;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links li:hover {
    opacity: 1;
}

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

.social-icon {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.social-icon:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
    border-color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Responsive Transitions */
@media (max-width: 1024px) {
    header { padding: 0.75rem 0; }
    .hero h1 { font-size: 3.5rem; }
}

.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

@media (min-width: 769px) {
    .nav-overlay {
        backdrop-filter: blur(3px);
        -webkit-backdrop-filter: blur(3px);
    }
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

body.menu-open {
    overflow: hidden;
}

/* Mobile Menu - Hidden by default on desktop */
.mobile-menu {
    display: none !important;
}

/* =====================
    MOBILE NAVIGATION
    ===================== */
@media (max-width: 768px) {
    /* Base container and section fixes */
    .container {
        padding: 0 16px !important;
    }

    section {
        padding: 60px 0 !important;
    }

    /* Header - Always white background on mobile */
    header {
        padding: 0.6rem 0;
        background: #ffffff !important;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08);
        border-bottom: 1px solid #eee;
        z-index: 9999;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }

    header .header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 12px;
    }

    .logo-img {
        height: 50px !important;
        width: auto !important;
    }

    /* Hide desktop nav on mobile */
    .desktop-nav {
        display: none !important;
    }

    /* Menu Toggle Button */
    .menu-toggle {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: #1a1a1a;
        border-radius: 6px;
        cursor: pointer;
        color: #fff;
        z-index: 1002;
        border: none;
        padding: 0;
    }

    .menu-toggle i {
        width: 20px;
        height: 20px;
    }

    /* Mobile Menu Panel */
    .mobile-menu {
        display: none !important;
        position: fixed;
        top: 0;
        right: 0;
        width: 300px;
        max-width: 85%;
        height: 100vh;
        z-index: 1003;
        -webkit-transform: translateX(100%);
        transform: translateX(100%);
        -webkit-transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .mobile-menu.active {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }

    .mobile-menu.active {
        display: block !important;
    }

    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.25rem;
        background: #1a1a1a;
    }

    .mobile-menu-title {
        color: #fff;
        font-size: 1rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
    }

    .mobile-menu-close {
        background: rgba(255,255,255,0.2);
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        color: #fff;
        padding: 0;
    }

    .mobile-menu-close i {
        width: 18px;
        height: 18px;
    }

    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: calc(100% - 60px);
        background: #fff;
        box-shadow: -5px 0 30px rgba(0,0,0,0.2);
        overflow-y: auto;
    }

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

    .mobile-nav-links li a {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 14px 1.25rem;
        color: #1a1a1a;
        font-size: 0.95rem;
        font-weight: 500;
        text-decoration: none;
    }

    .mobile-nav-links li a i {
        color: #E11D48;
        width: 18px;
        height: 18px;
        flex-shrink: 0;
    }

    .mobile-nav-links .btn {
        margin: 1rem 1.25rem;
        padding: 0.9rem 1.5rem;
        width: calc(100% - 2.5rem);
        text-align: center;
        justify-content: center;
    }

    .mobile-nav-links .btn i {
        width: 16px;
        height: 16px;
    }

    .btn-accent {
        background-color: #E11D48 !important;
        color: #fff !important;
    }

    /* Navigation Divider */
    .nav-divider {
        height: 1px;
        background: #eee;
        margin: 0.5rem 0;
    }

    /* Overlay */
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1002;
    }

    .nav-overlay.active {
        display: block;
    }

    body.menu-open {
        overflow: hidden;
    }

    /* Hero Content */
    .hero { 
        min-height: auto;
        padding: 90px 16px 60px !important;
        background-position: center center;
    }

    .hero-content { 
        text-align: center; 
        padding: 0;
        width: 100%;
        max-width: 100%;
    }

    .hero-content > * {
        margin-left: auto;
        margin-right: auto;
    }

    .hero h1 { 
        font-size: 1.75rem !important; 
        line-height: 1.3;
        margin-bottom: 0.75rem;
        margin-top: 0.5rem;
    }

    .hero-tagline {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
        padding: 0.4rem 0.8rem;
    }
    
    .hero p {
        font-size: 0.95rem !important;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
        max-width: 100% !important;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        margin-top: 1.5rem;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 0.9rem 1.2rem;
        font-size: 0.75rem;
        justify-content: center;
    }

    /* Section Headers */
    .text-center {
        text-align: center !important;
    }

    .text-center h2 {
        font-size: 1.75rem !important;
        margin-top: 0.75rem !important;
        padding: 0 0.5rem;
    }

    .text-center p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
    }

    /* FOCO Section */
    .foco-grid { 
        grid-template-columns: 1fr; 
        gap: 1rem;
        margin-top: 2rem;
    }

    .foco-item {
        padding: 1.5rem 1rem;
    }

    .foco-icon {
        width: 56px;
        height: 56px;
        font-size: 1.4rem;
    }

    .foco-item h3 {
        font-size: 1.05rem;
    }

    .foco-item p {
        font-size: 0.85rem;
        margin-top: 0.5rem !important;
    }

    /* Proof Section */
    .proof {
        padding: 40px 0 !important;
    }

    .proof-stats { 
        flex-direction: column; 
        gap: 0;
        width: 100%;
    }

    .stat-item {
        padding: 1.2rem 1rem;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        width: 100%;
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .stat-value {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.7rem;
    }

    /* Listing Grid */
    .listing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0;
        margin-top: 2rem;
    }

    .listing-card {
        margin-bottom: 0;
    }

    .listing-content {
        padding: 1.25rem;
    }

    .listing-title {
        font-size: 1.15rem;
        margin: 0.5rem 0;
    }

    .listing-city {
        font-size: 0.65rem;
    }

    .listing-meta {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .listing-rating {
        font-size: 0.8rem;
    }

    /* Studio Chips */
    .studio-options {
        gap: 0.4rem;
        padding: 0.6rem;
        justify-content: flex-start;
    }

    .studio-chip {
        font-size: 0.68rem;
        padding: 0.4rem 0.6rem;
    }

    .studio-options-label {
        font-size: 0.6rem;
        width: 100%;
        margin-bottom: 0.25rem;
    }

    /* Slideshow */
    .slideshow-container {
        height: 200px;
    }

    .prev, .next {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .book-now-btn {
        padding: 0.8rem;
        font-size: 0.75rem;
    }

    /* Testimonials */
    .testimonials {
        padding: 60px 0 !important;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 0;
        margin-top: 2rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .quote-icon {
        top: 1.25rem;
        right: 1.25rem;
    }

    /* Blog Grid */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .blog-card-img {
        aspect-ratio: 16/9;
    }

    .blog-card-content {
        padding: 1.25rem;
    }

    .blog-card-title {
        font-size: 1.1rem;
    }

    .blog-card-excerpt {
        font-size: 0.85rem;
    }

    .blog-read-more {
        font-size: 0.75rem;
    }

    /* Flex Header */
    .flex-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.25rem;
        margin-bottom: 2rem !important;
    }

    .flex-header .btn {
        width: 100%;
        max-width: 200px;
    }

    /* Founder Section */
    .founder-section {
        padding: 50px 0 !important;
    }

    .founder-header {
        margin-bottom: 2rem;
    }

    .founder-header .text-accent {
        font-size: 0.8rem;
    }

    .founder-header h2 {
        font-size: 1.6rem;
    }

    .founder-content {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .founder-image {
        width: 140px;
        height: 140px;
    }

    .founder-info {
        max-width: 100%;
        text-align: center;
    }

    .founder-info p {
        font-size: 0.9rem;
    }

    .founder-btn {
        width: 100%;
        max-width: 220px;
    }

    /* CTA Section */
    #cta-section {
        padding: 60px 16px !important;
    }

    #cta-section h2 {
        font-size: 1.8rem !important;
    }

    #cta-section p {
        font-size: 1rem !important;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px !important;
    }

    .btn-cta-primary,
    .btn-cta-outline {
        width: 100%;
        font-size: 0.9rem !important;
    }

    /* Property Owner Banner */
    section[style*="background-color: var(--bg-warm)"] {
        padding: 40px 16px !important;
    }

    section[style*="background-color: var(--bg-warm)"] .container {
        flex-direction: column !important;
        text-align: center;
        gap: 1.5rem !important;
    }

    section[style*="background-color: var(--bg-warm)"] h3 {
        font-size: 1.4rem !important;
    }

    section[style*="background-color: var(--bg-warm)"] p {
        font-size: 0.9rem;
    }

    section[style*="background-color: var(--bg-warm)"] .btn {
        width: 100%;
        max-width: 220px;
    }

    /* Social Media Section */
    section[style*="background-color: var(--primary)"]:last-of-type {
        padding: 40px 16px !important;
    }

    section[style*="background-color: var(--primary)"]:last-of-type h3 {
        font-size: 1.4rem !important;
    }

    section[style*="background-color: var(--primary)"]:last-of-type p {
        font-size: 0.9rem;
    }

    /* Footer */
    footer {
        padding: 40px 0 25px !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
        padding: 0 16px;
    }

    .footer-logo-img {
        margin: 0 auto 0.75rem;
        height: 44px;
    }

    .footer-grid > div:first-child p {
        max-width: 100%;
        margin: 0 auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 0 16px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }

    /* Global */
    h2 {
        font-size: 1.75rem !important;
    }

    section > .container > .text-center h2 {
        font-size: 1.75rem !important;
    }
}

/* Extra Small Devices (480px and below) */
@media (max-width: 480px) {
    :root {
        --container-padding: 12px;
    }
    
    .container { 
        padding: 0 var(--container-padding) !important; 
    }
    
    body {
        font-size: 14px;
    }

    /* Header */
    .logo-img {
        height: 36px !important;
    }

    .menu-toggle {
        width: 34px;
        height: 34px;
    }

    /* Hero */
    .hero {
        padding: 80px 12px 45px !important;
        min-height: auto;
    }
    
    .hero h1 { 
        font-size: 1.45rem !important; 
        margin-bottom: 0.5rem;
        margin-top: 0.4rem;
    }

    .hero-tagline {
        font-size: 0.6rem;
        margin-bottom: 0.4rem;
        padding: 0.35rem 0.6rem;
    }
    
    .hero p {
        font-size: 0.85rem !important;
        margin-bottom: 1rem;
        line-height: 1.5;
    }
    
    .hero-buttons {
        margin-top: 1.25rem;
        gap: 0.6rem;
    }

    .hero-buttons .btn { 
        width: 100%; 
        text-align: center;
        padding: 0.75rem 1rem;
        font-size: 0.7rem;
    }

    /* Sections */
    section {
        padding: 50px 0 !important;
    }

    .text-center h2 {
        font-size: 1.5rem !important;
    }

    .text-center p {
        font-size: 0.85rem;
    }

    /* Proof Section */
    .proof {
        padding: 35px 0 !important;
    }

    .stat-value {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .stat-item {
        padding: 1rem 0.75rem;
    }

    /* Listings */
    .listing-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .slideshow-container {
        height: 170px;
    }
    
    .listing-content {
        padding: 1rem;
    }
    
    .listing-title {
        font-size: 1.05rem;
    }

    .listing-city {
        font-size: 0.6rem;
    }

    .listing-rating {
        font-size: 0.75rem;
    }
    
    .studio-options {
        justify-content: flex-start;
        gap: 0.35rem;
        padding: 0.5rem;
    }
    
    .studio-chip {
        font-size: 0.65rem;
        padding: 0.35rem 0.5rem;
    }

    .studio-options-label {
        font-size: 0.55rem;
    }

    .book-now-btn {
        padding: 0.7rem;
        font-size: 0.7rem;
    }

    /* Slideshow */
    .prev, .next {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .dot {
        height: 5px;
        width: 5px;
        margin: 0 2px;
    }

    /* FOCO */
    .foco-grid {
        gap: 0.85rem;
        margin-top: 1.5rem;
    }

    .foco-item {
        padding: 1rem 0.75rem;
    }

    .foco-icon {
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }

    .foco-item h3 {
        font-size: 0.95rem;
    }

    .foco-item p {
        font-size: 0.8rem;
    }

    /* Testimonials */
    .testimonials-grid {
        gap: 1rem;
    }

    .testimonial-card {
        padding: 1.25rem;
    }

    .testimonial-text {
        font-size: 0.85rem;
    }

    /* Blog */
    .blog-grid {
        gap: 1.25rem;
        margin-top: 1.5rem;
    }

    .blog-card-content {
        padding: 1rem;
    }

    .blog-card-title {
        font-size: 1rem;
    }

    .blog-card-excerpt {
        font-size: 0.8rem;
    }

    .blog-read-more {
        font-size: 0.7rem;
    }

    /* Founder */
    .founder-section {
        padding: 45px 0 !important;
    }
    
    .founder-header h2 {
        font-size: 1.4rem;
    }
    
    .founder-image {
        width: 120px;
        height: 120px;
    }
    
    .founder-info p {
        font-size: 0.85rem;
    }

    /* CTA */
    #cta-section h2 {
        font-size: 1.4rem !important;
    }

    #cta-section p {
        font-size: 0.85rem !important;
    }

    .cta-buttons {
        gap: 10px !important;
    }

    /* Footer */
    footer {
        padding: 35px 0 20px !important;
    }

    .footer-grid {
        gap: 1.25rem;
    }

    .footer-logo-img {
        height: 40px;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .footer-bottom p {
        font-size: 0.75rem;
    }
}

/* Founder Section */
.founder-section {
    background-color: #e8e6e1;
    padding: 80px 0;
}

.founder-header {
    text-align: center;
    margin-bottom: 3rem;
}

.founder-header .text-accent {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
}

.founder-header h2 {
    font-size: 2.5rem;
    margin-top: 0.8rem;
    color: var(--primary);
}

.founder-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.founder-image-wrapper {
    flex-shrink: 0;
}

.founder-image {
    width: 250px;
    height: 250px;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.founder-info {
    flex: 1;
    max-width: 500px;
}

.founder-info p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.founder-info p:last-of-type {
    margin-bottom: 1.5rem;
}

.founder-btn {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    font-size: 0.65rem;
    width: auto;
    min-width: 160px;
    text-align: center;
}

/* Founder Section Mobile Override */
@media (max-width: 768px) {
    .founder-section {
        padding: 50px 0 !important;
    }

    .founder-header h2 {
        font-size: 1.6rem;
    }

    .founder-content {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .founder-image-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .founder-image {
        width: 140px;
        height: 140px;
    }

    .founder-info {
        max-width: 100%;
        text-align: center;
    }

    .founder-info p {
        font-size: 0.9rem;
    }

    .founder-btn {
        width: 100%;
        max-width: 220px;
    }
}

    .founder-header h2 {
        font-size: 2rem;
    }

    .founder-content {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }

    .founder-image-wrapper {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .founder-image {
        width: 200px;
        height: 200px;
    }

    .founder-info {
        max-width: 100%;
        text-align: center;
    }

    .founder-info p {
        font-size: 0.95rem;
    }

    .founder-btn {
        width: 100%;
    }
}

/* Hero mobile improvements */
@media (max-width: 768px) {
    .hero {
        padding: 90px 16px 70px;
        background-attachment: scroll;
        min-height: auto;
        text-align: center;
    }

    .hero::after {
        display: none;
    }

    .hero-content {
        padding: 0;
        margin: 0 auto;
    }

    .hero-tagline {
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 1rem;
    }

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

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .hero > .container > div:first-child {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content .fade-in {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }

    .hero-content .fade-in:last-child {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 75px 12px 50px;
    }
}

/* Extra Small Devices - Very Small (380px) */
@media (max-width: 380px) {
    .hero {
        padding: 75px 10px 40px !important;
    }

    .hero h1 {
        font-size: 1.35rem !important;
    }

    .hero p {
        font-size: 0.8rem !important;
    }

    .hero-buttons .btn {
        max-width: 100%;
        padding: 0.7rem 0.8rem;
        font-size: 0.65rem;
    }

    .logo-img {
        height: 32px !important;
    }

    .menu-toggle {
        width: 32px;
        height: 32px;
    }

    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .listing-title {
        font-size: 1rem;
    }

    .foco-item h3 {
        font-size: 0.9rem;
    }

    .testimonial-text {
        font-size: 0.8rem;
    }

    .blog-card-title {
        font-size: 0.95rem;
    }
}

/* Founder Strip */
.founder-strip {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 30px 0;
}

/* Partner Page Styles */
.partner-page-hero {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.partner-page-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -5%;
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(225,29,72,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.partner-page-hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(225,29,72,0.06) 0%, transparent 70%);
    pointer-events: none;
}

.partner-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.15);
    margin-top: 0;
    position: relative;
    z-index: 10;
}

.partner-info {
    padding: 4rem;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.partner-benefit {
    margin-bottom: 2.5rem;
}

.partner-benefit h4 {
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.partner-benefit p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.partner-form-wrapper {
    padding: 4rem;
}

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

.form-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #64748b;
    margin-bottom: 0.8rem;
}

.form-control {
    width: 100%;
    padding: 0.8rem 0;
    border: none;
    border-bottom: 2px solid #cbd5e1;
    background: transparent;
    font-size: 1.1rem;
    font-family: inherit;
    color: var(--primary);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-bottom-color: var(--accent);
}

.form-group select.form-control {
    cursor: pointer;
}

.form-submit-btn {
    width: 100%;
    margin-top: 1rem;
}

@media (max-width: 992px) {
    section { padding: 100px 0; }
    .partner-card {
        grid-template-columns: 1fr;
        margin-top: 0;
    }
    .partner-info, .partner-form-wrapper {
        padding: 3rem 2rem;
    }
}

/* Partner Page Mobile Styles */
@media (max-width: 768px) {
    .partner-page-hero {
        padding: 100px 16px 60px !important;
    }

    .partner-page-hero h1 {
        font-size: 1.75rem !important;
        margin-top: 0.75rem;
    }

    .partner-page-hero p {
        font-size: 0.95rem !important;
        padding: 0;
    }

    .partner-page-hero .btn {
        width: 100%;
        max-width: 100%;
        padding: 0.9rem 1.2rem;
    }

    .partner-page-hero > div > div {
        flex-direction: column;
        gap: 0.75rem;
    }

    /* Partner Form Section */
    .partner-form-section {
        padding: 60px 0 80px !important;
    }

    .partner-card {
        grid-template-columns: 1fr;
    }

    .partner-info {
        padding: 2.5rem 1.5rem;
        order: 2;
    }

    .partner-info h2 {
        font-size: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .partner-benefit {
        margin-bottom: 1.5rem;
    }

    .partner-benefit h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }

    .partner-benefit p {
        font-size: 0.85rem;
    }

    .partner-form-wrapper {
        padding: 2rem 1.5rem;
        order: 1;
    }

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

    .partner-form-wrapper .form-label {
        font-size: 0.7rem;
    }

    .partner-form-wrapper .form-control {
        font-size: 1rem;
        padding: 0.6rem 0;
    }

    /* Form Grid - Stack on mobile */
    .partner-form-wrapper > form > div[style*="grid"] {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .partner-form-wrapper textarea.form-control {
        min-height: 80px;
    }

    .form-submit-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.8rem;
    }

    /* How It Works Section */
    #how-it-works {
        padding: 60px 0 !important;
    }

    #how-it-works .text-center h2 {
        font-size: 1.6rem !important;
    }

    #how-it-works .text-center p {
        font-size: 0.9rem;
        padding: 0;
    }
}

@media (max-width: 480px) {
    .partner-page-hero {
        padding: 90px 12px 50px !important;
    }

    .partner-page-hero h1 {
        font-size: 1.5rem !important;
    }

    .partner-page-hero p {
        font-size: 0.85rem !important;
        margin: 1rem auto !important;
    }

    .partner-info {
        padding: 2rem 1.25rem;
    }

    .partner-info h2 {
        font-size: 1.3rem !important;
    }

    .partner-form-wrapper {
        padding: 1.5rem 1.25rem;
    }

    .partner-benefit {
        margin-bottom: 1.25rem;
    }

    .yield-item {
        padding: 1.25rem 0.75rem;
    }

    .yield-value {
        font-size: 1.75rem;
    }
}

/* Studio Selection Chips */
.studio-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 1rem;
    padding: 0.8rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.studio-options-label {
    width: 100%;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.studio-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-light);
    transition: var(--transition);
    white-space: nowrap;
}

.studio-chip:hover {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    transform: translateY(-2px);
}

/* Airbnb Rating Styles */
.listing-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-top: 0.5rem;
}

.listing-rating i {
    width: 14px;
    height: 14px;
    fill: var(--accent);
    color: var(--accent);
}

.listing-rating span {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.75rem;
    background: var(--bg-light);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

/* Yield Grid - Hero Section Mobile */
@media (max-width: 768px) {
    .yield-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .yield-item {
        padding: 1.5rem 1rem;
    }

    .yield-value {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .yield-item {
        padding: 1.25rem 0.75rem;
    }

    .yield-value {
        font-size: 1.75rem;
    }

    .yield-item span:last-child {
        font-size: 0.75rem;
    }
}

/* Blog Styles */
.blog-home {
    background: linear-gradient(180deg, var(--bg-warm) 0%, #e9e5dc 100%);
    position: relative;
}

/* Blog Home Header - Centered */
.blog-header {
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-header h2 {
    text-align: center;
}

.blog-header .btn {
    display: inline-block;
}

@media (max-width: 768px) {
    .blog-header {
        margin-bottom: 2rem;
    }

    .blog-header h2 {
        font-size: 1.75rem !important;
    }
}

.blog-home::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 180px;
    background: linear-gradient(180deg, var(--white) 0%, transparent 100%);
    pointer-events: none;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
}

.blog-card > a {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--accent);
}

.blog-card-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
    transition: transform 0.4s ease;
}

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

.blog-card-img-wrapper {
    overflow: hidden;
    width: 100%;
    aspect-ratio: 16/10;
    position: relative;
}

.blog-card-img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.blog-card-content {
    padding: 1.75rem 1.75rem 2rem;
}

.blog-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: inline-block;
    padding: 0.3rem 0.6rem;
    background: rgba(225, 29, 72, 0.08);
    border-radius: 4px;
}

.blog-card-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
    line-height: 1.35;
    font-weight: 700;
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: var(--transition);
}

.blog-read-more:hover {
    color: var(--accent-hover);
    gap: 0.75rem;
}

.blog-card > a:hover {
    text-decoration: none;
    color: inherit;
}

/* Blog Single Page Styles */
.blog-post-header {
    padding: 180px 0 80px;
    background-color: var(--bg-light);
    text-align: center;
}

.blog-post-meta {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
    padding-bottom: 140px;
}

.blog-post-hero-img {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 4px;
    margin-top: -60px;
    margin-bottom: 4rem;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.1);
}

.blog-post-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #334155;
}

.blog-post-text p {
    margin-bottom: 2rem;
}

.blog-post-text h2 {
    margin: 3rem 0 1.5rem;
    font-size: 2rem;
    color: var(--primary);
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(180deg, var(--bg-warm) 0%, #ece9e0 100%);
    padding: 120px 0;
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, var(--white) 0%, transparent 100%);
    pointer-events: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.12);
    border-color: var(--accent);
}

.quote-icon {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--accent);
    opacity: 0.15;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.8rem;
    color: var(--accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Blockquote Style */
blockquote {
    border-left: 4px solid var(--accent);
    margin: 3rem 0;
    padding: 1.5rem 2rem;
    background: var(--bg-light);
    border-radius: 0 4px 4px 0;
    font-style: italic;
    font-size: 1.2rem;
    color: #334155;
    line-height: 1.8;
}

/* Contact Link Styles */
.contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

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