/* ==========================================================================
   AURA RESORT & SPA - CORE STYLES & LUXURY DESIGN SYSTEM
   ========================================================================== */

/* --- CSS Variables & Color Palette --- */
:root {
    /* Color Palette */
    --clr-gold: #D4AF37;
    --clr-gold-light: #F3E5AB;
    --clr-gold-dark: #AA820A;
    --clr-navy: #0B132B;
    --clr-navy-light: #1C2541;
    --clr-beige: #F9F6F0;
    --clr-beige-dark: #EFE8DC;
    --clr-emerald: #1B4D3E;
    --clr-emerald-dark: #0F3328;
    --clr-white: #FFFFFF;
    --clr-dark: #121212;
    --clr-gray-100: #F8F9FA;
    --clr-gray-300: #DEE2E6;
    --clr-gray-600: #6C757D;
    --clr-gray-900: #212529;

    /* Applied Theme Variables */
    --bg-main: var(--clr-white);
    --bg-surface: var(--clr-beige);
    --bg-card: var(--clr-white);
    --text-primary: var(--clr-navy);
    --text-secondary: var(--clr-gray-600);
    --border-color: rgba(0, 0, 0, 0.08);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);

    /* Fonts */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Transitions */
    --transition-fast: 0.25s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Dark Theme Overrides */
[data-theme="dark"] {
    --bg-main: #0A0E17;
    --bg-surface: #111827;
    --bg-card: #1F2937;
    --text-primary: #F3F4F6;
    --text-secondary: #9CA3AF;
    --border-color: rgba(255, 255, 255, 0.1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* --- Global Reset & Base Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

h1, h2, h3, h4, .logo-text {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

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

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

/* --- Layout Containers & Utilities --- */
.container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
}

.max-w-800 {
    max-width: 800px;
}

.section-padding {
    padding: 6rem 0;
}

.grid {
    display: grid;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.8rem; }
.gap-4 { gap: 3rem; }

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

.bg-light { background-color: var(--bg-surface); }
.bg-dark { background-color: var(--clr-navy); }
.text-white { color: var(--clr-white); }
.text-gold { color: var(--clr-gold); }
.text-light { color: rgba(255, 255, 255, 0.8); }
.text-light-sm { color: rgba(255, 255, 255, 0.6); font-size: 0.875rem; }

/* Section Header Typography */
.section-tagline {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--clr-gold);
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

/* --- Buttons System --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-sm {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 1.2rem 2.5rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

.btn-gold {
    background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-dark) 100%);
    color: var(--clr-white);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

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

.btn-outline-light:hover {
    background-color: var(--clr-white);
    color: var(--clr-navy);
}

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

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

/* --- Scroll Progress Bar --- */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--clr-gold);
    width: 0%;
    z-index: 2000;
    transition: width 0.1s linear;
}

/* --- Utility Bar --- */
.utility-bar {
    background-color: var(--clr-navy);
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.utility-left, .utility-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.utility-item i {
    color: var(--clr-gold);
    margin-right: 0.4rem;
}

.dropdown-select select {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
}

.dropdown-select select option {
    background-color: var(--clr-navy);
    color: var(--clr-white);
}

.theme-btn {
    background: rgba(255, 255, 255, 0.1);
    color: var(--clr-gold);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast);
}

.theme-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* --- Main Navigation Header --- */
.header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(11, 19, 43, 0.92);
    backdrop-filter: blur(10px);
    padding: 1.2rem 0;
    transition: padding var(--transition-fast), background var(--transition-fast);
}

.header.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

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

.brand-logo {
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 2rem;
    letter-spacing: 4px;
    color: var(--clr-white);
}

.logo-sub {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-gold);
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--clr-gold);
    transition: width var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
    color: var(--clr-gold);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    cursor: pointer;
}

.hamburger-menu .bar {
    width: 25px;
    height: 2px;
    background-color: var(--clr-white);
    transition: all var(--transition-fast);
}

/* --- Hero Section --- */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--clr-white);
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin-top: -3rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--clr-gold-light);
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.hero-desc {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 2.5rem auto;
    color: rgba(255, 255, 255, 0.9);
}

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

