/* =========================================
   VARIABLES & THEME CONFIGURATION
   ========================================= */
:root {
    /* Colors */
    --clr-bg-dark: #0B0C10;
    --clr-black: #0B0C10;
    --clr-dark: #12151c;
    --clr-darker: #08090d;
    --clr-surface-glass: rgba(22, 24, 30, 0.75);
    --clr-light: #e6e8ec;
    --clr-white: #ffffff;
    --clr-gold-light: #f7eed0;
    --clr-gold: #f2e5b6;
    --clr-gold-dark: #d9c896;
    --clr-gray: #9aa0a6;
    --clr-gray-dark: #222630;

    /* Gradients */
    --grad-gold: linear-gradient(135deg, #FAF4E1 0%, #f2e5b6 50%, #C4B47E 100%);
    --grad-dark: linear-gradient(to bottom, rgba(11, 12, 16, 0) 0%, rgba(11, 12, 16, 1) 100%);

    /* Typography */
    --font-heading: 'Playfair Display', 'Cormorant Garamond', 'Cinzel', serif;
    --font-body: 'Plus Jakarta Sans', 'Montserrat', sans-serif;

    /* Transitions */
    --trans-fast: 0.2s cubic-bezier(0.165, 0.84, 0.44, 1);
    --trans-normal: 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
    --trans-slow: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    
    /* Shadows */
    --shadow-gold: 0 4px 20px rgba(242, 229, 182, 0.25);
    --shadow-gold-hover: 0 8px 30px rgba(242, 229, 182, 0.5);
    --shadow-dark: 0 10px 40px rgba(0, 0, 0, 0.9);
}

/* =========================================
   CINEMATIC ASSEMBLY PRELOADER & WATERMARK
   ========================================= */
body.is-preloading {
    overflow: hidden !important;
}

.preloader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 99999;
    pointer-events: none;
}

.preloader-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #0B0C10;
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 1.2s ease-in-out;
}

.preloader-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform-origin: center center;
    pointer-events: none;
}

.preloader-sunflower-aura {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.5);
    width: 85vw;
    max-width: 950px;
    height: auto;
    z-index: 10;
    pointer-events: none;
    opacity: 0;
}

.preloader-sunflower-svg {
    width: 100%;
    height: 100%;
}

.preloader-assembly {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transform-origin: center center;
    pointer-events: none;
    width: max-content;
}

.preloader-composition-row {
    position: relative;
    display: flex;
    align-items: flex-end; /* Bottom end of mic handle aligns with bottom baseline of K */
    justify-content: center;
    margin-bottom: 1.5rem;
}

.preloader-kb-png {
    height: 125px;
    width: auto;
    object-fit: contain;
    z-index: 20;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.4));
}

.preloader-mic-png {
    height: 145px;
    width: auto;
    object-fit: contain;
    z-index: 30;
    margin-right: -38px; /* Micro-docking alignment flush with vertical stem of K */
    margin-bottom: -2px; /* Handle bottom sits flush on baseline */
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.6));
}

.preloader-text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.preloader-title {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 5px;
    line-height: 1.2;
    margin-bottom: 0.3rem;
}

.preloader-title-white {
    color: var(--clr-white);
}

.preloader-title-gold {
    background: linear-gradient(135deg, #FFE58F 0%, #D4AF37 50%, #996515 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.preloader-title-underline {
    width: 65px;
    height: 3px;
    background: var(--clr-gold);
    margin-top: 0.2rem;
    margin-bottom: 1rem;
    align-self: flex-start;
    margin-left: 0.5rem;
    border-radius: 2px;
}

.preloader-tagline {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 6px;
    color: #e6e8ec;
    opacity: 0.95;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .preloader-kb-png {
        height: 95px;
    }
    .preloader-mic-png {
        height: 108px;
        margin-right: -30px;
        margin-top: -4px;
    }
    .preloader-title {
        font-size: 1.35rem;
        letter-spacing: 3.5px;
    }
    .preloader-tagline {
        font-size: 0.68rem;
        letter-spacing: 3px;
    }
    .preloader-title-underline {
        width: 45px;
        height: 2px;
    }
    .preloader-sunflower-aura {
        width: 95vw;
    }
}

.gold-text-gradient {
    background: linear-gradient(135deg, #FFE58F 0%, #D4AF37 50%, #996515 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Sunflower Geometry Background Watermark */
.sunflower-watermark-wrapper {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85vw;
    max-width: 950px;
    height: auto;
    pointer-events: none;
    z-index: 0;
}

.sunflower-watermark {
    width: 100%;
    height: 100%;
    animation: rotateWatermark 200s linear infinite;
}

@keyframes rotateWatermark {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* =========================================
   RESET & BASE STYLES
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

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

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

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

ul {
    list-style: none;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
}

.align-center { text-align: center; }
.mb-4 { margin-bottom: 2rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.position-relative { position: relative; }
.relative-z { position: relative; z-index: 2; }

.bg-dark { background-color: var(--clr-dark); }
.bg-darker { background-color: var(--clr-darker); }

/* Utility Classes */
.gold-text { color: var(--clr-gold); }

/* =========================================
   TYPOGRAPHY
   ========================================= */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--clr-gray);
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--clr-gray);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.separator-gold {
    width: 60px;
    height: 3px;
    background: var(--grad-gold);
    margin: 1rem auto 2rem;
    border-radius: 2px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--trans-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-icon {
    margin-left: 0.5rem;
}

.btn-primary {
    background: var(--grad-gold);
    color: var(--clr-black);
    border: none;
    box-shadow: var(--shadow-gold);
}

.btn-primary:before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, #b5952f 0%, #d4af37 50%, #f1db89 100%);
    z-index: -1;
    transition: opacity 0.3s;
    opacity: 0;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold-hover);
    color: var(--clr-black);
}
.btn-primary:hover:before {
    opacity: 1;
}

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

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

.btn-large {
    padding: 1rem 3rem;
    font-size: 1rem;
}

/* =========================================
   HEADER & NAVIGATION
   ========================================= */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--trans-normal);
    background: transparent;
}

