/* ============================================
   AGASTYA PARVA GROUPS — Design System
   Dark Luxury Theme with Gold Accents
   ============================================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@24,400,0,0');

/* ---- CSS Reset ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ---- Custom Properties ---- */
:root {
    /* Colors */
    --gold: #e6af4b;
    --gold-light: #f0c46e;
    --gold-dark: #c9932e;
    --gold-glow: rgba(230, 175, 75, 0.3);
    --dark-bg: #111111;
    --dark-bg-2: #1A1A1A;
    --dark-bg-3: #1E1E1E;
    --card-bg: rgba(255, 255, 255, 0.02);
    --card-bg-hover: rgba(255, 255, 255, 0.04);
    --top-bar-bg: #0A0A0A;
    --border-color: rgba(230, 175, 75, 0.2);
    --border-subtle: rgba(230, 175, 75, 0.12);
    --text-white: #FFFFFF;
    --text-light: #E0E0E0;
    --text-muted: #999999;
    --text-dim: #777777;
    --overlay: rgba(0, 0, 0, 0.6);
    --overlay-dark: rgba(0, 0, 0, 0.75);
    --success: #4CAF50;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-width: 1200px;
    --gap-sm: 8px;
    --gap-md: 16px;
    --gap-lg: 24px;
    --gap-xl: 40px;
    --gap-2xl: 60px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-pill: 50px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(230, 175, 75, 0.15);
    --shadow-gold-heavy: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(230, 175, 75, 0.2);
    --bg-glass: rgba(255, 255, 255, 0.02);
    --bg-glass-hover: rgba(255, 255, 255, 0.04);
}

/* ---- Custom Scrollbar (Hidden) ---- */
::-webkit-scrollbar {
    display: none;
    width: 0;
    height: 0;
}

/* Firefox and IE/Edge Support */
* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* ---- Base ---- */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: clip;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

ul,
ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* ---- Select Option Base Styles ---- */
select option {
    background-color: #1a1a1a;
    color: #ffffff;
}

select option:disabled {
    color: #777777;
}

/* ---- Container ---- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--top-bar-bg);
    padding: 8px 0;
    font-size: 0.8rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
    max-height: 40px;
    opacity: 1;
    overflow: hidden;
}

.header.scrolled .top-bar {
    max-height: 0;
    padding: 0;
    opacity: 0;
    border-bottom-color: transparent;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
}

.top-bar-left svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: var(--gap-lg);
}

.top-bar-right .info-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-bar-right .info-item svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
}

.top-bar-social {
    display: flex;
    gap: var(--gap-md);
}

.top-bar-social a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition-base);
}

.top-bar-social a:hover {
    color: var(--gold);
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.header {
    background: var(--dark-bg);
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(230, 175, 75, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    background: rgba(17, 17, 17, 0.85);
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8), 0 1px 0 rgba(230, 175, 75, 0.3);
    border-bottom-color: rgba(230, 175, 75, 0.35);
}

.header>.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 30px;
    transition: padding 0.3s ease;
}

.header.scrolled>.container {
    padding: 12px 30px;
}

.scroll-progress-bar {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(230, 175, 75, 0.6) 100%);
    z-index: 1001;
    transition: width 0.1s ease-out;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
}

.logo:hover .logo-img {
    transform: scale(1.05);
}

.logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    transition: transform var(--transition-base);
}

.footer-logo-img {
    width: 48px;
    height: 48px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--text-white);
    line-height: 1.0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.logo-text span {
    display: block;
    font-size: 0.65rem;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.logo-text span.brand-sub {
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--gold);
    margin-top: 3px;
    line-height: 1;
}

.logo-text span.brand-tagline {
    font-size: 0.52rem;
    font-weight: 500;
    letter-spacing: 1.8px;
    color: var(--text-muted);
    margin-top: 3px;
    white-space: nowrap;
    line-height: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--gap-lg);
}

.nav-links a {
    font-size: 0.92rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-light);
    position: relative;
    padding: 5px 0;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition-base), left var(--transition-base);
}

.nav-links a:hover {
    color: var(--gold-light);
    text-shadow: 0 0 8px rgba(230, 175, 75, 0.15);
}

.nav-links a.active {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
    left: 0;
}

.nav-links a.active::after {
    width: 100%;
    left: 0;
}

/* Services dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.nav-dropdown .dropdown-toggle svg {
    width: 10px;
    height: 10px;
    fill: currentColor;
    transition: var(--transition-base);
}

.nav-dropdown:hover .dropdown-toggle svg {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    background: var(--dark-bg-3);
    border: 1px solid var(--border-color);
    border-top: 3px solid var(--gold);
    /* Luxurious gold top accent line */
    border-radius: var(--radius-md);
    min-width: 220px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-base);
    box-shadow: var(--shadow-hover);
    z-index: 1002;
}

/* Invisible hover bridge to prevent menu from closing when cursor crosses the gap */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -25px;
    /* Bridges the 10px margin-top + 10px translateY offset */
    left: 0;
    right: 0;
    height: 25px;
    background: transparent;
    z-index: -1;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-light);
    transition: padding-left 0.25s ease, color 0.25s ease, background-color 0.25s ease;
}

.dropdown-menu a::after {
    display: none;
}

.dropdown-menu a:hover {
    background: rgba(230, 175, 75, 0.05);
    color: var(--gold);
    padding-left: 26px;
    /* Smooth slider micro-animation */
}

/* CTA Button in nav */
.btn-quote {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition-base);
    font-family: var(--font-body);
}

.btn-quote:hover {
    background: var(--gold);
    color: var(--dark-bg);
    box-shadow: var(--shadow-gold);
}

.nav-mobile-btn {
    display: none !important;
}

