/* ============================================================
   FITOUT LUXURY DESIGN SYSTEM
   Dark Theme · Gold Accents · Premium Experience
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ── CSS Custom Properties — DARK MODE (default) ── */
:root {
    --bg-base: #07090f;
    --bg-surface: #0f1220;
    --bg-card: #141826;
    --bg-card-hover: #1a2035;
    --primary: #1a8fcf;
    --primary-dark: #1270a8;
    --primary-glow: rgba(26, 143, 207, 0.25);
    --gold: #c9a84c;
    --gold-light: #e8c96a;
    --gold-glow: rgba(201, 168, 76, 0.2);
    --text-primary: #e8eeff;
    --text-secondary: #a0aece;
    --text-muted: #5a6a8a;
    --border: rgba(255, 255, 255, 0.07);
    --border-gold: rgba(201, 168, 76, 0.3);
    --radius: 12px;
    --radius-lg: 20px;
    --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 60px rgba(26, 143, 207, 0.15);
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── CSS Custom Properties — LIGHT MODE ── */
[data-theme="light"] {
    --bg-base: #f4f6fb;
    --bg-surface: #eaecf4;
    --bg-card: #ffffff;
    --bg-card-hover: #f0f3fa;
    --primary: #1270a8;
    --primary-dark: #0d5a88;
    --primary-glow: rgba(18, 112, 168, 0.2);
    --gold: #a87c28;
    --gold-light: #c9a84c;
    --gold-glow: rgba(168, 124, 40, 0.15);
    --text-primary: #0d1220;
    --text-secondary: #3a4a6a;
    --text-muted: #7a8aaa;
    --border: rgba(0, 0, 0, 0.08);
    --border-gold: rgba(168, 124, 40, 0.25);
    --shadow-card: 0 8px 40px rgba(0, 0, 0, 0.1);
    --shadow-glow: 0 0 60px rgba(18, 112, 168, 0.12);
}

/* ── Global Reset & Base ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

/* ─────────────────────────────────────────────
   THEME TOGGLE BUTTON
───────────────────────────────────────────── */
.lux-theme-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 6px 14px 6px 8px;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-secondary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.78rem;
    font-weight: 500;
    white-space: nowrap;
    user-select: none;
}

.lux-theme-toggle:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* The pill track */
.lux-theme-toggle__track {
    width: 36px;
    height: 20px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    position: relative;
    flex-shrink: 0;
    transition: background 0.3s ease;
}

[data-theme="light"] .lux-theme-toggle__track {
    background: var(--primary);
    border-color: var(--primary);
}

/* The thumb */
.lux-theme-toggle__thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--text-muted);
    position: absolute;
    top: 2px;
    left: 2px;
    transition: transform 0.3s ease, background 0.3s ease;
}

[data-theme="light"] .lux-theme-toggle__thumb {
    transform: translateX(16px);
    background: #fff;
}

/* Icon inside toggle */
.lux-theme-toggle__icon {
    font-size: 0.85rem;
    line-height: 1;
    color: var(--gold);
    width: 16px;
    text-align: center;
}

/* ── Light mode specific overrides ── */

/* Hero */
[data-theme="light"] .lux-hero__bg {
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(18, 112, 168, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(168, 124, 40, 0.04) 0%, transparent 50%),
        linear-gradient(135deg, #f4f6fb 0%, #e8ecf6 50%, #f4f6fb 100%);
}

[data-theme="light"] .lux-hero__bg::after {
    background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
}

[data-theme="light"] .lux-hero__image-overlay {
    background: linear-gradient(90deg, #f4f6fb 0%, rgba(244, 246, 251, 0.15) 100%);
}

[data-theme="light"] .lux-hero__title {
    color: #0d1220;
}

[data-theme="light"] .lux-hero__stripe {
    background: linear-gradient(135deg, transparent 45%, rgba(18, 112, 168, 0.04) 45%);
}

/* Stats */
[data-theme="light"] .lux-stats {
    border-color: var(--border);
}

[data-theme="light"] .lux-stats__item {
    border-color: var(--border);
}

/* Page banner */
[data-theme="light"] .lux-page-banner::after {
    background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(18, 112, 168, 0.07) 0%, transparent 60%),
        linear-gradient(135deg, #eaecf4 0%, #f4f6fb 100%);
}

/* Header light mode */
[data-theme="light"] .main-header,
[data-theme="light"] .header-upper,
[data-theme="light"] .header-lower {
    background-color: rgba(244, 246, 251, 0.97) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08) !important;
}

[data-theme="light"] .main-header .header-upper {
    background-color: #f4f6fb !important;
    border-bottom: 1px solid rgba(18, 112, 168, 0.12) !important;
}

[data-theme="light"] .main-menu .navigation>li>a,
[data-theme="light"] .main-menu .navigation>li.current>a,
[data-theme="light"] .nav-right .language span {
    color: var(--text-secondary) !important;
}

[data-theme="light"] .main-menu .navigation li ul {
    background: #ffffff !important;
    border-color: var(--border) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12) !important;
}

