:root {
    /* Colors - Premium Earthy Palette */
    --color-bg: #FDFBF7; /* Off-white / Cream */
    --color-bg-light: #F4EFE8; /* Soft Sand for sections */
    --color-text: #2D3730; /* Dark slate green for text */
    --color-text-light: #6A726C; /* Subtle text */
    --color-primary: #1F2B22; /* Very dark rich green */
    --color-accent: #C3996A; /* Soft elegant gold / sand */
    --color-accent-hover: #A47D4F;
    --color-white: #FFFFFF;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Utility */
h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 400;
}

p {
    margin-bottom: 1rem;
}

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

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

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

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.9rem;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-text .lucide {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-fast);
}

.btn-text:hover .lucide {
    transform: translateX(4px);
}

.btn-full {
    width: 100%;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 1.5rem 0;
    transition: all var(--transition-smooth);
}

.navbar.scrolled {
    background-color: var(--color-white);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.navbar.scrolled .logo,
.navbar.scrolled .nav-links a,
.navbar.scrolled .menu-toggle {
    color: var(--color-primary);
}

.navbar.scrolled .btn-primary {
    color: var(--color-white);
}

/* Scroll Animations Base */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    visibility: hidden;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

/* Stagger delays for grid items */
.mosaic-item:nth-child(1).reveal { transition-delay: 0.1s; }
.mosaic-item:nth-child(2).reveal { transition-delay: 0.2s; }
.mosaic-item:nth-child(3).reveal { transition-delay: 0.3s; }
.mosaic-item:nth-child(4).reveal { transition-delay: 0.4s; }
.mosaic-item:nth-child(5).reveal { transition-delay: 0.5s; }

.process-step:nth-child(1).reveal { transition-delay: 0.1s; }
.process-step:nth-child(2).reveal { transition-delay: 0.3s; }
.process-step:nth-child(3).reveal { transition-delay: 0.5s; }

.trust-item:nth-child(1).reveal { transition-delay: 0.1s; }
.trust-item:nth-child(2).reveal { transition-delay: 0.2s; }
.trust-item:nth-child(3).reveal { transition-delay: 0.3s; }

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-white);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.logo span {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 300;
    display: block;
    letter-spacing: 3px;
    color: var(--color-accent);
}

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

.nav-links a:not(.btn-primary) {
    color: var(--color-white);
    font-size: 0.95rem;
    font-weight: 400;
}

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

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end; /* Text at the bottom */
    padding-bottom: 5rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../assets/hero.png');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient specifically to darken the bottom half for text readability */
    background: linear-gradient(to bottom, rgba(31, 43, 34, 0.2) 0%, rgba(31, 43, 34, 0.7) 70%, rgba(31, 43, 34, 0.9) 100%);
    z-index: -1;
}

.hero-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
}

.hero-text-wrapper {
    max-width: 700px;
    color: var(--color-white);
    animation: fadeInUp 1s ease forwards;
}

.hero-subtitle {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: clamp(3rem, 5vw, 4.5rem);
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

/* General Section */
.section {
    padding: 8rem 0;
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent);
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-text {
    color: var(--color-text-light);
    max-width: 600px;
}

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

.text-center .section-text, .text-center .section-title {
    margin-left: auto;
    margin-right: auto;
}

.bg-light {
    background-color: var(--color-bg-light);
}

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

.bg-primary .section-title,
.bg-primary h3,
.bg-primary strong {
    color: var(--color-white);
}

.bg-primary p,
.bg-primary .faq-inner {
    color: rgba(255, 255, 255, 0.8);
}

.bg-primary .review-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: none;
}
.bg-primary .review-card p,
.bg-primary .review-card strong {
    color: var(--color-white);
}