.header.scrolled {
    background: rgba(5, 5, 5, 0.95);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    backdrop-filter: blur(10px);
}

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

.logo-link {
    flex-shrink: 0;
    min-width: 140px;
    display: flex;
    align-items: center;
}

.logo {
    height: 46px;
    max-height: 46px;
    width: auto;
    max-width: 180px;
    flex-shrink: 0;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-link:not(.btn-nav):hover {
    color: var(--clr-gold);
}

.nav-link:not(.btn-nav):after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--clr-gold);
    transition: var(--trans-normal);
}

.nav-link:not(.btn-nav):hover:after,
.nav-link.active:not(.btn-nav):after {
    width: 100%;
}

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

.btn-nav {
    border: 1px solid var(--clr-gold);
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    color: var(--clr-gold);
}

.btn-nav:hover {
    background: var(--clr-gold);
    color: var(--clr-black);
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--clr-gold);
    font-size: 1.5rem;
    cursor: pointer;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 80px; /* Offset for header */
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Update placeholder below when images are checked, assuming user requested picture mapping */
    background-image: url('Media/Header_picture_.jpg');
    background-size: cover;
    background-position: center top;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(5,5,5,0.6) 0%, rgba(5,5,5,0.9) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 900px;
}

.hero-title {
    font-size: 4.5rem;
    letter-spacing: 4px;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 3rem;
    color: var(--clr-light);
}

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

/* =========================================
   ABOUT SECTION
   ========================================= */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.image-wrapper {
    position: relative;
    padding: 1rem;
}

.gold-border {
    position: relative;
}

.gold-border::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--clr-gold);
    z-index: -1;
    border-radius: 4px;
}

.responsive-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: var(--shadow-dark);
}

.highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
    font-size: 1.1rem;
}

.highlight-item i {
    font-size: 1.5rem;
}

.contact-info-small {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.contact-info-small a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1rem;
    color: var(--clr-gray);
}

.contact-info-small a:hover {
    color: var(--clr-gold);
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: rgba(22, 24, 30, 0.85);
    backdrop-filter: blur(16px);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(242, 229, 182, 0.25);
    transition: var(--trans-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
    opacity: 1 !important;
    transform: none !important;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--grad-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--trans-normal);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: var(--shadow-dark);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--clr-gold);
    margin-bottom: 1.5rem;
    height: 70px;
    width: 70px;
    line-height: 70px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    letter-spacing: 1px;
}

.service-card p {
    color: var(--clr-gray);
    font-size: 0.95rem;
}

/* =========================================
   GALLERY SECTION
   ========================================= */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--clr-light);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-family: var(--font-body);
    transition: var(--trans-normal);
}

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

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

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    display: block;
    cursor: zoom-in;
}

.gallery-item.video {
    cursor: pointer;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--trans-normal);
}

.gallery-overlay i {
    font-size: 3rem;
    color: var(--clr-gold);
    transform: scale(0.5);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

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

.gallery-item:hover .gallery-overlay i {
    transform: scale(1);
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img, .lightbox-content iframe {
    max-width: 100%;
    max-height: 90vh;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: var(--clr-white);
    font-size: 3rem;
    cursor: pointer;
    transition: var(--trans-fast);
}

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


/* =========================================
   ACHIEVEMENTS SECTION
   ========================================= */
.achievements {
    position: relative;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    text-align: center;
}

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

.counter-number {
    font-size: 4rem;
    color: var(--clr-gold);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.counter-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--clr-gray);
}

/* =========================================
   CLIENTS SECTION
   ========================================= */
.clients-marquee-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    padding: 2rem 0;
    /* Gradient masks for smooth fading edges */
    -webkit-mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
    mask-image: linear-gradient(to right, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 15%, rgba(0,0,0,1) 85%, rgba(0,0,0,0) 100%);
}