.seasonal-banner {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(11, 19, 43, 0.75);
    border: 1px solid rgba(212, 175, 55, 0.4);
    backdrop-filter: blur(8px);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--clr-gold-light);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

/* Mouse Scroll Down Icon */
.scroll-down-btn {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    display: block;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--clr-gold);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollAnim 1.8s infinite;
}

@keyframes scrollAnim {
    0% { opacity: 1; top: 6px; }
    100% { opacity: 0; top: 22px; }
}

/* --- Quick Booking Overlay Bar --- */
.quick-booking-bar {
    position: relative;
    margin-top: -60px;
    z-index: 100;
    background: var(--bg-card);
    padding: 1.8rem 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border-color);
}

.quick-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 1.2rem;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.form-group input, .form-group select, .form-group textarea {
    padding: 0.8rem 1rem;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-primary);
    transition: border-color var(--transition-fast);
}

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

/* --- About Section & Timeline --- */
.about-images {
    position: relative;
}

.main-img {
    width: 85%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.secondary-img {
    position: absolute;
    bottom: -10%;
    right: 0;
    width: 55%;
    border-radius: 8px;
    overflow: hidden;
    border: 6px solid var(--bg-main);
    box-shadow: var(--shadow-hover);
}

.experience-badge {
    position: absolute;
    top: 10%;
    left: -5%;
    background: var(--clr-navy);
    color: var(--clr-gold);
    padding: 1.2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow-hover);
}

.badge-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.lead-text {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--clr-gold-dark);
}

.resort-timeline {
    display: flex;
    gap: 1.5rem;
    margin: 2rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--clr-gold);
    display: block;
}

.timeline-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.signature-block {
    margin-top: 1.5rem;
    padding-left: 1rem;
    border-left: 2px solid var(--clr-gold);
}

/* Stats Counter Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 5rem;
    text-align: center;
}

.stat-card {
    background: var(--bg-card);
    padding: 2.5rem 1.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
}

.stat-icon {
    font-size: 2rem;
    color: var(--clr-gold);
    margin-bottom: 1rem;
}

.counter {
    font-size: 3rem;
    color: var(--text-primary);
    margin-bottom: 0.2rem;
}

/* --- Rooms Section --- */
.room-card {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-color);
    position: relative;
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.card-hover:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.room-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--clr-gold);
    color: var(--clr-white);
    padding: 0.3rem 0.8rem;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.badge-emerald { background: var(--clr-emerald); }

.room-img {
    position: relative;
    height: 240px;
    overflow: hidden;
}

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

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

.room-price-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(11, 19, 43, 0.85);
    backdrop-filter: blur(6px);
    color: var(--clr-white);
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.room-price-tag .amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-gold);
}

.room-content {
    padding: 1.5rem;
}

.room-rating {
    font-size: 0.85rem;
    color: var(--clr-gold);
    margin-bottom: 0.5rem;
}

.review-count {
    color: var(--text-secondary);
    font-size: 0.75rem;
}

.room-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.room-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.825rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    padding-bottom: 1.2rem;
    border-bottom: 1px solid var(--border-color);
}

.room-status {
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.room-status.available { color: #2e7d32; }
.room-status.limited { color: #d84315; }

/* --- Amenities Section --- */
.amenity-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition-fast);
}

.amenity-card:hover {
    transform: translateY(-5px);
}

.amenity-icon {
    width: 55px;
    height: 55px;
    background: var(--bg-surface);
    color: var(--clr-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.amenity-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.amenity-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* --- Restaurant & Dining --- */
.chef-highlight {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.chef-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--clr-gold);
}

.featured-dishes h3 {
    font-size: 1.2rem;
    color: var(--clr-gold);
    margin-bottom: 1rem;
}

.dish-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.dish-list .price {
    color: var(--clr-gold);
    font-weight: 700;
}

.img-rounded {
    border-radius: 8px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* --- Gallery & Filters --- */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-surface);
    color: var(--text-primary);
    padding: 0.6rem 1.4rem;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all var(--transition-fast);
}

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 43, 0.7);
    color: var(--clr-white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.gallery-overlay i {
    font-size: 1.8rem;
    color: var(--clr-gold);
}

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

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

/* --- Testimonials Slider --- */
.testimonial-slider-container {
    max-width: 850px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    min-width: 100%;
    background: var(--bg-card);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    border: 1px solid var(--border-color);
}

.testimonial-card .stars {
    color: var(--clr-gold);
    margin-bottom: 1.2rem;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    line-height: 1.4;
}

.guest-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.guest-info img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
}