/* About Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 500;
}

.feature-item .lucide {
    color: var(--color-accent);
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--color-accent);
    z-index: 0;
}

.about-image-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    background-color: var(--color-primary);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 1.2rem;
    opacity: 0.8;
}

/* Catalog */
.section-header {
    margin-bottom: 4rem;
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.property-card {
    background: var(--color-white);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.property-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

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

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--color-white);
    color: var(--color-primary);
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.card-title {
    font-size: 1.4rem;
    font-family: var(--font-body);
    font-weight: 500;
}

.card-specs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.card-specs .lucide {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
}

.card-price {
    font-size: 1.5rem;
    font-weight: 400;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: auto;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.service-card {
    padding: 3rem 2rem;
    background: var(--color-white);
    border-top: 3px solid transparent;
    transition: all var(--transition-smooth);
    text-align: center;
}

.service-card:hover {
    border-top-color: var(--color-accent);
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
}

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

.service-card h3 {
    font-size: 1.3rem;
    font-family: var(--font-body);
    font-weight: 500;
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Contact */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 0; /* Handled via negative margins for full bleed or inside container */
}

/* Modified to be a block inside */
.contact-wrapper {
    padding: 5rem;
}

.contact .section-title {
    color: var(--color-white);
}

.contact-details {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

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

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

.contact-form {
    background: var(--color-white);
    padding: 3rem;
    color: var(--color-text);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0,0,0,0.1);
    font-family: var(--font-body);
    background: var(--color-bg);
    transition: border-color var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

/* Footer */
.footer {
    background: #141b16; /* Even darker green */
    color: rgba(255,255,255,0.6);
    padding: 3rem 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer .logo {
    color: var(--color-white);
    margin-bottom: 0.5rem;
    display: block;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a:hover {
    color: var(--color-white);
}

/* --- NEW SECTIONS --- */

/* Trust Bar */
.trust-bar {
    background: var(--color-bg);
    padding: 3rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}
.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 2rem;
}
.trust-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.trust-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-light);
}

/* Intent Section */
.intent-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.intent-card {
    position: relative;
    height: 400px;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 3rem;
    text-decoration: none;
    color: var(--color-white);
    background-color: var(--color-primary);
    background-size: cover;
    background-position: center;
    transition: transform var(--transition-fast);
}
.intent-buy { background-image: url('https://picsum.photos/id/1055/800/800'); }
.intent-sell { background-image: url('https://picsum.photos/id/1011/800/800'); }
.intent-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
    transition: opacity var(--transition-fast);
}
.intent-card:hover { transform: translateY(-5px); }
.intent-card:hover::before { opacity: 0.9; }
.intent-content {
    position: relative;
    z-index: 2;
}
.intent-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

/* Mosaic UVP Collage */
.mosaic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 450px);
    gap: 1.5rem;
    margin-top: 4rem;
}

.mosaic-item {
    position: relative;
    overflow: hidden;
    color: var(--color-white);
    background: var(--color-primary);
}

.mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--transition-smooth);
    opacity: 0.7;
}

.mosaic-item:hover img {
    transform: scale(1.1);
    opacity: 0.8;
}

.mosaic-main {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.mosaic-content {
    position: absolute;
    inset: 0;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(31, 43, 34, 0.95) 0%, rgba(31, 43, 34, 0.4) 60%, rgba(31, 43, 34, 0) 100%);
    z-index: 2;
}

.mosaic-content .lucide {
    width: 48px;
    height: 48px;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    stroke-width: 1.2;
}

.mosaic-content h3 {
    color: var(--color-white);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.mosaic-content p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.mosaic-item:hover p {
    opacity: 1;
    transform: translateY(0);
}

/* Asymmetric overrides */
.mosaic-item:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
.mosaic-item:nth-child(3) { grid-column: 2 / 3; grid-row: 2 / 3; }
.mosaic-item:nth-child(4) { grid-column: 3 / 4; grid-row: 1 / 2; }
.mosaic-item:nth-child(5) { grid-column: 3 / 4; grid-row: 2 / 3; }

/* Responsivity for Mosaic */
@media (max-width: 1100px) {
    .mosaic-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .mosaic-main {
        grid-column: 1 / 3;
        height: 500px;
    }
    .mosaic-item {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .mosaic-grid {
        grid-template-columns: 1fr;
    }
    .mosaic-main, .mosaic-item {
        grid-column: auto;
        grid-row: auto;
        height: 400px;
    }
}

/* About Split Article */
.about-split-article {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.about-image-side .lukas-img {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    border-radius: 0;
}
.about-signature {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0,0,0,0.1);
}
.about-signature strong { display: block; font-family: var(--font-heading); font-size: 1.5rem; color: var(--color-primary); }
.about-signature span { color: var(--color-text-light); }

/* Process Section */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}
.process-step {
    position: relative;
    padding: 2.5rem;
    background: var(--color-bg-light);
    border-radius: 0;
    overflow: hidden;
}
.process-step .step-number {
    position: absolute;
    top: -15px;
    right: 10px;
    font-family: var(--font-heading);
    font-size: 8rem;
    color: var(--color-white);
    opacity: 0.7;
    line-height: 1;
    z-index: 0;
}
.process-step h3, .process-step p { position: relative; z-index: 1; }

/* Stats (Why Costa del Sol) */
.stats-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
}
.stat-box {
    background: var(--color-white);
    padding: 2rem 1.5rem;
    border-radius: 0;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.stat-val {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 0.2rem;
}
.stat-desc {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-transform: uppercase;
    font-weight: 500;
}
.stats-img-side img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 0;
}

/* Filterable Catalog */
.catalog-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 0.6rem 1.5rem;
    background: transparent;
    border: 1px solid var(--color-text-light);
    color: var(--color-text);
    border-radius: 0;
    cursor: pointer;
    font-family: var(--font-body);
    transition: all var(--transition-fast);
}
.filter-btn:hover, .filter-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.property-overlay-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 3/2;
    cursor: pointer;
}
.property-overlay-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}
.property-overlay-card:hover img {
    transform: scale(1.05);
}
.po-content {
    position: absolute;
    inset: 0;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 60%, rgba(0,0,0,0) 100%);
    color: var(--color-white);
}
.po-badge {
    align-self: flex-start;
    background: var(--color-accent);
    color: var(--color-white);
    padding: 0.4rem 1rem;
    border-radius: 0;
    font-size: 0.8rem;
    font-weight: 500;
}
.po-bottom h3 {
    color: var(--color-white);
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}
.po-specs {
    font-size: 0.9rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}
