@font-face {
    font-family: 'Twemoji Country Flags';
    unicode-range: U+1F1E6-1F1FF, U+1F3F4, U+E0062-E007F;
    src: url('https://cdn.jsdelivr.net/npm/country-flag-emoji-polyfill@0.1/dist/TwemojiCountryFlags.woff2') format('woff2');
    font-display: swap;
}

select,
select option,
.country-flag,
.country-select-value {
    font-family: 'Twemoji Country Flags', 'Inter', 'Poppins', sans-serif !important;
}

/* ============================================================
   CSS CUSTOM PROPERTIES
============================================================ */
:root {
    /* â”€â”€â”€ Brand Core Colors â”€â”€â”€ */
    --primary-blue: #0A3DFF;
    --secondary-blue: #1B5CFF;
    --deep-navy: #040B4F;
    --dark-bg: #05082D;
    --surface-color: #0D145A;

    /* â”€â”€â”€ Semantic Aliases (single source of truth) â”€â”€â”€ */
    --navy: #0A3DFF;
    /* Primary Blue          */
    --navy-dark: #040B4F;
    /* Deepest navy          */
    --navy-light: #1B5CFF;
    /* Secondary Blue        */
    --accent-cyan: #00D9FF;
    /* Bright Cyan accent    */
    --accent-blue: #00D9FF;
    /* Alias → same cyan     */
    --blue-accent: #00D9FF;
    /* Alias → same cyan     */
    --bg: #05082D;
    /* Dark Background       */
    --white: #FFFFFF;

    /* --- Accent Colors (used for feature dots) --- */
    --orange: #F97316;
    /* Warm orange           */
    --yellow: #EAB308;
    /* Amber yellow          */

    /* â”€â”€â”€ Typography Colors â”€â”€â”€ */
    --text-primary: #FFFFFF;
    --text-secondary: #C7D2FE;
    --text-muted: rgba(199, 210, 254, 0.6);
    --text-dark: #111827;
    /* For dark text on light backgrounds */

    /* â”€â”€â”€ Borders & Glass System â”€â”€â”€ */
    --border: rgba(255, 255, 255, 0.08);
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);

    /* â”€â”€â”€ Shadows â”€â”€â”€ */
    --shadow-sm: 0 4px 12px rgba(0, 217, 255, 0.05);
    --shadow-md: 0 16px 40px rgba(0, 217, 255, 0.08);
    --shadow-lg: 0 32px 80px rgba(0, 217, 255, 0.12);
    --shadow-xl: 0 60px 120px rgba(0, 217, 255, 0.15);

    /* â”€â”€â”€ Shape & Motion â”€â”€â”€ */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --font: 'Poppins', 'Inter', sans-serif;
    --transition: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    --header-h: 88px;
    --bg-gradient: radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.18), transparent 30%),
        radial-gradient(circle at 80% 20%, rgba(10, 61, 255, 0.20), transparent 35%),
        linear-gradient(135deg, #05082D 0%, #0A1A7A 50%, #040B4F 100%);
}

/* ============================================================
   RESET & BASE
============================================================ */
/* Premium Custom Scrollbar */
html {
    scrollbar-color: var(--navy) rgba(30, 136, 229, 0.03);
    scrollbar-width: thin;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: rgba(30, 136, 229, 0.03);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--navy), var(--accent-blue));
    border-radius: 99px;
    border: 2px solid #F4FAFF;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--navy-dark), var(--accent-blue));
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    background: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    font-family: var(--font);
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================================
   PAGE LOADER
============================================================ */
#page-loader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: #F4FAFF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.loader-logo {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 800;
    color: var(--navy-dark);
    letter-spacing: -1px;
}

.loader-logo span {
    color: var(--accent-blue);
}

.loader-bar {
    width: 180px;
    height: 3px;
    background: rgba(30, 136, 229, 0.12);
    border-radius: 99px;
    overflow: hidden;
}

.loader-bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--navy), var(--accent-blue));
    border-radius: 99px;
    animation: loadFill 1.2s ease forwards;
}

@keyframes loadFill {
    to {
        width: 100%;
    }
}

/* ============================================================
   UTILITY CLASSES
============================================================ */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(20px, 3.5vw, 48px);
}

.container-large {
    width: 100%;
    max-width: 1760px;
    margin: 0 auto;
    padding: 0 clamp(20px, 3.5vw, 48px);
}

.section {
    padding: clamp(40px, 6vw, 80px) 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    margin-bottom: 4px;
}

.section-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent-cyan);
    border-radius: 99px;
}

.section-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.section-sub {
    font-size: clamp(16px, 2vw, 18px);
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 540px;
    margin-top: 4px;
}

.text-center .section-sub {
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 99px;
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.15);
    opacity: 0;
    transition: var(--transition-fast);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(90deg, #1E88E5, #00BCD4);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(0, 188, 212, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 188, 212, 0.55), 0 0 15px rgba(30, 136, 229, 0.25);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.btn-ghost:hover {
    background: rgba(45, 127, 249, 0.1);
    color: var(--white);
    border-color: rgba(45, 127, 249, 0.5);
    box-shadow: 0 0 20px rgba(45, 127, 249, 0.4), inset 0 1px 1px rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--white);
    color: var(--navy-dark);
    box-shadow: var(--shadow-md);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn svg {
    flex-shrink: 0;
    transition: transform var(--transition-fast);
}

.btn:hover svg {
    transform: translateX(3px);
}

/* Reveal animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

.reveal-delay-6 {
    transition-delay: 0.6s;
}


@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.animate-fade-in-up {
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.delay-1 {
    animation-delay: 0.15s;
}

.delay-2 {
    animation-delay: 0.3s;
}

.delay-3 {
    animation-delay: 0.45s;
}

.delay-4 {
    animation-delay: 0.6s;
}

.delay-5 {
    animation-delay: 0.75s;
}

/* ============================================================
   HEADER
============================================================ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 88px;
    display: flex;
    align-items: center;
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    box-shadow: none;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

#header .container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100%;
}

#header.scrolled {
    height: 72px;
    background: rgba(255, 255, 255, 0.85);
    border-color: rgba(30, 136, 229, 0.15);
    backdrop-filter: blur(24px) saturate(160%);
    -webkit-backdrop-filter: blur(24px) saturate(160%);
    box-shadow: 0 8px 32px rgba(30, 136, 229, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

#header.scrolled nav {
    background: rgba(30, 136, 229, 0.05);
    /* Frosty light blue capsule when scrolled */
    border-color: rgba(30, 136, 229, 0.12);
}

#header.scrolled .nav-link {
    color: #64748B;
}

#header.scrolled .nav-link:hover {
    color: #1E88E5;
    background: rgba(30, 136, 229, 0.06);
}

#header.scrolled .nav-link.active {
    color: #1E88E5;
    background: rgba(30, 136, 229, 0.08);
}

#header.scrolled .hamburger span {
    background: #0F172A;
}

#header.scrolled .hamburger {
    background: rgba(30, 136, 229, 0.06);
    border-color: rgba(30, 136, 229, 0.12);
}

#header.scrolled .hamburger:hover {
    background: rgba(30, 136, 229, 0.12);
}

.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    flex-shrink: 0;
}

.logo:hover {
    transform: scale(1.06) translateY(-1px);
}

.logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0px 4px 12px rgba(0, 0, 0, 0.15));
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#header.scrolled .logo {
    padding: 0;
    background: transparent;
}

#header.scrolled .logo-img {
    height: 55px;
}

/* ============================================================
   NAVIGATION
============================================================ */
#header nav {
    display: none;
}

@media (min-width: 1024px) {
    #header nav {
        display: flex;
        align-items: center;
        gap: 6px;
        background: rgba(15, 23, 42, 0.35);
        /* Frosty dark glass capsule for strong text contrast */
        border: 1px solid rgba(255, 255, 255, 0.12);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 5px 8px;
        border-radius: 99px;
        transition: all 0.4s ease;
    }
}

.nav-link {
    padding: 6px 14px;
    border-radius: 99px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    /* Pure high-contrast white text */
    transition: all var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 16px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-blue));
    transition: transform var(--transition-fast);
    transform-origin: center;
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.nav-link:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.12);
    /* Clear hover backdrop */
}

/* ============================================================
   MEGA MENU
============================================================ */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.mega-menu {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 1140px;
    max-width: calc(100vw - 40px);
    background: var(--surface-color);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

.mega-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.nav-item-dropdown:hover .simple-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.simple-dropdown {
    position: absolute;
    top: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 340px;
    background: var(--surface-color);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1000;
}

.simple-dropdown::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
}

.simple-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.simple-dropdown li {
    margin-bottom: 16px;
}

.simple-dropdown li:last-child {
    margin-bottom: 0;
}

.simple-dropdown a {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
    font-weight: 500;
}

/* Fallback for when a tags are direct children (no ul/li) */
.simple-dropdown>a {
    display: flex;
    margin-bottom: 16px;
}

.simple-dropdown>a:last-child {
    margin-bottom: 0;
}

.simple-dropdown a:hover {
    color: var(--accent-cyan);
}

.mega-menu-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1.4fr 0.9fr 280px;
    gap: 24px;
}

.mega-column {
    display: flex;
    flex-direction: column;
}

.mega-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
    display: inline-block;
}

.mega-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--accent-cyan);
}

.mega-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-list li {
    margin-bottom: 16px;
}

.mega-list li:last-child {
    margin-bottom: 0;
}

.mega-list a {
    font-size: 14px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
    font-weight: 500;
}

.mega-list a:hover {
    color: var(--accent-cyan);
}

.badge-hot {
    background: #FF0000;
    color: #FFF;
    font-size: 12px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    text-transform: uppercase;
}

/* Promo Card Styling */
.mega-promo-card {
    background: var(--navy-dark);
    border-radius: 12px;
    padding: 24px;
    color: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    /* Fix for WebKit border-radius overflow bleeding */
    transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.mega-promo-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('assets/imgi_130_amped-digital_lotte-duty-free.jpg') center/cover;
    opacity: 0.15;
    z-index: 0;
}

.promo-content {
    position: relative;
    z-index: 1;
}

.promo-logo {
    margin-bottom: 16px;
}

.promo-heading {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 16px;
}

.promo-arrow {
    margin-bottom: 24px;
}

.btn-promo-cta {
    display: inline-flex;
    align-items: center;
    background: #FFF;
    color: var(--navy-dark);
    padding: 6px 16px 6px 6px;
    border-radius: 99px;
    font-weight: 600;
    font-size: 14px;
    transition: transform 0.3s ease;
    width: fit-content;
}

.btn-promo-cta:hover {
    transform: translateX(4px);
}

.promo-cta-circle {
    background: var(--navy-light);
    color: #FFF;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.promo-cta-text {
    color: var(--text-primary);
}

/* Header Call To Action Button */
.header-cta {
    display: none;
}

@media (min-width: 1024px) {
    .header-cta {
        display: flex;
        align-items: center;
    }
}

.header-cta .btn {
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    background: linear-gradient(90deg, #1E88E5, #00BCD4);
    color: var(--white);
    box-shadow: 0 4px 18px rgba(0, 188, 212, 0.3);
    border-radius: 99px;
    transition: all var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.header-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 188, 212, 0.5), 0 0 16px rgba(30, 136, 229, 0.25);
}

/* Hamburger */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    cursor: pointer;
    transition: all var(--transition-fast);
}

@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
}

.hamburger:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: scale(1.05);
}

.hamburger span {
    display: block;
    width: 18px;
    height: 2px;
    background: #FFFFFF;
    border-radius: 99px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
#mobile-menu {
    display: flex !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(244, 250, 255, 0.96);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    padding: 24px 24px 60px 24px;
    z-index: 1001;
    opacity: 0;
    pointer-events: none;
    transform: translateX(100%);
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(30, 136, 229, 0.08);
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    overflow-y: auto;
}

@media (min-width: 1024px) {
    #mobile-menu {
        display: none !important;
    }
}

#header.scrolled~#mobile-menu {
    top: 0;
}

#mobile-menu.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-title {
    font-size: 20px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.mobile-menu-close {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.mobile-nav-link {
    display: block;
    padding: 12px 0;
    border-radius: 0;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent !important;
    border: none !important;
    text-align: left;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: transparent !important;
    color: #00D9FF !important;
    transform: translateX(6px);
}

/* Mobile submenu logic */
.mobile-submenu {
    display: none;
    padding: 12px 16px 0;
}

.mobile-submenu.open {
    display: block;
}

.mobile-submenu-group {
    margin-bottom: 16px;
}

.mobile-submenu-group:last-child {
    margin-bottom: 0;
}

.mobile-submenu-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--navy-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    display: block;
}

.mobile-submenu-link {
    font-size: 14px;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    text-decoration: none;
    transition: color 0.2s ease;
}

.mobile-submenu-link:hover {
    color: var(--navy);
}

.mobile-dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.dropdown-chevron {
    transition: transform 0.3s ease;
    width: 20px;
    height: 20px;
    min-width: 20px;
}

.mobile-dropdown-toggle[aria-expanded="true"] .dropdown-chevron {
    transform: rotate(180deg);
}

.mobile-menu-cta {
    margin-top: 8px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.mobile-menu-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 16px;
    background: linear-gradient(90deg, #1E88E5, #00BCD4);
    box-shadow: 0 8px 24px rgba(0, 188, 212, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #FFFFFF;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.mobile-menu-cta .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 188, 212, 0.5);
}


/* ============================================================
   HERO SECTION â€” CINEMATIC FULL-SCREEN
 ============================================================ */
#hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #03050f;
}

/* ---- Video background ---- */
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

#hero-bg-img,
#hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%) translateZ(0);
    z-index: 0;
    pointer-events: none;
    display: block;
    will-change: transform;
    backface-visibility: hidden;
}

/* Cinematic vignette â€” dark corners, video visible in centre */
.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 50%,
            transparent 20%,
            rgba(2, 6, 23, 0.35) 55%,
            rgba(2, 6, 23, 0.75) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Left-side gradient so text is always readable */
.hero-left-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(2, 6, 23, 0.85) 0%,
            rgba(2, 6, 23, 0.55) 35%,
            transparent 65%);
    z-index: 1;
    pointer-events: none;
}

/* Bottom gradient for stats bar readability */
.hero-bottom-fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(2, 6, 23, 0.92) 0%,
            rgba(2, 6, 23, 0.4) 18%,
            transparent 40%);
    z-index: 1;
    pointer-events: none;
}

/* ---- Main content â€” left-bottom ---- */
.hero-content {
    position: relative;
    width: 100%;
    z-index: 3;
}

.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 720px;
}

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

/* ---- Badge ---- */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 7px 16px;
    border-radius: 99px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
}

#hero .hero-badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #00d9ff;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.9);
    animation: pulseGlow 2s ease infinite;
    flex-shrink: 0;
}