[data-theme="light"] .main-menu .navigation li ul li a {
    color: var(--text-secondary) !important;
}

[data-theme="light"] .lang-dropdown {
    background: #ffffff !important;
    border-color: var(--border) !important;
}

[data-theme="light"] .sticky-header {
    background: rgba(244, 246, 251, 0.97) !important;
}

[data-theme="light"] .mobile-menu .menu-box {
    background: #f4f6fb !important;
}

/* Body & section backgrounds */
[data-theme="light"] body,
[data-theme="light"] html {
    background: #f4f6fb !important;
    color: var(--text-primary) !important;
}

[data-theme="light"] .boxed_wrapper {
    background-color: #f4f6fb !important;
}

[data-theme="light"] .lux-section-alt {
    background-color: var(--bg-surface) !important;
}

[data-theme="light"] .lux-brand-banner {
    background: linear-gradient(135deg, #dbe2f0 0%, #e8ecf6 100%) !important;
}

[data-theme="light"] .lux-brand-banner::before {
    background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(18, 112, 168, 0.1) 0%, transparent 65%);
}

[data-theme="light"] .lux-footer {
    background: var(--bg-surface) !important;
    border-color: var(--border) !important;
}

[data-theme="light"] .lux-footer-brand p,
[data-theme="light"] .lux-footer-links a,
[data-theme="light"] .lux-footer-contact-info li,
[data-theme="light"] .lux-footer-bottom p {
    color: var(--text-muted) !important;
}

/* Cards */
[data-theme="light"] .lux-service-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .lux-expertise-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .lux-branch-card {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .lux-form {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .lux-contact-info {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

/* Portfolio items */
[data-theme="light"] .lux-portfolio-item img {
    filter: brightness(1) saturate(0.95);
}

/* Form inputs */
[data-theme="light"] .lux-form-group input,
[data-theme="light"] .lux-form-group textarea,
[data-theme="light"] .lux-form-group select {
    background: var(--bg-base);
    color: var(--text-primary);
    border-color: var(--border);
}

[data-theme="light"] .lux-form-group select option {
    background: #ffffff;
    color: var(--text-primary);
}

/* Preloader */
[data-theme="light"] .loader-wrap,
[data-theme="light"] .handle-preloader {
    background: #f4f6fb !important;
}

/* Outline button in light mode */
[data-theme="light"] .lux-btn-outline {
    border-color: rgba(0, 0, 0, 0.15);
    color: var(--text-primary);
}

[data-theme="light"] .lux-btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Scroll indicator */
[data-theme="light"] .lux-scroll-indicator {
    color: var(--text-muted);
}

/* Breadcrumb separator */
[data-theme="light"] .lux-breadcrumb li::before {
    color: var(--text-muted);
}


body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    overflow-x: hidden;
}

/* Override legacy white background */
.boxed_wrapper {
    background-color: var(--bg-base) !important;
}

section {
    background-color: transparent !important;
}

/* ── Typography ── */
.lux-h1,
.lux-h2,
.lux-h3,
.lux-h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
}

.lux-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}

/* ── Utility Classes ── */
.lux-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.lux-section {
    padding: 100px 0;
}

.lux-section-alt {
    background-color: var(--bg-surface) !important;
}

.lux-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    border-radius: 2px;
    margin: 16px 0 28px;
}

.lux-divider-center {
    margin: 16px auto 28px;
}

/* ── Gold Accent Line ── */
.lux-accent-line {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.lux-accent-line::before {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: var(--gold);
}

/* ─────────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────────── */
.lux-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-base);
}

.lux-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(26, 143, 207, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 50% 50% at 10% 80%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, #07090f 0%, #0d1525 50%, #07090f 100%);
    z-index: 0;
}

