/* --- CSS Reset & Variables --- */
:root {
    --color-black: #050505;
    --color-dark: #121212;
    --color-gold: #D4AF37;
    --color-gold-light: #F3E5AB;
    --color-gold-dark: #AA8C2C;
    --color-white: #ffffff;
    --color-gray: #a0a0a0;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(212, 175, 55, 0.15);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
}

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

/* --- Typography & Utilities --- */
.gold-text {
    color: var(--color-gold);
}

.metallic-text {
    background: linear-gradient(to right, #BF953F, #FCF6BA, #B38728, #FBF5B7, #AA771C);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.glass-card {
    background: rgba(20, 20, 20, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), inset 0 0 0 1px rgba(255,255,255,0.05);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px 0 rgba(212, 175, 55, 0.1);
}

/* --- Loader & Intro --- */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--color-black);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease-out;
}

.logo-reveal {
    position: relative;
    overflow: hidden;
}

.logo-reveal h1 {
    font-size: 3rem;
    letter-spacing: 5px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 1s forwards 0.5s;
}

.logo-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 50%, rgba(128,186,232,0) 99%, rgba(125,185,232,0) 100%);
    transform: skewX(-20deg);
    animation: shine 2s infinite 1.5s;
}

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

@keyframes shine {
    100% {
        left: 200%;
    }
}

/* --- Header / Navigation --- */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;
    z-index: 1000;
    transition: var(--transition-smooth);
    background: transparent;
}

.glass-nav.scrolled {
    background: rgba(5, 5, 5, 0.9);
    backdrop-filter: blur(15px);
    padding: 15px 50px;
    border-bottom: 1px solid var(--glass-border);
}

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

.nav-logo span {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 600;
    font-size: 1rem;
    position: relative;
}

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

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

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.mobile-menu-btn:hover {
    color: var(--color-gold);
}

/* Mobile Navigation Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: var(--transition-smooth);
}

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

.close-menu-btn {
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.close-menu-btn:hover {
    color: var(--color-gold);
    transform: rotate(90deg);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 30px;
    text-align: center;
}

.mobile-nav-links a {
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.btn-primary, .btn-primary-small {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-black);
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-small {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.btn-primary::before, .btn-primary-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: all 0.5s ease;
}

.btn-primary:hover::before, .btn-primary-small:hover::before {
    left: 100%;
}

.btn-primary:hover, .btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--color-white);
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: 600;
    border: 1px solid var(--color-white);
    text-transform: uppercase;
}

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

/* --- Floating Buttons --- */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: white;
    z-index: 999;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    animation: pulse 2s infinite;
}

.wa-btn {
    right: 30px;
    background-color: #25D366;
}

.call-btn {
    left: 30px;
    background-color: var(--color-gold);
    color: var(--color-black);
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(212, 175, 55, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(212, 175, 55, 0); }
}

.wa-btn {
    animation: pulse-wa 2s infinite;
}

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

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-reveal {
    position: relative;
}

.loader-img-logo {
    width: 250px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 0 40px rgba(212, 175, 55, 0.5);
    animation: scaleUpLogo 1.5s ease-out forwards;
    position: relative;
    z-index: 2;
}

@keyframes scaleUpLogo {
    0% { transform: scale(0.7); opacity: 0; }
    50% { transform: scale(1.05); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    opacity: 0.6; /* Dimmed slightly to let glows show through */
}

/* Ambient Glowing Orbs */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    opacity: 0.5;
    animation: floatGlow 15s infinite alternate ease-in-out;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(212, 175, 55, 0.4);
    top: -100px;
    left: -100px;
}

.glow-2 {
    width: 500px;
    height: 500px;
    background: rgba(170, 140, 44, 0.3);
    bottom: -150px;
    right: -100px;
    animation-delay: -5s;
}

.glow-3 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.1);
    top: 30%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes floatGlow {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(50px, 50px) scale(1.2); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(5,5,5,0.7) 0%, rgba(5,5,5,0.95) 100%);
    z-index: -1;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
}

.hero-title {
    font-size: 5rem;
    margin-bottom: 20px;
    text-shadow: 0 10px 30px rgba(0,0,0,1), 0 0 20px rgba(212, 175, 55, 0.3);
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 30px;
    color: #cccccc;
    text-shadow: 0 4px 10px rgba(0,0,0,0.8);
}

.hero-tagline {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--color-gold);
    font-style: italic;
    margin-bottom: 50px;
    text-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

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

/* Hero Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
}

.stagger-1 { transition: all 1s ease 0.2s; }
.stagger-2 { transition: all 1s ease 0.4s; }
.stagger-3 { transition: all 1s ease 0.6s; }
.stagger-4 { transition: all 1s ease 0.8s; }

.animate-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* --- Common Sections --- */
section {
    padding: 100px 50px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--color-gray);
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

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

/* --- Stats Section --- */
.stats-section {
    padding: 60px 50px;
    background: var(--color-dark);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.stat-card h3 {
    display: inline-block;
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 10px;
}

.stat-card span {
    font-size: 3.5rem;
    font-weight: 800;
}

.stat-card p {
    font-size: 1.1rem;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.progress-indicator {
    height: 3px;
    width: 0;
    background: var(--color-gold);
    margin: 15px auto 0;
    transition: width 1.5s ease-out;
}

.scroll-reveal.visible .progress-indicator {
    width: 50%;
}

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

.service-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.service-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--color-gray);
}

/* --- Map Section --- */
.map-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.placeholder-map {
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 30px;
}

.placeholder-map i {
    margin-bottom: 20px;
}

.coverage-list {
    list-style: none;
    margin-top: 30px;
}

.coverage-list li {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* --- Timeline Section --- */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.timeline-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--color-gold);
    transition: height 2s ease;
}