@keyframes pulseGlow {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(0.9);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* ---- Headline ---- */
.hero-title {
    font-size: clamp(40px, 6vw, 88px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title-accent {
    background: linear-gradient(135deg, var(--accent-cyan) 30%, var(--accent-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#hero .hero-title-accent {
    background: linear-gradient(135deg, #00D9FF 20%, #7DD3FC 60%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---- Sub-heading ---- */
.hero-sub {
    font-size: clamp(15px, 1.5vw, 18px);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    margin-bottom: 32px;
}

/* ---- CTAs ---- */
.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.hero-actions .btn-primary {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    background: linear-gradient(90deg, #1E88E5, #00BCD4);
    box-shadow: 0 8px 28px rgba(0, 188, 212, 0.35);
    border-radius: 99px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-actions .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(0, 188, 212, 0.5);
}

.hero-actions .btn-ghost-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 99px;
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    transition: all 0.3s ease;
    text-decoration: none;
}

.hero-actions .btn-ghost-white:hover {
    background: rgba(45, 127, 249, 0.12);
    border-color: rgba(45, 127, 249, 0.55);
    box-shadow: 0 0 20px rgba(45, 127, 249, 0.35);
    transform: translateY(-2px);
}

/* ---- Stats bar â€” pinned to bottom ---- */
.hero-stats-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 18px clamp(24px, 6vw, 96px);
    background: rgba(2, 6, 23, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    min-width: 90px;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
}

.hero-stat-num {
    font-size: clamp(20px, 2.4vw, 32px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1px;
    line-height: 1;
}

.hero-stat-num span {
    color: #00d9ff;
}

.hero-stat-label {
    font-size: clamp(9px, 0.9vw, 11px);
    color: rgba(255, 255, 255, 0.45);
    font-weight: 500;
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
}

/* ---- Scroll indicator ---- */
.scroll-indicator {
    position: absolute;
    bottom: 90px;
    right: clamp(24px, 4vw, 60px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 4;
    opacity: 0.6;
    animation: fadeInDown 1.5s ease 2s both;
}

.scroll-mouse {
    width: 22px;
    height: 34px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 11px;
    display: flex;
    justify-content: center;
    padding-top: 5px;
}

.scroll-wheel {
    width: 3px;
    height: 7px;
    background: #fff;
    border-radius: 2px;
    animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    80% {
        transform: translateY(10px);
        opacity: 0;
    }

    81% {
        transform: translateY(0);
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.scroll-label {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    font-weight: 600;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 0.6;
        transform: translateY(0);
    }
}

/* ============================================================
   


/* Scroll indicator styling */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.scroll-text {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 600;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.35), transparent);
    animation: scrollAnim 2s ease-in-out infinite;
}

@keyframes scrollAnim {
    0% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 0.6;
    }

    50% {
        transform: scaleY(0.4);
        transform-origin: top;
        opacity: 0.2;
    }

    50.1% {
        transform: scaleY(0.4);
        transform-origin: bottom;
        opacity: 0.2;
    }

    100% {
        transform: scaleY(1);
        transform-origin: bottom;
        opacity: 0.6;
    }
}

/* ============================================================
   OUR CLIENTS MARQUEE TICKER
============================================================ */
.brands-marquee-section {
    position: relative;
    padding: 60px 0 40px;
    overflow: hidden;
}

.brands-marquee-section::before {
    content: '';
    position: absolute;
    top: -150%;
    left: 20%;
    width: 60%;
    height: 300%;
    background: radial-gradient(ellipse at center, rgba(30, 136, 229, 0.15) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.marquee-header {
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.marquee-subtitle {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.marquee-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 700;
    color: var(--text-primary);
}

.marquee-title .hero-title-accent {
    color: var(--accent-blue);
}

.marquee-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto 32px;
    max-width: 1440px;
}

.marquee-container {
    width: 100%;
    position: relative;
    z-index: 1;
}

.marquee-wrap {
    overflow: hidden;
    display: flex;
    width: 100%;
    position: relative;
    /* Fade-out edges for seamless feel */
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.marquee-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
    will-change: transform;
}

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

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 48px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

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

.brand-item img {
    height: 38px;
    width: auto;
    max-width: none;
    object-fit: contain;
    opacity: 0.8;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 4px;
}

.brand-item.brand-item-dubai {
    height: auto;
    min-height: 48px;
    overflow: visible;
}

.brand-item.brand-item-dubai img {
    height: 64px;
    width: auto;
    max-width: none;
    object-fit: contain;
    object-position: center;
    border-radius: 0;
}

.brand-item:hover img {
    opacity: 1;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================================
   SERVICES SECTION
============================================================ */
#services {
    background: var(--bg);
}

.services-header {
    margin-bottom: 60px;
}

.services-subheading {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
    color: var(--text-dark);
    margin: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: #FFFFFF;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: none;
    transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    color: var(--text-primary);
    transform: translateZ(0);
    padding: 10px;
}

.service-card::before {
    display: none;
    /* Remove the top colored bar for a cleaner look */
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 0, 0, 0.12);
    box-shadow: 0 24px 48px -12px rgba(0, 0, 0, 0.08);
}

.service-img-wrapper {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    background: #f8f9fa;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

.service-content {
    padding: 32px 16px 20px 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
    background: transparent;
}

.service-icon {
    position: static;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(30, 136, 229, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
    border: 1px solid rgba(30, 136, 229, 0.1);
    box-shadow: none;
}

.service-card:hover .service-icon {
    background: var(--navy);
    border-color: var(--navy);
    transform: scale(1.05);
}

.service-icon svg {
    width: 20px;
    height: 20px;
    color: var(--navy);
    transition: color 0.3s ease;
}

.service-card:hover .service-icon svg {
    color: #ffffff;
}

.service-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.service-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    flex-grow: 1;
    font-weight: 400;
}

.service-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    opacity: 0;
    transform: translateX(-10px);
}

.service-card:hover .service-arrow {
    color: var(--accent-blue);
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   ABOUT SECTION (CINEMATIC DARK & GLOW DESIGN)
============================================================ */
#about {
    background: #F4FAFF;
    position: relative;
    overflow: hidden;
    padding: 80px 0 80px 0;
}

#about .about-split-layout {
    margin-top: 0;
}

/* Background Glowing Orbs */
.about-bg-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.about-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.12;
    mix-blend-mode: screen;
}

.orb-blue {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--blue-accent) 0%, transparent 70%);
    top: 10%;
    left: -100px;
}

.orb-orange {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-cyan) 0%, transparent 70%);
    bottom: 10%;
    right: -100px;
}

/* Split Layout */
.about-split-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: center;
    margin-top: 30px;
    position: relative;
    z-index: 1;
}

@media (min-width: 1024px) {
    .about-split-layout {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 1023px) {
    .about-split-layout .about-visual-showcase {
        order: -1;
    }
}

/* Left Showcase Frame */
.about-visual-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-showcase-frame {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.7),
        0 0 40px rgba(0, 102, 255, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.15);
    border: 1px solid var(--glass-border);
    background: var(--navy-dark);
    /* Fix for WebKit border-radius overflow bleeding */
    transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.about-showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
    border-radius: inherit;
}

.about-showcase-frame:hover .about-showcase-img {
    transform: scale(1.04);
}

.about-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(3, 7, 18, 0.6) 0%, transparent 50%, rgba(3, 7, 18, 0.3) 100%);
    pointer-events: none;
}

/* Floating UI Badges inside About */
.about-float-badge {
    position: absolute;
    background: rgba(11, 20, 38, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
    transition: transform 0.2s ease-out;
}

.badge-top {
    top: 24px;
    left: 24px;
    animation: floatWidget1 5s ease-in-out infinite alternate;
}

.badge-bottom {
    bottom: 24px;
    right: 24px;
    animation: floatWidget2 6s ease-in-out infinite alternate;
}

.pulse-dot-orange {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
    animation: pulseGlow 1.5s infinite;
}

.pulse-dot-blue {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--blue-accent);
    box-shadow: 0 0 10px var(--blue-accent);
    animation: pulseGlow 1.5s infinite;
}

/* Right Content Showcase */
.about-content-showcase {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about-content-showcase .section-title {
    font-size: clamp(26px, 3.8vw, 38px);
    line-height: 1.15;
    letter-spacing: -1px;
}

.about-content-showcase h4 {
    font-size: 18px !important;
}

.about-content-showcase h5 {
    font-size: 15px !important;
}

.about-subtitle {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.about-story-text {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 10px;
}

.about-mini-points {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 0;
}

.about-mini-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.point-icon {
    font-size: 18px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-mini-point h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.about-mini-point p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Experience Stats Grid */
.about-stats-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .about-stats-grid {
        gap: 24px;
    }
}

@media (min-width: 1024px) {
    .about-stats-grid {
        flex-wrap: nowrap;
    }
}

.stat-glass-card {
    background: #FFFFFF;
    border: 1px solid rgba(30, 136, 229, 0.12);
    border-radius: var(--radius-md);
    padding: 24px 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    flex: 1 1 150px;
    max-width: 280px;
}

.stat-glass-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 188, 212, 0.3);
    box-shadow: var(--shadow-lg), 0 8px 32px rgba(30, 136, 229, 0.06);
}

.stat-num {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -1px;
    line-height: 1;
}

.stat-num span {
    color: var(--accent-blue);
}

.stat-label {
    font-size: 11px;
    color: var(--text-secondary);
    font-weight: 600;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mini stat background glows */
.stat-glow {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    filter: blur(35px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.glow-orange {
    background: var(--accent-blue);
    top: -20px;
    right: -20px;
}

.glow-blue {
    background: var(--navy-light);
    bottom: -20px;
    left: -20px;
}

/* Why Choose Us Grid styling */
.about-why-choose {
    margin-top: 100px;
    position: relative;
    z-index: 1;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 48px;
}

@media (min-width: 640px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }

    .about-why-choose .why-choose-grid,
    #solution-specs .why-choose-grid,
    #tech-specs .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

.why-card {
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(30, 136, 229, 0.12);
    border-radius: 24px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.02);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    z-index: 1;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 188, 212, 0.4);
    box-shadow: 0 20px 40px rgba(30, 136, 229, 0.08), 0 0 30px rgba(0, 188, 212, 0.04);
}

.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(30, 136, 229, 0.06);
    border: 1px solid rgba(30, 136, 229, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 24px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-icon svg {
    width: 22px;
    height: 22px;
    color: var(--navy);
    opacity: 0.85;
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--navy), var(--accent-blue));
    border-color: transparent;
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.25);
}

.why-card:hover .why-icon svg {
    color: var(--white);
    opacity: 1;
}

.why-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}

.why-card:hover h4 {
    color: var(--navy-dark);
}

.why-card p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    transition: color 0.3s ease;
}

@media (min-width: 640px) {
    .why-card-wide {
        grid-column: span 2;
        max-width: 550px;
        justify-self: center;
    }
}

/* Mini glows on why cards */
.why-card-glow-blue,
.why-card-glow-orange {
    position: absolute;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    filter: blur(45px);
    opacity: 0.02;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    bottom: -50px;
    right: -50px;
    z-index: 0;
}

.why-card-glow-blue {
    background: radial-gradient(circle, var(--blue-accent) 0%, transparent 70%);
}

.why-card-glow-orange {
    background: radial-gradient(circle, #FF7A00 0%, transparent 70%);
}

.why-card:hover .why-card-glow-blue {
    opacity: 0.25;
    transform: scale(1.25);
}

.why-card:hover .why-card-glow-orange {
    opacity: 0.25;
    transform: scale(1.25);
}

/* Company Mission Statement Block */
.about-mission-statement {
    margin-top: 100px;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: linear-gradient(135deg, #0A1A7A 0%, #05082D 100%);
    padding: 60px 40px;
    z-index: 1;
    border: none;
    box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
    .about-mission-statement {
        padding: 80px;
    }
}

.mission-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    filter: blur(50px);
    pointer-events: none;
}

.mission-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 780px;
    margin: 0 auto;
}

.mission-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
}

.mission-text {
    font-size: clamp(20px, 3.5vw, 32px);
    font-weight: 800;
    line-height: 1.3;
    color: var(--white);
    margin-top: 16px;
    letter-spacing: -1px;
}

.highlight-orange {
    background: linear-gradient(135deg, #FFFFFF 30%, #E3F2FD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================================
   PRODUCTS SECTION
============================================================ */
#products {
    background: var(--bg);
}

.products-header {
    margin-bottom: 60px;
}

.products-scroll {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
}

@media (max-width: 640px) {
    .products-scroll {
        display: flex;
        overflow-x: auto;
        gap: 16px;
        padding-bottom: 12px;
        scrollbar-width: none;
    }

    .products-scroll::-webkit-scrollbar {
        display: none;
    }
}

.product-card {
    background: var(--navy-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    flex-shrink: 0;
    min-width: 260px;
}

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

.product-img {
    width: 100%;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #0f1e3d 0%, #18315B 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

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

.product-img-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

.product-img-icon {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    color: rgba(255, 255, 255, 0.35);
    transition: var(--transition);
}

.product-card:hover .product-img-icon {
    color: rgba(255, 255, 255, 0.6);
    transform: scale(1.1);
}

.product-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent-cyan);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 99px;
}

.product-body {
    padding: 24px;
}

.product-name {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.product-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 8px;
}

.product-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-accent);
    transition: gap var(--transition-fast);
}

.product-link:hover {
    gap: 10px;
}

/* ============================================================
   SOLUTIONS SECTION
============================================================ */
#solutions {
    background: #F4FAFF;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.solution-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    padding: clamp(40px, 6vw, 80px) 0;
    border-bottom: 1px solid var(--border);
}

.solution-block:last-child {
    border-bottom: none;
}

@media (min-width: 1024px) {
    .solution-block {
        grid-template-columns: 1fr 1fr;
    }

    .solution-block.reverse .solution-content {
        order: 2;
    }

    .solution-block.reverse .solution-visual {
        order: 1;
    }
}

.solution-num {
    font-size: 80px;
    font-weight: 900;
    letter-spacing: -4px;
    color: rgba(24, 49, 91, 0.05);
    line-height: 1;
    margin-bottom: -16px;
}

.solution-name {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.solution-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.solution-points {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.solution-point {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.solution-point::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-cyan);
    flex-shrink: 0;
}

.solution-visual {
    border-radius: var(--radius-lg);
    aspect-ratio: 4/3;
    position: relative;
    overflow: hidden;
}

.sol-bg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sol-bg-1 {
    background: linear-gradient(135deg, #0f1e3d, #1e3d7a);
}

.sol-bg-2 {
    background: linear-gradient(135deg, #1a0a00, #3d1e00);
}

.sol-bg-3 {
    background: linear-gradient(135deg, #001a0a, #003d1e);
}

.sol-bg-4 {
    background: linear-gradient(135deg, #1a001a, #3d003d);
}

.sol-bg-5 {
    background: linear-gradient(135deg, #1a1000, #3d2800);
}

.sol-icon {
    width: 80px;
    height: 80px;
    color: rgba(255, 255, 255, 0.2);
}

.sol-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* ============================================================
   PROJECTS SECTION
============================================================ */
#projects {
    background: #FFFFFF;
}

#projects .section-label {
    color: var(--accent-blue);
}

#projects .section-title {
    color: var(--white);
}

#projects .section-sub {
    color: rgba(255, 255, 255, 0.55);
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .project-featured {
        grid-column: 1 / -1;
    }
}

@media (min-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .project-featured {
        grid-column: 1 / 3;
    }
}

.project-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.project-featured {
    aspect-ratio: 16/9;
}

@media (max-width: 767px) {
    .project-featured {
        aspect-ratio: 4/3;
    }
}

.project-card:hover {
    transform: scale(1.02);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
}

.project-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(24, 49, 91, 0.8), rgba(45, 127, 249, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
}

.proj-bg-1 {
    background: linear-gradient(135deg, #0f1e3d, #1a3d6e);
}

.proj-bg-2 {
    background: linear-gradient(135deg, #1a0f00, #3d2200);
}

.proj-bg-3 {
    background: linear-gradient(135deg, #0a0a1a, #1a1a3d);
}

.proj-bg-4 {
    background: linear-gradient(135deg, #001a10, #003d25);
}

.project-icon {
    width: 64px;
    height: 64px;
    color: rgba(255, 255, 255, 0.2);
}

.project-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, transparent 60%);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity var(--transition);
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-cat {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 8px;
}

.project-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.3px;
}

.project-loc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
}

.project-tag-always {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.8);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================================
   TESTIMONIALS SECTION
============================================================ */
#testimonials {
    background: var(--bg);
}

.testimonials-wrap {
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.testimonials-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonial-card {
    flex: 0 0 calc(100% - 0px);
    background: #FFFFFF;
    border-radius: var(--radius-md);
    padding: clamp(28px, 4vw, 48px);
    border: 1px solid rgba(30, 136, 229, 0.12);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 188, 212, 0.3);
    box-shadow: var(--shadow-lg), 0 8px 32px rgba(30, 136, 229, 0.06);
}

@media (min-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 12px);
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        flex: 0 0 calc(33.333% - 16px);
    }
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.star {
    color: var(--accent-blue);
    font-size: 18px;
}

.testimonial-quote {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-secondary);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(30, 136, 229, 0.08);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--accent-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.author-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.author-role {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 2px;
}

.testimonials-controls {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 36px;
}

.tctrl-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid rgba(30, 136, 229, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    color: var(--navy);
    box-shadow: var(--shadow-sm);
}

.tctrl-btn:hover {
    background: rgba(30, 136, 229, 0.06);
    color: var(--navy-dark);
    border-color: rgba(30, 136, 229, 0.3);
    box-shadow: var(--shadow-md);
    transform: scale(1.05);
}

.tctrl-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.tctrl-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(30, 136, 229, 0.2);
    cursor: pointer;
    transition: var(--transition-fast);
}

.tctrl-dot.active {
    background: var(--accent-blue);
    width: 24px;
    border-radius: 99px;
}

/* ============================================================
   NEWS SECTION
============================================================ */
#news {
    background: transparent;
}