.guest-info h4 {
    font-size: 1.1rem;
}

.guest-info span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.slider-arrow {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--text-primary);
    transition: background var(--transition-fast);
}

.slider-arrow:hover {
    background: var(--clr-gold);
    color: var(--clr-white);
}

.slider-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--clr-gray-300);
    cursor: pointer;
}

.dot.active {
    background: var(--clr-gold);
    width: 25px;
    border-radius: 10px;
}

/* --- Booking Form --- */
.booking-card-form {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--border-color);
}

.booking-card-form h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.8rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    margin-bottom: 1rem;
}

.error-msg {
    font-size: 0.75rem;
    color: #d32f2f;
    display: none;
}

.form-group.error input, .form-group.error select {
    border-color: #d32f2f;
}

.form-group.error .error-msg {
    display: block;
}

.price-summary-box {
    background: var(--bg-surface);
    padding: 1rem 1.2rem;
    border-radius: 4px;
    margin: 1.5rem 0;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
}

.summary-line strong {
    color: var(--clr-gold-dark);
    font-size: 1.3rem;
}

.perk-item {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

/* --- FAQ Accordion --- */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: transparent;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-icon {
    transition: transform var(--transition-fast);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 1.5rem;
    color: var(--text-secondary);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.2rem 1.5rem;
}

/* --- Contact & Newsletter --- */
.contact-form-box {
    background: var(--clr-navy-light);
    padding: 2.5rem;
    border-radius: 8px;
}

.newsletter-box {
    background: linear-gradient(135deg, var(--clr-emerald) 0%, var(--clr-emerald-dark) 100%);
    padding: 3rem 2rem;
    border-radius: 8px;
}

.newsletter-icon {
    font-size: 3rem;
    color: var(--clr-gold);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-top: 2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border-radius: 4px;
}

/* --- Footer --- */
.footer {
    background: #060a17;
    color: rgba(255,255,255,0.7);
    padding-top: 5rem;
}

.footer-content {
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-desc {
    font-size: 0.875rem;
    margin: 1rem 0 1.5rem 0;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-white);
}

.social-links a:hover {
    background: var(--clr-gold);
}

.footer-title {
    color: var(--clr-white);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    font-size: 0.875rem;
}

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

.footer-bottom {
    padding: 1.5rem 0;
    font-size: 0.8rem;
}

/* --- Modals & Lightbox --- */
.modal, .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-fast);
}

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

.modal-content {
    background: var(--bg-card);
    width: 90%;
    max-width: 700px;
    padding: 2.5rem;
    border-radius: 8px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal, .lightbox-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: var(--clr-white);
    cursor: pointer;
    background: transparent;
}

.close-modal { color: var(--text-primary); }

.lightbox-content {
    max-width: 85%;
    max-height: 80vh;
    border-radius: 4px;
}

/* --- Scroll To Top Button --- */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--clr-gold);
    color: var(--clr-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-hover);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-fast);
    z-index: 1000;
}

.scroll-to-top.show {
    opacity: 1;
    pointer-events: all;
}

/* --- Reveal Scroll Animations --- */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: transform 0.8s ease, opacity 0.8s ease;
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-active {
    opacity: 1;
    transform: translate(0, 0);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */

@media (max-width: 1024px) {
    .grid-4 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(2, 1fr); }
    .hero-title { font-size: 3rem; }
    .quick-form { grid-template-columns: repeat(2, 1fr); }
    .stats-container { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .utility-bar { display: none; }
    
    .hamburger-menu { display: flex; }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--clr-navy);
        padding: 6rem 2rem 2rem 2rem;
        transition: right var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }

    .nav-menu.active { right: 0; }
    
    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }

    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }

    .hero-title { font-size: 2.4rem; }
    .hero-buttons { flex-direction: column; }
    
    .quick-form { grid-template-columns: 1fr; }
    
    .secondary-img { display: none; }
    .main-img { width: 100%; }

    .gallery-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

    .newsletter-form { flex-direction: column; }
}