/* Mobile menu toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 28px;
    height: 2px;
    background: var(--text-white);
    transition: var(--transition-base);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--dark-bg);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: var(--transition-base);
    font-family: var(--font-body);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-primary svg {
    width: 14px;
    height: 14px;
    fill: var(--dark-bg);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text-white);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1.5px solid var(--text-white);
    cursor: pointer;
    transition: var(--transition-base);
    font-family: var(--font-body);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-outline svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.btn-gold-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--gold);
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1.5px solid var(--gold);
    cursor: pointer;
    transition: var(--transition-base);
    font-family: var(--font-body);
}

.btn-gold-outline:hover {
    background: var(--gold);
    color: var(--dark-bg);
    box-shadow: var(--shadow-gold);
}

.btn-gold-outline svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--gold);
    margin-bottom: 14px;
    font-family: var(--font-body);
}

.section-title {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
    line-height: 1.15;
}

.section-title .gold {
    color: var(--gold);
}

.section-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    max-width: 700px;
    line-height: 1.75;
}

.section-header-center {
    text-align: center;
}

.section-header-center .section-desc {
    margin: 0 auto;
}

.gold-underline {
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, rgba(230, 175, 75, 0.4) 60%, transparent 100%);
    margin-top: 16px;
    border-radius: 2px;
}

.gold-underline-center {
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
    margin-left: auto;
    margin-right: auto;
    width: 100px;
}

/* ============================================
   PAGE HERO
   ============================================ */
.page-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 1px solid rgba(230, 175, 75, 0.2);
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    transform: scale(1.05);
    transition: transform var(--transition-slow);
}

.page-hero:hover .page-hero-bg {
    transform: scale(1.0);
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(17, 17, 17, 0.95) 0%, rgba(17, 17, 17, 0.75) 50%, rgba(17, 17, 17, 0.4) 100%),
        linear-gradient(to top, rgba(17, 17, 17, 0.9) 0%, transparent 40%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--text-muted);
    transition: var(--transition-fast);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb span {
    color: var(--gold);
    font-weight: 700;
}

.page-hero h1 {
    font-size: 3.4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.05;
    margin-bottom: 18px;
}

.page-hero h1 .gold {
    color: var(--gold);
}

.page-hero .hero-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 580px;
    line-height: 1.8;
}

/* Premium Hero Benefits Tag Cards */
.hero-benefits {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.hero-benefit-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(230, 175, 75, 0.12);
    border-radius: var(--radius-md, 8px);
    padding: 10px 16px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.hero-benefit-card:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(230, 175, 75, 0.35);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3), 0 0 12px rgba(230, 175, 75, 0.08);
}

.hero-benefit-icon {
    width: 36px;
    height: 36px;
    background: rgba(230, 175, 75, 0.08);
    border: 1px solid rgba(230, 175, 75, 0.18);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.hero-benefit-card:hover .hero-benefit-icon {
    background: rgba(230, 175, 75, 0.15);
    border-color: var(--gold);
    transform: scale(1.05);
}

.hero-benefit-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
    stroke: currentColor;
    color: var(--gold);
    transition: all 0.3s ease;
}

.hero-benefit-card:hover .hero-benefit-icon svg {
    fill: var(--text-white);
    color: var(--text-white);
}

.hero-benefit-text {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

/* ============================================
   HOME HERO (Special)
   ============================================ */
.home-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.home-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.home-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.7) 45%, rgba(10, 10, 10, 0.3) 100%),
        linear-gradient(to top, rgba(10, 10, 10, 0.98) 0%, transparent 25%),
        linear-gradient(to bottom, rgba(10, 10, 10, 0.85) 0%, transparent 30%);
    z-index: 1;
}

.home-hero-content {
    position: relative;
    z-index: 2;
    padding: 80px 0;
    max-width: 580px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 175, 75, 0.1);
    border: 1px solid rgba(230, 175, 75, 0.3);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--gold);
    margin-bottom: 24px;
    animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(230, 175, 75, 0);
    }

    50% {
        box-shadow: 0 0 15px rgba(230, 175, 75, 0.15);
    }
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

.home-hero h1 {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
}

.home-hero h1 .gold {
    color: var(--gold);
}

.home-hero .hero-desc {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.75;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: var(--gap-md);
    flex-wrap: wrap;
}

/* ============================================
   STATS BAR
   ============================================ */
/* ============================================
   STATS BAR (Redesigned Glassmorphic Panel)
   ============================================ */
.stats-bar {
    padding: 0;
    position: relative;
    z-index: 10;
    margin-top: -65px;
    /* Overlap the hero section */
}

.stats-container {
    background: rgba(22, 22, 22, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(230, 175, 75, 0.12);
    border-top: 3px solid var(--gold);
    border-radius: 20px;
    padding: 35px 25px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.8),
        0 0 30px rgba(230, 175, 75, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    overflow: visible;
    position: relative;
}

.stats-grid {
    display: grid;
    gap: 0;
}

.stats-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.stats-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.stats-grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
    border-right: 1px solid rgba(230, 175, 75, 0.12);
    padding: 0 15px;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.stat-item:last-child {
    border-right: none;
}

.stat-item:hover {
    transform: translateY(-8px);
}

.stat-item>div {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.stat-icon {
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(230, 175, 75, 0.04);
    border: 1px solid rgba(230, 175, 75, 0.1);
    margin-bottom: 2px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stat-icon svg,
.stat-icon .material-symbols-outlined {
    width: 24px;
    height: 24px;
    font-size: 24px;
    fill: var(--gold);
    color: var(--gold);
    transition: all 0.4s ease;
    display: inline-block;
    text-align: center;
    line-height: 24px;
    user-select: none;
}

.stat-item:hover .stat-icon {
    background: rgba(230, 175, 75, 0.12);
    border-color: var(--gold);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 0 0 15px rgba(230, 175, 75, 0.25);
}

.stat-item:hover .stat-icon svg,
.stat-item:hover .stat-icon .material-symbols-outlined {
    fill: var(--gold-light);
    color: var(--gold-light);
    filter: drop-shadow(0 0 4px var(--gold-glow));
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    transition: color 0.4s ease;
}

.stat-item:hover .stat-number {
    color: var(--gold-light);
}

.stat-label {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.4;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.4s ease;
}

.stat-item:hover .stat-label {
    color: var(--text-light);
}

/* Story Layout Alignment Improvements */
.story-layout {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--gap-2xl);
    align-items: stretch !important;
}

.story-image-col {
    display: flex;
    width: 100%;
}

.story-image {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 1024px) {
    .story-layout {
        grid-template-columns: 1fr;
        gap: var(--gap-xl);
    }

    .story-image-col {
        height: 380px;
    }

    .story-image {
        min-height: auto;
        height: 100%;
    }
}

/* Story Stats Specific Grid & Cards (about.html) */
.story-stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.45) 0%, rgba(18, 18, 18, 0.75) 100%);
    border: 1px solid rgba(230, 175, 75, 0.15);
    border-radius: var(--radius-xl, 20px);
    padding: 22px 16px;
    margin-top: 24px;
    width: 100%;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all 0.3s ease;
}

