
/* Base Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Typography & Colors */
:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f9f8f6;
    --accent-color: #8c6239; /* Walnut brown */
    --accent-hover: #6a4a2b;
    --light-bg: #ffffff;
    --text-muted: #737373;
    --glass-bg: rgba(255, 255, 255, 0.7);
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Navigation */
header {
    position: fixed;
    top: 20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: calc(100% - 40px);
    max-width: 1200px;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Pill background isolated to prevent containing block trap for mobile nav */
header::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --- Phase 1: Custom Cursor (Aura Style) --- */
.custom-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 20px; height: 20px;
    border: 2px solid var(--accent-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    /* Added transform to transition for smoother follower feel */
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease, border-color 0.3s ease, transform 0.1s ease-out;
    display: none;
    mix-blend-mode: normal;
}

@media (pointer: fine) {
    .custom-cursor { display: block; }
}

.custom-cursor.hovered {
    width: 60px; height: 60px;
    background-color: var(--accent-color);
    border-color: transparent;
    opacity: 0.2;
}

.custom-cursor.hidden {
    opacity: 0;
}

/* --- Phase 2: Scroll Progress Indicator --- */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: var(--accent-color);
    z-index: 10000;
    width: 0%;
    pointer-events: none;
}

header.scrolled {
    top: 10px;
    max-width: 1000px;
}

header.scrolled::before {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 12px 30px;
    transition: padding 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

header.scrolled nav {
    padding: 8px 30px;
}

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

.logo img {
    height: 45px;
    width: auto;
    transition: height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

header.scrolled .logo img {
    height: 35px;
}

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

.nav-links li a {
    position: relative;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-color);
    transition: all 0.3s ease;
    display: inline-block;
}

.nav-links li a::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-color: var(--accent-color);
    border-radius: 30px;
    z-index: -1;
    transform: scale(0.5);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav-links li a:hover {
    color: white;
}

.nav-links li a:hover::before {
    transform: scale(1);
    opacity: 1;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    width: 30px;
    height: 24px;
    justify-content: center;
    align-items: flex-end;
}

.hamburger span {
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 2px;
}

.hamburger span:nth-child(1) { width: 100%; }
.hamburger span:nth-child(2) { width: 70%; }
.hamburger span:nth-child(3) { width: 100%; display: none; } /* Hide 3rd bar for modern look */

.hamburger:hover span:nth-child(2) {
    width: 100%;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(4px) rotate(45deg);
    width: 100%;
}

.hamburger.active span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    header {
        top: 15px;
        width: calc(100% - 30px);
    }
    
    header.scrolled {
        top: 10px;
    }

    nav {
        padding: 10px 20px;
    }

    .hamburger {
        display: flex;
        position: relative;
        z-index: 2001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%; /* Slide in from right */
        left: auto;
        flex-direction: column;
        width: 100vw;
        height: 100vh;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        z-index: 2000;
        justify-content: center;
        text-align: center;
        padding: 0;
        overflow-y: auto;
        opacity: 0;
        pointer-events: none;
        transition: right 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease;
        border-radius: 0;
    }

    .nav-links.active {
        right: 0;
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links li {
        margin: 10px 0;
        opacity: 0;
        transform: translateX(50px); /* Slide text from right */
        transition: transform 0.4s ease, opacity 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateX(0);
    }

    /* Staggered link animation */
    .nav-links.active li:nth-child(1) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.5s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.6s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.7s; }

    .nav-links li a {
        font-family: 'Playfair Display', serif;
        font-size: 2.5rem;
        padding: 10px 20px;
    }
    
    .nav-links li a::before {
        display: none; /* Disable pill hover on mobile text */
    }
    
    .nav-links li a:hover {
        color: var(--accent-color);
    }
}

/* Hero Section */
.hero {
    min-height: 60vh;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(26, 26, 26, 0.5), rgba(26, 26, 26, 0.7)), url('assets/hero-image-aradhya-furniture.webp') no-repeat center center;
    background-size: cover;
    padding: 80px 20px;
    color: white;
    position: relative;
}

.hero h1 {
    font-size: 4.5rem;
    color: white;
    font-weight: 600;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.15rem;
    max-width: 700px;
    color: #e5e7eb;
    margin-bottom: 40px;
    font-weight: 300;
}

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

.btn {
    padding: 16px 36px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid white;
}

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

/* Sections */
.section {
    max-width: 1280px;
    margin: 100px auto;
    padding: 0 20px;
    text-align: center;
}

