/* --- CORE THEME VARIABLES --- */
:root {
    /* DEFAULT THEME: GOLD & DARK BLUE (Luxury/Executive Aviation) */
    --glass: rgba(255, 255, 255, 0.03);
    --glass-hover: rgba(255, 255, 255, 0.08);
    --border: rgba(255, 255, 255, 0.1);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;

    --bg-dark: #16162f;
    /* Deepest Navy */
    --bg-dark-rgb: 22, 22, 47;
    --bg-light: #16162f;
    /* Mid Navy */
    --bg-light-rgb: 22, 22, 47;
    --accent: #fde25e;
    /* Metallic Gold */
    --accent-hover: #fde25e;
    --accent-glow: rgba(212, 175, 55, 0.2);
    --bg-nav: rgba(22, 22, 47, .9);

    /* Gold Metallic (Default Theme) */
    --metal-bg: linear-gradient(135deg, #bf953f 0%, #fcf6ba 25%, #b38728 50%, #fbf5b7 75%, #aa771c 100%);
    --text-metal: #0e0e0e;
    /* Light text for contrast on dark background */

    --hero-logo-gap: 250px;
    /* space between logo and text */
    --hero-margin-top: 80px;
    /* additional margin for content wrapper to control overall vertical position */
}

/* THEME 2: LIGHT (Daylight, Clean, Airy) */
body.theme-light {
    --glass: rgba(15, 23, 42, 0.05);
    --glass-hover: rgba(15, 23, 42, 0.1);
    --border: rgba(15, 23, 42, 0.15);
    --text-main: #020617;
    /* Deep Black-Blue text */
    --text-muted: #475569;

    --bg-dark: #f8fafc;
    /* Off-white */
    --bg-dark-rgb: 248, 250, 252;
    --bg-light: #ffffff;
    /* Pure White */
    --bg-light-rgb: 255, 255, 255;
    --accent: #2563eb;
    /* Intense Royal Blue */
    --accent-hover: #1d4ed8;
    --accent-glow: rgba(37, 99, 235, 0.2);
    --bg-nav: rgba(240, 240, 240, 0.2);

    /* Chrome/Silver Metallic (Light Theme) */
    --metal-bg: linear-gradient(135deg, #e3e3e3 0%, #ffffff 25%, #d1d1d1 50%, #f4f4f4 75%, #b5b5b5 100%);
    --text-metal: #333333;
    /* Darker text for better contrast on light background */
}

/* THEME 3: TRUSTWORTHY (Corporate Navy & Steel Blue) */
body.theme-trust {
    --bg-dark: #111827;
    /* Deep Charcoal */
    --bg-dark-rgb: 17, 24, 39;
    --bg-light: #1f2937;
    /* Cool Grey */
    --bg-light-rgb: 31, 41, 55;
    --accent: #f97316;
    /* High-Vis Safety Orange */
    --accent-hover: #ea580c;
    --accent-glow: rgba(249, 115, 22, 0.3);
    --bg-nav: rgba(31, 41, 55, 0.6);

    /* Bronze/Orange Metallic (Trust Theme) */
    --metal-bg: linear-gradient(135deg, #ea580c 0%, #fdba74 25%, #c2410c 50%, #fed7aa 75%, #9a3412 100%);
    --text-metal: #131313;
    /* Dark Grey text for contrast on trust theme */
}

/* --- GLOBAL STYLES --- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-dark) 100%);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ANIMATIONS */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    /* Start slightly below and invisible */
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    body {
        zoom: 0.9;
    }
}

/* --- NAVBAR BASE --- */
nav {
    position: fixed;
    width: 100%;
    height: 90px;
    padding: 20px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    backdrop-filter: blur(8px);
    background: var(--bg-nav);
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
    z-index: 1000;
}

nav.scrolled {
    height: 70px;
    padding: 10px 50px;
    background: var(--bg-nav);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    height: 40px;
    display: flex;
    align-items: center;
}

.logo a {
    height: 100%;
    display: block;
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: all 0.4s ease;
}

nav.scrolled .logo img {
    transform: scale(0.85);
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--accent);
}

/* NAV STRUCTURE */
.nav-left {
    display: flex;
    align-items: center;
}

.nav-links a {
    color: var(--accent);
}

.nav-actions {
    display: none;
    align-items: center;
    gap: 15px;
}

/* HOME BUTTON */
.home-btn {
    color: var(--accent);
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s;
}

.home-btn:hover {
    color: var(--accent);
}

/* HAMBURGER */
.hamburger {
    width: 25px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
}

.hamburger span {
    height: 2px;
    width: 100%;
    /* background: var(--text-main); */
    background: var(--accent);
    transition: 0.3s;
}

/* MOBILE MENU */
.mobile-menu {
    position: fixed;
    top: 70px;
    right: 0;
    width: 100%;
    background: rgba(var(--bg-dark-rgb), 0.75);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    align-items:flex-end;
    gap: 20px;
    padding: 30px 60px;
    transform: translateY(-120%);
    transition: 0.4s ease;
    z-index: 999;
}

.mobile-menu a {
    color: var(--accent);
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

.mobile-menu a:hover {
    color: var(--accent);
}

.mobile-menu.active {
    transform: translateY(0);
}

@media(max-width:768px) {
    nav {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
        height: 70px;
    }

    .nav-links {
        display: none;
    }

    .nav-actions {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .logo {
        height: 35px;
    }
}

/* HERO SECTION */
.hero {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: var(--hero-align-y);
    text-align: center;
    padding: 0 20px;
    position: relative;
    overflow: hidden;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    background: var(--bg-dark);
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.05);
    will-change: transform, opacity, filter;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(var(--bg-dark-rgb), 0.3) 50%, rgba(var(--bg-dark-rgb), 1) 100%);
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-content-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: var(--hero-margin-top, 0px);
}

.hero {
    align-items: center;
}

.hero h1 {
    background: var(--metal-bg);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 15px var(--accent-glow));
    font-size: 52px;
    margin-bottom: 15px;
}

