:root {
    --primary: #000000;
    --primary-light: #111827;
    --accent: #E11D48 !important; /* Vibrant Premium Red matching logo - Forced Sync */
    --accent-hover: #BE123C !important; /* Slightly darker for hover */
    --text-main: #F9FAFB;
    --text-muted: #9CA3AF;
    --bg-light: #F9FAFB;
    --bg-dark: #000000;
    --white: #FFFFFF;
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --glass: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
}

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

body {
    font-family: 'Outfit', sans-serif;
    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; }
h2 { line-height: 1.2; }

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

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

ul {
    list-style: none;
}

section {
    padding: 140px 0;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    border-radius: 4px; /* More sophisticated with less rounding */
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    border: none; /* Removed default borders */
    outline: none;
    font-family: inherit;
    text-decoration: none;
}

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

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(225, 29, 72, 0.3); /* Updated to match logo red */
}

.btn-outline {
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn-outline:hover {
    background-color: var(--accent);
    color: var(--primary);
}

/* Header/Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
}

header.scrolled,
header.header-solid {
    background-color: var(--white);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.5rem 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid #f1f5f9;
}

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

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

header.scrolled .logo-img,
header.header-solid .logo-img {
    height: 150px; /* Increased and unified with standard state */
    filter: none; /* Keep original logo colors (red circle) */
    opacity: 1;
}

/* Fix header button text color and consistency */
header.scrolled .nav-links a.btn-primary,
header.header-solid .nav-links a.btn-primary {
    color: var(--white);
    background-color: var(--accent);
    opacity: 1;
}

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

header.scrolled .btn-primary,
header.header-solid .btn-primary {
    color: var(--white);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-img {
    height: 150px; /* Increased and unified with scrolled state */
    width: auto;
    filter: drop-shadow(0 0 10px rgba(0,0,0,0.2));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.85rem;
    opacity: 0.7;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

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

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.8rem;
    color: var(--white);
    transition: var(--transition);
}

header.scrolled .menu-toggle,
header.header-solid .menu-toggle {
    color: var(--primary);
    filter: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7)), url('hero_bg.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: clamp(2.2rem, 8vw, 4.5rem);
    line-height: 1.1;
    margin-top: 84px;
    margin-bottom: 2rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

/* Problem Section */
.problem {
    background-color: var(--white);
}

.problem-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.problem-card {
    background: var(--white);
    padding: 4rem;
    border-radius: 4px;
    border: 1px solid #f1f5f9;
    box-shadow: var(--shadow);
}

.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: #f1f5f9;
}

.yield-item.high {
    background-color: var(--primary);
    color: var(--white);
    border: 2px solid var(--accent);
}

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

/* FOCO Model */
.foco {
    background-color: var(--bg-dark);
    color: var(--white);
}

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

.foco-item {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.foco-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.foco-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
}

/* Listings Showcase */
.listings {
    background-color: var(--bg-light);
}

.listing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
}

.listing-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

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

.btn-airbnb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 0.8rem;
    background: var(--accent); /* Unified with brand red */
    color: white;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.btn-airbnb:hover {
    background: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(225, 29, 72, 0.3);
}

.btn-airbnb i {
    width: 14px;
    height: 14px;
}

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

.listing-content {
    padding: 1.5rem;
}

.listing-city {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent) !important;

    text-transform: uppercase;
    letter-spacing: 1px;
}

.listing-title {
    font-size: 1.4rem;
    margin: 0.8rem 0;
    color: var(--primary);
    font-weight: 600;
}

/* Slideshow Component */
.slideshow-container {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.slide {
    display: none;
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    animation: fade 1.5s ease-in-out;
}

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

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -22px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    background-color: rgba(0,0,0,0.3);
    z-index: 10;
}

.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: 8px;
    width: 8px;
    margin: 0 2px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

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

.book-now-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: var(--primary);
    color: white;
    text-align: center;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
    margin-top: 1.5rem;
    border-radius: 4px;
    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);
}


/* Proof Section */
.proof {
    background-color: var(--white);
    border-top: 1px solid #f1f5f9;
}

.proof-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 500;
}

/* Founder Section */
.founder {
    background-color: var(--bg-light);
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
    align-items: center;
}

.founder-img {
    width: 100%;
    aspect-ratio: 4/5;
    background: #e2e8f0;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
}

.founder-text h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.founder-title {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 2rem;
    display: block;
}

/* Footer Section */
footer {
    background-color: var(--bg-dark);
    color: var(--white);
    padding: 80px 0 40px;
}

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

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

.footer-logo-img {
    height: 150px; /* Increased to match header scale */
    width: auto;
    margin-bottom: 2rem;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: var(--accent);
}

.footer-links li {
    margin-bottom: 1rem;
    opacity: 0.7;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

@media (max-width: 992px) {
    section { padding: 100px 0; }
    .problem-grid, .founder-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    
    .founder-img {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }

    .nav-links {
        display: flex;
        flex-direction: column;
        justify-content: center;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        padding: 2rem;
        transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 1.5rem 0;
    }

    .nav-links a {
        color: var(--primary);
        font-size: 1.5rem;
        font-weight: 600;
    }

    .hero-content { text-align: center; }
    .hero h1 { font-size: 2.5rem; }
    
    .foco-grid { grid-template-columns: 1fr; }
    .proof-stats { flex-direction: column; gap: 4rem; }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .footer-logo-img { margin: 0 auto 2rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.5rem; }
    .hero h1 { font-size: 2.2rem; }
    .btn { width: 100%; text-align: center; margin: 0.5rem 0 !important; }
}

/* Partner Page Styles */
.partner-page-hero {
    padding: 180px 0 80px;
    background-color: var(--bg-light);
}

.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.1);
    margin-top: -100px;
    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-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 #f1f5f9;
    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) {
    .partner-card {
        grid-template-columns: 1fr;
        margin-top: 0;
    }
    .partner-info, .partner-form-wrapper {
        padding: 3rem 2rem;
    }
}

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

.listing-rating i {
    width: 14px;
    height: 14px;
    fill: #fbbf24;
    color: #fbbf24;
}

.listing-rating span {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 0.8rem;
}

/* Blog Styles */
.blog-home {
    background-color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.blog-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    border-bottom: 1px solid #f1f5f9;
}

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

.blog-card-img {
    width: 100%;
    aspect-ratio: 16/10;
    background-size: cover;
    background-position: center;
    background-color: #e2e8f0;
}

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

.blog-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.blog-card-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
    line-height: 1.3;
}

.blog-card-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    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.85rem;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

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

/* 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-color: var(--white);
    padding: 140px 0;
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 3.5rem;
    border-radius: 4px;
    position: relative;
    transition: var(--transition);
    border: 1px solid #f1f5f9;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}

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

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

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

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