:root {
    /* Color Palette - Dark & Gold Luxury Theme */
    --bg-dark: #0a0a0c;
    --bg-card: rgba(20, 20, 24, 0.7);
    --primary-gold: #D4AF37;
    --primary-gold-hover: #b5952f;
    --text-light: #f8f9fa;
    --text-muted: #a0a0a5;
    --accent-glow: rgba(212, 175, 55, 0.2);
    
    /* Typography */
    --font-sans: 'Outfit', system-ui, -apple-system, sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    /* Transitions & Shadows */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --shadow-glass: 0 10px 40px rgba(0, 0, 0, 0.6);
    --border-glass: 1px solid rgba(255, 255, 255, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

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

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

.highlight-gold {
    color: var(--primary-gold);
    font-style: italic;
    font-weight: 600;
}

.highlight-dark {
    color: var(--primary-gold);
}

.section-subtitle {
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.85rem;
    color: var(--primary-gold);
    margin-bottom: 1rem;
    display: inline-block;
    border-bottom: 1px solid var(--primary-gold);
    padding-bottom: 4px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto 3rem;
}

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

/* Layout */
.container {
    max-width: 1250px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-gold);
    color: #111;
    border: 1px solid var(--primary-gold);
}

.btn-primary:hover {
    background-color: var(--primary-gold-hover);
    box-shadow: 0 0 25px var(--accent-glow);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
}

.btn-outline:hover {
    background-color: rgba(212, 175, 55, 0.15);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.1rem 2.8rem;
    font-size: 1.05rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Glassmorphism Classes */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 16px;
    border: var(--border-glass);
    box-shadow: var(--shadow-glass);
    overflow: hidden;
}

.glass-card {
    background: linear-gradient(145deg, rgba(35, 35, 45, 0.6), rgba(15, 15, 20, 0.8));
    backdrop-filter: blur(12px);
    border: var(--border-glass);
    border-radius: 16px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

.light-glass {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.hover-lift:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7), 0 0 25px var(--accent-glow);
}

/* Navigation - Enhanced Readability */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: linear-gradient(to bottom, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
}

.navbar.scrolled {
    background: rgba(10, 10, 12, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

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

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

.site-logo {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    background: rgba(0,0,0,0.4);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}

.navbar.scrolled .nav-links {
    background: transparent;
    border: none;
    backdrop-filter: none;
}

.nav-links a {
    text-decoration: none;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
    position: relative;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
}

.mobile-nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 12, 0.98);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-bottom: var(--border-glass);
}

.mobile-nav.open {
    max-height: 500px;
    padding: 1rem 0 2rem;
}

.mobile-link {
    padding: 1rem 2rem;
    text-decoration: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-link:hover {
    color: var(--primary-gold);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 2rem;
    background-image: url('https://cdn.prod.website-files.com/699ebbd3edd263d82560e2fe/69f885ec444b84e19641c0b2_Roach_Cicada(2849%20B)_Ext_Cam05%20Day%20View_V3_24-03-2026.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10,10,12,0.4) 0%, rgba(10,10,12,0.7) 60%, var(--bg-dark) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 950px;
    margin-top: 6rem;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.5);
    border-radius: 30px;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    background: rgba(212, 175, 55, 0.1);
    backdrop-filter: blur(5px);
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 15px rgba(0,0,0,0.8);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #eaeaea;
    max-width: 750px;
    margin: 0 auto 3.5rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
    margin-bottom: 4rem;
    background: rgba(0,0,0,0.4);
    padding: 1.5rem 3rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 2rem;
    font-family: var(--font-serif);
    color: var(--primary-gold);
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #ccc;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background-color: rgba(255,255,255,0.2);
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #fff;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.mouse {
    width: 24px;
    height: 36px;
    border: 2px solid #fff;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--primary-gold);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

/* Overview Section */
.overview {
    position: relative;
}

.overview-image {
    padding: 0;
}

.content-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 500px;
    transition: transform 0.7s ease;
}

.overview-image:hover .content-img {
    transform: scale(1.05);
}

.feature-bullets {
    margin-top: 2rem;
}

.bullet {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #ddd;
}

.bullet-icon {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

/* Highlights Section */
.highlights {
    background: radial-gradient(circle at top right, #1a1a24 0%, #050505 100%);
}

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

.hc-value {
    font-size: 4rem;
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.hc-label {
    font-size: 1.2rem;
    font-weight: 500;
    color: #fff;
    margin-bottom: 1rem;
}

.hc-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Configurations */
.config-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.config-card {
    background: var(--bg-card);
    border: var(--border-glass);
    border-radius: 16px;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.config-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.premium-card {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
    transform: scale(1.05);
    z-index: 2;
    background: linear-gradient(145deg, rgba(30, 30, 35, 0.8), rgba(15, 15, 18, 0.95));
}

.premium-card:hover {
    transform: scale(1.05) translateY(-8px);
    border-color: var(--primary-gold);
}

.badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-gold);
    color: #000;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(212,175,55,0.4);
}

.config-header {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.config-header h3 {
    font-size: 2rem;
    font-family: var(--font-sans);
}

.config-body {
    flex-grow: 1;
    margin-bottom: 2.5rem;
}

.config-stat {
    margin-bottom: 1.8rem;
}

.config-stat .label {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
}

.config-stat .value {
    display: block;
    font-size: 1.3rem;
    color: #fff;
    font-weight: 500;
}

/* Amenities Section */
.amenities {
    background: url('https://roachcicada.in/wp-content/uploads/sites/47/2026/02/Roach-Cicada-Mainview-3.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.amenities::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 12, 0.85);
    backdrop-filter: blur(5px);
}

.amenities .container {
    position: relative;
    z-index: 2;
}

.tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.tab-btn {
    background: transparent;
    border: none;
    color: #bbb;
    font-size: 1.15rem;
    font-family: var(--font-sans);
    padding: 1rem 2.5rem;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: var(--transition-smooth);
    font-weight: 500;
    letter-spacing: 1px;
}

.tab-btn.active {
    color: var(--primary-gold);
    border-bottom-color: var(--primary-gold);
}

.tab-btn:hover:not(.active) {
    color: #fff;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

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

.amenity-item {
    border: var(--border-glass);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition-smooth);
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.5);
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.amenity-item.with-bg {
    background-size: cover;
    background-position: center;
}

.amenity-item.with-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 100%);
    transition: var(--transition-smooth);
}

.amenity-item.with-bg:hover::before {
    background: linear-gradient(0deg, rgba(0,0,0,0.8) 0%, rgba(212,175,55,0.3) 100%);
}

.amenity-overlay {
    position: relative;
    z-index: 2;
    padding: 1.5rem;
    width: 100%;
    margin-top: auto;
}

.amenity-overlay span {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.amenity-item.text-only {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
}

.amenity-item.text-only:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
}

.amenity-item.text-only span {
    font-size: 1.1rem;
    font-weight: 500;
    color: #eee;
}

.a-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(212,175,55,0.4));
}

/* Gallery Section */
.gallery {
    background: #08080a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 350px;
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-item {
    padding: 0;
    overflow: hidden;
}

.gallery-item.span-2 {
    grid-column: span 2;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.08);
}

/* Location */
.location {
    background: linear-gradient(135deg, #050505 0%, #1a1a22 100%);
}

.distance-list {
    list-style: none;
    margin-top: 3rem;
}

.distance-list li {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.dist-icon {
    font-size: 2.2rem;
    background: rgba(212, 175, 55, 0.1);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 15px rgba(212,175,55,0.1);
}

.dist-info strong {
    display: block;
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
    font-family: var(--font-sans);
}

.dist-info span {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
}

.map-wrapper {
    height: 500px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
}

/* Contact */
.contact {
    background: radial-gradient(circle at center, #1a1a24 0%, #050505 100%);
}

.white-text { color: #fff; }
.white-text-muted { color: #bbb; margin-bottom: 3rem; font-size: 1.1rem; }

.info-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

.info-block h4 {
    font-family: var(--font-sans);
    color: var(--primary-gold);
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-block p, .info-block a {
    color: #ddd;
    text-decoration: none;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-form {
    padding: 3.5rem;
}

.contact-form h3 {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
}

.contact-form p {
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.6rem;
    font-size: 0.9rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input, .form-group select {
    width: 100%;
    padding: 1.2rem;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    color: #fff;
    font-family: var(--font-sans);
    transition: var(--transition-smooth);
    font-size: 1rem;
}

.form-group input:focus, .form-group select:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(0,0,0,0.6);
    box-shadow: 0 0 15px rgba(212,175,55,0.2);
}

/* Footer */
.footer {
    padding: 5rem 2rem 3rem;
    background-color: #030303;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-logo-img {
    height: 60px;
    margin-bottom: 2rem;
}

.rera {
    color: #ddd;
    font-size: 1rem;
    margin-bottom: 2.5rem;
}

.disclaimer {
    color: #666;
    font-size: 0.85rem;
    max-width: 850px;
    margin: 0 auto 2rem;
}

.copyright {
    color: #555;
    font-size: 0.9rem;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUpAnim 1s forwards cubic-bezier(0.2, 0.8, 0.2, 1);
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeUpAnim {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* Responsive */
@media (max-width: 1200px) {
    .nav-links {
        gap: 1.5rem;
    }
    .hero-title {
        font-size: 4.5rem;
    }
}

@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .config-grid {
        grid-template-columns: 1fr;
    }
    .premium-card {
        transform: scale(1);
    }
    .premium-card:hover {
        transform: translateY(-8px);
    }
    .hero-title {
        font-size: 4rem;
    }
    .amenity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .layout-grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .nav-links, .nav-cta {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .stat-divider {
        width: 60px;
        height: 1px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 250px;
    }
    
    .gallery-item.span-2 {
        grid-column: span 1;
    }
    
    .info-blocks {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 3rem;
    }
    .highlights-grid {
        grid-template-columns: 1fr;
    }
    .amenity-grid {
        grid-template-columns: 1fr;
    }
    .amenity-item {
        height: 180px;
    }
}

/* FAQ Accordion */
.faq {
    background: linear-gradient(135deg, #050505 0%, #1a1a22 100%);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: var(--border-glass);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    text-align: left;
    color: var(--text-light);
    font-family: var(--font-sans);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition-smooth);
}

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

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

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

.faq-item.active {
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 5px 20px rgba(0,0,0,0.5);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    padding: 0 2rem 1.5rem;
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
}