.hero-tagline {
    font-size: 30px;
    font-weight: 600;
    color: var(--text-main) !important;
}

.hero p {
    color: var(--text-main);
    font-size: 18px;
    max-width: 600px;
    margin: auto;
}

.hero-main-logo {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: var(--hero-logo-gap);
}


/* --- SECTIONS & HEADERS --- */
section {
    padding: 80px 20px;
}

/* Group both sections and the page-header together for borders */
section,
.page-header {
    position: relative;
    border-bottom: 1px solid var(--accent) !important;
    z-index: 1;
}

section::after,
.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    box-shadow: 0 10px 30px 4px var(--accent);
    opacity: 0.4;
    pointer-events: none;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: auto;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

.section-intro {
    text-align: center;
    color: var(--text-muted);
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.7;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 15px auto 0;
    border-radius: 2px;
}

/* --- SHARED LAYOUT: SPLIT GRID --- */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.split-layout.reverse {
    direction: rtl;
}

.split-layout.reverse>* {
    direction: ltr;
}

.split-text h2 {
    font-size: 32px;
    color: var(--text-main);
    margin-bottom: 20px;
    position: relative;
}

.split-text h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent);
    margin-top: 15px;
    border-radius: 2px;
}

.split-text p {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.split-image {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.split-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--accent);
    opacity: 0.3;
    border-radius: 16px;
    margin: 15px;
    pointer-events: none;
}

@media(max-width: 992px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* --- SHARED LAYOUT: GALLERY --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    border: 1px solid var(--border);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(var(--bg-dark-rgb), 0.9) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--accent);
    font-size: 20px;
    font-weight: 600;
    transform: translateY(15px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-overlay h4 {
    transform: translateY(0);
}

@media(max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
    }

    .gallery-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(var(--bg-dark-rgb), 0.8) 0%, transparent 50%);
    }

    .gallery-overlay h4 {
        transform: translateY(0);
        font-size: 18px;
    }
}

/* --- METALLIC BUTTONS & ICONS --- */
.hero-btn,
.cta-btn,
.learn-btn,
.step-number,
.contact-form button {
    color: var(--text-metal) !important;
    background: var(--metal-bg) !important;
    background-size: 200% auto !important;
    border: none !important;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4), inset 0 1px 2px rgba(255, 255, 255, 0.8) !important;
    transition: all 0.5s ease !important;
}

.hero-btn:hover,
.cta-btn:hover,
.learn-btn:hover,
.contact-form button:hover {
    background-position: right center !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px var(--accent-glow), inset 0 1px 3px rgba(255, 255, 255, 0.9) !important;
}

/* Base button paddings based on context */
.hero-btn {
    display: inline-block;
    padding: 10px 25px;
    font-weight: 600;
    border-radius: 4px;
    margin: 30px;
    text-decoration: none;
}

.cta-btn {
    display: inline-block;
    padding: 15px 35px;
    font-weight: 800 !important;
    border-radius: 6px;
    letter-spacing: 1px;
    cursor: pointer;
    text-decoration: none;
}

.learn-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    margin: 20px;
    text-decoration: none;
}