.news-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.news-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg);
    transition: var(--transition);
    cursor: pointer;
}

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

.news-img {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.news-card:hover .news-img img {
    transform: scale(1.05);
}

.news-img-icon {
    width: 48px;
    height: 48px;
    color: rgba(255, 255, 255, 0.2);
}

.news-img-cat {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--blue-accent);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 99px;
}

.news-body {
    padding: 24px;
}

.news-date {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-date::before {
    content: '';
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--accent-cyan);
}

.news-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.4;
    letter-spacing: -0.2px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-excerpt {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-read {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-accent);
    transition: gap var(--transition-fast);
}

.news-card:hover .news-read {
    gap: 10px;
}

/* ============================================================
   CTA BANNER SECTION
============================================================ */
#contact {
    padding: 0;
    margin: 0;
}

#cta-banner {
    background: linear-gradient(135deg, #0EA5E9, #2563EB, #38BDF8);
    position: relative;
    overflow: hidden;
    padding: clamp(80px, 12vw, 140px) 0;
}

.cta-mesh {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(45, 127, 249, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 50%, rgba(0, 188, 212, 0.15) 0%, transparent 50%);
}

.cta-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 24px;
}

.cta-label::before {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent-blue);
    border-radius: 99px;
}

.cta-label::after {
    content: '';
    display: block;
    width: 24px;
    height: 2px;
    background: var(--accent-blue);
    border-radius: 99px;
}

.cta-title {
    font-size: clamp(32px, 5vw, 60px);
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--white);
    line-height: 1.05;
    text-align: center;
    width: 100%;
}

.cta-sub {
    font-size: clamp(16px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.6);
    margin-top: 20px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 48px;
}

.cta-actions .btn-primary {
    padding: 18px 40px;
    font-size: 17px;
}

.cta-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    font-weight: 600;
    padding: 18px 32px;
    border-radius: 99px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    transition: all var(--transition-fast);
}

.cta-phone:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* CTA trust badges row */
.cta-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 24px;
    margin-top: 36px;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.2px;
}

.cta-trust-item svg {
    width: 16px;
    height: 16px;
    color: rgba(255, 255, 255, 0.9);
    flex-shrink: 0;
}

/* Footer contact links (CSS-only hover â€” replaces inline JS) */
.footer-contact-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-contact-link:hover {
    color: #ffffff;
}

.footer-contact-link svg {
    flex-shrink: 0;
}

/* Compact service card â€” Why Choose Us grid */
.compact-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 8px;
}

@media (min-width: 640px) {
    .compact-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .compact-services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.compact-service-card {
    background: #FFFFFF;
    border: 1px solid rgba(30, 136, 229, 0.12);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(30, 136, 229, 0.04);
}

.compact-service-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 188, 212, 0.35);
    box-shadow: 0 12px 32px rgba(30, 136, 229, 0.1);
}

.check-icon-wrapper {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: linear-gradient(135deg, #1E88E5, #00BCD4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 188, 212, 0.25);
    transition: var(--transition);
}

.compact-service-card:hover .check-icon-wrapper {
    transform: scale(1.1) rotate(6deg);
    box-shadow: 0 8px 20px rgba(0, 188, 212, 0.4);
}

.service-name-compact {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    letter-spacing: -0.2px;
}

.service-desc-compact {
    font-size: 15px;
    color: #475569;
    line-height: 1.6;
}

/* ============================================================
   FOOTER
============================================================ */
footer {
    background: #1565C0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 100px;
    padding-bottom: 80px;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px 40px;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-logo-link:hover {
    transform: scale(1.05) translateY(-2px);
    opacity: 0.9;
}

.footer-logo-img {
    height: 96px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.15) drop-shadow(0px 0px 12px rgba(255, 255, 255, 0.6)) drop-shadow(0px 0px 28px rgba(100, 180, 255, 0.5));
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-logo-link:hover .footer-logo-img {
    filter: brightness(1.3) drop-shadow(0px 0px 18px rgba(255, 255, 255, 0.85)) drop-shadow(0px 0px 40px rgba(100, 180, 255, 0.7));
}

.footer-tagline {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    max-width: 280px;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 28px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition-fast);
    cursor: pointer;
}

.social-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
    flex-shrink: 0;
}

.social-btn:hover {
    background: var(--accent-cyan);
    color: var(--white);
    border-color: var(--accent-cyan);
    transform: translateY(-2px);
}

.footer-col-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-col-title::after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background: var(--accent-blue);
    margin-top: 8px;
    border-radius: 2px;
}

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

.footer-link {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.75);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0;
}

.footer-link::before {
    content: '→';
    font-size: 12px;
    opacity: 0;
    width: 0;
    color: var(--accent-blue);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-link:hover {
    color: var(--white);
    gap: 8px;
}

.footer-link:hover::before {
    opacity: 1;
    width: auto;
}

/* ============================================================
   SCROLL TO TOP
============================================================ */
#scroll-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 500;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--navy);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: var(--transition);
}

#scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#scroll-top:hover {
    background: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 188, 212, 0.35);
}

/* ============================================================
   ACTIVE NAV LINK & TRANSITION MATCHES
============================================================ */
.nav-link.active {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.08);
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.mobile-nav-link.active {
    background: rgba(0, 188, 212, 0.1);
    color: var(--accent-blue);
    transform: translateX(6px);
}

/* ============================================================
   CONTACT PAGE SPLIT GRID & FORM
============================================================ */
.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 60px;
}

@media (min-width: 1024px) {
    .contact-split-grid {
        grid-template-columns: 1fr 1.3fr;
        gap: 60px;
    }
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 20px;
    padding: 24px 28px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-info-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0A3DFF, #00D9FF);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(10, 61, 255, 0.08);
}

.contact-info-card:hover::after {
    opacity: 1;
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(10, 61, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 24px;
    color: #0A3DFF;
    transition: all 0.4s ease;
}

.contact-info-card:hover .contact-card-icon {
    background: #0A3DFF;
    color: #FFFFFF;
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 8px 20px rgba(10, 61, 255, 0.25);
}

.contact-card-content {
    flex: 1;
}

.contact-card-content h3 {
    font-size: 17px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.contact-card-content p,
.contact-card-content a {
    font-size: 14.5px;
    color: #64748B;
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card-content a:hover {
    color: #0A3DFF;
}

.contact-form-container {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.03);
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.04);
}

.contact-form-title {
    font-size: 32px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -1px;
    margin-bottom: 12px;
}

.contact-form-subtitle {
    font-size: 15px;
    color: #64748B;
    margin-bottom: 36px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .contact-form-row {
        grid-template-columns: 1fr 1fr;
    }
}

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

.form-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #475569;
    margin-left: 4px;
}

.form-input {
    background: #F8FAFC;
    border: 1px solid transparent;
    border-radius: 14px;
    padding: 16px 20px;
    font-size: 15px;
    color: #0F172A;
    font-family: var(--font);
    transition: all 0.3s ease;
    width: 100%;
}

.form-input::placeholder {
    color: #94A3B8;
}

.form-input:focus {
    outline: none;
    background: #FFFFFF;
    border-color: #0A3DFF;
    box-shadow: 0 4px 16px rgba(10, 61, 255, 0.1);
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%2364748B' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 40px;
    cursor: pointer;
}

select.form-input option {
    background: #FFFFFF;
    color: #0F172A;
}

textarea.form-input {
    resize: vertical;
    min-height: 140px;
}

/* --- File Upload Component --- */
.file-upload-wrapper {
    position: relative;
}

.file-input {
    display: none;
}

.file-upload-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 36px 20px;
    border: 2px dashed #E2E8F0;
    border-radius: 14px;
    background: #F8FAFC;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.file-upload-area:hover,
.file-upload-area.drag-over {
    border-color: #0A3DFF;
    background: #F0F4FF;
}

.file-upload-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A3DFF;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.file-upload-area:hover .file-upload-icon {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(10, 61, 255, 0.15);
}

.file-upload-text {
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

.file-upload-cta {
    color: #0A3DFF;
    font-weight: 700;
}

.file-upload-hint {
    font-size: 12px;
    color: #94A3B8;
}

.contact-form-container .btn-primary {
    background: linear-gradient(135deg, #0A3DFF, #00D9FF);
    border: none;
    border-radius: 14px;
    color: #FFFFFF;
    width: 100%;
    padding: 18px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 10px 24px rgba(10, 61, 255, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.contact-form-container .btn-primary:hover {
    box-shadow: 0 16px 32px rgba(10, 61, 255, 0.35);
    transform: translateY(-3px);
    background: linear-gradient(135deg, #1B5CFF, #2EE5FF);
}

/* File Preview List */
.file-preview-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 10px;
}

.file-preview-list:empty {
    display: none;
}

.file-preview-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(15, 31, 61, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    animation: fadeInUp 0.3s ease forwards;
}

.file-preview-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(45, 127, 249, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}

.file-preview-info {
    flex: 1;
    min-width: 0;
}

.file-preview-name {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-preview-size {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

.file-preview-remove {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.12);
    border: none;
    color: #ef4444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.2s ease;
    flex-shrink: 0;
    line-height: 1;
}

.file-preview-remove:hover {
    background: rgba(239, 68, 68, 0.25);
    transform: scale(1.1);
}


/* ============================================================
   FAQ ACCORDION
============================================================ */
.faq-section {
    background: var(--bg);
}

.faq-container {
    max-width: 800px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--navy-light);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-fast);
}

.faq-trigger {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    gap: 20px;
    transition: var(--transition-fast);
}

.faq-trigger:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-chevron {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--accent-cyan);
    flex-shrink: 0;
}

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

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-inner {
    padding: 0 30px 24px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
}

.form-notification {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #10B981;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeInUp 0.4s ease forwards;
}

/* ============================================================
   COMPACT SERVICES GRID (For 14-item list)
============================================================ */
.compact-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.compact-service-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: rgba(17, 25, 46, 0.6);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
    /* Fix for WebKit border-radius overflow bleeding */
    transform: translateZ(0);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.compact-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.compact-service-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(30, 136, 229, 0.15);
    background: rgba(17, 25, 46, 0.85);
}

.compact-service-card:hover::before {
    transform: translateX(100%);
}

.compact-service-icon {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--blue-accent);
    box-shadow: 0 0 12px var(--blue-accent);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.compact-service-card:hover .compact-service-icon {
    background: var(--accent-cyan);
    box-shadow: 0 0 16px var(--accent-cyan);
    transform: scale(1.2);
}

.compact-service-card:nth-child(even) .compact-service-icon {
    background: var(--accent-blue);
    box-shadow: 0 0 12px var(--accent-blue);
}

.compact-service-card:nth-child(even):hover .compact-service-icon {
    background: var(--accent-cyan);
    box-shadow: 0 0 16px var(--accent-cyan);
}

.service-name-compact {
    font-size: 15.5px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    line-height: 1.4;
}

/* ============================================================
   PRODUCTS PAGE SPECIFIC STYLES
============================================================ */
.products-showcase-container {
    display: flex;
    flex-direction: column;
    gap: clamp(60px, 10vw, 120px);
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.showcase-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .showcase-row {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 80px;
    }

    .showcase-row.reverse {
        grid-template-columns: 0.9fr 1.1fr;
    }

    .showcase-row.reverse .showcase-visual {
        order: 2;
    }

    .showcase-row.reverse .showcase-content {
        order: 1;
    }
}

.showcase-visual {
    position: relative;
}

.showcase-img-frame {
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    position: relative;
    background: var(--navy-dark);
}

.showcase-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.showcase-img-frame:hover .showcase-img {
    transform: scale(1.04);
}

.showcase-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.showcase-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.1;
}

.showcase-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.showcase-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 10px;
}

.showcase-spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13.5px;
    color: var(--text-secondary);
    font-weight: 500;
}

.showcase-spec-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-cyan);
    box-shadow: 0 0 8px var(--accent-cyan);
}

/* Industry Solutions Showcase Grid */
.industry-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

@media (min-width: 640px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.industry-card {
    background: rgba(17, 25, 46, 0.45);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.industry-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 20px 48px rgba(0, 102, 255, 0.15);
}

.industry-icon {
    font-size: 28px;
    opacity: 0.9;
}

.industry-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.industry-card p {
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* ============================================================
   SOLUTIONS PAGE SPECIFIC STYLES
   ============================================================ */
.sol-overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

@media (min-width: 640px) {
    .sol-overview-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .sol-overview-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.sol-overview-card {
    background: #FFFFFF;
    border: 1px solid rgba(30, 136, 229, 0.12);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}

.sol-overview-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 188, 212, 0.3);
    box-shadow: var(--shadow-lg), 0 8px 32px rgba(30, 136, 229, 0.06);
}

.sol-overview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 188, 212, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

.sol-overview-card:hover::before {
    opacity: 1;
}

.sol-overview-card .sol-icon-badge {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 188, 212, 0.08);
    border: 1px solid rgba(0, 188, 212, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--accent-blue);
    box-shadow: 0 8px 24px rgba(0, 188, 212, 0.1);
    margin-bottom: 8px;
}

.sol-overview-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.sol-overview-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.sol-overview-card .sol-card-link {
    margin-top: auto;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
    text-decoration: none;
}

.sol-overview-card .sol-card-link:hover {
    color: var(--accent-blue);
    gap: 10px;
}

/* Business Dashboard Mockup */
.business-dashboard-container {
    background: rgba(10, 18, 38, 0.5);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: clamp(24px, 5vw, 60px);
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(16px);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
}

.business-dashboard-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .business-dashboard-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 60px;
    }
}

.dashboard-content-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.business-dashboard-container .about-story-text {
    color: rgba(255, 255, 255, 0.9);
}

.business-dashboard-container .showcase-spec-item {
    color: rgba(255, 255, 255, 0.9);
}

.dashboard-visual-right {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.6);
    background: #030712;
    padding: 24px;
}

.dashboard-header-bar {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 16px;
}

.dashboard-dots {
    display: flex;
    gap: 8px;
}

.dashboard-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dashboard-dot.red {
    background: #ef4444;
}

.dashboard-dot.yellow {
    background: #f59e0b;
}

.dashboard-dot.green {
    background: #10b981;
}

.dashboard-title-mock {
    font-size: 12px;
    font-family: monospace;
    color: rgba(255, 255, 255, 0.55);
    margin-left: 20px;
}

.dashboard-mock-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 640px) {
    .dashboard-mock-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.dashboard-mock-card {
    background: rgba(17, 25, 46, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.dashboard-mock-card.full-width {
    grid-column: 1 / -1;
}

.dashboard-mock-card h5 {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.dashboard-mock-value {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.dashboard-mock-value.green-text {
    color: #10b981;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.2);
}

.dashboard-mock-progress {
    height: 6px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
    overflow: hidden;
}

.dashboard-mock-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--blue-accent));
    border-radius: 3px;
}

.device-status-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.device-status-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.device-status-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.status-badge {
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 10.5px;
    font-weight: 600;
}

.status-badge.active {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.status-badge.alert {
    background: rgba(0, 188, 212, 0.1);
    color: var(--accent-blue);
    border: 1px solid rgba(0, 188, 212, 0.2);
}

/* Process Section Timeline */
.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-line {
    position: absolute;
    left: 20px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-cyan) 0%, var(--blue-accent) 50%, var(--border) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .timeline-line {
        left: 50%;
        transform: translateX(-50%);
    }
}

.timeline-step {
    position: relative;
    display: flex;
    gap: 24px;
    z-index: 2;
}

@media (min-width: 768px) {
    .timeline-step {
        width: 50%;
        gap: 0;
    }

    .timeline-step.odd {
        margin-left: auto;
        padding-left: 50px;
    }

    .timeline-step.even {
        margin-right: auto;
        padding-right: 50px;
        flex-direction: row-reverse;
        text-align: right;
    }
}

.timeline-node {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--navy-dark);
    border: 2px solid var(--accent-cyan);
    box-shadow: 0 0 15px var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
    z-index: 3;
}

.timeline-step.odd .timeline-node {
    border-color: var(--blue-accent);
    box-shadow: 0 0 15px var(--blue-accent);
}

@media (min-width: 768px) {
    .timeline-node {
        position: absolute;
        left: 0;
        transform: translateX(-50%);
        top: 10px;
    }

    .timeline-step.even .timeline-node {
        left: 100%;
        right: auto;
        transform: translateX(-50%);
    }
}

.timeline-card {
    background: rgba(17, 25, 46, 0.45);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(12px);
    width: 100%;
}

.timeline-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    margin-top: 0;
}