/* Animated dot grid */
.lux-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 32px 32px;
    z-index: 0;
}

/* Diagonal blue stripe */
.lux-hero__stripe {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 45%, rgba(26, 143, 207, 0.06) 45%);
    z-index: 1;
}

.lux-hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.lux-hero__eyebrow {
    font-family: 'Outfit', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.lux-hero__eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.lux-hero__title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 3.5vw, 3rem);
    font-weight: 800;
    line-height: 1.05;
    color: #fff;
    margin-bottom: 8px;
}

.lux-hero__title .highlight {
    background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lux-hero__subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 24px 0 44px;
    line-height: 1.8;
}

.lux-hero__btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ── Buttons ── */
.lux-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    letter-spacing: 0.03em;
}

.lux-btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #1270a8 100%);
    color: #fff;
    box-shadow: 0 8px 32px rgba(26, 143, 207, 0.4);
}

.lux-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(26, 143, 207, 0.55);
    color: #fff;
    text-decoration: none;
}

.lux-btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
}

.lux-btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
    text-decoration: none;
}

/* ── Hero Image / Visual ── */
.lux-hero__visual {
    position: absolute;
    right: 0;
    top: 0;
    width: 52%;
    height: 100%;
    z-index: 1;
}

.lux-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.lux-hero__image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg-base) 0%, rgba(7, 9, 15, 0.2) 100%);
}

/* ── Hero Scroll Indicator ── */
.lux-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.lux-scroll-indicator__line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--primary), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 1;
    }
}

/* ─────────────────────────────────────────────
   STATS BAR
───────────────────────────────────────────── */
.lux-stats {
    background: var(--bg-surface) !important;
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    position: relative;
    z-index: 5;
}

.lux-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.lux-stats__item {
    text-align: center;
    padding: 24px;
    border-right: 1px solid var(--border);
}

.lux-stats__item:last-child {
    border-right: none;
}

.lux-stats__number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.lux-stats__label {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 500;
}

/* ─────────────────────────────────────────────
   SECTION HEADERS
───────────────────────────────────────────── */
.lux-section-header {
    max-width: 680px;
    margin-bottom: 64px;
}

.lux-section-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.lux-section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.lux-section-header p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.8;
}

/* ─────────────────────────────────────────────
   SERVICE CARDS (Grid Preview)
───────────────────────────────────────────── */
.lux-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.lux-service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    group: true;
}

.lux-service-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(26, 143, 207, 0.2);
}

.lux-service-card__image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    filter: brightness(0.8) saturate(0.9);
    transition: var(--transition);
}

.lux-service-card:hover .lux-service-card__image {
    filter: brightness(1) saturate(1.1);
    transform: scale(1.04);
}

.lux-service-card__image-wrap {
    overflow: hidden;
    position: relative;
}

.lux-service-card__image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 24, 38, 0.9) 0%, transparent 50%);
}

.lux-service-card__body {
    padding: 24px;
}

.lux-service-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(26, 143, 207, 0.12);
    border: 1px solid rgba(26, 143, 207, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 16px;
    transition: var(--transition);
}

.lux-service-card:hover .lux-service-card__icon {
    background: var(--primary);
    color: #fff;
}

.lux-service-card__title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.lux-service-card__text {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ─────────────────────────────────────────────
   SERVICE DETAIL SECTIONS (Alternating)
───────────────────────────────────────────── */
.lux-service-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border);
}

.lux-service-section:last-of-type {
    border-bottom: none;
}

.lux-service-section .lux-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.lux-service-section.reversed .lux-container {
    direction: rtl;
}

.lux-service-section.reversed .lux-container>* {
    direction: ltr;
}

.lux-service-section__number {
    font-family: 'Outfit', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: rgba(26, 143, 207, 0.08);
    margin-bottom: -20px;
}

.lux-service-section__subtitle {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.lux-service-section__title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.7rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.lux-service-section__text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.85;
    margin-bottom: 16px;
}

.lux-service-section__image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.lux-service-section__image-wrap::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-gold);
    z-index: 2;
    pointer-events: none;
}

.lux-service-section__image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    filter: brightness(0.9) saturate(0.85);
    transition: var(--transition);
    display: block;
}

.lux-service-section__image-wrap:hover .lux-service-section__image {
    filter: brightness(1) saturate(1);
    transform: scale(1.02);
}