.story-stats-grid:hover {
    border-color: rgba(230, 175, 75, 0.35);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(230, 175, 75, 0.1);
}

.story-stat-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    flex: 1;
    transition: all 0.3s ease;
    position: relative;
}

.story-stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.08);
}

.story-stat-card .stat-icon {
    width: 38px;
    height: 38px;
    background: rgba(230, 175, 75, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2px;
    transition: all 0.3s ease;
}

.story-stat-card .stat-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
}

.story-stat-card:hover .stat-icon {
    transform: scale(1.1);
    background: rgba(230, 175, 75, 0.15);
}

.story-stat-card .stat-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.story-stat-card .stat-label {
    font-size: 0.65rem;
    color: var(--text-muted);
    line-height: 1.4;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.story-stat-card:hover .stat-label {
    color: var(--text-white);
}

@media (max-width: 768px) {
    .story-stats-grid {
        flex-direction: column;
        gap: 20px;
        padding: 24px 16px;
    }

    .story-stat-card {
        width: 100%;
    }

    .story-stat-card:not(:last-child)::after {
        right: 0;
        left: 0;
        bottom: -10px;
        top: auto;
        height: 1px;
        width: 40%;
        margin: 0 auto;
    }
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.services-section {
    padding: var(--section-padding);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-xl);
    margin-top: 40px;
}

.service-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    border-color: rgba(230, 175, 75, 0.45);
    background: var(--card-bg-hover);
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(230, 175, 75, 0.08);
}

.service-card-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.service-card:hover .service-card-img img {
    transform: scale(1.05);
}

.service-card-icon {
    position: absolute;
    bottom: 12px;
    left: 12px;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
}

.service-card-body {
    padding: 24px;
}

.service-card-body h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 16px;
    font-family: var(--font-body);
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.service-list li::before {
    content: '';
    width: 14px;
    height: 14px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23e6af4b'%3E%3Cpath d='M12 2C6.48 2 2 6.48 2 12s4.48 10 10 10 10-4.48 10-10S17.52 2 12 2zm-2 15l-5-5 1.41-1.41L10 14.17l7.59-7.59L19 8l-9 9z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    flex-shrink: 0;
}

.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    position: relative;
    padding-bottom: 4px;
    transition: gap var(--transition-base);
}

.explore-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width var(--transition-base);
}

.explore-link:hover {
    gap: 12px;
}

.explore-link:hover::after {
    width: 100%;
}

.explore-link svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
    transition: transform var(--transition-base);
}

.explore-link:hover svg {
    transform: translateX(3px);
}

/* ============================================
   PROJECT CARDS
   ============================================ */
.projects-section {
    padding: var(--section-padding);
}

.filter-tabs {
    display: flex;
    gap: var(--gap-sm);
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.filter-tab {
    padding: 8px 20px;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-base);
    background: transparent;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(230, 175, 75, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 175, 75, 0.1);
}

.filter-tab.active {
    background: var(--gold);
    color: var(--dark-bg);
    border-color: var(--gold);
}

.filter-tab.active:hover {
    background: var(--gold-light);
    color: var(--dark-bg);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(230, 175, 75, 0.25);
}

.filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--gap-md);
    margin-bottom: 32px;
}

.sort-dropdown {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-muted);
    font-size: 0.8rem;
    font-family: var(--font-body);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='%23999'%3E%3Cpath d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.sort-dropdown option {
    background-color: var(--dark-bg-2);
    color: var(--text-white);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-lg);
}

.project-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
    border-color: rgba(230, 175, 75, 0.45);
    background: var(--card-bg-hover);
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(230, 175, 75, 0.08);
}

.project-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.project-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.project-card:hover .project-card-img img {
    transform: scale(1.05);
}

.project-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--gold);
    color: var(--dark-bg);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
}

.project-card-body {
    padding: 18px;
}

.project-card-body h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
    font-family: var(--font-body);
}

.project-location {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.project-location svg {
    width: 12px;
    height: 12px;
    fill: var(--gold);
}

.project-card-body p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 14px;
}

.project-category {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ============================================
   GALLERY GRID
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-lg);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95) 0%, rgba(10, 10, 10, 0.3) 70%, transparent 100%);
    transition: transform var(--transition-base), background var(--transition-base);
    transform: translateY(8px);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    background: linear-gradient(to top, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.5) 85%, transparent 100%);
}

.gallery-overlay h3 {
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 6px;
    color: var(--text-white);
    transition: color var(--transition-base);
}

.gallery-item:hover h3 {
    color: var(--gold);
}

.gallery-overlay .gallery-cat {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-light);
}

.gallery-overlay .gallery-cat svg {
    width: 12px;
    height: 12px;
    fill: var(--gold);
}

/* ============================================
   ICON CARDS (Values, Benefits, Services)
   ============================================ */
.icon-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--gap-lg);
    margin-top: 40px;
}

.icon-card {
    position: relative;
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Golden top edge accent line disabled to match values cards style */
.icon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.5s ease;
    display: none;
}

.icon-card:hover::before {
    transform: scaleX(1);
}

.icon-card:hover {
    background: var(--bg-glass-hover);
    border-color: rgba(230, 175, 75, 0.45);
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(230, 175, 75, 0.08);
}

.icon-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(230, 175, 75, 0.08);
    border: none;
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.icon-card-icon svg,
.icon-card-icon .material-symbols-outlined {
    width: 24px;
    height: 24px;
    font-size: 24px;
    fill: var(--gold);
    color: var(--gold);
    stroke: currentColor;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
    line-height: 24px;
    user-select: none;
}