/* Split Section */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    text-align: left;
}

.split-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

@media(max-width: 768px) {
    .split-section { grid-template-columns: 1fr; }
}

/* Grid Layouts for Products/Gallery */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.card {
    background: var(--light-bg);
    padding: 50px 30px;
    border-radius: 4px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.5s ease;
}

/* Asymmetrical Grid Layout (Phase 2) */
.asymmetric-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .asymmetric-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: 350px;
    }
    
    .asymmetric-grid .img-card {
        height: 100%;
        margin-bottom: 0;
    }

    /* Asymmetrical Editorial Look */
    .asymmetric-grid .img-card:nth-child(6n + 1) { grid-column: span 2; grid-row: span 2; }
    .asymmetric-grid .img-card:nth-child(6n + 2) { grid-column: span 1; grid-row: span 1; }
    .asymmetric-grid .img-card:nth-child(6n + 3) { grid-column: span 1; grid-row: span 1; }
    .asymmetric-grid .img-card:nth-child(6n + 4) { grid-column: span 1; grid-row: span 2; }
    .asymmetric-grid .img-card:nth-child(6n + 5) { grid-column: span 2; grid-row: span 1; }
    .asymmetric-grid .img-card:nth-child(6n + 6) { grid-column: span 2; grid-row: span 1; }
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.06);
}

/* Image Cards */
.img-card {
    position: relative;
    height: 450px;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    text-align: left;
    cursor: pointer;
}

.img-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 0;
    will-change: transform;
}

.img-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 30%, rgba(0,0,0,0.85));
    transition: opacity 0.5s ease;
    z-index: 1;
}

.img-card-content {
    position: relative;
    z-index: 2;
    color: white;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.img-card:hover .img-card-bg {
    transform: scale(1.08);
}

.img-card:hover .img-card-content {
    transform: translateY(0);
}

.img-card h3 { color: white; margin-bottom: 5px; }

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 28px;
    border: 1px solid #e5e5e5;
    background: transparent;
    color: var(--text-muted);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
}

.filter-btn.active, .filter-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.gallery-item-hidden {
    display: none !important;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    backdrop-filter: blur(10px);
}

.lightbox-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    box-shadow: 0 0 40px rgba(0,0,0,0.5);
    border-radius: 4px;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 30px; right: 40px;
    color: white;
    font-size: 40px;
    cursor: pointer;
    background: none;
    border: none;
    transition: transform 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.1) rotate(90deg);
}

.lightbox-prev, .lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background-color: var(--accent-color);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* Service Cards */
.service-card {
    background: var(--light-bg);
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.service-img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
    flex-grow: 1;
}

.service-content h3 {
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.service-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* Gallery Album Cards */
.album-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0,0,0,0.6);
    color: white;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(5px);
    z-index: 3;
    letter-spacing: 0.5px;
}

.img-card p {
    color: #e5e7eb;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Pricing Cards */
.pricing-card {
    background: var(--light-bg);
    border-radius: 6px;
    padding: 50px 40px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.03);
    text-align: center;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border: 1px solid rgba(0,0,0,0.03);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.08);
}

.pricing-card.featured {
    border: 2px solid var(--accent-color);
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(140, 98, 57, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: white;
    padding: 6px 20px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-price {
    font-size: 2.5rem;
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
    margin: 20px 0 10px;
}

.pricing-price span {
    font-size: 1rem;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
}

.pricing-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li::before {
    content: '✓';
    color: var(--accent-color);
    font-weight: bold;
}

/* Timeline / Process */
.timeline {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    overflow-x: auto;
    padding: 40px 10px;
    text-align: left;
    margin-top: 30px;
}

.timeline-step {
    flex: 1;
    min-width: 250px;
    position: relative;
    padding-top: 30px;
    border-top: 2px solid #e5e5e5;
    transition: border-color 0.3s ease;
}

.timeline-step:hover {
    border-color: var(--accent-color);
}

.timeline-step::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 0;
    width: 12px;
    height: 12px;
    background: var(--light-bg);
    border: 2px solid var(--accent-color);
    border-radius: 50%;
}

/* Special Offer Banner */
.offer-banner {
    background: linear-gradient(rgba(26, 26, 26, 0.85), rgba(26, 26, 26, 0.85)), url('assets/gallery/Fiber-Texture-Finish-Decent-colour-brown-cream-set-with-desgin-elegant%20desgin-made-premium.jpg') center/cover fixed;
    color: var(--secondary-color);
    padding: 100px 20px;
    text-align: center;
    margin: 100px auto;
    position: relative;
}

.offer-banner h2 {
    color: var(--secondary-color);
}

/* --- Phase 2: Noise Texture for Dark Backgrounds --- */
.hero::before, .offer-banner::before, .premium-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Inline SVG for high-performance organic grain */
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* Footer */
.premium-footer {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 100px 20px 30px;
    text-align: left;
    margin-top: auto;
    position: relative;
}

/* Ensure content sits above the noise overlay */
.hero > *, .offer-banner > *, .footer-grid, .footer-bottom {
    position: relative; z-index: 1;
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 80px;
}

.footer-brand h2 {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.footer-brand p {
    color: #a3a3a3;
    max-width: 300px;
    font-weight: 300;
}

.footer-links h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

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

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #a3a3a3;
    font-weight: 300;
    transition: color 0.3s;
}

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

.footer-newsletter input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #404040;
    padding: 12px 0;
    color: white;
    margin-bottom: 20px;
    outline: none;
    transition: border-color 0.3s;
}