/* Gold corner accent */
.lux-service-section__image-wrap::after {
    content: '';
    position: absolute;
    bottom: -1px;
    right: -1px;
    width: 60px;
    height: 60px;
    border-bottom: 3px solid var(--gold);
    border-right: 3px solid var(--gold);
    border-radius: 0 0 var(--radius-lg) 0;
    z-index: 3;
}

/* ─────────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────────── */
.lux-about-hero {
    position: relative;
    padding: 160px 0 80px;
    background: linear-gradient(135deg, var(--bg-base) 0%, var(--bg-surface) 100%) !important;
    overflow: hidden;
}

.lux-about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent, rgba(26, 143, 207, 0.05));
    border-left: 1px solid var(--border);
}

.lux-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    /* padding: 80px 0; */
}

.lux-about-image-wrap {
    position: relative;
}

.lux-about-image {
    width: 100%;
    border-radius: var(--radius-lg);
    filter: brightness(0.9) saturate(0.85);
    display: block;
}

.lux-about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(26, 143, 207, 0.4);
}

.lux-about-badge__number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.lux-about-badge__text {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Feature List */
.lux-feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 28px 0;
}

.lux-feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.lux-feature-list li::before {
    content: '';
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(26, 143, 207, 0.12);
    border: 1.5px solid var(--primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%231a8fcf' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 2px;
}

/* ─────────────────────────────────────────────
   EXPERTISE CARDS
───────────────────────────────────────────── */
.lux-expertise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.lux-expertise-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.lux-expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.lux-expertise-card:hover {
    border-color: rgba(26, 143, 207, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

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

.lux-expertise-card__icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.lux-expertise-card__title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.lux-expertise-card__text {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* ─────────────────────────────────────────────
   PORTFOLIO / PROJECTS
───────────────────────────────────────────── */
.lux-portfolio-intro {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.85;
    max-width: 900px;
    margin-bottom: 60px;
}

.lux-portfolio-category {
    margin-bottom: 64px;
}

.lux-portfolio-category__title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
}

.lux-portfolio-category__title::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.lux-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

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

.lux-portfolio-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.lux-portfolio-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 143, 207, 0.6) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

.lux-portfolio-item:hover::after {
    opacity: 1;
}

.lux-portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    filter: brightness(0.85) saturate(0.8);
}

.lux-portfolio-item:hover img {
    transform: scale(1.06);
    filter: brightness(1) saturate(1);
}

.lux-portfolio-item__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 2;
    opacity: 0;
    transform: translateY(10px);
    transition: var(--transition);
}

.lux-portfolio-item:hover .lux-portfolio-item__overlay {
    opacity: 1;
    transform: translateY(0);
}

.lux-portfolio-item__zoom {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    margin-left: auto;
}

/* Page title banner */
.lux-page-banner {
    padding: 150px 0 90px;
    position: relative;
    overflow: hidden;
    background: #07090f !important;
}

.lux-page-banner__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.28;
    transform-origin: center center;
    animation: lux-ken-burns 16s ease-in-out infinite alternate;
}

/* Light mode overlay adjustments for text contrast */
[data-theme="light"] .lux-page-banner__bg {
    opacity: 0.14;
    filter: grayscale(20%);
}

.lux-page-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(7, 9, 15, 0.45) 0%, rgba(7, 9, 15, 0.88) 100%);
    z-index: 1;
    pointer-events: none;
}

[data-theme="light"] .lux-page-banner::after {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.lux-page-banner .lux-container {
    position: relative;
    z-index: 2;
}

@keyframes lux-ken-burns {
    0% {
        transform: scale(1) translate(0, 0);
    }

    100% {
        transform: scale(1.15) translate(-2%, 1%);
    }
}

.lux-page-banner h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.lux-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    list-style: none;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.lux-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.2s;
}

.lux-breadcrumb a:hover {
    color: var(--gold);
}

.lux-breadcrumb li::before {
    content: '/';
    margin-right: 10px;
    color: var(--border);
}

.lux-breadcrumb li:first-child::before {
    display: none;
}

/* ─────────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────────── */
.lux-contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
}

.lux-branches-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 48px;
}

.lux-branch-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.lux-branch-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--gold));
    transform: scaleY(0);
    transition: var(--transition);
    transform-origin: top;
}