.icon-card:hover .icon-card-icon {
    background: rgba(230, 175, 75, 0.15);
    transform: scale(1.08);
}

.icon-card:hover .icon-card-icon svg,
.icon-card:hover .icon-card-icon .material-symbols-outlined {
    fill: var(--gold-light);
    color: var(--gold-light);
}

.icon-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
    font-family: var(--font-heading);
    letter-spacing: 0.2px;
    transition: color var(--transition-base);
}

.icon-card:hover h3 {
    color: var(--gold-light);
}

.icon-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
    transition: color var(--transition-base);
}

.icon-card:hover p {
    color: var(--text-light);
}

/* 6-column variant (Redesigned as a premium 3-column layout on desktop) */
.icon-cards-grid-6 {
    grid-template-columns: repeat(3, 1fr);
}

/* ============================================
   PROCESS TIMELINE
   ============================================ */
.process-section {
    padding: var(--section-padding);
}

.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-top: 56px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    background: rgba(230, 175, 75, 0.15);
    z-index: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-timeline:has(.process-step.visible)::before {
    transform: scaleX(1);
}

@media (min-width: 993px) {

    /* Hide the global timeline line on desktop since we use individual segment lines */
    .process-timeline::before {
        display: none;
    }
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    position: relative;
    z-index: 1;
    padding: 0 10px;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Staggered sequential entry delays for steps */
.process-step.fade-in:nth-child(1) {
    transition-delay: 0.1s;
}

.process-step.fade-in:nth-child(2) {
    transition-delay: 1.0s;
}

.process-step.fade-in:nth-child(3) {
    transition-delay: 1.9s;
}

.process-step.fade-in:nth-child(4) {
    transition-delay: 2.8s;
}

.process-step.fade-in:nth-child(5) {
    transition-delay: 3.7s;
}

.process-step.fade-in:nth-child(6) {
    transition-delay: 4.6s;
}

/* Desktop-only sequential line segments connecting the step icons */
@media (min-width: 993px) {
    .process-step:not(:last-child)::before {
        content: '';
        position: absolute;
        top: 35px;
        /* Vertical center of 70px icon */
        left: 50%;
        width: 100%;
        height: 1px;
        background: rgba(230, 175, 75, 0.15);
        z-index: 0;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .process-step.visible:not(:last-child)::before {
        transform: scaleX(1);
    }

    /* Staggered delays for lines to draw after their parent step appears */
    .process-step.fade-in:nth-child(1)::before {
        transition-delay: 0.4s;
    }

    .process-step.fade-in:nth-child(2)::before {
        transition-delay: 1.3s;
    }

    .process-step.fade-in:nth-child(3)::before {
        transition-delay: 2.2s;
    }

    .process-step.fade-in:nth-child(4)::before {
        transition-delay: 3.1s;
    }

    .process-step.fade-in:nth-child(5)::before {
        transition-delay: 4.0s;
    }
}

.process-icon {
    width: 70px;
    height: 70px;
    background: rgba(18, 18, 18, 0.85);
    border: 1.5px solid var(--border-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(230, 175, 75, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.process-icon svg {
    width: 26px;
    height: 26px;
    fill: var(--gold);
    transition: all 0.3s ease;
}

.process-dot {
    position: absolute;
    top: 31px;
    right: -4px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold);
    z-index: 2;
    transform: scale(0);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.process-step.visible .process-dot {
    transform: scale(1);
}

/* Staggered delays for connector dots to pop in as preceding line finishes drawing */
@media (min-width: 993px) {
    .process-step.fade-in:nth-child(1) .process-dot {
        transition-delay: 0.9s;
    }

    .process-step.fade-in:nth-child(2) .process-dot {
        transition-delay: 1.8s;
    }

    .process-step.fade-in:nth-child(3) .process-dot {
        transition-delay: 2.7s;
    }

    .process-step.fade-in:nth-child(4) .process-dot {
        transition-delay: 3.6s;
    }

    .process-step.fade-in:nth-child(5) .process-dot {
        transition-delay: 4.5s;
    }
}

.process-step:last-child .process-dot {
    display: none;
}

.process-step:hover .process-icon {
    transform: translateY(-4px) scale(1.04);
    border-color: var(--gold-light);
    background: rgba(230, 175, 75, 0.12);
    box-shadow: 0 10px 25px rgba(230, 175, 75, 0.15), 0 0 0 6px rgba(230, 175, 75, 0.15);
}

.process-step:hover .process-icon svg {
    fill: var(--text-white);
}

.process-step:hover .process-dot {
    transform: scale(1.3);
    background: var(--gold-light);
    box-shadow: 0 0 12px var(--gold-light);
}

.process-step h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
    font-family: var(--font-body);
    transition: color 0.3s ease;
}

.process-step:hover h4 {
    color: var(--gold);
}

.process-step p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
    transition: color 0.3s ease;
    max-width: 200px;
    margin: 0 auto;
}

.process-step:hover p {
    color: var(--text-light);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--dark-bg-3) 0%, #181510 100%);
    border-top: 1px solid rgba(230, 175, 75, 0.15);
    border-bottom: 1px solid rgba(230, 175, 75, 0.15);
    padding: 56px 0;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap-xl);
}

.cta-left {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cta-logo-icon {
    display: none;
}

.cta-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.3px;
}

.cta-text h3 .gold {
    color: var(--gold);
}

.cta-text p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checklist li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.checklist li svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
    flex-shrink: 0;
}