.clients-marquee {
    display: flex;
    width: max-content;
    animation: scrollMarquee 40s linear infinite;
}

.client-logo-card {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 1.5rem;
    padding: 0.6rem 1.5rem;
    background: rgba(22, 24, 30, 0.8);
    border: 1px solid rgba(242, 229, 182, 0.2);
    border-radius: 8px;
    height: 64px;
    min-width: 150px;
    transition: var(--trans-normal);
}

.client-logo-card:hover {
    border-color: var(--clr-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 229, 182, 0.2);
}

.client-svg-logo {
    height: 38px;
    max-height: 40px;
    width: auto;
    max-width: 170px;
    object-fit: contain;
}

.client-logo-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: var(--clr-light);
    margin: 0 1.5rem;
    padding: 0.6rem 1.5rem;
    background: rgba(22, 24, 30, 0.8);
    border: 1px solid rgba(242, 229, 182, 0.2);
    border-radius: 8px;
    height: 64px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--trans-normal);
}

.client-logo-text:hover {
    color: var(--clr-gold);
    border-color: var(--clr-gold);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 229, 182, 0.2);
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } 
}

.highlight-img {
    max-width: 600px;
    border-radius: 8px;
    margin-bottom: 1rem;
}
.highlight-caption {
    font-family: var(--font-heading);
    color: var(--clr-gold);
    font-size: 1.2rem;
}

/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonial-carousel-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.testimonial-carousel {
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

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

.testimonial-content {
    background: var(--clr-surface-glass);
    backdrop-filter: blur(16px);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-left: 4px solid var(--clr-gold);
    box-shadow: var(--shadow-dark);
    position: relative;
}

.quote-icon {
    font-size: 3rem;
    color: rgba(212, 175, 55, 0.1);
    position: absolute;
    top: 20px;
    left: 20px;
}

.quote-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.client-meta h4 {
    color: var(--clr-gold);
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.client-meta p {
    color: var(--clr-gray);
    font-size: 0.9rem;
}

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

.carousel-btn {
    background: transparent;
    border: 1px solid var(--clr-gray-dark);
    color: var(--clr-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--trans-fast);
}

.carousel-btn:hover {
    background: var(--clr-gold);
    color: var(--clr-black);
    border-color: var(--clr-gold);
}

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

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

.dot.active, .dot:hover {
    background: var(--clr-gold);
}


/* =========================================
   CONTACT / BOOKING SECTION
   ========================================= */
.contact-bg {
    background: url('Media/Corporate_event_picture_(1).jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.2;
}

.gold-border-subtle {
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
}

.booking-form {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    padding: 3rem;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--clr-light);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: var(--clr-white);
    font-family: var(--font-body);
    transition: var(--trans-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--clr-gold);
    background: rgba(255, 255, 255, 0.08);
}

.form-group select option {
    background: var(--clr-darker);
    color: var(--clr-white);
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
    background: #000;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    margin-bottom: 2rem;
}
.footer-img-logo {
    height: 160px;
    max-height: 180px;
    width: auto;
    max-width: 480px;
    margin: 0 auto 1.5rem;
    object-fit: contain;
    filter: none;
    transition: transform 0.4s ease;
}
.footer-img-logo:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .footer-img-logo {
        height: 110px;
        max-height: 130px;
        max-width: 320px;
    }
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    color: var(--clr-gold);
    font-size: 1.2rem;
}

.footer-social a:hover {
    background: var(--clr-gold);
    color: var(--clr-black);
    transform: translateY(-3px);
}

.copyright {
    color: var(--clr-gray);
    font-size: 0.9rem;
}

/* =========================================
   ANIMATIONS & EFFECTS
   ========================================= */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: var(--trans-slow);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(40px);
    transition: var(--trans-slow);
}
.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(-40px);
    transition: var(--trans-slow);
}
.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: var(--trans-slow);
}
.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* =========================================
   RESPONSIVE DESIGN
   ========================================= */