.lux-branch-card:hover {
    border-color: rgba(26, 143, 207, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.lux-branch-card:hover::before {
    transform: scaleY(1);
}

.lux-branch-card__icon {
    font-size: 1.8rem;
    margin-bottom: 14px;
}

.lux-branch-card__city {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.lux-branch-card__address {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.lux-branch-card__phone {
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Contact Info Box */
.lux-contact-info {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
    margin-bottom: 24px;
}

.lux-contact-info__item {
    display: flex;
    gap: 16px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.lux-contact-info__item:last-child {
    border-bottom: none;
}

.lux-contact-info__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(26, 143, 207, 0.1);
    border: 1px solid rgba(26, 143, 207, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    color: var(--primary);
}

.lux-contact-info__label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.lux-contact-info__value {
    font-size: 0.92rem;
    color: var(--text-primary);
    font-weight: 500;
}

.lux-contact-info__value a {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.2s;
}

.lux-contact-info__value a:hover {
    color: var(--primary);
}

/* Contact Form */
.lux-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.lux-form h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.lux-form p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 28px;
}

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

.lux-form-group {
    margin-bottom: 16px;
}

.lux-form-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.lux-form-group input,
.lux-form-group textarea,
.lux-form-group select {
    width: 100%;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 18px;
    color: var(--text-primary);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    transition: var(--transition);
    outline: none;
}

.lux-form-group input:focus,
.lux-form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26, 143, 207, 0.12);
}

.lux-form-group textarea {
    height: 130px;
    resize: vertical;
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.lux-footer {
    background: var(--bg-surface) !important;
    border-top: 1px solid var(--border);
    padding: 80px 0 0;
}

.lux-footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--border);
}

.lux-footer-brand p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 20px 0 28px;
    max-width: 320px;
}

.lux-footer-logo {
    height: 48px;
    width: auto;
}

.lux-footer-social {
    display: flex;
    gap: 10px;
}

.lux-footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
    text-decoration: none;
}