/* ============================================
   TEAM CARDS
   ============================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-lg);
    margin-top: 40px;
}

.team-card {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card:hover {
    border-color: rgba(230, 175, 75, 0.45);
    background: var(--card-bg-hover);
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(230, 175, 75, 0.08);
}

.team-card-img {
    height: 260px;
    overflow: hidden;
    background: var(--dark-bg-3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--dark-bg-3), var(--dark-bg-2));
}

.team-placeholder svg {
    width: 80px;
    height: 80px;
    fill: var(--text-dim);
}

.team-card-body {
    padding: 20px;
}

.team-card-body h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-body);
    margin-bottom: 4px;
}

.team-card-body .team-role {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 6px;
}

.team-card-body p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.team-social a {
    display: inline-flex;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(230, 175, 75, 0.15);
    align-items: center;
    justify-content: center;
}

.team-social a svg {
    width: 14px;
    height: 14px;
    fill: var(--gold);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 42px 36px;
    position: relative;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 1px;
    opacity: 0.7;
    transition: opacity var(--transition-base);
    display: none;
}

.testimonial-card:hover {
    background: var(--bg-glass-hover);
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(230, 175, 75, 0.08);
    border-color: rgba(230, 175, 75, 0.45);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.testimonial-quote-icon {
    font-family: 'Georgia', serif;
    font-size: 3.8rem;
    color: var(--gold);
    line-height: 1;
    margin-top: -10px;
    margin-bottom: 2px;
    display: inline-block;
    transition: transform var(--transition-base), opacity var(--transition-base);
    opacity: 0.7;
}

.testimonial-card:hover .testimonial-quote-icon {
    transform: rotate(-8deg) scale(1.05);
    opacity: 0.95;
}

.testimonial-text {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 18px;
    flex-grow: 1;
}

.testimonial-stars {
    display: flex;
    gap: 5px;
    margin-bottom: 22px;
}

.testimonial-stars .star-icon {
    font-size: 1.05rem;
    color: var(--gold-light);
    font-variation-settings: 'FILL' 1, 'wght' 400;
    text-shadow: 0 0 8px rgba(232, 184, 48, 0.3);
    display: inline-block;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: auto;
    border-top: 1px solid var(--border-subtle);
    padding-top: 18px;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.testimonial-avatar.initials {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--gold-light);
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, rgba(230, 175, 75, 0.15) 0%, rgba(26, 26, 26, 0.9) 100%);
    border: 1.5px solid rgba(230, 175, 75, 0.3);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: border-color var(--transition-base), transform var(--transition-base);
}

.testimonial-card:hover .testimonial-avatar.initials {
    border-color: var(--gold);
    transform: scale(1.08);
}

.testimonial-name {
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--text-white);
}

.testimonial-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* === Testimonials Section (Standalone) === */
.testimonials-section {
    padding: 60px 0 100px 0;
    position: relative;
    background: linear-gradient(180deg, var(--dark-bg) 0%, rgba(230, 175, 75, 0.02) 50%, var(--dark-bg) 100%);
}

.testimonials-carousel-container {
    overflow: hidden;
    width: 100%;
    margin-top: var(--gap-xl);
    position: relative;
    padding: 20px 0;
}

.testimonials-track {
    display: flex;
    align-items: stretch;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.testimonials-track .testimonial-card {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    box-sizing: border-box;
}

@media (max-width: 992px) {
    .testimonials-track .testimonial-card {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .testimonials-track .testimonial-card {
        flex: 0 0 calc(100% - 20px);
    }
}

.carousel-nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 30px;
}

.carousel-nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    background: transparent;
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-nav-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.carousel-nav-btn:hover {
    background: var(--gold);
    color: var(--dark-bg);
    box-shadow: var(--shadow-gold);
    transform: scale(1.05);
}

.carousel-dots {
    display: flex;
    gap: 10px;
    align-items: center;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(230, 175, 75, 0.25);
    border: 1px solid rgba(230, 175, 75, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.3);
    box-shadow: 0 0 8px var(--gold-glow);
}

/* ============================================
   CAREERS TABLE
   ============================================ */
.jobs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 24px;
}

.jobs-table thead th {
    padding: 14px 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gold);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
    font-family: var(--font-body);
}

.jobs-table tbody td {
    padding: 14px 20px;
    font-size: 0.85rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-subtle);
}

.jobs-table tbody tr:hover {
    background: rgba(230, 175, 75, 0.05);
}

.btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 16px;
    border: 1px solid var(--gold);
    border-radius: var(--radius-sm);
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-base);
    background: transparent;
    font-family: var(--font-body);
    cursor: pointer;
}

.btn-apply:hover {
    background: var(--gold);
    color: var(--dark-bg);
}

/* ============================================
   CONTACT FORM
   ============================================ */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-md);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.78rem;
    color: var(--text-muted);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: var(--dark-bg-2);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-size: 0.9rem;
    font-family: var(--font-body);
    transition: var(--transition-base);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold), 0 0 0 4px rgba(230, 175, 75, 0.15);
    background: #1e1e1e;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dim);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='%23999'%3E%3Cpath d='M0 0l5 6 5-6z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-group select option {
    background: var(--dark-bg-2);
    color: var(--text-white);
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.form-checkbox input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--gold);
    cursor: pointer;
}

.form-checkbox a {
    color: var(--gold);
    text-decoration: underline;
}

/* Contact method cards */
.contact-methods {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--gap-lg);
}

.contact-method {
    background: var(--card-bg);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 28px 16px;
    text-align: center;
    transition: var(--transition-base);
}

.contact-method:hover {
    border-color: var(--border-color);
    transform: translateY(-4px);
}

.contact-method-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-method-icon svg {
    width: 36px;
    height: 36px;
    fill: var(--gold);
}

.contact-method h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.contact-method p {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   IMAGE GALLERY GRID (Construction page)
   ============================================ */
.image-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: var(--gap-md);
}

.image-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.image-gallery img:hover {
    transform: scale(1.03);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
    display: flex;
    justify-content: center;
    gap: var(--gap-sm);
    margin-top: 40px;
}

.page-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-base);
    background: transparent;
    font-family: var(--font-body);
}

.page-btn:hover,
.page-btn.active {
    background: var(--gold);
    color: var(--dark-bg);
    border-color: var(--gold);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--top-bar-bg);
    padding: 60px 0 0;
    border-top: 1px solid var(--border-subtle);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.3fr;
    gap: var(--gap-xl);
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border-subtle);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.footer-social a svg {
    width: 16px;
    height: 16px;
    fill: var(--text-muted);
}

.footer-social a:hover {
    border-color: var(--gold);
    background: rgba(230, 175, 75, 0.1);
}

.footer-social a:hover svg {
    fill: var(--gold);
}