/* Apply metallic text effect to general icons across pages */
.metal-text-icon,
.why-icon,
.add-service-icon,
.feature-item i,
.sticker-card i,
.value-icon {
    background: var(--metal-bg);
    background-size: 100px auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 4px 15px var(--accent-glow));
}

/* --- CONTACT SECTION (Shared across Index, Services, Testimonials) --- */
.contact-info h3,
.contact-form h3 {
    font-size: 24px;
    color: var(--text-main);
    margin-bottom: 15px;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.5px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info {
    background: var(--glass);
    border: 1px solid var(--accent) !important;
    padding: 40px;
    border-radius: 12px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 20px;
    color: var(--accent);
    margin-top: 4px;
}

.info-item h4 {
    color: var(--text-main) !important;
    margin-bottom: 5px;
}

.info-item p,
.info-item a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.info-item a:hover {
    color: var(--accent);
}

.socials {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.social-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
    background: var(--glass);
}

.social-btn:hover {
    border-color: var(--accent);
    color: var(--bg-dark);
    background: var(--accent);
    transform: translateY(-3px);
}

.map-box {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
    height: 200px;
    border: 1px solid var(--border);
}

.map-box iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form {
    background: var(--glass);
    border: 1px solid var(--accent) !important;
    padding: 40px;
    border-radius: 12px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-group label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.2);
    color: var(--text-main) !important;
    border-radius: 6px;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

body.theme-light .contact-form input,
body.theme-light .contact-form textarea {
    background: var(--glass-hover) !important;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.contact-form button {
    width: 100%;
    padding: 16px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
    text-transform: uppercase;
}

@media(max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* --- COMPLETE FOOTER --- */
footer {
    background: rgba(var(--bg-dark-rgb), 0.95);
    border-top: 1px solid var(--accent);
    color: var(--text-muted);
    padding: 60px 20px 20px;
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-col h3 {
    color: var(--text-main);
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
}

.footer-col h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent);
    margin-top: 10px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1));
}

.brand-col p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
    transform: translateY(-3px);
}

.links-col ul,
.contact-col ul {
    list-style: none;
}

.links-col ul li,
.contact-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.links-col ul li a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.contact-col ul li {
    display: flex;
    gap: 15px;
    font-size: 14px;
    line-height: 1.6;
}

.contact-col ul li i {
    color: var(--accent);
    margin-top: 5px;
}

.contact-col ul li a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-col ul li a:hover {
    color: var(--accent);
}

.footer-bottom {
    max-width: 1200px;
    margin: auto;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.legal-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: var(--accent);
}

@media(max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h3::after {
        margin: 10px auto 0;
    }

    .footer-socials {
        justify-content: center;
    }

    .contact-col ul li {
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .legal-links a {
        margin: 0 10px;
    }
}

/* --- THEME SWITCHER --- */
.theme-switcher {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--glass);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
    padding: 10px 15px;
    border-radius: 30px;
    display: flex;
    gap: 10px;
    z-index: 9999;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.theme-btn {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-btn:hover,
.theme-btn.active {
    transform: scale(1.2);
    border-color: #fff;
}

.btn-gold {
    background: #d4af37;
}

.btn-light {
    background: #f1f5f9;
    border: 1px solid #cbd5e1;
}

.btn-trust {
    background: #f97316;
}

@media(max-width: 768px) {
    .theme-switcher {
        bottom: 15px;
        right: 15px;
        padding: 8px 12px;
    }
}

/* --- FLOATING WHATSAPP BUTTON --- */
.float-wa {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    left: 30px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: wa-pulse 2s infinite;
}

.float-wa:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.6);
    color: #fff;
    animation: none;
}