.timeline-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   PROJECTS PAGE SPECIFIC STYLES
   ============================================================ */

/* Before & After Interactive Slider */
.before-after-wrapper {
    position: relative;
    max-width: 900px;
    margin: 48px auto 0 auto;
    width: 100%;
}

.before-after-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16/10;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.7),
        inset 0 1px 2px rgba(255, 255, 255, 0.15);
    background: var(--navy-dark);
    user-select: none;
    -webkit-user-select: none;
}

.before-after-img-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.before-after-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.before-after-overlay-container {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
    /* JS Controlled */
    overflow: hidden;
    z-index: 2;
    transition: width 0.05s ease-out;
}

.before-after-overlay-container .before-after-img {
    width: 900px;
    /* Locked to max-width to prevent scaling */
    max-width: none;
    height: 100%;
}

/* responsive adjustment for locked image width */
@media (max-width: 932px) {
    .before-after-overlay-container .before-after-img {
        width: calc(100vw - 32px);
    }
}

.before-after-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--blue-accent) 0%, var(--accent-cyan) 100%);
    box-shadow: 0 0 12px var(--accent-cyan);
    left: 50%;
    /* JS Controlled */
    transform: translateX(-50%);
    cursor: ew-resize;
    z-index: 10;
    transition: left 0.05s ease-out;
}

.before-after-handle-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(17, 25, 46, 0.9);
    border: 2px solid var(--accent-cyan);
    box-shadow: 0 0 20px var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
    pointer-events: none;
    z-index: 11;
}

.before-after-label {
    position: absolute;
    bottom: 24px;
    background: rgba(17, 25, 46, 0.75);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    padding: 6px 16px;
    border-radius: 12px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--white);
    z-index: 5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.before-after-label.before {
    left: 24px;
}

.before-after-label.after {
    right: 24px;
}

/* Category Filter Bar */
.projects-filter-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid rgba(30, 136, 229, 0.12);
    background: #FFFFFF;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 13.5px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.25);
}

/* Interactive Project Grid Gallery */
.project-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 640px) {
    .project-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .project-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.project-gallery-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    border: 1px solid var(--glass-border);
    background: rgba(17, 25, 46, 0.45);
    backdrop-filter: blur(12px);
    transition: var(--transition);
}

.project-gallery-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 102, 255, 0.3);
    box-shadow: 0 20px 48px rgba(0, 102, 255, 0.15);
}

.gallery-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.project-gallery-card:hover .gallery-card-img {
    transform: scale(1.05);
}

.gallery-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(3, 7, 18, 0.95) 0%, rgba(3, 7, 18, 0.4) 60%, rgba(3, 7, 18, 0) 100%);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    z-index: 2;
}

.gallery-card-overlay h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.5px;
}

.gallery-card-overlay p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    line-height: 1.5;
}

.gallery-card-overlay .gallery-card-tag {
    align-self: flex-start;
    padding: 4px 12px;
    border-radius: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* Cinematic Video Showcase Section */
.video-showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

@media (min-width: 768px) {
    .video-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .video-showcase-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.video-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 16/9;
    border: 1px solid var(--glass-border);
    background: rgba(17, 25, 46, 0.45);
    backdrop-filter: blur(12px);
    transition: var(--transition);
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 188, 212, 0.3);
    box-shadow: 0 20px 48px rgba(30, 136, 229, 0.15);
}

.video-thumbnail-container {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.video-card:hover .video-thumbnail {
    transform: scale(1.05);
}

.video-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(3, 7, 18, 0.45);
    z-index: 2;
    transition: var(--transition);
}

.video-card:hover .video-card-overlay {
    background: rgba(3, 7, 18, 0.6);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(0, 188, 212, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 16px;
    z-index: 3;
    transition: var(--transition);
}

.video-card:hover .video-play-btn {
    background: var(--navy);
    box-shadow: 0 0 30px rgba(30, 136, 229, 0.6);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 4;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.video-title-text {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.video-duration-text {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* ============================================================
   NEWS & INSIGHTS SPECIFIC STYLES
   ============================================================ */

/* Trending Topics pills */
.trending-topics-bar {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 40px;
    margin-bottom: 48px;
    position: relative;
    z-index: 2;
}

.topic-pill {
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid rgba(30, 136, 229, 0.12);
    background: #FFFFFF;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 13.5px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    text-transform: capitalize;
}

.topic-pill:hover,
.topic-pill.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(30, 136, 229, 0.25);
}

/* Premium Editorial Showcase alternations */
.editorial-showcase-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 1024px) {
    .editorial-showcase-row {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 80px;
    }

    .editorial-showcase-row.reverse {
        grid-template-columns: 0.8fr 1.2fr;
    }

    .editorial-showcase-row.reverse .showcase-visual {
        order: 2;
    }

    .editorial-showcase-row.reverse .showcase-content {
        order: 1;
    }
}

/* Newsletter Subscription Glass Block */
.newsletter-subscription-box {
    background: #FFFFFF;
    border: 1px solid rgba(30, 136, 229, 0.12);
    border-radius: 32px;
    padding: clamp(24px, 5vw, 60px);
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.newsletter-glass-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 600px;
    margin: 32px auto 0 auto;
}

@media (min-width: 640px) {
    .newsletter-glass-form {
        flex-direction: row;
    }
}

.newsletter-glass-input {
    flex: 1;
    padding: 16px 24px;
    border-radius: 16px;
    border: 1px solid rgba(30, 136, 229, 0.12);
    background: #F4FAFF;
    color: var(--text-primary);
    outline: none;
    font-size: 14.5px;
    transition: var(--transition);
}

.newsletter-glass-input:focus {
    border-color: var(--accent-blue);
    box-shadow: 0 0 12px rgba(0, 188, 212, 0.25);
}

.newsletter-glass-btn {
    padding: 16px 36px;
    border-radius: 16px;
    border: 1px solid var(--accent-blue);
    background: var(--accent-blue);
    color: var(--white);
    font-weight: 700;
    font-size: 14.5px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-glass-btn:hover {
    background: transparent;
    color: var(--accent-blue);
    box-shadow: 0 0 20px rgba(0, 188, 212, 0.4);
}

/* Social Media & Community Grid */
.social-media-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 48px;
}

@media (min-width: 640px) {
    .social-media-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .social-media-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.social-card {
    background: #FFFFFF;
    border: 1px solid rgba(30, 136, 229, 0.12);
    border-radius: 24px;
    padding: 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.social-card:hover {
    transform: translateY(-6px);
    border-color: rgba(0, 188, 212, 0.3);
    box-shadow: var(--shadow-lg), 0 8px 24px rgba(30, 136, 229, 0.04);
}

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

.social-card .social-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.social-card .social-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(30, 136, 229, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}

.social-card .social-username {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text-primary);
}

.social-card .social-handle {
    font-size: 11px;
    color: var(--text-secondary);
}

.social-card .social-network-icon {
    font-size: 18px;
}

.social-card .social-body {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.social-card .social-tag {
    color: var(--accent-cyan);
    font-weight: 600;
    text-decoration: none;
}

.social-card .social-tag:hover {
    color: var(--accent-blue);
}

/* ============================================================
   RESPONSIVE MILESTONES TIMELINE
   ============================================================ */
.about-milestones {
    margin-top: 60px;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--blue-accent), var(--accent-cyan));
    transform: translateX(-50%);
    opacity: 0.3;
    z-index: 1;
}

.about-milestone-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: relative;
    z-index: 2;
}

.about-milestone {
    display: flex;
    position: relative;
    width: 100%;
    align-items: center;
}

.about-milestone.odd {
    justify-content: flex-start;
}

.about-milestone.even {
    justify-content: flex-end;
}

.timeline-node {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 4px solid var(--navy-dark);
    z-index: 3;
}

.about-milestone.odd .timeline-node {
    background: var(--blue-accent);
    box-shadow: 0 0 10px var(--blue-accent);
}

.about-milestone.even .timeline-node {
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
}

.about-milestone-card {
    width: 45%;
    padding: 30px;
    border-radius: 20px;
    background: #FFFFFF;
    border: 1px solid rgba(30, 136, 229, 0.12);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.about-milestone-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 188, 212, 0.3);
    box-shadow: var(--shadow-lg), 0 8px 24px rgba(30, 136, 229, 0.04);
}

.about-milestone-year {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 8px;
}

.about-milestone.odd .about-milestone-year {
    color: var(--blue-accent);
}

.about-milestone.even .about-milestone-year {
    color: var(--accent-cyan);
}

@media (max-width: 768px) {
    .timeline-line {
        left: 20px;
        transform: none;
    }

    .about-milestone {
        justify-content: flex-start !important;
    }

    .timeline-node {
        left: 20px;
        transform: translateX(-50%);
    }

    .about-milestone-card {
        width: calc(100% - 48px);
        margin-left: auto;
        padding: 24px;
    }
}

/* ============================================================
   INNER PAGES â€” WHITE TEXT ON DARK PANELS & SECTIONS
   (about, products, solutions, news, contact, projects)
============================================================ */

.products-showcase-container .showcase-content {
    background: rgba(17, 25, 46, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: clamp(24px, 4vw, 36px);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.products-showcase-container .showcase-desc,
.products-showcase-container .showcase-spec-item {
    color: rgba(255, 255, 255, 0.9);
}

#news-grid-section .section-title,
#news-grid-section .section-sub,
#milestones .section-title,
#milestones .section-sub {
    color: #ffffff;
}

#news-grid-section .section-sub,
#milestones .section-sub {
    color: rgba(255, 255, 255, 0.75);
}

#milestones .about-milestone-card {
    background: rgba(17, 25, 46, 0.55);
    border-color: rgba(255, 255, 255, 0.1);
}

#milestones .about-milestone-card h4 {
    color: #ffffff !important;
}

#milestones .about-milestone-card p {
    color: rgba(255, 255, 255, 0.88) !important;
}

.testimonial-card[style*="rgba(17, 25, 46"] .author-role {
    color: rgba(255, 255, 255, 0.75) !important;
}

/* ============================================================
   PRODUCT CATALOG DIRECTORY
============================================================ */
.catalog-filter-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.filter-tab {
    padding: 10px 24px;
    border-radius: 30px;
    border: 1px solid rgba(30, 136, 229, 0.08);
    background: #FFFFFF;
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 13.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 10px rgba(30, 136, 229, 0.03);
}

.filter-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(30, 136, 229, 0.15);
}

.filter-tab.active {
    background: var(--navy);
    /* Theme Blue */
    border-color: var(--navy);
    color: #FFFFFF;
    box-shadow: 0 6px 20px rgba(30, 136, 229, 0.35);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.catalog-card {
    background: #FFFFFF;
    border: 1px solid rgba(30, 136, 229, 0.12);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.03);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.catalog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(30, 136, 229, 0.25);
    box-shadow: 0 20px 40px rgba(30, 136, 229, 0.12);
}

.catalog-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.catalog-icon {
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #E8F2FC;
    border: 1px solid #D0E4F8;
    border-radius: 12px;
}

.catalog-card:hover .catalog-icon {
    background: var(--navy);
    color: var(--white);
    border-color: transparent;
    transform: scale(1.05);
    transition: all 0.3s ease;
}

.catalog-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.catalog-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    z-index: 2;
}

.catalog-tag {
    font-size: 12px;
    font-weight: 600;
    color: #2C5282;
    /* Dark Slate Blue */
    background: #EBF4FC;
    border: 1px solid #D3E5F7;
    padding: 6px 14px;
    border-radius: 99px;
    transition: all 0.3s ease;
}

.catalog-card:hover .catalog-tag {
    background: #E3EFFC;
    border-color: #C0DBF7;
    color: #1A365D;
}

.catalog-tag:hover {
    background: var(--navy) !important;
    /* Theme Blue on Tag Hover */
    color: var(--white) !important;
    border-color: transparent !important;
    transform: scale(1.08) translateY(-1px);
    box-shadow: 0 4px 10px rgba(30, 136, 229, 0.25);
}

/* Hidden class for filtering */
.catalog-card.hidden {
    display: none !important;
}

/* ============================================================
   FEATURED MODELS SECTION
============================================================ */
.featured-models-section {
    background: transparent;
}

.models-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 50px;
}

@media (min-width: 768px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .models-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.model-card {
    background: #FFFFFF;
    border: 1px solid rgba(30, 136, 229, 0.12);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 8px 24px rgba(30, 136, 229, 0.03);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.model-card:hover {
    transform: translateY(-8px);
    border-color: rgba(30, 136, 229, 0.25);
    box-shadow: 0 24px 48px rgba(30, 136, 229, 0.1);
}

.model-card-header {
    margin-bottom: 12px;
}

.model-card-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.model-card-subtitle {
    font-size: 14.5px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

.model-card-image-wrapper {
    position: relative;
    margin: 30px auto;
    width: 100%;
    max-width: 280px;
    aspect-ratio: 1.2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.model-card-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.model-card:hover .model-card-img {
    transform: scale(1.05);
}

/* Hot/Flame Badge */
.model-badge-hot {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #f38120;
    /* Absen/Bebright Orange */
    color: #FFFFFF;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 10px rgba(243, 129, 32, 0.25);
    z-index: 3;
}

.model-card-footer {
    margin-top: auto;
}

.model-learn-more-btn {
    display: inline-block;
    padding: 12px 36px;
    border-radius: 30px;
    border: 1.5px solid var(--navy);
    background: transparent;
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-transform: capitalize;
}

.model-learn-more-btn:hover {
    background: var(--navy);
    color: #FFFFFF;
    border-color: var(--navy);
    box-shadow: 0 4px 15px rgba(30, 136, 229, 0.25);
}

/* ============================================================
   MOBILE & TABLET RESPONSIVENESS & OVERFLOW FIXES
============================================================ */

/* 1. Global Viewport and Scroll Constraints */
html,
body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}

/* Ensure all images and videos are clipped and scale properly */
img,
video,
iframe,
svg,
canvas {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Fix background glow containers */
.about-bg-glow,
.hero-bg,
.about-visual-showcase {
    overflow: hidden !important;
}

/* 2. Responsive Typography Safeguards */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(28px, 8vw, 44px) !important;
        letter-spacing: -1.5px !important;
        line-height: 1.05 !important;
    }

    #hero.light-section .hero-title {
        white-space: normal !important;
        overflow-wrap: anywhere;
    }

    .section-title {
        font-size: clamp(24px, 6vw, 36px) !important;
        letter-spacing: -0.8px !important;
    }

    #hero[aria-label="Projects hero section"] .hero-title {
        font-size: clamp(30px, 8.5vw, 42px) !important;
        line-height: 1.02 !important;
        white-space: normal !important;
        overflow-wrap: anywhere;
        max-width: 100%;
    }

    #hero[aria-label="Projects hero section"] .hero-title-accent {
        white-space: normal !important;
        display: inline;
    }
}

/* 3. Hero Stats & Actions Mobile Optimization */
@media (max-width: 480px) {
    .hero-stats {
        gap: 16px !important;
        padding-top: 24px !important;
    }

    .hero-stat {
        flex: 1 1 40% !important;
        min-width: 100px !important;
    }

    .hero-actions {
        gap: 12px !important;
        flex-direction: column !important;
        align-items: stretch !important;
        width: 100% !important;
        padding: 0 16px !important;
    }

    .hero-actions .btn,
    .hero-actions .btn-ghost-white {
        width: 100% !important;
        justify-content: center !important;
    }
}

/* Ensure tables and overflowable layouts behave */
table {
    max-width: 100% !important;
    overflow-x: auto !important;
    display: block !important;
}