.scroll-reveal.visible .timeline-line::after {
    height: 100%;
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.5s ease;
}

.scroll-reveal.visible .timeline-item {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal.visible .timeline-item:nth-child(2) { transition-delay: 0.2s; }
.scroll-reveal.visible .timeline-item:nth-child(3) { transition-delay: 0.4s; }
.scroll-reveal.visible .timeline-item:nth-child(4) { transition-delay: 0.6s; }
.scroll-reveal.visible .timeline-item:nth-child(5) { transition-delay: 0.8s; }
.scroll-reveal.visible .timeline-item:nth-child(6) { transition-delay: 1.0s; }
.scroll-reveal.visible .timeline-item:nth-child(7) { transition-delay: 1.2s; }
.scroll-reveal.visible .timeline-item:nth-child(8) { transition-delay: 1.4s; }

.timeline-dot {
    position: absolute;
    left: 41px;
    top: 20px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--color-black);
    border: 3px solid var(--color-gold);
    z-index: 2;
    box-shadow: 0 0 10px var(--color-gold);
}

.timeline-content {
    padding: 20px 30px;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* --- Testimonials Slider --- */
.testimonials-section {
    background: var(--color-dark);
}

.slider-container {
    overflow: hidden;
    padding: 20px 0;
}

.slider-track {
    display: flex;
    gap: 30px;
    animation: scroll 20s linear infinite;
    width: max-content;
}

.slider-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-350px * 4 - 30px * 4)); }
}

.testimonial-card {
    width: 350px;
    padding: 30px;
    flex-shrink: 0;
}

.testimonial-card .stars {
    color: var(--color-gold);
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-gray);
    margin-bottom: 20px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #333;
}

.client-name {
    font-weight: 600;
}

/* --- Calculator & Contact --- */
.calculator-container, .contact-form-wrapper, .map-wrapper {
    padding: 50px;
}

.calc-form, .contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

label {
    font-weight: 600;
    color: var(--color-gray);
}

input, select, textarea {
    width: 100%;
    padding: 15px;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 5px;
    color: var(--color-white);
    font-family: var(--font-body);
    outline: none;
    transition: border-color 0.3s;
}

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

.w-100 {
    width: 100%;
}

.calc-result {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.calc-result h3 {
    font-size: 2rem;
}

.small-text {
    font-size: 0.8rem;
    color: var(--color-gray);
    margin-top: 10px;
}

.hidden {
    display: none;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.google-map {
    height: 300px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 1.2rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* --- Footer --- */
.main-footer {
    background: #000;
    padding: 80px 50px 20px;
    border-top: 1px solid var(--glass-border);
}

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

.footer-brand h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.footer-tagline {
    margin-top: 20px;
    color: var(--color-gray);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

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

.footer-services span {
    display: inline-block;
    margin: 5px 0;
    color: var(--color-gray);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-gray);
    font-size: 0.9rem;
}

/* --- Projects & Gallery Page --- */
.page-hero {
    padding-top: 150px;
    padding-bottom: 50px;
    text-align: center;
    background: radial-gradient(circle at top, rgba(212, 175, 55, 0.1) 0%, var(--color-black) 70%);
}

.gallery-section {
    padding: 20px 50px 100px;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background: var(--color-dark);
    color: var(--color-white);
    border: 1px solid var(--glass-border);
    padding: 10px 25px;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    transition: var(--transition-smooth);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}

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

.gallery-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    transition: bottom 0.4s ease;
}

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

.gallery-item:hover .gallery-overlay {
    bottom: 0;
}

.gallery-overlay h3 {
    color: var(--color-gold);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.gallery-overlay i {
    position: absolute;
    top: -30px;
    right: 20px;
    font-size: 2rem;
    color: var(--color-white);
    opacity: 0;
    transition: opacity 0.4s ease 0.2s;
}

.gallery-item:hover .gallery-overlay i {
    opacity: 1;
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.lightbox.hidden {
    opacity: 0;
    pointer-events: none;
}

.lightbox img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2);
}

.lightbox-caption {
    margin-top: 20px;
    font-size: 1.5rem;
    color: var(--color-gold);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.lightbox-close:hover {
    color: var(--color-gold);
}

/* --- About Snapshot Section --- */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text {
    padding: 40px;
}

/* --- Why Choose Us Section --- */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    padding: 40px 30px;
    text-align: center;
}

.why-card i {
    margin-bottom: 20px;
}

.why-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* --- FAQ Section --- */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
}

.faq-item {
    border-bottom: 1px solid var(--glass-border);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: transparent;
    border: none;
    color: var(--color-white);
    font-size: 1.2rem;
    font-weight: 600;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
    transition: var(--transition-smooth);
}

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

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
    color: var(--color-gold);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer p {
    padding-bottom: 20px;
    color: var(--color-gray);
    line-height: 1.8;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem; }
    .stats-container { grid-template-columns: 1fr 1fr; gap: 40px; }
    .contact-container, .map-container, .about-grid { grid-template-columns: 1fr; }
    .footer-content { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .glass-nav { padding: 15px 20px; }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .mobile-menu-btn { display: block; }
    .hero-section { height: auto; min-height: 100vh; padding-top: 140px; padding-bottom: 100px; }
    .hero-title { font-size: 2.5rem; }
    .hero-subtitle { font-size: 1.2rem; }
    .hero-tagline { font-size: 1.5rem; }
    .hero-actions { flex-direction: column; align-items: center; gap: 15px; }
    .hero-actions a { width: 100%; max-width: 300px; text-align: center; }
    .stats-container { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; justify-content: center; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .main-footer { padding-bottom: 120px; }
    section { padding: 60px 20px; }
}