.footer-col h4 {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 22px;
    font-family: var(--font-heading);
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.82rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-contact-item svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
    margin-top: 2px;
    flex-shrink: 0;
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px 14px;
    background: var(--dark-bg-2);
    border: 1px solid var(--border-subtle);
    border-right: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    color: var(--text-white);
    font-size: 0.82rem;
    font-family: var(--font-body);
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--text-dim);
}

.newsletter-form button {
    padding: 10px 16px;
    background: var(--gold);
    border: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    cursor: pointer;
    transition: var(--transition-base);
}

.newsletter-form button svg {
    width: 16px;
    height: 16px;
    fill: var(--dark-bg);
}

.newsletter-form button:hover {
    background: var(--gold-light);
}

.footer-bottom {
    margin-top: 40px;
    padding: 24px 0;
    border-top: none;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: var(--text-dim);
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(230, 175, 75, 0.3) 50%, transparent 100%);
}

.footer-credit a {
    color: var(--gold);
    font-weight: 500;
}

.footer-credit a:hover {
    color: var(--text-white);
    text-shadow: 0 0 8px rgba(230, 175, 75, 0.4);
}

.footer-bottom-links {
    display: flex;
    gap: var(--gap-lg);
}

.footer-bottom-links a {
    color: var(--text-dim);
}

.footer-bottom-links a:hover {
    color: var(--gold);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
    z-index: 999;
    border: none;
    box-shadow: var(--shadow-gold);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-4px);
    background: var(--gold-light);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
    fill: var(--dark-bg);
}

/* Floating contact buttons (Circular badges stacked above Scroll to Top button) */
.floating-btns {
    position: fixed;
    right: 22px;
    bottom: 80px; /* Positions them directly above the scroll to top button (which is at bottom: 24px) */
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 998;
}

.floating-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--transition-base), box-shadow var(--transition-base), filter var(--transition-base);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.floating-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6), 0 0 15px rgba(230, 175, 75, 0.15);
}

.floating-btn.call {
    display: none;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

.floating-btn.whatsapp {
    background: #25D366;
    border-color: rgba(255, 255, 255, 0.15);
}

.floating-btn svg {
    width: 22px;
    height: 22px;
}

.floating-btn.call svg {
    fill: white;
}

.floating-btn.whatsapp svg {
    fill: white;
}

.floating-btn span {
    position: absolute;
    right: 64px;
    background: var(--dark-bg-3);
    color: var(--text-white);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, right 0.3s ease, visibility 0.3s;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-color);
    pointer-events: none;
}

.floating-btn:hover span {
    opacity: 1;
    visibility: visible;
    right: 56px;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.section-dark {
    background: linear-gradient(180deg, var(--dark-bg-2) 0%, #171717 100%);
}

.section-darker {
    background: var(--dark-bg);
}

.mt-40 {
    margin-top: 40px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-60 {
    margin-bottom: 60px;
}

.text-center {
    text-align: center;
}

.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-2xl);
    align-items: center;
}

.three-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: var(--gap-xl);
    align-items: start;
}

.four-col-layout {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr;
    gap: var(--gap-lg);
    align-items: stretch;
}

/* Why Choose Us Grid */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

/* 4-column Icon Cards Grid */
.icon-cards-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-lg);
    margin-top: 40px;
}

/* Contact Info Mini Grid */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Blog Layout (Main Content + Sidebar) */
.blog-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Watch Our Story Card */
.story-card {
    position: relative;
    height: 100%;
    min-height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-subtle);
}

.story-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: var(--transition-base);
}

.story-card:hover .story-card-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.8) 100%);
}

.play-btn {
    width: 56px;
    height: 56px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(230, 175, 75, 0.4);
    cursor: pointer;
    transition: var(--transition-base);
    animation: pulse-gold 2s infinite;
}

.play-btn svg {
    width: 20px;
    height: 20px;
    fill: var(--dark-bg);
    margin-left: 3px;
}

.story-card:hover .play-btn {
    transform: scale(1.08);
    background: var(--gold-light);
}

.story-text {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-white);
    text-align: center;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

@keyframes shimmer {
    0% {
        background-position: -200px 0;
    }

    100% {
        background-position: 200px 0;
    }
}

@keyframes pulse-gold {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(230, 175, 75, 0.4);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(230, 175, 75, 0);
    }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .header>.container {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 14px;
    }
}