.bento-border-glow {
    background: conic-gradient(from 180deg at 50% 50%, #2a8af6 0deg, #a853ba 180deg, #e92a67 360deg);
    opacity: 0;
    transition: opacity 0.5s;
    animation: rotateBorder 4s linear infinite;
    z-index: 0;
}

.bento-card:hover .bento-border-glow {
    opacity: 1;
}

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

.bento-content {
    position: relative;
    z-index: 1;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 23px;
    padding: 40px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.bento-hero .bento-content {
    background: linear-gradient(135deg, rgba(30, 64, 175, 0.4) 0%, rgba(15, 23, 42, 0.95) 100%);
}

.bento-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(56, 189, 248, 0.1);
    border: 1px solid rgba(56, 189, 248, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #38bdf8;
    margin-bottom: 32px;
    transition: all 0.4s ease;
}

.bento-card:hover .bento-icon-wrapper {
    background: #38bdf8;
    color: #0f172a;
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 10px 25px rgba(56, 189, 248, 0.4);
}

.bento-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.bento-hero .bento-title {
    font-size: 32px;
}

.bento-desc {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 24px;
}

.bento-hero .bento-desc {
    font-size: 18px;
}

.bento-tech-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
}

.bento-tech-tags span {
    font-size: 13px;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 14px;
    border-radius: 99px;
    color: #e2e8f0;
}

.premium-counters {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 40px 60px;
    border-radius: 32px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    flex-wrap: wrap;
    gap: 30px;
}

.p-counter {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.p-counter-num {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.p-counter-num span {
    font-size: 0.7em;
}

.p-counter-label {
    font-size: 16px;
    font-weight: 600;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.p-counter-divider {
    width: 2px;
    height: 80px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

@media (max-width: 768px) {
    .premium-counters {
        padding: 30px;
        flex-direction: column;
    }

    .p-counter-divider {
        width: 80%;
        height: 2px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    }
}

/* ============================================================
   REDESIGNED WHY CHOOSE US SECTION (Light Theme Premium)
============================================================ */
#why-choose {
    background: radial-gradient(circle at 0% 0%, rgba(30, 136, 229, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(0, 188, 212, 0.04) 0%, transparent 50%),
        #F8FAFC !important;
    position: relative;
    overflow: hidden;
}

#why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(30, 136, 229, 0.15), transparent);
}

/* Stats Counter Cards Redesign */
#why-choose .stat-glass-card {
    background: rgba(255, 255, 255, 0.8) !important;
    border: 1px solid rgba(30, 136, 229, 0.08) !important;
    border-radius: 24px !important;
    padding: 36px 28px !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    box-shadow: 0 10px 30px rgba(30, 136, 229, 0.03), 0 1px 3px rgba(30, 136, 229, 0.01) !important;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#why-choose .stat-glass-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    border-color: rgba(0, 188, 212, 0.3) !important;
    box-shadow: 0 20px 40px rgba(30, 136, 229, 0.08), 0 0 30px rgba(0, 188, 212, 0.03) !important;
}

/* Animated numbers styling */
#why-choose .stat-num {
    font-size: 56px !important;
    font-weight: 800 !important;
    background: linear-gradient(90deg, #00D9FF, #4FACFE, #0A3DFF) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    letter-spacing: -2px !important;
    line-height: 1 !important;
    margin-bottom: 8px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

#why-choose .stat-num span.counter,
#why-choose .stat-num span {
    background: linear-gradient(90deg, #00D9FF, #4FACFE, #0A3DFF) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    font-weight: 800;
}

#why-choose .stat-label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: var(--text-secondary) !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-top: 8px !important;
}

/* Glow bubbles inside stat cards */
#why-choose .stat-glow {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.15;
    pointer-events: none;
    transition: all 0.5s ease;
}

#why-choose .stat-glass-card:hover .stat-glow {
    opacity: 0.3;
    transform: scale(1.2);
}

/* 8 Points Grid Redesign */
#why-choose .compact-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

#why-choose .compact-service-card {
    display: flex !important;
    align-items: center !important;
    gap: 18px !important;
    padding: 20px 24px !important;
    background: #ffffff !important;
    border: 1px solid rgba(30, 136, 229, 0.2) !important;
    border-radius: 18px !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
    position: relative;
    overflow: hidden;
    cursor: default;
}

#why-choose .compact-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(0, 188, 212, 0.05), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

#why-choose .compact-service-card:hover {
    transform: translateY(-5px) scale(1.02) !important;
    border-color: rgba(0, 188, 212, 0.25) !important;
    background: #FFFFFF !important;
    box-shadow: 0 15px 35px rgba(30, 136, 229, 0.06), 0 0 20px rgba(0, 188, 212, 0.02) !important;
}

#why-choose .compact-service-card:hover::before {
    transform: translateX(100%);
}

#why-choose .service-name-compact {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #0F172A !important;
    margin: 0 !important;
    line-height: 1.4 !important;
    transition: color 0.3s ease;
}

#why-choose .compact-service-card:hover .service-name-compact {
    color: var(--navy-dark) !important;
}

/* Beautiful custom Checkmark Wrapper styling */
#why-choose .check-icon-wrapper {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.08);
    color: #10B981;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.1);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#why-choose .compact-service-card:hover .check-icon-wrapper {
    background: #10B981;
    color: #FFFFFF;
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.4);
    transform: scale(1.1) rotate(360deg);
}

/* ============================================================
   PREMIUM TECHNOLOGY-FOCUSED REDESIGN OVERRIDES
============================================================ */

/* 1. Body and General Background System */
body {
    background: var(--bg-gradient) !important;
    background-attachment: fixed !important;
    color: var(--text-secondary) !important;
}

/* Page Loader styling */
#page-loader {
    background: #05082D !important;
}

.loader-logo {
    color: #FFFFFF !important;
}

.loader-bar {
    background: rgba(255, 255, 255, 0.08) !important;
}

/* Make flat light sections transparent for seamless fluid gradient mesh flow */
#services,
#products,
#projects,
#testimonials,
#why-choose,
.faq-section,
.brands-marquee-section,
#about,
#solutions,
#news,
#contact,
#cta-banner,
.newsletter-subscription-box,
.stat-glass-card {
    background: transparent !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

.brands-marquee-section {
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.marquee-label {
    color: #A8B4FF !important;
    border-right-color: rgba(255, 255, 255, 0.08) !important;
}

/* 2. Advanced Typography Overrides */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.service-name,
.why-card h4,
.product-title,
.project-title,
.news-title,
.mega-title,
.sol-overview-card h3,
.faq-question h4,
.stat-number,
.contact-info-card h4,
.about-milestone-card h4,
.catalog-card h4,
.model-card h4 {
    color: #FFFFFF !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
}

/* Highlighted Text Gradient */
.hero-title-accent,
.hero-stat-num,
.stat-number,
.stat-num,
.highlighted-text,
.cta-title {
    background: linear-gradient(90deg, #00D9FF, #4FACFE, #0A3DFF) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

.hero-stat-num span,
.stat-number span,
.stat-num span {
    background: linear-gradient(90deg, #00D9FF, #4FACFE, #0A3DFF) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

/* 3. Buttons Redesign */
.btn-primary,
.header-cta .btn,
.mobile-menu-cta .btn {
    background: linear-gradient(135deg, #0A3DFF, #00D9FF) !important;
    color: #FFFFFF !important;
    border: 1px solid rgba(0, 217, 255, 0.2) !important;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.15) !important;
    transition: var(--transition) !important;
}

.btn-primary:hover,
.header-cta .btn:hover,
.mobile-menu-cta .btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.35) !important;
    background: linear-gradient(135deg, #1B5CFF, #00E5FF) !important;
    color: #FFFFFF !important;
}

.btn-ghost,
.btn-ghost-white,
.btn-white,
.btn-secondary,
.btn-promo-cta {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(0, 217, 255, 0.4) !important;
    color: #FFFFFF !important;
    transition: var(--transition) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}

.btn-ghost:hover,
.btn-ghost-white:hover,
.btn-white:hover,
.btn-secondary:hover,
.btn-promo-cta:hover {
    background: rgba(0, 217, 255, 0.08) !important;
    border-color: rgba(0, 217, 255, 0.8) !important;
    color: #00D9FF !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.2) !important;
}

/* 4. Premium Cards (Glassmorphism & Soft Cyan Glow) */
.service-card,
.stat-glass-card,
#why-choose .stat-glass-card,
.why-card,
.product-card,
.testimonial-card,
.news-card,
.contact-info-card,
.sol-overview-card,
.catalog-card,
.model-card,
.about-milestone-card,
.social-card {
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #FFFFFF !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
    transition: var(--transition) !important;
}

.service-card:hover,
.stat-glass-card:hover,
#why-choose .stat-glass-card:hover,
.why-card:hover,
.product-card:hover,
.testimonial-card:hover,
.news-card:hover,
.contact-info-card:hover,
.sol-overview-card:hover,
.catalog-card:hover,
.model-card:hover,
.about-milestone-card:hover,
.social-card:hover {
    border-color: rgba(0, 217, 255, 0.4) !important;
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.15) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    transform: translateY(-4px) !important;
}

#why-choose .compact-service-card:hover .service-name-compact {
    color: #00D9FF !important;
}

/* 5. Forms Redesign */
input,
textarea,
select,
.form-control,
.form-input {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #FFFFFF !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-radius: 12px !important;
    padding: 14px 20px !important;
    transition: var(--transition) !important;
}

input:focus,
textarea:focus,
select:focus,
.form-control:focus,
.form-input:focus {
    outline: none !important;
    border-color: #00D9FF !important;
    box-shadow: 0 0 0 4px rgba(0, 217, 255, 0.15) !important;
    background: rgba(255, 255, 255, 0.06) !important;
}

/* 6. Navigation & Header styling */
#header {
    background: rgba(5, 8, 45, 0.25) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3) !important;
}

#header.scrolled {
    background: rgba(5, 8, 45, 0.65) !important;
    border-bottom: 1px solid rgba(0, 217, 255, 0.15) !important;
    height: 72px !important;
}

#header nav {
    background: rgba(255, 255, 255, 0.03) !important;
    border-color: rgba(255, 255, 255, 0.08) !important;
}

#header.scrolled nav {
    background: rgba(0, 217, 255, 0.05) !important;
    border-color: rgba(0, 217, 255, 0.15) !important;
}

.nav-link,
.mobile-nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
}

.nav-link:hover,
.mobile-nav-link:hover {
    color: #4FACFE !important;
    background: rgba(255, 255, 255, 0.08) !important;
}

.nav-link.active,
.mobile-nav-link.active {
    color: #00D9FF !important;
    background: rgba(0, 217, 255, 0.08) !important;
}

#header.scrolled .hamburger span {
    background: #FFFFFF !important;
}

#header.scrolled .hamburger {
    background: rgba(0, 217, 255, 0.05) !important;
    border-color: rgba(0, 217, 255, 0.15) !important;
}

#mobile-menu {
    background: rgba(5, 8, 45, 0.96) !important;
    backdrop-filter: blur(28px) !important;
    -webkit-backdrop-filter: blur(28px) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
}

.mobile-submenu-title {
    color: #FFFFFF !important;
}

.mobile-submenu-link {
    color: #C7D2FE !important;
}

.mobile-submenu-link:hover {
    color: #00D9FF !important;
}

/* 7. Product & Specs Styling */
.showcase-spec-item,
.product-spec,
.product-specs li,
.spec-label {
    color: #C7D2FE !important;
}

.showcase-spec-dot {
    background: #00D9FF !important;
    box-shadow: 0 0 10px #00D9FF !important;
}

.service-icon,
.why-icon,
.feature-icon,
.product-icon {
    background: rgba(0, 217, 255, 0.08) !important;
    border-color: rgba(0, 217, 255, 0.2) !important;
}

.service-card:hover .service-icon,
.why-card:hover .why-icon,
.product-card:hover .product-icon {
    background: linear-gradient(135deg, #00D9FF, #0A3DFF) !important;
    border-color: transparent !important;
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.25) !important;
}

.service-icon svg,
.why-icon svg,
.feature-icon svg,
.product-icon svg {
    color: #00D9FF !important;
}

.service-card:hover .service-icon svg,
.why-card:hover .why-icon svg,
.product-card:hover .product-icon svg {
    color: #FFFFFF !important;
}

/* 8. Glowing Footer styling */
#footer,
footer,
.footer,
.site-footer {
    background: var(--surface-color) !important;
    color: #A8B4FF !important;
    border-top: 1px solid rgba(0, 217, 255, 0.2) !important;
    padding: 80px 0 40px 0 !important;
}

#footer a,
footer a,
.footer a,
.site-footer a {
    color: #00D9FF !important;
    transition: color var(--transition-fast) !important;
}

#footer a:hover,
footer a:hover,
.footer a:hover,
.site-footer a:hover {
    color: #4FACFE !important;
    text-shadow: 0 0 8px rgba(0, 217, 255, 0.3) !important;
}

#footer h4,
footer h4 {
    color: #FFFFFF !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding-top: 24px !important;
    margin-top: 48px !important;
}

/* 9. Product Catalog Filters & Pills Redesign */
.filter-tab {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #C7D2FE !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.filter-tab:hover {
    background: rgba(0, 217, 255, 0.1) !important;
    border-color: rgba(0, 217, 255, 0.4) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.15) !important;
}

.filter-tab.active {
    background: linear-gradient(90deg, #0A3DFF, #00D9FF) !important;
    border-color: transparent !important;
    color: #FFFFFF !important;
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.3) !important;
}

.catalog-tag {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #C7D2FE !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

.catalog-card:hover .catalog-tag {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: #FFFFFF !important;
}

.catalog-tag:hover {
    background: linear-gradient(90deg, #00D9FF, #0A3DFF) !important;
    border-color: transparent !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3) !important;
}

/* 10. Mega Menu Redesign */
.mega-menu {
    background: rgba(13, 20, 90, 0.95) !important;
    backdrop-filter: blur(24px) !important;
    -webkit-backdrop-filter: blur(24px) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
}

.mega-title {
    color: #FFFFFF !important;
}

.mega-title::after {
    background: #00D9FF !important;
}

.mega-list a {
    color: #C7D2FE !important;
}

.mega-list a:hover {
    color: #00D9FF !important;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.3) !important;
}

.mega-promo-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
}

/* 11. Contact Form Redesign */
.contact-form-container {
    background: rgba(255, 255, 255, 0.04) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
}

.contact-form-title {
    color: #FFFFFF !important;
}

.contact-form-subtitle {
    color: #C7D2FE !important;
}

/* 12. Process Timeline Nodes */
.timeline-step .timeline-node {
    width: 48px !important;
    height: 48px !important;
    background: rgba(5, 8, 45, 0.95) !important;
    border: 2px solid #00D9FF !important;
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.3) !important;
    color: #FFFFFF !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 5 !important;
}

.timeline-step.even .timeline-node {
    border-color: #1B5CFF !important;
    box-shadow: 0 0 15px rgba(27, 92, 255, 0.3) !important;
}

/* 13. Project Gallery Filter Buttons */
.filter-btn {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #C7D2FE !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.filter-btn:hover {
    background: rgba(0, 217, 255, 0.1) !important;
    border-color: rgba(0, 217, 255, 0.4) !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.15) !important;
}

.filter-btn.active {
    background: linear-gradient(90deg, #0A3DFF, #00D9FF) !important;
    border-color: transparent !important;
    color: #FFFFFF !important;
    box-shadow: 0 6px 20px rgba(0, 217, 255, 0.3) !important;
}

/* 14. Footer UI Polish */
#footer a:not(.social-btn):not(.footer-logo-link),
footer a:not(.social-btn):not(.footer-logo-link),
.footer-links a,
.site-footer a:not(.social-btn):not(.footer-logo-link) {
    color: #C7D2FE !important;
}

#footer a:not(.social-btn):not(.footer-logo-link):hover,
footer a:not(.social-btn):not(.footer-logo-link):hover,
.footer-links a:hover,
.site-footer a:not(.social-btn):not(.footer-logo-link):hover {
    color: #00D9FF !important;
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.4) !important;
}


.social-btn {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #C7D2FE !important;
}

.social-btn:hover {
    background: linear-gradient(90deg, #0A3DFF, #00D9FF) !important;
    border-color: transparent !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3) !important;
}

#scroll-top {
    background: linear-gradient(135deg, #0A3DFF, #00D9FF) !important;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3) !important;
    border: none !important;
}

#scroll-top:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(0, 217, 255, 0.5) !important;
}


/* 16. Testimonial Controls Redesign */
.tctrl-btn {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #C7D2FE !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.tctrl-btn:hover {
    background: linear-gradient(135deg, #0A3DFF, #00D9FF) !important;
    border-color: transparent !important;
    color: #FFFFFF !important;
    box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3) !important;
    transform: scale(1.05) !important;
}

.tctrl-btn:disabled,
.tctrl-btn[disabled] {
    opacity: 0.3 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
}

.tctrl-dot {
    background: rgba(255, 255, 255, 0.15) !important;
}

.tctrl-dot.active {
    background: #00D9FF !important;
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.5) !important;
}