@media (max-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--clr-darker);
        padding: 4rem 2rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0,0,0,0.5);
        border-left: 1px solid rgba(212, 175, 55, 0.2);
    }

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

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .booking-form {
        padding: 2rem 1.5rem;
    }

    .section {
        padding: 4rem 0;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .counter-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* =========================================
   REFINED LUXURY BUTTON SYSTEM (MATTE & SHIMMER)
   ========================================= */
.btn, .btn-glow, .btn-primary {
    position: relative;
    background: #16181E;
    color: var(--clr-gold-light);
    border: 1px solid rgba(212, 175, 55, 0.28);
    border-radius: 8px;
    padding: 0.85rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.btn::after, .btn-glow::after, .btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -120%;
    width: 60%;
    height: 200%;
    background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.18) 50%, transparent 80%);
    transform: rotate(25deg);
    transition: left 0.7s cubic-bezier(0.19, 1, 0.22, 1);
    z-index: 2;
    pointer-events: none;
}

.btn:hover::after, .btn-glow:hover::after, .btn-primary:hover::after {
    left: 150%;
}

.btn:hover, .btn-glow:hover, .btn-primary:hover {
    background: #1e212b;
    border-color: rgba(212, 175, 55, 0.65);
    color: var(--clr-white);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.25);
}

.showcase-cta-banner {
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(15px);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    margin-top: 3rem;
}

.showcase-cta-banner h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--clr-gold);
    margin-bottom: 0.5rem;
}

.showcase-cta-banner p {
    color: var(--clr-light);
    font-size: 1rem;
}

/* =========================================
   MULTI-STEP BOOKING WIZARD STYLING
   ========================================= */
.booking-wizard-container {
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 850px;
    margin: 0 auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

/* Wizard Header & Progress Bar */
.wizard-header {
    margin-bottom: 2rem;
}

.wizard-step-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.step-badge {
    background: rgba(212, 175, 55, 0.15);
    color: var(--clr-gold);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 0.25rem 0.85rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.step-title-text {
    color: var(--clr-light);
    font-size: 0.95rem;
    font-weight: 500;
}

.wizard-progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.wizard-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #d4af37, #f3e5ab);
    border-radius: 10px;
    transition: width 0.4s ease-in-out;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.6);
}

/* Wizard Steps & Animations */
.wizard-step {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.wizard-step.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.step-heading {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--clr-white);
    margin-bottom: 0.35rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.step-desc {
    color: #aaa;
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
}

/* Interactive Select Pills */
.pill-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 0.85rem;
}

.select-pill {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    padding: 0.9rem 1rem;
    color: var(--clr-light);
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    user-select: none;
}

.select-pill:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.select-pill.active {
    background: rgba(212, 175, 55, 0.18);
    border-color: var(--clr-gold);
    color: var(--clr-gold);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.25);
    font-weight: 600;
}

/* Commercials & Currency Toggle */
.budget-input-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.currency-toggle {
    display: flex;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 2px;
}

.currency-btn {
    background: transparent;
    border: none;
    color: #888;
    padding: 0.6rem 0.9rem;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.currency-btn.active {
    background: var(--clr-gold);
    color: #000;
}

/* Wizard Navigation */
.wizard-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 1.5rem;
}

/* Success Card & Confetti */
.step-success {
    position: relative;
    padding: 1rem 0;
}

.confetti-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.success-icon-wrapper i {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.6));
}

.success-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--clr-white);
    margin-bottom: 0.5rem;
}

.success-subtext {
    color: var(--clr-light);
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.turnaround-notice {
    background: rgba(212, 175, 55, 0.08);
    padding: 1rem 1.25rem;
    border-radius: 8px;
    color: #e0d09d;
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    max-width: 600px;
    margin: 0 auto 1.5rem;
}

.direct-actions-grid {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: #25D366;
    color: #fff;
    border: none;
    padding: 0.9rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 0 15px rgba(37, 211, 102, 0.4);
    transition: all 0.25s ease;
}

.btn-whatsapp:hover {
    background: #20ba59;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.6);
}

.btn-link {
    background: transparent;
    border: none;
    color: var(--clr-gold);
    text-decoration: underline;
    cursor: pointer;
    font-size: 0.9rem;
}

/* =========================================
   FULL-SCREEN BOOKING MODAL OVERLAY
   ========================================= */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

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

.booking-modal-content {
    width: 100%;
    max-width: 850px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    border-radius: 16px;
    animation: modalScaleUp 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes modalScaleUp {
    0% {
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }
    100% {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.close-booking-modal {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--clr-white);
    font-size: 1.5rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.2s ease;
}

.close-booking-modal:hover {
    background: var(--clr-gold);
    color: #000;
    transform: rotate(90deg);
}

/* Modal specific tweaks */
@media (max-width: 768px) {
    .booking-wizard-container {
        padding: 1.5rem 1.25rem;
    }

    .pill-grid {
        grid-template-columns: 1fr;
    }

    .direct-actions-grid {
        flex-direction: column;
    }

    .budget-input-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .currency-toggle {
        justify-content: center;
    }
}