@media (max-width: 1024px) {
    .top-bar {
        display: none;
    }

    .container {
        max-width: 920px;
    }

    .header>.container {
        padding: 12px 20px !important;
    }

    .logo-img {
        width: 45px !important;
        height: 45px !important;
    }

    .logo-text {
        font-size: 1.4rem !important;
    }

    .logo-text span {
        font-size: 0.55rem !important;
        letter-spacing: 4px !important;
    }

    .logo-text span.brand-sub {
        font-size: 0.52rem !important;
        letter-spacing: 3px !important;
    }

    .logo-text span.brand-tagline {
        display: none !important;
    }

    .menu-toggle {
        display: flex;
        position: relative !important;
        z-index: 1006 !important;
    }

    .header-desktop-btn {
        display: none !important;
    }

    .nav-mobile-btn {
        display: inline-block !important;
        margin-top: 15px;
        width: 100%;
        text-align: center;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        height: 100dvh;
        background: var(--dark-bg);
        flex-direction: column;
        padding: 80px 30px 30px;
        border-left: 1px solid var(--border-subtle);
        transition: right var(--transition-base);
        align-items: flex-start;
        gap: var(--gap-lg);
        z-index: 1005 !important;
        overflow-y: auto;
        box-shadow: -8px 0 30px rgba(0, 0, 0, 0.5);
    }

    /* Dark backdrop overlay behind mobile menu */
    .nav-links::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        height: 100dvh;
        background: rgba(0, 0, 0, 0.65);
        opacity: 0;
        transition: opacity var(--transition-base);
        pointer-events: none;
        z-index: -1;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links.active::before {
        opacity: 1;
        pointer-events: auto;
    }

    .header:has(.nav-links.active) .scroll-progress-bar {
        display: none !important;
    }

    /* Dropdown menu base mobile styles - expand/collapse handled in later block */
    .nav-dropdown .dropdown-menu {
        position: static;
        transform: none;
        margin-top: 0;
        min-width: auto;
        box-shadow: none;
        border: none;
        border-top: none;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-bar {
        margin-top: -35px;
    }

    .stats-container {
        padding: 25px 10px;
    }

    .icon-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .icon-cards-grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-methods {
        grid-template-columns: repeat(3, 1fr);
    }

    .three-col-layout {
        grid-template-columns: 1fr;
    }

    .story-card {
        min-height: 300px;
    }

    .icon-cards-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-layout {
        grid-template-columns: 1fr;
        gap: var(--gap-xl);
    }

    .home-hero h1 {
        font-size: 2.5rem;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-content {
        flex-direction: column;
        text-align: center;
    }

    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .process-timeline::before {
        top: 0;
        bottom: 0;
        left: 50%;
        width: 1px;
        height: 100%;
        right: auto;
        transform: translateX(-50%) scaleY(0);
        transform-origin: top;
        transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1);
    }

    .process-timeline:has(.process-step.visible)::before {
        transform: translateX(-50%) scaleY(1);
    }

    .process-dot {
        display: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .floating-btns {
        display: flex;
        z-index: 1004; /* Above general layout but below mobile navbar dropdown (1005) */
        bottom: 80px;
        right: 22px;
    }

    .floating-btn.call {
        display: flex;
    }

    .floating-btn span {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .container {
        max-width: 720px;
    }

    .two-col-layout {
        grid-template-columns: 1fr !important;
    }

    .four-col-layout {
        grid-template-columns: 1.2fr 1fr !important;
        gap: 30px !important;
    }

    .four-col-layout>div:nth-child(3) {
        grid-column: span 2;
        margin-top: 20px;
    }

    .why-choose-grid {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 15px !important;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 50px 0;
    }

    .top-bar-right .info-item {
        display: none;
    }

    .top-bar-right .info-item:last-child {
        display: flex;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .icon-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .icon-cards-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-methods {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .home-hero {
        min-height: 500px;
    }

    .home-hero h1 {
        font-size: 2rem;
    }

    .page-hero h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .jobs-table {
        font-size: 0.8rem;
    }

    .jobs-table thead th {
        padding: 10px 12px;
    }

    .jobs-table tbody td {
        padding: 10px 12px;
    }

    .four-col-layout {
        grid-template-columns: 1fr !important;
        gap: var(--gap-xl) !important;
    }

    .four-col-layout>div:nth-child(3) {
        grid-column: span 1 !important;
        margin-top: 0 !important;
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .two-col-layout {
        grid-template-columns: 1fr !important;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 576px) {
    .logo-text span.brand-tagline {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .filter-tabs {
        gap: 6px;
    }

    .filter-tab {
        padding: 6px 14px;
        font-size: 0.7rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }

    .stats-container {
        padding: 30px 20px !important;
    }

    .stats-grid,
    .stats-grid-4,
    .stats-grid-5,
    .stats-grid-6 {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .stats-grid-5 .stat-item:nth-child(5) {
        grid-column: span 1 !important;
    }

    .stat-item {
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
        gap: 16px !important;
        justify-content: flex-start !important;
        max-width: 270px !important;
        margin: 0 auto !important;
        width: 100% !important;
        padding: 18px 0 !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(230, 175, 75, 0.12) !important;
        transform: none !important;
        transition: background-color 0.3s ease !important;
        border-radius: var(--radius-sm);
    }

    .stat-item:last-child {
        border-bottom: none !important;
    }

    .stat-item:hover {
        transform: none !important;
    }

    .stat-item:active {
        background: rgba(230, 175, 75, 0.04) !important;
    }

    .stat-item>div:not(.stat-icon) {
        align-items: flex-start !important;
        text-align: left !important;
        gap: 4px !important;
        flex: 1 !important;
    }

    .stat-number {
        font-size: 1.8rem !important;
    }

    .stat-label {
        font-size: 0.78rem !important;
        white-space: nowrap !important;
    }

    .stat-label br {
        display: none !important;
    }

    .stat-icon {
        margin-bottom: 0 !important;
    }

    .icon-cards-grid {
        grid-template-columns: 1fr;
    }

    .icon-cards-grid-6 {
        grid-template-columns: 1fr;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .icon-cards-grid-4 {
        grid-template-columns: 1fr;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .page-hero-content {
        padding: 50px 0 !important;
    }

    .jobs-table {
        display: block;
        overflow-x: auto;
    }
}

/* Redesigned Values Section (Dark Theme matching luxury layout) */
.values-section-dark {
    background: linear-gradient(180deg, var(--dark-bg-2) 0%, #171717 100%);
    padding: var(--section-padding);
    color: var(--text-white);
}

.values-section-dark .section-header-center {
    margin-bottom: 50px;
    text-align: center;
}

.values-section-dark .section-label {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 8px;
    text-align: center;
}

.values-section-dark .section-title {
    color: var(--text-white);
    font-size: 2.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    line-height: 1.3;
}

.values-section-dark .section-title .gold {
    color: var(--gold);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: var(--container-width);
    margin: 0 auto;
    width: 100%;
}

.value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(230, 175, 75, 0.12);
    border-radius: var(--radius-lg, 12px);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), 0 0 20px rgba(230, 175, 75, 0.08);
    border-color: rgba(230, 175, 75, 0.45);
    background: rgba(255, 255, 255, 0.04);
}

.value-card-icon-container {
    width: 56px;
    height: 56px;
    background: rgba(230, 175, 75, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.value-card:hover .value-card-icon-container {
    transform: scale(1.08);
    background: rgba(230, 175, 75, 0.15);
}

.value-card-icon-container svg {
    width: 24px;
    height: 24px;
    fill: var(--gold);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

.value-card:hover h3 {
    color: var(--gold-light);
}

.value-card p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 991px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .values-section-dark .section-title {
        font-size: 1.8rem;
    }
}

/* Vision & Mission Section */
.vision-mission-section {
    padding: 30px 0 80px 0;
    background: var(--dark-bg);
}

.vision-mission-banner {
    display: flex;
    gap: 50px;
    align-items: stretch;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(28, 28, 28, 0.45) 0%, rgba(18, 18, 18, 0.75) 100%);
    border: 1px solid rgba(230, 175, 75, 0.12);
    border-radius: var(--radius-xl, 20px);
    padding: 50px 45px;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.vision-mission-banner:hover {
    border-color: rgba(230, 175, 75, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(230, 175, 75, 0.05);
}

.vm-col {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    flex: 1;
    position: relative;
}

.vm-col:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding-right: 50px;
}

.vm-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--gold);
    box-shadow: 0 0 0 4px rgba(230, 175, 75, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(230, 175, 75, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.vm-col:hover .vm-icon {
    transform: scale(1.08);
    background: rgba(230, 175, 75, 0.12);
    box-shadow: 0 0 0 6px rgba(230, 175, 75, 0.2);
}

.vm-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--gold);
}

.vm-content h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 12px;
    letter-spacing: 0.2px;
}

.vm-content p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.62;
    margin: 0;
}

@media (max-width: 1024px) {
    .vision-mission-banner {
        flex-direction: column;
        gap: 40px;
        padding: 40px 30px;
    }

    .vm-col:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-right: 0;
        padding-bottom: 40px;
    }
}

/* ============================================
   BODY SCROLL LOCK & MOBILE DROPDOWN MODIFIERS
   ============================================ */
body.no-scroll {
    overflow: hidden !important;
    height: 100vh !important;
}

@media (max-width: 1024px) {

    /* Collapsed state for dropdown in mobile nav menu */
    .nav-dropdown .dropdown-menu {
        display: block !important;
        position: static !important;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
        border: none !important;
        background: rgba(255, 255, 255, 0.01) !important;
        margin-top: 0 !important;
        padding: 0 0 0 16px !important;
        box-shadow: none !important;
    }

    /* Expanded state */
    .nav-dropdown.expanded .dropdown-menu {
        max-height: 300px;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        padding-top: 8px !important;
        padding-bottom: 8px !important;
    }

    /* Rotate indicator arrow in mobile menu */
    .nav-dropdown .dropdown-toggle svg {
        transition: transform 0.3s ease;
    }

    .nav-dropdown.expanded .dropdown-toggle svg {
        transform: rotate(180deg);
    }
}

/* ============================================
   GENERAL APPLICATION MODAL (Careers Popup)
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.modal-container {
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
    border: 1px solid rgba(230, 175, 75, 0.25);
    border-radius: var(--radius-lg, 12px);
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 35px;
    position: relative;
    box-shadow: var(--shadow-gold-heavy);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    line-height: 1;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close-btn:hover {
    color: var(--gold);
    background: rgba(230, 175, 75, 0.08);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
    padding-right: 20px;
    border-bottom: 1.5px solid var(--border-subtle);
    padding-bottom: 12px;
}

.modal-title span.gold {
    color: var(--gold);
}

/* Form in Modal */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.modal-form .btn-primary {
    justify-content: center;
    border-radius: var(--radius-md);
    margin-top: 8px;
    padding: 14px 28px;
    font-size: 0.9rem;
}

.modal-form label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-light);
    margin-bottom: 6px;
    display: block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.modal-form input[type="text"],
.modal-form input[type="email"],
.modal-form input[type="tel"],
.modal-form select,
.modal-form textarea {
    width: 100%;
    padding: 11px 16px;
    background: rgba(10, 10, 10, 0.5);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.3s ease;
}

.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 8px rgba(230, 175, 75, 0.2);
}

/* File upload styling */
.file-upload-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

.file-upload-btn {
    background: rgba(230, 175, 75, 0.06);
    border: 1px dashed var(--gold);
    color: var(--gold);
    padding: 11px 16px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    white-space: nowrap;
}

.file-upload-btn:hover {
    background: rgba(230, 175, 75, 0.12);
    box-shadow: 0 0 10px rgba(230, 175, 75, 0.10);
}

.file-upload-name {
    font-size: 0.75rem;
    color: var(--text-muted);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

/* ============================================
   PREMIUM LIGHTBOX GALLERY STYLING
   ============================================ */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 8, 8, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    z-index: 2100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    justify-content: space-between;
    padding: 30px;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* Lightbox header */
.lightbox-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2102;
}

.lightbox-counter {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    font-weight: 600;
    text-transform: uppercase;
}

.lightbox-close {
    background: transparent;
    border: none;
    color: var(--text-white);
    font-size: 2.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
}

/* Lightbox Center Content */
.lightbox-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.lightbox-container {
    position: relative;
    max-width: 100%;
    max-height: 72vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 90vw;
    max-height: 70vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    border: 1px solid rgba(230, 175, 75, 0.2);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transform: scale(0.97);
    opacity: 0;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.lightbox-overlay.active .lightbox-img {
    transform: scale(1);
    opacity: 1;
}

/* Navigation controls */
.lightbox-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(230, 175, 75, 0.2);
    border-radius: 50%;
    color: var(--text-white);
    width: 54px;
    height: 54px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2105;
}

.lightbox-btn svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.lightbox-btn:hover {
    background: var(--gold);
    color: var(--dark-bg);
    border-color: var(--gold);
    box-shadow: var(--shadow-gold);
    transform: scale(1.08);
}

/* Lightbox caption footer */
.lightbox-footer {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    z-index: 2102;
    background: linear-gradient(360deg, rgba(8, 8, 8, 0.8) 0%, transparent 100%);
    padding-top: 15px;
}

.lightbox-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 6px;
    letter-spacing: -0.2px;
}

.lightbox-category {
    font-size: 0.76rem;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Responsiveness for Lightbox and Modal */
@media (max-width: 768px) {
    .lightbox-overlay {
        padding: 15px;
    }

    .lightbox-btn {
        width: 44px;
        height: 44px;
        position: absolute;
    }

    .lightbox-btn.prev-btn {
        left: 10px;
    }

    .lightbox-btn.next-btn {
        right: 10px;
    }

    .lightbox-btn svg {
        width: 20px;
        height: 20px;
    }

    .lightbox-title {
        font-size: 1.1rem;
    }

    .modal-container {
        padding: 24px 20px;
    }

    .modal-title {
        font-size: 1.3rem;
    }
}