/* 17. Home Video Banner Gradient Overlay Redesign */
.hero-video-overlay {
    background: linear-gradient(180deg,
            rgba(5, 8, 45, 0.9) 0%,
            rgba(10, 61, 255, 0.25) 40%,
            rgba(10, 61, 255, 0.25) 60%,
            rgba(5, 8, 45, 0.95) 100%) !important;
}

.hero-mesh {
    background:
        radial-gradient(circle at 15% 20%, rgba(0, 217, 255, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(10, 61, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(5, 8, 45, 0.6) 0%, transparent 70%) !important;
}

/* ============================================================
   LIGHT SECTION ALTERNATION SYSTEM (REVISED & SPECIFICITY FIXED)
============================================================ */
/* Specificity fix for section backgrounds */
.light-section,
#hero.light-section,
#services.light-section,
#solutions.light-section,
#testimonials.light-section,
#contact.light-section,
#about.light-section,
#showcase.light-section,
#tech-specs.light-section,
#client-trust.light-section,
#overview.light-section,
#core-services.light-section,
#solution-specs.light-section,
#featured-showcase.light-section,
#gallery.light-section,
#project-stats.light-section,
#featured-journal.light-section,
#video-insights.light-section,
#social-grid.light-section,
#contact-content.light-section {
    background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%) !important;
    position: relative;
    z-index: 2;
}

/* 1. Hero Light Section Overrides (Specificity Fixed) */
#hero.light-section .hero-video-overlay {
    background: linear-gradient(180deg,
            rgba(255, 255, 255, 0.85) 0%,
            rgba(244, 250, 255, 0.35) 40%,
            rgba(244, 250, 255, 0.35) 60%,
            rgba(255, 255, 255, 0.90) 100%) !important;
}

#hero.light-section .hero-mesh {
    background:
        radial-gradient(circle at 15% 20%, rgba(30, 136, 229, 0.15) 0%, transparent 45%),
        radial-gradient(circle at 85% 75%, rgba(0, 188, 212, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.8) 0%, transparent 70%) !important;
}

#hero.light-section .hero-title,
#hero.light-section .hero-sub,
#hero.light-section .hero-stat-label,
#hero.light-section .hero-badge {
    color: #0F172A !important;
    text-shadow: none !important;
    -webkit-text-fill-color: #0F172A !important;
    background: none !important;
}

#hero.light-section .hero-badge {
    background: rgba(10, 61, 255, 0.05) !important;
    border: 1px solid rgba(10, 61, 255, 0.1) !important;
    color: #0A3DFF !important;
}

#hero.light-section .hero-badge-dot {
    background: #0A3DFF !important;
    box-shadow: 0 0 10px rgba(10, 61, 255, 0.6) !important;
}

#hero.light-section .hero-stat-num {
    background: linear-gradient(90deg, #0A3DFF, #00D9FF) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

#hero.light-section .hero-stat-num span {
    background: linear-gradient(90deg, #0A3DFF, #00D9FF) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

#hero.light-section .btn-ghost-white {
    background: rgba(10, 61, 255, 0.04) !important;
    border: 1px solid rgba(10, 61, 255, 0.2) !important;
    color: #0A3DFF !important;
}

#hero.light-section .btn-ghost-white:hover {
    background: rgba(10, 61, 255, 0.08) !important;
    border-color: #0A3DFF !important;
    color: #0A3DFF !important;
}

/* 2. CTA Banner Light Section Overrides (Specificity Fixed) */
#contact.light-section #cta-banner {
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%) !important;
}

#contact.light-section .cta-mesh {
    background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(10, 61, 255, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 50%, rgba(0, 217, 255, 0.08) 0%, transparent 50%) !important;
}

#contact.light-section .cta-label {
    color: #0A3DFF !important;
}

#contact.light-section .cta-label::before,
#contact.light-section .cta-label::after {
    background: #0A3DFF !important;
}

#contact.light-section .cta-title {
    background: linear-gradient(90deg, #0A3DFF, #00D9FF) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
    color: transparent !important;
}

#contact.light-section .cta-sub {
    color: #475569 !important;
}

#contact.light-section .cta-phone {
    color: #475569 !important;
}

#contact.light-section .cta-phone:hover {
    color: #0A3DFF !important;
}

/* 3. Typography & Headings inside Light Sections (Specificity Fixed) */
.light-section h1,
.light-section h2,
.light-section h3,
.light-section h4,
.light-section h5,
.light-section h6,
.light-section .section-title,
.light-section .service-name,
.light-section .why-card h4,
.light-section .news-title,
.light-section .sol-overview-card h3,
.light-section .catalog-card h4,
.light-section .model-card h4,
.light-section .service-name-compact,
.light-section .about-subtitle,
.light-section .about-mini-point h4,
.light-section .dashboard-mock-value:not(.green-text),
.light-section .timeline-card h4,
.light-section .video-title-text,
.light-section .about-content-showcase h4,
#services.light-section .section-title,
#solutions.light-section .section-title,
#testimonials.light-section .section-title,
#contact.light-section .cta-title {
    color: #0F172A !important;
    /* Premium Dark Slate */
    text-shadow: none !important;
}

/* Labels and Subtitles inside Light Sections (Specificity Fixed) */
.light-section .section-label,
#services.light-section .section-label,
#solutions.light-section .section-label,
#testimonials.light-section .section-label {
    color: #0A3DFF !important;
    /* Theme Royal Blue label */
}

.light-section .section-label::before,
#services.light-section .section-label::before,
#solutions.light-section .section-label::before,
#testimonials.light-section .section-label::before {
    background: #0A3DFF !important;
}

/* Base Body Text, Specs, Descriptions and Muted Elements */
.light-section .section-sub,
.light-section .about-story-text,
.light-section .service-desc,
.light-section .why-card p,
.light-section .news-excerpt,
.light-section .testimonial-quote,
.light-section .showcase-spec-item,
.light-section .showcase-desc,
.light-section p,
.light-section li,
.light-section .news-date,
.light-section .about-mini-point p,
.light-section .stat-label,
.light-section .timeline-card p,
.light-section .video-duration-text,
.light-section .dashboard-title-mock,
.light-section .device-status-item,
#services.light-section .section-sub,
#solutions.light-section .section-sub,
#testimonials.light-section .section-sub {
    color: #475569 !important;
    /* Slate Gray */
}

/* Fix for gallery card overlay text color inside light sections */
.light-section .gallery-card-overlay h4 {
    color: #FFFFFF !important;
}

.light-section .gallery-card-overlay p {
    color: rgba(255, 255, 255, 0.88) !important;
}

/* Card Components inside Light Sections */
.light-section .service-card,
.light-section .stat-glass-card,
.light-section .why-card,
.light-section .news-card,
.light-section .sol-overview-card,
.light-section .about-milestone-card,
.light-section .social-card,
.light-section .testimonial-card,
#services.light-section .service-card,
#testimonials.light-section .testimonial-card {
    background: #FFFFFF !important;
    border: 1px solid rgba(10, 61, 255, 0.08) !important;
    color: #0F172A !important;
    box-shadow: 0 10px 30px rgba(10, 61, 255, 0.04), 0 1px 3px rgba(10, 61, 255, 0.02) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.light-section .service-card:hover,
.light-section .stat-glass-card:hover,
.light-section .why-card:hover,
.light-section .news-card:hover,
.light-section .sol-overview-card:hover,
.light-section .about-milestone-card:hover,
.light-section .social-card:hover,
.light-section .testimonial-card:hover,
#services.light-section .service-card:hover,
#testimonials.light-section .testimonial-card:hover {
    background: #FFFFFF !important;
    border-color: rgba(10, 61, 255, 0.25) !important;
    box-shadow: 0 20px 40px rgba(10, 61, 255, 0.08), 0 0 30px rgba(0, 217, 255, 0.04) !important;
    transform: translateY(-6px) !important;
}



/* Showcase Content Card inside Light Sections */
.light-section .products-showcase-container .showcase-content {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.light-section .showcase-spec-dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: #0A3DFF !important;
    box-shadow: 0 0 6px rgba(10, 61, 255, 0.8) !important;
    flex-shrink: 0 !important;
}

/* ============================================================
   UNIFIED PRODUCT PAGE DESIGN SYSTEM
   ============================================================ */

/* HERO SECTION - Product Page */
.hero-section {
    padding-top: 120px;
    padding-bottom: 40px;
    min-height: 40vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 80px;
    }
}

.hero-text-col {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.hero-text-col .hero-title,
.hero-text-col .hero-sub,
.hero-text-col .hero-actions {
    margin-bottom: 0;
}

.hero-text-col .hero-sub {
    text-align: left;
}

.hero-text-col .hero-actions {
    justify-content: flex-start;
}

.hero-text-col .hero-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 0;
}

.hero-image-col {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 217, 255, 0.15);
    backdrop-filter: blur(12px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

/* FEATURES GRID */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(0, 217, 255, 0.08);
    border: 1px solid rgba(0, 217, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #0A3DFF, #00D9FF);
    border-color: transparent;
    box-shadow: 0 8px 24px rgba(0, 217, 255, 0.25);
    transform: scale(1.1);
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.feature-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* SPECIFICATIONS GRID */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.specs-column {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
}

.specs-column:hover {
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-4px);
}

.specs-category-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(0, 217, 255, 0.2);
}

.specs-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.specs-list li {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.specs-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent-cyan);
}

.specs-value {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* APPLICATIONS GRID */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.application-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 40px 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    position: relative;
    overflow: hidden;
}


.application-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.application-icon {
    width: 80px;
    height: 80px;
    background: rgba(0, 217, 255, 0.05);
    border-radius: 20px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}


.application-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.application-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* GALLERY SECTION */
.gallery-section {
    background: rgba(255, 255, 255, 0.02);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 60px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 4/3;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

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

.gallery-item:hover {
    border-color: rgba(0, 217, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 217, 255, 0.15);
}

/* CTA SECTION */
.cta-section {
    padding-top: 100px;
    padding-bottom: 100px;
    background: radial-gradient(circle at 20% 50%, rgba(0, 217, 255, 0.08), transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(10, 61, 255, 0.08), transparent 40%);
}

.cta-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: var(--radius-lg);
    padding: clamp(40px, 8vw, 80px);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0, 217, 255, 0.1);
    transition: var(--transition);
}

.cta-card:hover {
    border-color: rgba(0, 217, 255, 0.6);
    box-shadow: 0 40px 80px rgba(0, 217, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.cta-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin: 0 0 16px 0;
    line-height: 1.2;
    letter-spacing: -1px;
}

.cta-desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto 32px;
}

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

/* TEXT CENTER HELPER */
.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 40px;
}

/* RESPONSIVE ADJUSTMENTS FOR PRODUCT PAGES */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-grid {
        gap: 40px;
    }

    .features-grid,
    .specs-grid,
    .applications-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card,
    .specs-column,
    .application-card {
        padding: 30px 24px;
    }

    .cta-section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .cta-card {
        padding: 30px 24px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-desc {
        font-size: 14px;
    }

    .cta-actions {
        flex-direction: column;
        gap: 12px;
    }

    .cta-actions .btn,
    .cta-actions .cta-phone {
        width: 100%;
        justify-content: center;
    }
}

/* Force correct positioning for timeline nodes */
@media (min-width: 768px) {
    .timeline-step {
        position: relative !important;
    }

    .timeline-step .timeline-node {
        position: absolute !important;
        top: 10px !important;
    }

    .timeline-step.odd .timeline-node {
        left: 0 !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }

    .timeline-step.even .timeline-node {
        left: 100% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }
}

/* ============================================================
   CQ SPLIT â€” MODERN CLEAN CONTACT SECTION (LIGHT THEME)
============================================================ */

.cq-split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (min-width: 1024px) {
    .cq-split-grid {
        grid-template-columns: 1fr 1.25fr;
        gap: 64px;
    }
}

/* --- Left Column: Elegant Typography & Minimal List --- */
.cq-split-left {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.cq-split-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cq-split-title {
    font-size: clamp(32px, 4.5vw, 48px);
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -1.5px;
    line-height: 1.15;
}

.cq-split-accent {
    color: #0A3DFF;
}

.cq-split-desc {
    font-size: 16px;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

.cq-split-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.cq-split-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cq-split-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(10, 61, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A3DFF;
    flex-shrink: 0;
}

.cq-split-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cq-split-content h3 {
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
    letter-spacing: -0.2px;
}

.cq-split-addr,
.cq-split-hours {
    font-size: 14.5px;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}

.cq-split-link {
    font-size: 14.5px;
    font-weight: 700;
    color: #0A3DFF;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s;
}

.cq-split-link:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* --- Right Column: Pristine Form Card --- */
.cq-split-right {
    width: 100%;
}

.cq-flat-form-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

@media (min-width: 640px) {
    .cq-flat-form-card {
        padding: 40px;
    }
}

.cq-form-header-title {
    font-size: 24px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.cq-form-header-sub {
    font-size: 14px;
    color: #64748B;
    margin-bottom: 28px;
    line-height: 1.5;
}

.cq-flat-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cq-flat-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 640px) {
    .cq-flat-row {
        grid-template-columns: 1fr 1fr;
    }
}

.cq-flat-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cq-flat-group label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #475569;
    margin-left: 2px;
}

.cq-flat-input {
    background: #F8FAFC;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 14.5px;
    color: #0F172A;
    font-family: var(--font);
    transition: all 0.2s ease;
    width: 100%;
}

.cq-flat-input::placeholder {
    color: #94A3B8;
}

.cq-flat-input:focus {
    outline: none;
    background: #FFFFFF;
    border-color: #0A3DFF;
    box-shadow: 0 0 0 3px rgba(10, 61, 255, 0.1);
}

.cq-flat-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%2364748B' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.cq-flat-select option {
    background: #FFFFFF;
    color: #0F172A;
}

.cq-flat-textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

/* Upload Area styling */
.cq-flat-upload-wrapper {
    position: relative;
}

.cq-flat-upload-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px 20px;
    border: 2px dashed #CBD5E1;
    border-radius: 12px;
    background: #F8FAFC;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.cq-flat-upload-area:hover {
    border-color: #0A3DFF;
    background: #F1F5F9;
}

.cq-flat-upload-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(10, 61, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0A3DFF;
    transition: all 0.2s ease;
}

.cq-flat-upload-area:hover .cq-flat-upload-icon {
    transform: translateY(-2px);
    background: #0A3DFF;
    color: #FFFFFF;
}

.cq-flat-upload-text {
    font-size: 13.5px;
    color: #475569;
    margin: 0;
}

.cq-flat-upload-cta {
    color: #0A3DFF;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cq-flat-upload-hint {
    font-size: 12px;
    color: #94A3B8;
    margin: 0;
}

/* Submit Button */
.cq-flat-submit-btn {
    background: #0A3DFF;
    border: none;
    border-radius: 12px;
    color: #FFFFFF;
    width: 100%;
    padding: 15px 24px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(10, 61, 255, 0.15);
    transition: all 0.2s ease;
    margin-top: 4px;
    font-family: var(--font);
}

.cq-flat-submit-btn:hover {
    background: #002ACC;
    box-shadow: 0 8px 20px rgba(0, 42, 204, 0.25);
}

.cq-flat-submit-btn svg {
    transition: transform 0.2s ease;
}

.cq-flat-submit-btn:hover svg {
    transform: translateX(4px);
}

/* Light Section specific override to avoid theme clashes */
.light-section .cq-flat-form-card {
    background: #FFFFFF !important;
}

.light-section .cq-flat-input {
    background: #F8FAFC !important;
    color: #0F172A !important;
}

.light-section .cq-flat-input:focus {
    background: #FFFFFF !important;
}

.light-section .cq-flat-upload-area {
    background: #F8FAFC !important;
}

.light-section .cq-flat-upload-area:hover {
    background: #F1F5F9 !important;
}

/* --- Light Section Overrides for Contact Form & Hub --- */
.light-section .locations-hub-title {
    color: #0F172A;
}