.lux-footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.lux-footer-col h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.lux-footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lux-footer-links a {
    font-size: 0.87rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.lux-footer-links a::before {
    content: '';
    width: 5px;
    height: 1px;
    background: var(--primary);
    transition: width 0.2s;
}

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

.lux-footer-links a:hover::before {
    width: 12px;
}

.lux-footer-contact-info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.lux-footer-contact-info li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.lux-footer-contact-info li i {
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.lux-footer-contact-info a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.lux-footer-contact-info a:hover {
    color: var(--primary);
}

.lux-footer-bottom {
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lux-footer-bottom p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.lux-footer-bottom-links {
    display: flex;
    gap: 24px;
    list-style: none;
}

.lux-footer-bottom-links a {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.lux-footer-bottom-links a:hover {
    color: var(--primary);
}

/* ─────────────────────────────────────────────
   BRAND CLOSING BANNER
───────────────────────────────────────────── */
.lux-brand-banner {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: linear-gradient(135deg, #0d1a2e 0%, #071220 100%) !important;
    text-align: center;
}

.lux-brand-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 50%, rgba(26, 143, 207, 0.15) 0%, transparent 65%);
}

.lux-brand-banner .lux-container {
    position: relative;
    z-index: 1;
}

.lux-brand-banner h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.lux-brand-banner p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 40px;
}

/* ─────────────────────────────────────────────
   SCROLL REVEAL ANIMATIONS
───────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    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;
}

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1100px) {
    .lux-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .lux-stats__item:nth-child(2) {
        border-right: none;
    }

    .lux-footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .lux-section {
        padding: 70px 0;
    }

    .lux-about-grid,
    .lux-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lux-service-section .lux-container,
    .lux-service-section.reversed .lux-container {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 40px;
    }

    .lux-expertise-grid {
        grid-template-columns: 1fr 1fr;
    }

    .lux-hero__visual {
        display: none;
    }

    .lux-hero__content {
        max-width: 100%;
    }

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

@media (max-width: 600px) {
    .lux-services-grid {
        grid-template-columns: 1fr;
    }

    .lux-stats__grid {
        grid-template-columns: 1fr 1fr;
    }

    .lux-expertise-grid {
        grid-template-columns: 1fr;
    }

    .lux-branches-grid {
        grid-template-columns: 1fr;
    }

    .lux-footer-grid {
        grid-template-columns: 1fr;
    }

    .lux-portfolio-grid {
        grid-template-columns: 1fr;
    }

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

    .lux-footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .lux-hero__title {
        font-size: 2.4rem;
    }

    .lux-hero__btns {
        flex-direction: column;
    }

    .lux-btn {
        justify-content: center;
    }
}


/* ─────────────────────────────────────────────
   OVERRIDE LEGACY STYLES — COMPREHENSIVE
───────────────────────────────────────────── */

/* CRITICAL: Force dark body background */
body,
html {
    background: #07090f !important;
    color: var(--text-primary) !important;
}

/* Force dark background everywhere */
.auto-container,
.page-wrapper,
.boxed_wrapper,
.about-style-two,
.service-style-two,
.project-style-one,
.contact-style-one,
.sec-pad {
    background: transparent !important;
    background-color: transparent !important;
}

/* Header — make dark */
.main-header,
.header-upper,
.header-lower {
    background-color: rgba(7, 9, 15, 0.97) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
}

.main-header .header-upper {
    background-color: #0a0c14 !important;
    border-bottom: 1px solid rgba(26, 143, 207, 0.15) !important;
}

/* Navigation links */
.main-menu .navigation>li>a,
.main-menu .navigation>li.current>a,
.nav-right .language span {
    color: var(--text-secondary) !important;
}

.main-menu .navigation>li>a:hover,
.main-menu .navigation>li.current>a {
    color: var(--primary) !important;
}

/* Nav dropdown */
.main-menu .navigation li ul {
    background: #111520 !important;
    border: 1px solid var(--border) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6) !important;
}

.main-menu .navigation li ul li a {
    color: var(--text-secondary) !important;
}

.main-menu .navigation li ul li a:hover {
    color: var(--primary) !important;
    background: rgba(26, 143, 207, 0.08) !important;
}

/* Language dropdown */
.lang-dropdown {
    background: #111520 !important;
    border: 1px solid var(--border) !important;
}

.lang-dropdown li a {
    color: var(--text-secondary) !important;
}

/* Mobile menu */
.mobile-menu .menu-box {
    background: #0f1220 !important;
}

/* Preloader */
.loader-wrap,
.handle-preloader {
    background: #07090f !important;
}

/* Sticky header */
.sticky-header {
    background: rgba(7, 9, 15, 0.97) !important;
    backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid var(--border) !important;
}

/* Banner section (original) — hide completely */
.banner-section.banner-style-two {
    display: none !important;
}

/* Scroll to top button */
/* .scroll-to-top {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
} */

/* Preloader spinner */
.spinner {
    border-color: var(--primary) transparent transparent transparent !important;
}

.letters-loading {
    color: var(--primary) !important;
}

/* Keep legacy header z-index high */
.main-header {
    position: relative !important;
    z-index: 100 !important;
}

/* Select styling */
.lux-form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238b9ac4' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.lux-form-group select option {
    background: #141826;
    color: var(--text-primary);
}

/* ── Nav-right flex alignment (for theme toggle) ── */
.main-header .nav-right,
.main-header .upper-inner {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Theme toggle button inside header — spacing tweak */
.main-header .lux-theme-toggle {
    margin-left: 12px;
    flex-shrink: 0;
}

[data-theme="light"] .lux-form-group select option {
    background: #ffffff;
    color: var(--text-primary);
}

/* Ensure service card images don't flash too darkly in light */
[data-theme="light"] .lux-service-card__image {
    filter: brightness(0.95) saturate(0.9);
}

[data-theme="light"] .lux-service-card:hover .lux-service-card__image {
    filter: brightness(1) saturate(1);
}

[data-theme="light"] .lux-service-section__image {
    filter: brightness(0.97) saturate(0.9);
}

[data-theme="light"] .lux-service-section__image-wrap:hover .lux-service-section__image {
    filter: brightness(1) saturate(1);
}

/* About image in light mode */
[data-theme="light"] .lux-about-image {
    filter: brightness(0.97) saturate(0.9);
}

/* ─────────────────────────────────────────────
   LUXURY LIGHTBOX STYLE
   ───────────────────────────────────────────── */
.lux-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(7, 9, 15, 0.95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.lux-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lux-lightbox__close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 100000;
}

.lux-lightbox__close:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #07090f;
    transform: rotate(90deg);
}