.float-wa i {
    color: #fff !important;
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media(max-width: 768px) {
    .float-wa {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
        font-size: 26px;
    }
}

 /* --- FLOATING MUTE BUTTON --- */
.float-mute {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    cursor: pointer;
    z-index: 9999;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

.float-mute:hover {
    background: var(--accent);
    color: var(--bg-dark);
    border-color: var(--accent);
    transform: scale(1.1);
}

@media(max-width: 768px) {
    .float-mute {
        bottom: 20px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

/* --- THE TEXT BALLOON HINT --- */
/* Base state: Hidden and scaled down */
.float-mute::before,
.float-mute::after {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    /* This gives it a fun, bouncy "pop" effect when it appears */
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: -1;
}

/* The Balloon Body */
.float-mute::before {
    content: "Hear the DA40 Engine Roar in sky 🎧";
    right: 70px;
    white-space: nowrap;
    background: var(--bg-dark);
    color: var(--accent);
    padding: 10px 18px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    transform: translateX(20px) scale(0.5);
}

/* The Balloon Tail (pointing right towards the button) */
.float-mute::after {
    content: "";
    right: 62px;
    top: 50%;
    border-width: 8px 0 8px 10px;
    border-style: solid;
    border-color: transparent transparent transparent var(--bg-dark);
    transform: translate(20px, -50%) scale(0.5);
}

/* --- THE POP-UP STATE (Triggered by JS) --- */
.float-mute.show-hint::before {
    opacity: 1;
    transform: translateX(0) scale(1);
    animation: hint-pulse 2s infinite 0.5s; /* Starts glowing after popping up */
}

.float-mute.show-hint::after {
    opacity: 1;
    transform: translate(0, -50%) scale(1);
}

@keyframes hint-pulse {
    0% { box-shadow: 0 0 0 0 rgba(253, 226, 94, 0.3); }
    70% { box-shadow: 0 0 0 15px rgba(253, 226, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(253, 226, 94, 0); }
}

/* --- HIDE ON CLICK --- */
.float-mute.is-active::before,
.float-mute.is-active::after {
    opacity: 0 !important;
    transform: translateY(15px) scale(0.8) !important;
    transition: all 0.3s ease;
    animation: none;
}

/* Mobile Adjustments */
@media(max-width: 768px) {
    .float-mute::before { right: 55px; font-size: 12px; padding: 8px 14px; }
    .float-mute::after { right: 48px; border-width: 6px 0 6px 8px; }
}


/* --- ARTICLE CA/* --- GLOBAL CALL TO ACTION (CTA) --- */
.article-cta {
    /* UPDATED PATH: Removed the ../../ */
    background: linear-gradient(135deg, rgba(var(--bg-dark-rgb), 0.95), rgba(22, 22, 47, 0.85)), url('media/airport background wide.png') center/cover;
    border: 1px solid rgba(253, 226, 94, 0.3);
    border-radius: 12px;
    padding: 50px 40px;
    text-align: center;
    margin: 60px auto 40px;
    max-width: 900px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5), inset 0 0 30px rgba(253, 226, 94, 0.05);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.article-cta::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: var(--metal-bg);
    background-size: 200% auto;
}

.article-cta h2 {
    /* font-family: 'Playfair Display', serif; */
    font-size: 34px;
    font-weight: 900;
    color: #ffffff !important;
    margin-bottom: 15px;
    letter-spacing: 0.5px;
    border: none;
    padding-bottom: 0;
}

.article-cta p {
    /* font-family: 'Inter', sans-serif; */
    color: #cbd5e1 !important;
    font-size: 16px;
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.article-cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media(max-width: 768px) {
    .article-cta {
        padding: 40px 20px;
        margin: 40px 20px 30px; /* Added side margins so it doesn't touch phone edges */
        border-radius: 8px;
    }
    .article-cta h2 { font-size: 26px; }
    .article-cta-actions { flex-direction: column; gap: 15px; }
    .article-cta-actions .cta-btn,
    .article-cta-actions .learn-btn { width: 100%; margin: 0 !important; }
}
/* --- IG STYLE GALLERY OVERRIDES --- */
.gallery-category-title {
    color: var(--accent);
    font-size: 24px;
    margin-bottom: 20px;
    text-align: left;
    border-bottom: 1px solid var(--border);
    padding-bottom: 10px;
}

.ig-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px; /* Tight Instagram style gap */
}

.ig-gallery-item {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--glass);
    cursor: pointer;
    position: relative;
}

.ig-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
}

.ig-gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(0.8);
}

@media(max-width: 768px) {
    .ig-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3px;
    }
}

/* --- LIGHTBOX MODAL STYLES --- */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 99999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 100000;
}

.lightbox-close:hover,
.lightbox-close:focus {
    color: var(--accent);
    text-decoration: none;
    cursor: pointer;
}

.lightbox-content-wrapper {
    position: relative;
    max-width: 80%;
    max-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.8);
    animation: zoomIn 0.3s ease;
}

.lightbox-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: white;
    border: none;
    font-size: 40px;
    padding: 20px;
    cursor: pointer;
    transition: 0.3s;
    z-index: 100000;
}

.lightbox-btn:hover {
    color: var(--accent);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev { left: 5%; }
.lightbox-next { right: 5%; }

@keyframes zoomIn {
    from {transform: scale(0.95); opacity: 0;}
    to {transform: scale(1); opacity: 1;}
}

@media(max-width: 768px) {
    .lightbox-prev { left: 0; padding: 10px; font-size: 30px; }
    .lightbox-next { right: 0; padding: 10px; font-size: 30px; }
    .lightbox-content-wrapper { max-width: 95%; }
}