.po-price {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--color-accent);
}
.property-overlay-card.hidden {
    display: none;
}

/* Reels */
.reels-slider-wrapper {
    margin-top: 3rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scrollbar-width: none;
}
.reels-slider-wrapper::-webkit-scrollbar { display: none; }
.reels-grid {
    display: flex;
    gap: 1.5rem;
    min-width: max-content;
    padding: 0 5%;
}
.reel-item {
    position: relative;
    width: 280px;
    height: 500px;
    border-radius: 0;
    overflow: hidden;
    display: block;
}
.reel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}
.reel-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    transition: transform var(--transition-fast);
}
.reel-item:hover .reel-play {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--color-accent);
}
.reel-item:hover img {
    transform: scale(1.03);
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}
.review-card {
    background: var(--color-white);
    padding: 3rem 2rem;
    border-radius: 0;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.review-card .stars {
    color: var(--color-accent);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    letter-spacing: 2px;
}
.review-card p {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}
.review-card strong {
    font-family: var(--font-heading);
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 3rem auto 0;
}
.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}
.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 0;
    background: transparent;
    border: none;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question i {
    transition: transform var(--transition-fast);
}
.faq-question.active i {
    transform: rotate(180deg);
}
.faq-answer {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows var(--transition-smooth);
}
.faq-inner {
    overflow: hidden;
    color: var(--color-text-light);
    line-height: 1.6;
}
.faq-question.active + .faq-answer {
    grid-template-rows: 1fr;
}
.faq-question.active + .faq-answer .faq-inner {
    padding-bottom: 1.5rem;
}

/* Footer Newsletter */
.footer-newsletter {
    max-width: 400px;
}
.footer-newsletter h4 {
    color: var(--color-white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}
.newsletter-form {
    display: flex;
    gap: 0.5rem;
}
.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 4px;
    background: rgba(255,255,255,0.1);
    color: var(--color-white);
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.5); }
.newsletter-form button {
    padding: 0 1.5rem;
    background: var(--color-accent);
    color: var(--color-white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background var(--transition-fast);
}
.newsletter-form button:hover {
    background: var(--color-accent-hover);
}
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.social-links a {
    color: rgba(255,255,255,0.5);
    transition: color var(--transition-fast);
}
.social-links a:hover {
    color: var(--color-white);
}

@media (max-width: 900px) {
    .trust-grid { grid-template-columns: 1fr; gap: 1rem; }
    .trust-number { font-size: 2.5rem; }
    .intent-grid { grid-template-columns: 1fr; }
    .about-split-article { grid-template-columns: 1fr; gap: 3rem; }
    .process-grid { grid-template-columns: 1fr; }
    .stats-split { grid-template-columns: 1fr; gap: 3rem; }
    .catalog-filters { gap: 0.5rem; }
    .filter-btn { font-size: 0.9rem; padding: 0.5rem 1rem; }
    .footer-container { flex-direction: column; align-items: flex-start; }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Swiper Locations Slider */
.locations-slider-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 4rem 4rem; /* room for arrows and pagination */
}

.swiper {
    width: 100%;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.swiper-slide {
    background-position: center;
    background-size: cover;
    width: 350px;
    height: 480px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 3rem 1.5rem 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
    color: var(--color-white);
    text-align: left;
}

.slide-content h3 {
    color: var(--color-white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.slide-content p {
    font-size: 0.95rem;
    margin-bottom: 0;
    opacity: 0.9;
}

/* Custom Navigation Buttons */
.swiper-btn-prev, .swiper-btn-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-fast);
}

.swiper-btn-prev:hover, .swiper-btn-next:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.swiper-btn-prev { left: 1rem; }
.swiper-btn-next { right: 1rem; }

/* Custom Pagination - Stretched Dot */
.swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.4) !important;
    opacity: 1 !important;
    transition: all var(--transition-smooth) !important;
    border-radius: 50%;
}

.swiper-pagination-bullet-active {
    background: var(--color-white) !important;
    width: 32px !important;
    border-radius: 10px !important;
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-wrapper {
        padding: 3rem 2rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    
    .swiper-slide {
        width: 280px;
        height: 380px;
    }
    .locations-slider-wrapper {
        padding: 0 0 3rem;
    }
    .swiper-btn-prev, .swiper-btn-next {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        transition: right var(--transition-smooth);
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links a:not(.btn-primary) {
        color: var(--color-primary);
        font-size: 1.2rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .navbar.scrolled .menu-toggle {
        color: var(--color-primary);
    }

    .hero-cta {
        flex-direction: column;
    }
}