.footer-newsletter input:focus {
    border-color: var(--accent-color);
}

.footer-bottom {
    max-width: 1280px;
    margin: 0 auto;
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #737373;
    font-size: 0.9rem;
    font-weight: 300;
}

@media(max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Premium Wipe Reveal Animation */
.reveal-wipe {
    opacity: 0;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
    transition: clip-path 1.2s cubic-bezier(0.77, 0, 0.175, 1), opacity 1.2s ease-out;
}

.reveal-wipe.visible {
    opacity: 1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

/* Keyframes */
@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* Loading Overlay */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    position: relative;
}

.spinner::before, .spinner::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: var(--accent-color);
    opacity: 0.6;
    top: 0;
    left: 0;
    animation: pulse-ring 2s infinite ease-in-out;
}

.spinner::after {
    animation-delay: -1s;
}

@keyframes pulse-ring {
    0%, 100% { transform: scale(0); }
    50% { transform: scale(1); }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

/* Pricing Variants List */
.variant-list {
    list-style: none;
    margin-top: 15px;
    text-align: left;
}

.variant-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.95rem;
}

.variant-list li:last-child {
    border-bottom: none;
}

.variant-list strong {
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Testimonials Carousel */
.testimonials-section {
    background: url('assets/gallery/coffee-brown-with-parallel-holow-pattern-extra-premium-degin-ultra-confort-degin-simple-minimalistic-aradhya-furniture.jpg') center/cover;
    padding: 120px 20px;
    position: relative;
}

.glass-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 60px;
    border-radius: 4px;
    color: white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.testimonials-section h2 {
    color: white;
}

.carousel-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    padding: 40px 20px;
    box-sizing: border-box;
}

.testimonial-slide .stars {
    font-size: 1.1rem;
    margin-bottom: 10px;
    letter-spacing: 3px;
    color: #eab308;
}

.testimonial-slide p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 15px;
    font-weight: 300;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

/* FAQ Accordion */
.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s ease;
}

.faq-question:hover, .faq-item.active .faq-question { color: var(--accent-color); }
.faq-question .icon { font-size: 1.5rem; font-weight: 300; transition: transform 0.4s ease; }
.faq-item.active .faq-question .icon { transform: rotate(45deg); color: var(--accent-color); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding-bottom: 25px; color: var(--text-muted); font-weight: 300; line-height: 1.8; }

/* Enhanced Mobile Design */
@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
        min-height: 40vh; /* Let content dictate height to prevent excessive horizontal cropping */
        background-position: center;
    }
    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 15px;
    }
    .hero-actions .btn {
        width: 100%;
    }
    .section {
        margin: 60px auto;
    }
    .split-section {
        gap: 30px;
    }
    .timeline {
        flex-direction: column;
        padding: 20px 0;
    }
    .timeline-step {
        border-top: none;
        border-left: 2px solid #e5e5e5;
        padding-top: 0;
        padding-left: 30px;
        padding-bottom: 30px;
    }
    .timeline-step::before {
        top: 0;
        left: -7.5px;
    }
    .offer-banner, .testimonials-section {
        padding: 60px 20px;
        margin: 60px auto;
    }
    .glass-card {
        padding: 30px 20px;
    }
    .img-card {
        height: 350px;
    }
    .lightbox-prev, .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .footer-brand h2 {
        font-size: 2rem;
    }
    .premium-footer {
        padding: 60px 20px 30px;
    }
}