.lux-lightbox__wrapper {
    position: relative;
    max-width: 90%;
    max-height: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lux-lightbox.active .lux-lightbox__wrapper {
    transform: scale(1);
}

.lux-lightbox__img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lux-lightbox__caption {
    margin-top: 20px;
    color: var(--text-secondary);
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    text-align: center;
    max-width: 80%;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s ease 0.2s;
}

.lux-lightbox.active .lux-lightbox__caption {
    opacity: 1;
    transform: translateY(0);
}

/* Cursor pointer hover styling for content images */
.lux-service-card__image-wrap,
.lux-service-section__image-wrap,
.lux-about-image-wrap,
.lux-portfolio-item,
.lux-hero__visual,
.lux-about-image-wrap img,
.lux-service-card__image,
.lux-service-section__image,
.lux-portfolio-item img {
    cursor: zoom-in !important;
}

/* ─────────────────────────────────────────────
   MISSION & VISION PREMIUM CARDS
   ───────────────────────────────────────────── */
.lux-mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 48px;
}

@media (max-width: 900px) {
    .lux-mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

.lux-mv-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
}

/* Theme adaptation */
[data-theme="light"] .lux-mv-card {
    background: #ffffff;
    border-color: rgba(0, 0, 0, 0.06);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.lux-mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    transition: var(--transition);
}

.lux-mv-card--mission::before {
    background: var(--gold);
}

.lux-mv-card--vision::before {
    background: var(--primary);
}

.lux-mv-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.12);
}

[data-theme="light"] .lux-mv-card:hover {
    border-color: rgba(0, 0, 0, 0.08);
}

.lux-mv-card:hover.lux-mv-card--mission {
    box-shadow: 0 25px 50px rgba(201, 168, 76, 0.12), 0 20px 40px rgba(0, 0, 0, 0.3);
}

.lux-mv-card:hover.lux-mv-card--vision {
    box-shadow: 0 25px 50px rgba(26, 143, 207, 0.14), 0 20px 40px rgba(0, 0, 0, 0.3);
}

.lux-mv-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 28px;
    transition: var(--transition);
}

.lux-mv-card--mission .lux-mv-icon-wrap {
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.lux-mv-card--vision .lux-mv-icon-wrap {
    background: rgba(26, 143, 207, 0.08);
    color: var(--primary);
    border: 1px solid rgba(26, 143, 207, 0.2);
}

.lux-mv-card:hover .lux-mv-icon-wrap {
    transform: scale(1.1) rotate(8deg);
}

.lux-mv-card--mission:hover .lux-mv-icon-wrap {
    background: var(--gold);
    color: #07090f;
    border-color: var(--gold);
}

.lux-mv-card--vision:hover .lux-mv-icon-wrap {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.lux-mv-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    color: var(--text-primary);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.lux-mv-lead {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 16px;
    opacity: 0.95;
}

.lux-mv-text {
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-secondary);
}

/* ─────────────────────────────────────────────
   LIGHT MODE MOBILE SIDEBAR OVERRIDES
   ───────────────────────────────────────────── */
[data-theme="light"] .mobile-menu .menu-box {
    background: #ffffff !important;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .mobile-menu .navigation li>a {
    color: #1a1e2d !important;
}

[data-theme="light"] .mobile-menu .navigation li>a:hover,
[data-theme="light"] .mobile-menu .navigation li.current>a {
    color: var(--primary) !important;
}

[data-theme="light"] .mobile-menu .navigation li.dropdown .dropdown-btn {
    color: #1a1e2d !important;
}

[data-theme="light"] .mobile-menu .contact-info h4 {
    color: #1a1e2d !important;
}

[data-theme="light"] .mobile-menu .contact-info ul li,
[data-theme="light"] .mobile-menu .contact-info ul li a {
    color: #555c70 !important;
}

[data-theme="light"] .mobile-menu .contact-info ul li a:hover {
    color: var(--primary) !important;
}

[data-theme="light"] .mobile-menu .social-links li a {
    color: #1a1e2d !important;
    background: rgba(0, 0, 0, 0.05) !important;
}

[data-theme="light"] .mobile-menu .social-links li a:hover {
    color: #ffffff !important;
    background: var(--primary) !important;
}

[data-theme="light"] .mobile-menu .close-btn {
    color: #1a1e2d !important;
}

[data-theme="light"] .mobile-menu .close-btn:hover {
    color: var(--primary) !important;
}

[data-theme="light"] .lux-mobile-toggle-wrap {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}