.light-section .locations-hub-title span {
    background: linear-gradient(135deg, #0A3DFF 30%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.light-section .locations-hub-desc {
    color: #475569;
}

.light-section .location-tab {
    background: #FFFFFF;
    border: 1px solid rgba(10, 61, 255, 0.08);
}

.light-section .location-tab:hover {
    background: #F8FAFC;
    border-color: rgba(10, 61, 255, 0.2);
}

.light-section .location-tab.active {
    background: rgba(10, 61, 255, 0.05);
    border-color: #0A3DFF;
    box-shadow: 0 4px 15px rgba(10, 61, 255, 0.08);
}

.light-section .location-tab-icon {
    color: #64748B;
}

.light-section .location-tab.active .location-tab-icon {
    color: #0A3DFF;
}

.light-section .location-tab-text h4 {
    color: #0F172A;
}

.light-section .location-tab-text p {
    color: #64748B;
}

.light-section .active-location-card {
    background: #FFFFFF;
    border: 1px solid rgba(10, 61, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.light-section .active-loc-header h3 {
    color: #0F172A;
}

.light-section .active-loc-detail-icon {
    color: #0A3DFF;
}

.light-section .active-loc-detail-content span {
    color: #64748B;
}

.light-section .active-loc-detail-content p {
    color: #334155;
}

.light-section .active-loc-btn {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #0F172A;
}

.light-section .active-loc-btn:hover {
    background: #EFF6FF;
    border-color: #0A3DFF;
    color: #0A3DFF;
}

.light-section .active-loc-header {
    border-bottom-color: rgba(10, 61, 255, 0.08);
}

.light-section .glass-form-card {
    background: #FFFFFF;
    border: 1px solid rgba(10, 61, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.light-section .glass-form-card::before {
    display: none;
}

.light-section .glass-form-title {
    color: #0F172A;
}

.light-section .glass-form-sub {
    color: #475569;
}

.light-section .form-group label {
    color: #475569;
}

.light-section .form-input {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #0F172A;
}

.light-section .form-input::placeholder {
    color: #94A3B8;
}

.light-section .form-input:focus {
    background: #FFFFFF;
    border-color: #0A3DFF;
    box-shadow: 0 0 0 3px rgba(10, 61, 255, 0.1);
}

.light-section .form-select option {
    background: #FFFFFF;
    color: #0F172A;
}

.light-section .custom-upload-zone {
    background: #F8FAFC;
    border-color: #CBD5E1;
}

.light-section .custom-upload-zone:hover {
    background: #EFF6FF;
    border-color: #0A3DFF;
}

.light-section .upload-text {
    color: #475569;
}

.light-section .upload-hint {
    color: #94A3B8;
}

.light-section .contact-bg-decor {
    display: none;
}

CQ SPLIT Î“Ã‡Ã¶ MODERN CLEAN CONTACT SECTION (LIGHT THEME)============================================================*/ .contact-section {
    position: relative;
    padding: 100px 0;
    background: var(--bg);
    overflow: hidden;
}

.contact-bg-decor {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.contact-decor-mesh {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 80%, rgba(0, 217, 255, 0.12), transparent 45%),
        radial-gradient(circle at 20% 30%, rgba(10, 61, 255, 0.12), transparent 50%);
    opacity: 0.7;
}

.contact-decor-orb {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(10, 61, 255, 0.1), transparent 70%);
    filter: blur(80px);
    bottom: -100px;
    right: -100px;
}

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

/* --- Section 1: Quick Connect Grid --- */
.quick-connect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.quick-connect-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: var(--transition);
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}

.quick-connect-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 61, 255, 0.05) 0%, rgba(0, 217, 255, 0.05) 100%);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.quick-connect-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: 0 15px 35px rgba(0, 217, 255, 0.08);
}

.quick-connect-card:hover::before {
    opacity: 1;
}

.quick-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(10, 61, 255, 0.1);
    border: 1px solid rgba(10, 61, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    flex-shrink: 0;
    z-index: 1;
    transition: var(--transition);
}

.quick-connect-card:hover .quick-card-icon {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-cyan));
    border-color: transparent;
    color: var(--white);
    transform: scale(1.1);
}

.quick-card-details {
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 1;
}

.quick-card-details h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.2px;
}

.quick-card-details p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.quick-card-link {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--accent-cyan);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
    margin-top: 4px;
}

.quick-card-link:hover {
    color: var(--white);
    text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

/* --- Section 2: Contact Layout Grid --- */
.contact-layout-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 1023px) {
    .contact-layout-grid {
        /* Extra bottom breathing room so form doesn't hit footer directly */
        padding-bottom: 60px;
    }
}

@media (max-width: 599px) {
    .contact-layout-grid {
        /* No right pad needed as we handle FABs separately */
        padding-right: 0;
    }
}

@media (min-width: 1024px) {
    .contact-layout-grid {
        grid-template-columns: 0.8fr 1.8fr;
        gap: 60px;
        padding-right: 0;
    }
}

/* Left Column: Interactive Location Hub */
.locations-hub-card {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.locations-hub-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.locations-hub-title {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -1px;
    line-height: 1.2;
}

.locations-hub-title span {
    background: linear-gradient(135deg, var(--white) 30%, var(--accent-cyan) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.locations-hub-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.location-tabs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-tab {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px 20px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    width: 100%;
}

.location-tab:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(0, 217, 255, 0.2);
    transform: translateX(4px);
}

.location-tab.active {
    background: rgba(10, 61, 255, 0.15);
    border-color: var(--accent-cyan);
    box-shadow: 0 8px 24px rgba(10, 61, 255, 0.1);
}

.location-tab-info {
    display: flex;
    align-items: center;
    gap: 16px;
}

.location-tab-icon {
    color: var(--text-secondary);
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.location-tab.active .location-tab-icon {
    color: var(--accent-cyan);
    transform: scale(1.1);
}

.location-tab-text h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    margin: 0;
}

.location-tab-text p {
    font-size: 12.5px;
    color: var(--text-muted);
    margin: 2px 0 0 0;
}

.location-tab-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    transition: var(--transition);
}

.location-tab.active .location-tab-indicator {
    background: var(--accent-cyan);
    box-shadow: 0 0 10px var(--accent-cyan);
}

/* Active Location Details Card */
.active-location-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
    animation: fadeIn 0.4s ease;
}

.active-location-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-cyan));
}

.active-loc-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding-bottom: 15px;
}

.active-loc-header h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.5px;
}

.active-loc-details-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.active-loc-detail-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.active-loc-detail-icon {
    color: var(--accent-cyan);
    margin-top: 2px;
    display: flex;
    align-items: center;
}

.active-loc-detail-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.active-loc-detail-content span {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-muted);
}

.active-loc-detail-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.active-loc-links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 8px;
}

/* On mobile stack action buttons vertically so they don't overlap FABs */
@media (max-width: 599px) {
    .active-loc-links-row {
        flex-direction: column;
        gap: 8px;
    }

    .active-loc-links-row .active-loc-btn {
        width: 100%;
        justify-content: center;
    }
}

.active-loc-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
    min-width: 0;
    white-space: nowrap;
}

.active-loc-btn:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.glass-form-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 20px;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    /* Ensure form content never overflows into FAB zone */
    overflow: hidden;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .glass-form-card {
        padding: 30px;
    }
}

@media (min-width: 1024px) {
    .glass-form-card {
        padding: 40px;
    }
}

.glass-form-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: var(--radius-md);
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01) 40%, rgba(0, 217, 255, 0.1) 70%, rgba(10, 61, 255, 0.15));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 1;
}

.glass-form-header {
    margin-bottom: 30px;
}

.glass-form-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}

.glass-form-sub {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.glass-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.glass-form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .glass-form-row {
        grid-template-columns: 1fr 1fr;
    }
}

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

.form-group label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-left: 2px;
}

.form-input {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 13px 16px;
    font-size: 14px;
    color: var(--white);
    font-family: var(--font);
    transition: all 0.3s ease;
    width: 100%;
    min-width: 0;
}

.phone-input-row {
    display: flex;
    gap: 8px;
    width: 100%;
}



.form-input::placeholder {
    color: var(--text-muted);
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.15);
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%23C7D2FE' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

/* Custom Country Select */
.custom-country-select {
    position: relative;
    user-select: none;
    width: 125px;
    flex-shrink: 0;
}

.country-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 13px 12px;
}

.country-select-trigger:hover,
.custom-country-select.open .country-select-trigger {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--accent-cyan);
}

.country-select-value {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

.country-select-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 140px;
    max-height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
    background: rgba(18, 30, 90, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 6px;
}

/* Custom Scrollbar for Country Select */
.country-select-dropdown::-webkit-scrollbar {
    width: 6px;
}

.country-select-dropdown::-webkit-scrollbar-track {
    background: transparent;
}

.country-select-dropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.country-select-dropdown::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
}

.custom-country-select.open .country-select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.country-option {
    display: flex;
    align-items: center;
    padding: 10px 12px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s;
    font-size: 14px;
    position: relative;
    padding-left: 32px;
}

.country-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.country-option.selected {
    background: var(--secondary-blue);
    color: #fff;
}

.country-check {
    position: absolute;
    left: 10px;
    opacity: 0;
    font-weight: bold;
    font-size: 12px;
}

.country-option.selected .country-check {
    opacity: 1;
}

.country-flag {
    margin-right: 8px;
}

.form-select option {
    background: var(--dark-bg);
    color: var(--white);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.6;
}

/* Upload zone */
.custom-upload-zone {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 24px 20px;
    border: 2.5px dashed rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.01);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.custom-upload-zone:hover,
.custom-upload-zone.drag-over {
    border-color: var(--accent-cyan);
    background: rgba(0, 217, 255, 0.03);
}

.upload-icon-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 217, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    transition: all 0.3s ease;
}

.custom-upload-zone:hover .upload-icon-circle {
    transform: translateY(-2px);
    background: var(--accent-cyan);
    color: var(--white);
    box-shadow: 0 0 15px rgba(0, 217, 255, 0.4);
}

.upload-text {
    font-size: 13.5px;
    color: var(--text-secondary);
    margin: 0;
}

.upload-text-cta {
    color: var(--accent-cyan);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.upload-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

.file-input-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* File Preview Styling */
.file-preview-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 15px;
    width: 100%;
}

.file-preview-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 10px 14px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.file-preview-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(0, 217, 255, 0.2);
}

.file-preview-icon {
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 217, 255, 0.1);
    color: var(--accent-cyan);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    flex-shrink: 0;
}

.file-preview-info {
    flex-grow: 1;
    min-width: 0;
    /* allows overflow truncation */
}

.file-preview-name {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--white);
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.file-preview-size {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 2px;
}

.file-preview-remove {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 20px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    transition: all 0.2s ease;
}

.file-preview-remove:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

/* Light section override for file preview item */
.light-section .file-preview-item {
    background: rgba(10, 61, 255, 0.02);
    border-color: rgba(10, 61, 255, 0.08);
}

.light-section .file-preview-item:hover {
    background: rgba(10, 61, 255, 0.05);
    border-color: rgba(10, 61, 255, 0.2);
}

.light-section .file-preview-name {
    color: #0F172A;
}

.light-section .file-preview-remove {
    color: rgba(15, 23, 42, 0.4);
}

.light-section .file-preview-remove:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
}

/* Submit Button */
.glass-submit-btn {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    border: none;
    border-radius: 12px;
    color: var(--white);
    width: 100%;
    padding: 15px 24px;
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(10, 61, 255, 0.2);
    transition: all 0.3s ease;
    margin-top: 4px;
    font-family: var(--font);
}

.glass-submit-btn:hover {
    background: linear-gradient(135deg, var(--secondary-blue) 0%, #3b82f6 100%);
    box-shadow: 0 12px 30px rgba(0, 217, 255, 0.35);
    transform: translateY(-2px);
}

.glass-submit-btn svg {
    transition: transform 0.2s ease;
}

.glass-submit-btn:hover svg {
    transform: translateX(4px);
}

/* --- Section 3: Location Map Card --- */
.contact-map-wrapper {
    margin-top: 60px;
}

.contact-map-title-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.contact-map-title-bar h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    margin: 0;
    letter-spacing: -0.5px;
}

.contact-map-title-bar .map-active-branch {
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-cyan);
    background: rgba(0, 217, 255, 0.08);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(0, 217, 255, 0.15);
}

.contact-map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    height: 450px;
    background: rgba(255, 255, 255, 0.01);
}

.contact-map-container iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: none;
    filter: invert(90%) hue-rotate(180deg) brightness(95%) contrast(90%);
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.contact-map-container.loading iframe {
    opacity: 0.3;
}

