@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400&family=Inter:wght@300;400;500&family=Raleway:wght@300;400;500&display=swap');

:root {
    --gold: #C9A84C;
    --gold-light: #E5C97C;
    --ivory: #FAF7F2;
    --charcoal: #2B2B2B;
    --charcoal-light: #4A4A4A;
    --burgundy: #7C1836;
    --ruby: #7C1836;
    --sapphire: #162B4A;
    --forest: #1E3B2D;
    
    --font-heading: 'Cormorant Garamond', serif;
    --font-subhead: 'Raleway', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
    font-family: var(--font-body);
    background: radial-gradient(circle at 50% 0%, #FFFDF8 0%, var(--ivory) 100%);
    color: var(--charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none; /* Custom Cursor */
}

.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 9998;
    background: url('data:image/svg+xml;utf8,<svg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"><filter id="noiseFilter"><feTurbulence type="fractalNoise" baseFrequency="0.8" numOctaves="3" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noiseFilter)" opacity="0.04"/></svg>');
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1150px;
    margin: 0 auto;
}

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    background-color: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

.custom-cursor.hover {
    width: 40px;
    height: 40px;
    background-color: rgba(201, 168, 76, 0.4);
    border: 1px solid var(--gold);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    line-height: 1.2;
}

.subheading {
    font-family: var(--font-subhead);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    color: var(--gold);
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

header.scrolled {
    background: rgba(250, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    padding: 10px 0;
}

header.scrolled a {
    color: var(--charcoal);
}

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

.logo img {
    height: 60px;
    transition: var(--transition);
}

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

nav ul li a {
    font-family: var(--font-subhead);
    font-size: 0.9rem;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 5px;
    color: var(--ivory);
}

header.scrolled nav ul li a {
    color: var(--charcoal);
}

nav ul li a.active,
header.scrolled nav ul li a.active {
    color: var(--gold);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: var(--transition);
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    color: var(--ivory);
}

header.scrolled .mobile-menu-btn {
    color: var(--charcoal);
}

/* Buttons */
.btn {
    font-family: var(--font-subhead);
    display: inline-block;
    padding: 14px 35px;
    background-color: var(--charcoal);
    color: var(--ivory);
    border: 1px solid var(--charcoal);
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.4), transparent);
    transition: all 0.6s ease;
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-gold {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--ivory);
}

.btn-outline {
    background-color: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}

.btn-outline:hover {
    background-color: var(--charcoal);
    color: var(--ivory);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    background-color: var(--charcoal);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: var(--ivory);
    max-width: 800px;
    padding-top: 80px;
}

.hero h1 {
    font-size: 5.5rem;
    margin: 20px 0;
    line-height: 1.1;
    font-style: italic;
}

.hero h1 .word-reveal {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero h1 .word-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-tags {
    font-family: var(--font-subhead);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
    opacity: 0.8;
}

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

.trust-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 15px 0;
    z-index: 2;
}

.trust-strip .container {
    display: flex;
    justify-content: space-around;
    font-family: var(--font-subhead);
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: var(--ivory);
    text-transform: uppercase;
}

/* Bento Grid */
.categories-bento {
    padding: 120px 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
    margin-top: 50px;
}

.bento-card {
    position: relative;
    overflow: hidden;
    background-color: var(--charcoal);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    cursor: none;
    border-radius: 8px;
    border: 1px solid rgba(201, 168, 76, 0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.bento-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
    transition: transform 0.8s ease, opacity 0.8s ease;
    z-index: 0;
}

.bento-card:hover img {
    transform: scale(1.05);
    opacity: 0.4;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    z-index: 1;
}

.bento-card-content {
    position: relative;
    z-index: 2;
    color: var(--ivory);
    width: 100%;
}

.bento-card h3 {
    font-size: 2rem;
    margin-bottom: 10px;
    font-style: italic;
}

.bento-card p {
    font-size: 0.9rem;
    font-family: var(--font-subhead);
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.bento-card:hover p {
    opacity: 1;
    transform: translateY(0);
}

.bento-card .explore-arrow {
    position: absolute;
    right: 30px;
    bottom: 30px;
    color: var(--gold);
    font-size: 1.5rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--transition);
}

.bento-card:hover .explore-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Specific Grid Placements */
.bento-festive { grid-column: 1 / 3; grid-row: 1 / 3; }
.bento-corporate { grid-column: 3 / 5; grid-row: 1 / 2; }
.bento-occasional { grid-column: 3 / 4; grid-row: 2 / 3; }
.bento-premium { grid-column: 4 / 5; grid-row: 2 / 3; }

/* About Brand Strip */
.about-strip {
    background-color: var(--forest);
    color: var(--ivory);
    padding: 120px 0;
    display: flex;
    align-items: center;
}

.about-strip-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-quote {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 40px;
    font-style: italic;
    color: var(--gold);
}

.pillars {
    display: flex;
    gap: 40px;
    font-family: var(--font-subhead);
    font-size: 1.1rem;
    letter-spacing: 1px;
}

.pillar {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pillar i {
    color: var(--gold);
    font-size: 1.5rem;
}

.about-img img {
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

/* Our Process */
.process-section {
    padding: 80px 0;
    background-color: var(--ivory);
    text-align: center;
    position: relative;
}

.watermark-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 15vw;
    color: rgba(201, 168, 76, 0.03);
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    user-select: none;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 1px;
    background-color: var(--gold);
    opacity: 0.3;
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
    flex: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background-color: var(--ivory);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-size: 1.5rem;
    transition: var(--transition);
}

.process-step:hover .step-icon {
    background-color: var(--gold);
    color: var(--ivory);
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(201, 168, 76, 0.2);
}

.process-step h4 {
    font-family: var(--font-subhead);
    font-size: 1.1rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--charcoal-light);
    max-width: 200px;
    margin: 0 auto;
}

/* Deep Dive Sections */
.deep-dive {
    padding: 80px 0;
    position: relative;
}

.deep-dive:nth-child(even) {
    background-color: #F5F2EB; /* slightly darker ivory */
}

.deep-dive-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.deep-dive:nth-child(even) .deep-dive-grid {
    direction: rtl;
}

.deep-dive:nth-child(even) .deep-dive-content {
    direction: ltr;
}

.deep-dive-img {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.deep-dive-img img {
    transition: transform 1s ease;
}

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

.deep-dive-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-style: italic;
}

.deep-dive-content p {
    font-size: 1.1rem;
    color: var(--charcoal-light);
    margin-bottom: 40px;
}

.deep-dive-actions {
    display: flex;
    gap: 20px;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background-color: var(--ivory);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.quote-mark {
    font-family: var(--font-heading);
    font-size: 15rem;
    color: rgba(201, 168, 76, 0.1);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    line-height: 0;
}

.testimonial-carousel {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 1s ease;
}

.testimonial-slide.active {
    display: block;
}

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

.stars {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-quote {
    font-size: 2rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.4;
}

.testimonial-author {
    font-family: var(--font-subhead);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Occasions Wheel / Tabs */
.occasions-section {
    padding: 80px 0;
    background-color: var(--charcoal);
    color: var(--ivory);
    position: relative;
}

.occasions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.occasions-tabs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.occasion-tab {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: rgba(250, 247, 242, 0.3);
    cursor: none;
    transition: var(--transition);
    text-align: left;
    background: none;
    border: none;
    outline: none;
}

.occasion-tab:hover, .occasion-tab.active {
    padding-left: 20px;
}

.occasion-tab[data-target="img-diwali"]:hover, .occasion-tab[data-target="img-diwali"].active { color: var(--gold); }
.occasion-tab[data-target="img-wedding"]:hover, .occasion-tab[data-target="img-wedding"].active { color: var(--ruby); }
.occasion-tab[data-target="img-corporate"]:hover, .occasion-tab[data-target="img-corporate"].active { color: var(--sapphire); }
.occasion-tab[data-target="img-personal"]:hover, .occasion-tab[data-target="img-personal"].active { color: var(--gold-light); }

.occasions-display {
    position: relative;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
}

.occasion-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.occasion-image.active {
    opacity: 1;
}

/* CTA Band */
.cta-band {
    background-color: var(--charcoal);
    color: var(--ivory);
    text-align: center;
    padding: 80px 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    position: relative;
}

.cta-band h2 {
    font-size: 3rem;
    font-style: italic;
    margin-bottom: 10px;
}

.cta-band p {
    font-family: var(--font-subhead);
    margin-bottom: 40px;
    color: var(--gold);
}

/* Footer */
footer {
    background-color: var(--forest);
    color: var(--ivory);
    padding: 100px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-col h4 {
    font-family: var(--font-subhead);
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    color: var(--gold);
}

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

.footer-col ul li {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: rgba(250, 247, 242, 0.7);
}

.footer-col ul li a:hover {
    color: var(--gold);
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
    border-bottom: 1px solid rgba(250, 247, 242, 0.3);
}

.newsletter-input {
    background: transparent;
    border: none;
    color: var(--ivory);
    padding: 10px 0;
    flex: 1;
    font-family: var(--font-body);
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-btn {
    background: transparent;
    border: none;
    color: var(--gold);
    cursor: none;
    font-family: var(--font-subhead);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 10px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--gold);
    color: var(--forest);
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(250, 247, 242, 0.1);
    font-size: 0.85rem;
    color: rgba(250, 247, 242, 0.5);
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

/* Modal Popup */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--ivory);
    width: 90%;
    max-width: 600px;
    padding: 50px;
    border-radius: 8px;
    position: relative;
    transform: translateY(50px);
    transition: var(--transition);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2rem;
    background: none;
    border: none;
    cursor: none;
    color: var(--charcoal);
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(43, 43, 43, 0.2);
    background: transparent;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    border-color: var(--gold);
}

/* Scroll Reveal Classes */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Floating WhatsApp */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* Responsive */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .bento-festive { grid-column: 1 / 3; grid-row: 1; height: 300px;}
    .bento-corporate { grid-column: 1 / 2; grid-row: 2; height: 300px;}
    .bento-occasional { grid-column: 2 / 3; grid-row: 2; height: 300px;}
    .bento-premium { grid-column: 1 / 3; grid-row: 3; height: 300px;}
    
    .about-strip-grid, .deep-dive-grid, .occasions-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3.5rem; }
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--ivory);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    nav ul.show { display: flex; }
    nav ul li a { color: var(--charcoal); }
    .mobile-menu-btn { display: block; }
    
    .process-timeline { flex-direction: column; gap: 40px; }
    .process-timeline::before {
        left: 40px;
        top: 0;
        width: 1px;
        height: 100%;
    }
    
    .bento-grid { grid-template-columns: 1fr; }
    .bento-festive, .bento-corporate, .bento-occasional, .bento-premium {
        grid-column: 1; grid-row: auto; height: 250px;
    }
    
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 10px; }
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--ivory);
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

#preloader.loaded {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    max-width: 200px;
    animation: pulseLogo 2s infinite ease-in-out;
}

@keyframes pulseLogo {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

/* Hairline Borders */
.hairline-bottom {
    border-bottom: 1px solid rgba(201, 168, 76, 0.3);
}

.hairline-top {
    border-top: 1px solid rgba(201, 168, 76, 0.3);
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--ivory);
    position: relative;
}

.faq-container {
    max-width: 800px;
    margin: 50px auto 0;
}

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

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: none; /* custom cursor applies */
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--charcoal);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-icon {
    font-size: 1.2rem;
    color: var(--gold);
    transition: transform 0.4s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    color: var(--charcoal-light);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-top: 15px;
}