.map-loader {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(5, 8, 45, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.contact-map-container.loading .map-loader {
    opacity: 1;
    pointer-events: auto;
}

.map-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(0, 217, 255, 0.1);
    border-top-color: var(--accent-cyan);
    border-radius: 50%;
    animation: spin 1s infinite linear;
}

/* --- Light Section Overrides for Quick Connect & Map --- */
.light-section .quick-connect-card {
    background: #FFFFFF;
    border: 1px solid rgba(10, 61, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.light-section .quick-connect-card:hover {
    border-color: rgba(10, 61, 255, 0.2);
    transform: translateY(-5px);
}

.light-section .quick-card-icon {
    background: rgba(10, 61, 255, 0.05);
    color: #0A3DFF;
    border: 1px solid rgba(10, 61, 255, 0.1);
}

.light-section .quick-card-details h3 {
    color: #0F172A;
}

.light-section .quick-card-details p {
    color: #64748B;
}

.light-section .quick-card-link {
    color: #0A3DFF;
}

.light-section .contact-map-title-bar h3 {
    color: #0F172A;
}

.light-section .contact-map-title-bar .map-active-branch {
    color: #0A3DFF;
    background: rgba(10, 61, 255, 0.08);
    border-color: rgba(10, 61, 255, 0.15);
}

.light-section .contact-map-container {
    border: 1px solid rgba(10, 61, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    background: #FFFFFF;
}

.light-section .contact-map-container iframe {
    filter: none !important;
}

/* ==========================================================================
   SERVICES PAGE REDESIGN CUSTOMIZATIONS
   ========================================================================== */

/* Hero Glassmorphism */
.glass-container {
    background: rgba(15, 20, 35, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Upgrade .sol-overview-card */
.sol-overview-card {
    background: linear-gradient(145deg, rgba(20, 25, 40, 0.6), rgba(10, 15, 30, 0.9));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
}

.sol-overview-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(33, 150, 243, 0.2);
    border-color: rgba(33, 150, 243, 0.3);
}

.sol-overview-card .sol-icon-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(33, 150, 243, 0.1);
    color: var(--blue-accent);
    border-radius: 16px;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.sol-overview-card:hover .sol-icon-badge {
    background: var(--blue-accent);
    color: #fff;
    transform: rotate(5deg) scale(1.1);
}

/* Upgrade Showcase Row */
.showcase-row {
    background: rgba(20, 25, 35, 0.3);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.showcase-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.08);
}

.showcase-content {
    padding: 40px 50px !important;
}

/* Upgrade .why-card */
.why-card {
    background: rgba(25, 30, 45, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 18px;
    padding: 35px;
    transition: all 0.3s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    background: rgba(30, 35, 55, 0.6);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.why-card .why-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 20px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    background: rgba(33, 150, 243, 0.2);
    color: var(--blue-accent);
    transform: scale(1.1);
}

/* Upgrade .industry-card */
.industry-card {
    background: rgba(20, 25, 40, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    background: rgba(30, 35, 55, 0.7);
    border-color: rgba(33, 150, 243, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.industry-card .industry-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin: 0 auto 20px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.industry-card:hover .industry-icon {
    background: var(--blue-accent);
    color: #fff;
    transform: scale(1.1) rotateY(180deg);
}

/* Adjustments for light section text colors */
.light-section .sol-overview-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.light-section .why-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.light-section .industry-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.light-section .sol-overview-card h3,
.light-section .why-card h4,
.light-section .industry-card h4 {
    color: var(--text-dark);
}

.light-section .sol-overview-card p,
.light-section .why-card p,
.light-section .industry-card p {
    color: #555;
}

.light-section .sol-overview-card:hover,
.light-section .why-card:hover,
.light-section .industry-card:hover {
    background: #ffffff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(33, 150, 243, 0.2);
}

.light-section .sol-overview-card .sol-icon-badge {
    background: rgba(33, 150, 243, 0.1);
    color: var(--blue-accent);
}

.light-section .why-card .why-icon,
.light-section .industry-card .industry-icon {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-dark);
}

.light-section .why-card:hover .why-icon,
.light-section .industry-card:hover .industry-icon {
    background: var(--blue-accent);
    color: #fff;
}

/* ==========================================================================
   DYNAMIC SHOWCASE TABS (Services Page)
   ========================================================================== */

.showcase-tabs-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.showcase-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.showcase-tab:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.showcase-tab.active {
    background: var(--blue-accent);
    color: #fff;
    border-color: var(--blue-accent);
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}

.showcase-display-area {
    position: relative;
    width: 100%;
    min-height: 600px;
    border-radius: 24px;
    overflow: hidden;
    background: #0a0a0a;
    display: grid;
}

.showcase-display-item {
    grid-area: 1 / 1;
    position: relative;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 40px;
}

.showcase-display-item.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.showcase-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: transform 10s ease;
}

.showcase-display-item.active .showcase-bg-img {
    transform: scale(1.05);
}

.showcase-glass-card {
    position: relative;
    z-index: 2;
    background: rgba(15, 20, 30, 0.65);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transform: translateX(50px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s;
}

.showcase-display-item.active .showcase-glass-card {
    transform: translateX(0);
    opacity: 1;
}

.showcase-glass-card .showcase-title {
    color: #fff;
    margin-bottom: 16px;
    font-size: 28px;
}

.showcase-glass-card .showcase-desc {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    line-height: 1.6;
}

.showcase-glass-card .showcase-spec-item {
    color: #fff;
}

/* Light section overrides for tabs */
.light-section .showcase-tab {
    background: #fff;
    border-color: rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.light-section .showcase-tab:hover {
    background: #f5f5f5;
}

.light-section .showcase-tab.active {
    background: var(--blue-accent);
    color: #fff;
    border-color: var(--blue-accent);
}

@media (max-width: 768px) {
    .showcase-display-area {
        min-height: 500px;
    }

    .showcase-display-item {
        padding: 20px;
        align-items: flex-end;
    }

    .showcase-glass-card {
        padding: 24px;
        max-width: 100%;
        transform: translateY(30px);
    }

    .showcase-display-item.active .showcase-glass-card {
        transform: translateY(0);
    }

    .showcase-tabs-container {
        gap: 8px;
    }

    .showcase-tab {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* ==========================================================================
   PREMIUM CARD REDESIGN OVERRIDES (Services Page)
   ========================================================================== */

/* Apple-Style Minimalist Cards */
.light-section .why-card {
    background: #fbfbfd;
    border: none;
    box-shadow: none;
    border-radius: 28px;
    padding: 40px 35px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1;
}

.light-section .why-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Typography refinement for minimalist look */
.light-section .why-card h4 {
    color: #1d1d1f;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.light-section .why-card p {
    color: #86868b;
    font-size: 15px;
    line-height: 1.5;
}

/* Minimalist Icon styling */
.light-section .why-card .why-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: transparent;
    color: var(--blue-accent);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    margin-bottom: 24px;
}

.light-section .why-card:hover .why-icon {
    transform: scale(1.05);
    background: transparent;
    color: var(--blue-accent);
    box-shadow: none;
    border: none;
}

.light-section .why-card .why-icon svg {
    width: 32px;
    height: 32px;
}

/* Hide all the glow elements completely */
.light-section .why-card .why-card-glow-blue,
.light-section .why-card .why-card-glow-orange {
    display: none !important;
}

/* Override grid for wider, more professional cards in the core services section */
@media (min-width: 1024px) {
    #core-services .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

@media (min-width: 1280px) {
    #core-services .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
}

/* Fix for hover issue caused by !important rules earlier in the file */
.light-section .why-card .why-icon,
.light-section .industry-card .industry-icon {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.light-section .why-card:hover .why-icon,
.light-section .industry-card:hover .industry-icon {
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.light-section .why-card .why-icon svg,
.light-section .industry-card .industry-icon svg {
    color: var(--blue-accent) !important;
}

.light-section .why-card:hover .why-icon svg,
.light-section .industry-card:hover .industry-icon svg {
    color: var(--blue-accent) !important;
}

/* ============================================================
   REDESIGNED SHOWCASE CARDS FOR LIGHT SECTIONS
   ============================================================ */

.light-section .showcase-row {
    background: #FFFFFF !important;
    border-radius: 24px !important;
    border: 1px solid rgba(10, 61, 255, 0.08) !important;
    box-shadow: 0 15px 35px rgba(10, 61, 255, 0.03), 0 1px 3px rgba(10, 61, 255, 0.01) !important;
    overflow: hidden !important;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease !important;
    padding: 32px !important;
    gap: 48px !important;
}

.light-section .showcase-row:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 30px 60px rgba(10, 61, 255, 0.07), 0 0 30px rgba(0, 217, 255, 0.02) !important;
    border-color: rgba(10, 61, 255, 0.18) !important;
}

.light-section .showcase-content {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 20px 16px 20px 0 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.light-section .showcase-row.reverse .showcase-content {
    padding: 20px 0 20px 16px !important;
}

.light-section .showcase-img-frame {
    border-radius: 16px !important;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08) !important;
    border: 1px solid rgba(10, 61, 255, 0.04) !important;
}

/* =========================================
   PREMIUM TYPOGRAPHY & TEXT STYLING
========================================= */

/* Title & Description */
.light-section .showcase-title {
    font-size: clamp(28px, 3vw, 36px) !important;
    font-weight: 800 !important;
    color: #0F172A !important;
    letter-spacing: -0.03em !important;
    line-height: 1.15 !important;
    margin-bottom: 6px !important;
}

.light-section .showcase-title .hero-title-accent {
    color: #0A3DFF !important;
    background: linear-gradient(135deg, #0A3DFF 0%, #00D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.light-section .showcase-desc {
    font-size: 16px !important;
    color: #64748B !important;
    line-height: 1.7 !important;
    margin-bottom: 24px !important;
    max-width: 95%;
}

/* Category Badge Style */
.showcase-category-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(10, 61, 255, 0.06);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #0A3DFF;
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Spec List Redesign */
.light-section .showcase-specs {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 16px 24px !important;
    margin-bottom: 32px !important;
}

.light-section .showcase-spec-item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06) !important;
    font-size: 14.5px !important;
    color: #334155 !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

.light-section .showcase-spec-item:hover {
    color: #0F172A !important;
    transform: translateX(4px) !important;
    border-bottom-color: rgba(10, 61, 255, 0.2) !important;
}

.light-section .showcase-spec-dot {
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: #0A3DFF !important;
    box-shadow: 0 0 6px rgba(10, 61, 255, 0.6) !important;
    flex-shrink: 0 !important;
}

/* Premium Link Style */
.showcase-action-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 600;
    color: #0F172A;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    width: fit-content;
    position: relative;
}

.showcase-action-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0A3DFF;
    transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-action-link .arrow {
    transition: transform 0.3s ease;
    font-weight: 700;
    display: inline-block;
    color: #0A3DFF;
}

.showcase-action-link:hover {
    color: #0A3DFF;
}

.showcase-action-link:hover::after {
    width: 100%;
}

.showcase-action-link:hover .arrow {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .light-section .showcase-row {
        padding: 20px !important;
        gap: 24px !important;
    }

    .light-section .showcase-content {
        padding: 10px 0 !important;
    }

    .light-section .showcase-row.reverse .showcase-content {
        padding: 10px 0 !important;
    }
}

/* Audio Toggle Button for Hero */
.btn-audio-toggle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-audio-toggle:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
}

@media (max-width: 768px) {
    .btn-audio-toggle {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .btn-audio-toggle svg {
        width: 20px;
        height: 20px;
    }
}

/* ============================================================
   IMAGE LOGO WATERMARKS
============================================================ */
.service-img-wrapper::after,
.about-showcase-frame::after,
.showcase-img-frame::after,
.product-img::after,
.hero-image-wrapper::after,
.gallery-card-img-wrapper::after,
.project-card-img-wrapper::after,
.model-card-image-wrapper::after,
.showcase-bg-wrapper::after,
.gallery-image::after {
    content: '';
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 90px;
    height: 45px;
    background-image: none;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: right bottom;
    opacity: 0.9;
    z-index: 20;
    pointer-events: none;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
    display: none;
}

.bento-item::after {
    display: none;
}

@media (max-width: 768px) {

    .service-img-wrapper::after,
    .about-showcase-frame::after,
    .showcase-img-frame::after,
    .product-img::after,
    .hero-image-wrapper::after,
    .gallery-card-img-wrapper::after,
    .project-card-img-wrapper::after,
    .model-card-image-wrapper::after,
    .showcase-bg-wrapper::after,
    .gallery-image::after {
        width: 65px;
        height: 35px;
        bottom: 12px;
        right: 12px;
    }
}


/* ============================================================
   WHATSAPP FLOAT
============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 96px;
    /* Positioned above the scroll-top button */
    right: 32px;
    z-index: 500;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #25D366;
    /* WhatsApp brand color */
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    color: #ffffff;
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 74px;
        right: 16px;
        width: 42px;
        height: 42px;
    }

    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    #scroll-top {
        bottom: 16px;
        right: 16px;
        width: 42px;
        height: 42px;
    }
}

/* ============================================================
   PROJECTS GALLERY STYLES
============================================================ */

.gallery-hero {
    padding: 180px 0 80px;
    background: var(--bg-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.gallery-hero-title {
    font-size: clamp(40px, 5vw, 64px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
}

.gallery-hero-sub {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.gallery-filter-btn {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 30px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--accent-cyan);
    color: var(--bg);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    padding-bottom: 120px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: transparent;
}

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

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(4, 11, 79, 0.9) 0%, rgba(4, 11, 79, 0.2) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition-fast);
}

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

.gallery-item-cat {
    color: var(--accent-cyan);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-cat {
    transform: translateY(0);
}

.gallery-item-title {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
    transform: translateY(10px);
    transition: transform 0.4s ease 0.1s;
}

.gallery-item:hover .gallery-item-title {
    transform: translateY(0);
}

.gallery-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    width: 60px;
    height: 60px;
    background: rgba(0, 217, 255, 0.2);
    backdrop-filter: blur(4px);
    border: 1px solid var(--accent-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item.video:hover .gallery-play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.gallery-play-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
    margin-left: 4px;
}

/* Lightbox specific overrides */
.proj-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.proj-lightbox.active {
    display: flex;
}

.proj-lightbox-content {
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.proj-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}

.proj-lightbox video,
.proj-lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--radius-md);
    box-shadow: 0 0 50px rgba(0, 217, 255, 0.2);
}

/* ============================================================
   DYNAMIC GALLERY ADDITIONS
============================================================ */

/* Advanced Grid layout */
.gallery-grid {
    /* grid-auto-flow: dense; */
    /* grid-auto-rows: 280px; */
    /* Taller base row */
}

.gallery-item {
    aspect-ratio: auto;
    /* Override old setting */
    height: 100%;
    /* Enhanced hover shadow */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Span classes for dynamic mosaic */
.gallery-item.span-2-col {
    grid-column: span 2;
}

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

/* Scroll reveal initial state */
.gallery-item.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure images cover properly when spanning */
.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Overriding filter logic slightly for animations */
.gallery-item[style*="display: block"] {
    animation: fadeInDown 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards !important;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .gallery-grid {
        /* grid-auto-rows: 220px; */
    }

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

/* ============================================================
   3D CAROUSEL STYLES
============================================================ */
.carousel-section {
    padding: 20px 0 120px;
    background: transparent;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 60vh;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}

.carousel-item {
    position: absolute;
    width: 60%;
    max-width: 800px;
    aspect-ratio: 16/9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.6s ease, z-index 0s 0.3s;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    transform: translateX(0) scale(0.6) translateZ(-400px);
}

.carousel-item img,
.carousel-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-item.active {
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
    transform: translateX(0) scale(1) translateZ(0);
    box-shadow: 0 30px 60px rgba(0, 217, 255, 0.2);
    cursor: pointer;
}

.carousel-item.prev-1 {
    opacity: 0.8;
    z-index: 9;
    transform: translateX(-40%) scale(0.8) translateZ(-100px);
    pointer-events: auto;
    cursor: pointer;
}

.carousel-item.prev-2 {
    opacity: 0.5;
    z-index: 8;
    transform: translateX(-70%) scale(0.6) translateZ(-200px);
    pointer-events: auto;
    cursor: pointer;
}

.carousel-item.next-1 {
    opacity: 0.8;
    z-index: 9;
    transform: translateX(40%) scale(0.8) translateZ(-100px);
    pointer-events: auto;
    cursor: pointer;
}

.carousel-item.next-2 {
    opacity: 0.5;
    z-index: 8;
    transform: translateX(70%) scale(0.6) translateZ(-200px);
    pointer-events: auto;
    cursor: pointer;
}

.carousel-overlay {
    position: absolute;
    inset: 0;
    background: rgba(4, 11, 79, 0.5);
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.carousel-item.active .carousel-overlay {
    opacity: 0;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--accent-cyan);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-btn:hover {
    background: var(--accent-cyan);
    color: var(--bg);
}

@media (max-width: 768px) {
    .carousel-item {
        width: 85%;
    }

    .carousel-item.prev-1 {
        transform: translateX(-30%) scale(0.85) translateZ(-50px);
    }

    .carousel-item.next-1 {
        transform: translateX(30%) scale(0.85) translateZ(-50px);
    }

    .carousel-item.prev-2,
    .carousel-item.next-2 {
        opacity: 0;
        pointer-events: none;
    }
}

/* ======================== PARALLELOGRAM GALLERY ======================== */
.parallelogram-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px 15px;
    margin-bottom: 20px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.pg-item {
    width: calc(25% - 15px);
    height: 300px;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, filter 0.3s ease;
    border-radius: 0;
    /* Slight rounding for elegance, though clip-path overwrites it mostly */
}

.pg-item:hover {
    transform: scale(1.05);
    z-index: 10;
}



.pg-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.pg-content img,
.pg-content video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.pg-item:hover .pg-content img,
.pg-item:hover .pg-content video {
    transform: scale(1.1);
}

.pg-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    transition: background 0.3s ease;
}

.pg-item:hover .pg-overlay {
    background: rgba(0, 0, 0, 0);
}

/* Play Icon adjustments for PG items */
.pg-item .gallery-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    z-index: 2;
    transition: all 0.3s ease;
}

.pg-item .gallery-play-icon svg {
    width: 20px;
    height: 20px;
    fill: #040b4f;
    margin-left: 3px;
}

.pg-item:hover .gallery-play-icon {
    background: #FF5722;
}

.pg-item:hover .gallery-play-icon svg {
    fill: #fff;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .pg-item {
        width: calc(33.333% - 15px);
        height: 200px;
    }
}

@media (max-width: 768px) {
    .pg-item {
        width: calc(50% - 15px);
        height: 200px;
    }
}

@media (max-width: 480px) {
    .pg-item {
        width: 100%;
        height: 250px;
    }
}



/* ============================================================ */
/* CTA BUTTONS */
/* ============================================================ */
.cta-btn-solid {
    background: #ffffff;
    color: var(--navy);
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
}

.cta-btn-solid:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    background: #f8fafc;
    color: var(--accent-blue);
}

.cta-btn-solid svg {
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.cta-btn-solid:hover svg {
    transform: translateX(5px);
}

.cta-btn-outline {
    background: transparent;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    border: 2px solid rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-btn-outline svg {
    transition: transform 0.3s ease;
    margin-left: 8px;
}

.cta-btn-outline:hover svg {
    transform: translateX(5px);
}


/* ======================== BENTO GALLERY ======================== */
.bento-gallery {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.bento-item {
    position: relative;
    overflow: hidden;
    height: 320px;
    background: transparent;
    border-radius: var(--radius-md, 12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    grid-column: span 4;
}

.bento-item.bento-center {
    grid-column: 5 / span 4;
}





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



.bento-item:hover img {
    transform: scale(1.03);
}

.bento-overlay {
    position: absolute;
    inset: auto 0 0 0;
    height: 40%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

.bento-title {
    position: absolute;
    bottom: 20px;
    left: 24px;
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.9);
    font-family: 'Inter', sans-serif;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .bento-item {
        grid-column: span 6;
    }

    .bento-item.bento-center {
        grid-column: 4 / span 6;
    }
}

@media (max-width: 768px) {
    .bento-item {
        grid-column: span 6 !important;
        height: 220px !important;
    }

    .bento-item.bento-center {
        grid-column: 4 / span 6 !important;
    }

    #hero .hero-actions {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .bento-item {
        grid-column: span 12 !important;
        height: 250px !important;
    }

    .bento-item.bento-center {
        grid-column: span 12 !important;
    }
}

/* ============================================================
   FORM VALIDATION STYLES
============================================================ */
.form-input.error {
    border-color: #ef4444 !important;
    background: rgba(239, 68, 68, 0.05) !important;
}

.error-msg {
    color: #ef4444;
    font-size: 13px;
    margin-top: 5px;
    display: block;
    animation: fadeIn 0.3s ease forwards;
}