/*
 * ============================================
 * THE VISION CONSTRUCTION - Master Stylesheet
 * Premium Construction Company Design System
 * 
 * Brand Colors:
 *   Primary: Royal Blue #0B3D91
 *   Secondary: Gold #D4AF37
 *   Background: White #FFFFFF
 *   Text: Charcoal #333333
 * ============================================
 */

/* ============================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================ */
:root {
    /* Brand Colors - Luxury Architectural & Engineering Palette */
    --primary: #0B2545;
    --primary-light: #134074;
    --primary-dark: #05101E;
    --primary-rgb: 11, 37, 69;
    
    --secondary: #C5A059;
    --secondary-light: #E0C078;
    --secondary-dark: #9A7B38;
    --secondary-rgb: 197, 160, 89;

    --dark-obsidian: #080D1A;
    --dark-slate: #0F172A;

    --white: #FFFFFF;
    --black: #000000;
    --charcoal: #1E293B;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #05101E 0%, #0B2545 50%, #134074 100%);
    --gradient-gold: linear-gradient(135deg, #9A7B38 0%, #C5A059 50%, #E0C078 100%);
    --gradient-hero: linear-gradient(135deg, rgba(8, 13, 26, 0.88) 0%, rgba(11, 37, 69, 0.75) 100%);
    --gradient-dark: linear-gradient(135deg, #070D18 0%, #0F172A 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.03) 100%);

    /* Typography */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Syne', 'Outfit', sans-serif;
    --font-accent: 'Outfit', sans-serif;
    
    --fw-light: 300;
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-extrabold: 800;

    /* Font Sizes */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-lg: 1.125rem;
    --fs-xl: 1.25rem;
    --fs-2xl: 1.5rem;
    --fs-3xl: 1.875rem;
    --fs-4xl: 2.25rem;
    --fs-5xl: 3rem;
    --fs-6xl: 3.75rem;
    --fs-hero: clamp(2.6rem, 5.2vw, 4.8rem);

    /* Spacing */
    --section-padding: clamp(70px, 9vw, 130px);
    --container-padding: clamp(16px, 4vw, 40px);

    /* Borders */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    --border-glass: 1px solid rgba(255, 255, 255, 0.12);
    --border-subtle: 1px solid rgba(15, 23, 42, 0.08);

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(11, 37, 69, 0.04);
    --shadow-md: 0 10px 30px rgba(11, 37, 69, 0.08);
    --shadow-lg: 0 20px 50px rgba(11, 37, 69, 0.12);
    --shadow-xl: 0 30px 70px rgba(11, 37, 69, 0.18);
    --shadow-gold: 0 8px 30px rgba(197, 160, 89, 0.3);
    --shadow-card: 0 12px 35px rgba(8, 13, 26, 0.05);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-base: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Z-indexes */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-overlay: 400;
    --z-modal: 500;
    --z-loader: 1000;
}

/* Dark Mode Variables */
[data-theme="dark"] {
    --white: #0f1117;
    --black: #FFFFFF;
    --charcoal: #e0e0e0;
    --gray-50: #1a1d23;
    --gray-100: #22252d;
    --gray-200: #2a2d37;
    --gray-300: #3a3d47;
    --gray-400: #4a4d57;
    --gray-500: #7a7d87;
    --gray-600: #9a9da7;
    --gray-700: #babbcf;
    --gray-800: #d0d1e5;
    --gray-900: #e8e9f5;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
    --shadow-card: 0 10px 40px rgba(0,0,0,0.2);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-primary);
    font-size: var(--fs-base);
    font-weight: var(--fw-regular);
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    text-decoration: none;
    color: var(--primary);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--secondary);
}

ul, ol {
    list-style: none;
}

::selection {
    background-color: var(--primary);
    color: var(--white);
}

/* ============================================
   LOADING ANIMATION
   ============================================ */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-loader);
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

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

.loader-content {
    text-align: center;
    color: var(--white);
}

.loader-logo {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    margin-bottom: 20px;
    animation: pulse 1.5s ease-in-out infinite;
}

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

.loader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 10px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar::after {
    content: '';
    display: block;
    width: 50%;
    height: 100%;
    background: var(--secondary);
    border-radius: 10px;
    animation: loaderSlide 1.2s ease-in-out infinite;
}

@keyframes loaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(300%); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--gradient-blue-gold);
    z-index: calc(var(--z-fixed) + 1);
    transition: width 0.1s linear;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
    line-height: 1.2;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

h1 { font-size: var(--fs-hero); }
h2 { font-size: clamp(1.875rem, 3.5vw, var(--fs-5xl)); }
h3 { font-size: var(--fs-3xl); }
h4 { font-size: var(--fs-2xl); }
h5 { font-size: var(--fs-xl); }
h6 { font-size: var(--fs-lg); }

p {
    margin-bottom: 1rem;
    color: var(--gray-600);
}

.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-gold { color: var(--secondary) !important; }
.text-white { color: #fff !important; }

/* Section Titles */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(var(--primary-rgb), 0.08);
    border-radius: var(--radius-xl);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-badge i {
    color: var(--secondary);
}

.section-title {
    font-size: clamp(1.875rem, 3.5vw, var(--fs-5xl));
    font-weight: var(--fw-bold);
    margin-bottom: 16px;
    position: relative;
}

.section-title span {
    color: var(--secondary);
}

.section-title.has-line::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
    margin-top: 16px;
}

.section-title.has-line.text-center::after {
    margin-left: auto;
    margin-right: auto;
}

.section-subtitle {
    font-size: var(--fs-lg);
    color: var(--gray-600);
    max-width: 700px;
    line-height: 1.8;
}

.section-subtitle.centered {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar-vision {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-sticky);
    transition: all var(--transition-base);
    padding: 15px 0;
}

.navbar-vision.transparent {
    background: transparent;
}

.navbar-vision.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.08);
    padding: 8px 0;
}

[data-theme="dark"] .navbar-vision.scrolled {
    background: rgba(15, 17, 23, 0.98);
}

.navbar-vision .navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.navbar-brand .logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
    transition: all var(--transition-fast);
}

@media (max-width: 768px) {
    .navbar-brand .logo-img {
        height: 38px;
    }
}

.navbar-vision.scrolled .logo-light {
    display: none !important;
}

.navbar-vision.scrolled .logo-dark {
    display: block !important;
}

[data-theme="dark"] .navbar-vision.scrolled .logo-light {
    display: block !important;
}

[data-theme="dark"] .navbar-vision.scrolled .logo-dark {
    display: none !important;
}

.navbar-vision .nav-link {
    color: rgba(255,255,255,0.9) !important;
    font-weight: var(--fw-medium);
    font-size: var(--fs-sm);
    padding: 8px 16px !important;
    transition: all var(--transition-fast);
    position: relative;
    letter-spacing: 0.3px;
}

.navbar-vision.scrolled .nav-link {
    color: var(--charcoal) !important;
}

.navbar-vision .nav-link:hover,
.navbar-vision .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-vision .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: all var(--transition-base);
    transform: translateX(-50%);
}

.navbar-vision .nav-link:hover::after,
.navbar-vision .nav-link.active::after {
    width: 60%;
}

.navbar-cta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-sm);
}

.navbar-vision.scrolled .navbar-phone {
    color: var(--primary);
}

.dark-mode-toggle {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255,255,255,0.3);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    font-size: var(--fs-base);
}

.navbar-vision.scrolled .dark-mode-toggle {
    border-color: var(--gray-300);
    color: var(--charcoal);
}

.dark-mode-toggle:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--primary-dark);
}

/* Mobile Menu */
.navbar-toggler {
    border: none;
    padding: 8px;
    background: transparent;
}

.navbar-toggler-icon {
    width: 28px;
    height: 3px;
    background: var(--white);
    display: block;
    position: relative;
    transition: var(--transition-base);
}

.navbar-vision.scrolled .navbar-toggler-icon,
.navbar-vision.scrolled .navbar-toggler-icon::before,
.navbar-vision.scrolled .navbar-toggler-icon::after {
    background: var(--charcoal);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--white);
    left: 0;
    transition: var(--transition-base);
}

.navbar-toggler-icon::before { top: -8px; }
.navbar-toggler-icon::after { top: 8px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn-vision {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    border-radius: var(--radius-md);
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-vision:hover::before {
    left: 100%;
}

.btn-primary-vision {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-blue);
}

.btn-primary-vision:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--primary-rgb), 0.4);
    color: var(--white);
}

.btn-gold {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(var(--secondary-rgb), 0.4);
    color: var(--primary-dark);
}

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

.btn-outline-vision:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

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

.btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 24px;
    font-size: var(--fs-xs);
}

.btn-lg {
    padding: 18px 40px;
    font-size: var(--fs-base);
}

/* ============================================
   PREMIUM HERO SLIDER DESIGN SYSTEM
   ============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 720px;
    max-height: 960px;
    overflow: hidden;
    background: #080c18;
}

.hero-slide {
    position: relative;
    height: 100vh;
    min-height: 720px;
    max-height: 960px;
    display: flex;
    align-items: center;
    padding-bottom: 110px;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.04);
    transition: transform 12s ease-out;
}

.swiper-slide-active .hero-slide-bg {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 18% 45%, rgba(11, 61, 145, 0.45) 0%, rgba(8, 12, 24, 0.85) 65%, rgba(5, 7, 15, 0.96) 100%),
                linear-gradient(180deg, rgba(8, 12, 24, 0.75) 0%, rgba(8, 12, 24, 0.4) 50%, rgba(8, 12, 24, 0.95) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 820px;
    padding-top: 100px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.38);
    border-radius: var(--radius-xl);
    color: var(--white);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero-badge i {
    color: var(--secondary);
    font-size: var(--fs-sm);
}

.badge-divider {
    color: var(--secondary);
    opacity: 0.6;
}

.hero-title {
    font-size: clamp(2.3rem, 4.5vw, 4rem);
    font-weight: var(--fw-extrabold);
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
}

.hero-title-highlight {
    background: linear-gradient(135deg, #FFFFFF 0%, #F5D77F 40%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 36px;
    line-height: 1.8;
    max-width: 660px;
    font-weight: var(--fw-regular);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-outline-glass {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-outline-glass:hover {
    background: var(--white);
    color: var(--primary-dark);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255,255,255,0.2);
}

.hero-quick-call {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    color: var(--white);
    backdrop-filter: blur(10px);
    transition: all var(--transition-fast);
    text-decoration: none !important;
}

.hero-quick-call:hover {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--secondary);
    transform: translateY(-2px);
}

.hero-quick-call .call-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-sm);
}

.hero-quick-call .call-text {
    display: flex;
    flex-direction: column;
}

.hero-quick-call .call-text small {
    font-size: 10px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-quick-call .call-text span {
    font-weight: var(--fw-bold);
    font-size: var(--fs-sm);
    color: var(--white);
}

/* Swiper Navigation Controls */
.hero-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all var(--transition-fast);
    font-size: 18px;
}

.hero-nav-btn:hover {
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border-color: var(--secondary);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.hero-prev { left: 30px; }
.hero-next { right: 30px; }

/* Hero Pagination */
.hero-section .swiper-pagination {
    bottom: 120px !important;
}

.hero-section .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.4);
    opacity: 1;
    transition: all var(--transition-base);
}

.hero-section .swiper-pagination-bullet-active {
    width: 40px;
    border-radius: 6px;
    background: var(--secondary);
}

/* Floating Bottom Glass Stats Bar */
.hero-stats-floating {
    position: absolute;
    bottom: 25px;
    left: 0;
    width: 100%;
    z-index: 10;
}

.hero-stats-glass {
    background: rgba(12, 16, 28, 0.84);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 15px;
    position: relative;
}

.hero-stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 36px;
    background: rgba(255, 255, 255, 0.12);
}

.col-6:last-child .hero-stat-item::after,
.col-md-3:last-child .hero-stat-item::after {
    display: none;
}

.hero-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.hero-stat-data {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: clamp(1.4rem, 2vw, 2.1rem);
    font-weight: var(--fw-extrabold);
    color: var(--white);
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat-label {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.7);
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   CARDS
   ============================================ */
.card-vision {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    transition: all var(--transition-base);
    height: 100%;
}

.card-vision:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.card-vision .card-image {
    position: relative;
    overflow: hidden;
    height: 260px;
}

.card-vision .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.card-vision .card-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--primary-rgb), 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.card-vision:hover .card-image .overlay {
    background: rgba(var(--primary-rgb), 0.6);
}

.card-vision .card-body {
    padding: 28px;
}

.card-vision .card-title {
    font-size: var(--fs-xl);
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
    transition: color var(--transition-fast);
}

.card-vision:hover .card-title {
    color: var(--primary);
}

.card-vision .card-text {
    color: var(--gray-600);
    font-size: var(--fs-sm);
    line-height: 1.7;
}

/* Status Badge */
.badge-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-xl);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-completed {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

.badge-ongoing {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
}

.badge-upcoming {
    background: rgba(var(--secondary-rgb), 0.1);
    color: var(--secondary-dark);
}

/* Service Card */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-blue-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: rgba(var(--primary-rgb), 0.08);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-3xl);
    color: var(--primary);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    color: var(--white);
    transform: rotateY(180deg);
}

.service-card h4 {
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
}

.service-card p {
    font-size: var(--fs-sm);
    color: var(--gray-600);
    line-height: 1.7;
}

.service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-sm);
    margin-top: 16px;
    transition: all var(--transition-fast);
}

.service-card .service-link:hover {
    color: var(--secondary);
    gap: 12px;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-gray {
    background: var(--gray-50);
}

.section-dark {
    background: var(--gradient-dark);
    color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4 {
    color: var(--white);
}

.section-dark p {
    color: rgba(255,255,255,0.7);
}

.section-dark .section-badge {
    background: rgba(var(--secondary-rgb), 0.15);
    color: var(--secondary);
}

/* ============================================
   STATISTICS COUNTER
   ============================================ */
.stats-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: rgba(var(--secondary-rgb), 0.1);
    border-radius: var(--radius-full);
    filter: blur(100px);
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    position: relative;
}

.stat-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: rgba(255,255,255,0.15);
}

.stat-card:last-child::after {
    display: none;
}

.stat-icon {
    font-size: var(--fs-3xl);
    color: var(--secondary);
    margin-bottom: 12px;
}

.stat-number {
    font-size: var(--fs-5xl);
    font-weight: var(--fw-bold);
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number span {
    color: var(--secondary);
}

.stat-label {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
    position: relative;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-blue-gold);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
    width: 50%;
}

.timeline-item:nth-child(odd) {
    padding-right: 60px;
    text-align: right;
}

.timeline-item:nth-child(even) {
    margin-left: 50%;
    padding-left: 60px;
}

.timeline-dot {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--secondary);
    border-radius: var(--radius-full);
    border: 4px solid var(--white);
    box-shadow: var(--shadow-gold);
    z-index: 2;
}

.timeline-item:nth-child(odd) .timeline-dot {
    right: -12px;
    top: 20px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -12px;
    top: 20px;
}

.timeline-content {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--gray-200);
}

.timeline-year {
    display: inline-block;
    padding: 4px 16px;
    background: var(--gradient-blue-gold);
    color: var(--white);
    border-radius: var(--radius-xl);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    margin-bottom: 12px;
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process-step {
    text-align: center;
    position: relative;
    padding: 0 16px;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: var(--gray-300);
    z-index: 0;
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 100px;
    height: 100px;
    margin: 0 auto 24px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    color: var(--white);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-blue);
}

.process-number::after {
    content: '';
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: var(--radius-full);
    border: 2px dashed var(--secondary);
    animation: spin 20s linear infinite;
}

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

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.why-card:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-left: 4px solid var(--secondary);
}

.why-card-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: rgba(var(--primary-rgb), 0.08);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: var(--fs-2xl);
}

.why-card:hover .why-card-icon {
    background: var(--gradient-primary);
    color: var(--white);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    border: 1px solid var(--gray-200);
    position: relative;
    height: 100%;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 80px;
    color: rgba(var(--secondary-rgb), 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-stars {
    color: var(--secondary);
    font-size: var(--fs-sm);
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: var(--fs-base);
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    overflow: hidden;
    border: 3px solid var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--fw-bold);
    font-size: var(--fs-lg);
    color: var(--white);
}

.testimonial-name {
    font-weight: var(--fw-semibold);
    color: var(--charcoal);
    margin-bottom: 2px;
}

.testimonial-designation {
    font-size: var(--fs-sm);
    color: var(--gray-500);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-section {
    background: var(--gradient-primary);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    right: -100px;
    top: -100px;
    width: 400px;
    height: 400px;
    border-radius: var(--radius-full);
    background: rgba(var(--secondary-rgb), 0.1);
    filter: blur(80px);
}

.cta-section::after {
    content: '';
    position: absolute;
    left: -50px;
    bottom: -50px;
    width: 300px;
    height: 300px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.05);
    filter: blur(60px);
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: clamp(1.875rem, 3vw, var(--fs-4xl));
    font-weight: var(--fw-bold);
    color: var(--white);
    margin-bottom: 16px;
}

.cta-text {
    font-size: var(--fs-lg);
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #0a0a14;
    color: rgba(255,255,255,0.7);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-blue-gold);
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-brand {
    margin-bottom: 24px;
}

.footer-brand h3 {
    color: var(--white);
    font-size: var(--fs-2xl);
    margin-bottom: 4px;
}

.footer-brand h3 span {
    color: var(--secondary);
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: var(--fs-sm);
}

.footer-about {
    font-size: var(--fs-sm);
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: rgba(255,255,255,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    transition: all var(--transition-base);
    font-size: var(--fs-base);
}

.footer-social a:hover {
    background: var(--secondary);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.footer h5 {
    color: var(--white);
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: var(--fs-sm);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: var(--radius-full);
    background: var(--secondary);
    opacity: 0;
    transition: all var(--transition-fast);
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 8px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.footer-contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-contact-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: rgba(var(--secondary-rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    flex-shrink: 0;
}

.footer-contact-text {
    font-size: var(--fs-sm);
}

.footer-contact-text strong {
    color: var(--white);
    display: block;
    margin-bottom: 2px;
}

.newsletter-form {
    display: flex;
    gap: 0;
    margin-top: 16px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    color: var(--white);
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    font-size: var(--fs-sm);
    outline: none;
    transition: border-color var(--transition-fast);
}

.newsletter-form input:focus {
    border-color: var(--secondary);
}

.newsletter-form input::placeholder {
    color: rgba(255,255,255,0.3);
}

.newsletter-form button {
    padding: 12px 20px;
    background: var(--gradient-gold);
    color: var(--primary-dark);
    border: none;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-weight: var(--fw-semibold);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: var(--fs-sm);
    color: rgba(255,255,255,0.4);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.4);
    font-size: var(--fs-sm);
}

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

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: var(--z-fixed);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--fs-xl);
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
}

.floating-btn:hover {
    transform: scale(1.1);
}

.floating-btn.whatsapp {
    background: #25D366;
}

.floating-btn.phone {
    background: var(--primary);
}

.floating-btn.back-to-top {
    background: var(--gradient-blue-gold);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.floating-btn.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* ============================================
   BREADCRUMB
   ============================================ */
.page-header {
    background: var(--gradient-primary);
    padding: 160px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    right: -10%;
    top: -30%;
    width: 600px;
    height: 600px;
    border-radius: var(--radius-full);
    background: rgba(var(--secondary-rgb), 0.08);
    filter: blur(100px);
}

.page-header::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 80px;
    background: linear-gradient(to top, var(--white), transparent);
}

[data-theme="dark"] .page-header::after {
    background: linear-gradient(to top, #0f1117, transparent);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: var(--white);
    font-size: clamp(2rem, 4vw, var(--fs-5xl));
    margin-bottom: 16px;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb-nav a,
.breadcrumb-nav span {
    color: rgba(255,255,255,0.7);
    font-size: var(--fs-sm);
}

.breadcrumb-nav a:hover {
    color: var(--secondary);
}

.breadcrumb-nav .separator {
    color: var(--secondary);
    font-size: var(--fs-xs);
}

.breadcrumb-nav .current {
    color: var(--secondary);
    font-weight: var(--fw-semibold);
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: var(--fw-medium);
    color: var(--charcoal);
    margin-bottom: 8px;
    font-size: var(--fs-sm);
}

.form-control-vision {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    color: var(--charcoal);
    background: var(--white);
    transition: all var(--transition-fast);
    outline: none;
}

.form-control-vision:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(var(--primary-rgb), 0.1);
}

.form-control-vision::placeholder {
    color: var(--gray-400);
}

textarea.form-control-vision {
    min-height: 130px;
    resize: vertical;
}

.form-select-vision {
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px 12px;
    padding-right: 48px;
}

/* ============================================
   GALLERY / LIGHTBOX
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

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

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

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

.gallery-item .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(var(--primary-rgb), 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    color: var(--white);
}

.gallery-item:hover .gallery-overlay {
    background: rgba(var(--primary-rgb), 0.7);
}

.gallery-overlay i {
    font-size: var(--fs-3xl);
    transform: scale(0);
    transition: transform var(--transition-spring);
}

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

/* Gallery Filters */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    background: transparent;
    color: var(--gray-600);
    font-family: var(--font-primary);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* ============================================
   BLOG
   ============================================ */
.blog-card .card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
    font-size: var(--fs-xs);
    color: var(--gray-500);
}

.blog-card .card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-card .card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 14px;
    background: var(--primary);
    color: var(--white);
    border-radius: var(--radius-xl);
    font-size: var(--fs-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.blog-card .read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: var(--fw-semibold);
    font-size: var(--fs-sm);
    margin-top: 12px;
}

.blog-card .read-more:hover {
    color: var(--secondary);
    gap: 12px;
}

/* ============================================
   CLIENT LOGOS
   ============================================ */
.client-logos {
    display: flex;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    justify-content: center;
    padding: 40px 0;
}

.client-logo {
    height: 50px;
    opacity: 0.4;
    filter: grayscale(100%);
    transition: all var(--transition-base);
}

.client-logo:hover {
    opacity: 1;
    filter: grayscale(0);
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination-vision {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
}

.pagination-vision a,
.pagination-vision span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    padding: 0 12px;
    border-radius: var(--radius-md);
    font-size: var(--fs-sm);
    font-weight: var(--fw-medium);
    transition: all var(--transition-fast);
    border: 2px solid var(--gray-200);
    color: var(--charcoal);
}

.pagination-vision a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.pagination-vision .active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ============================================
   GLASSMORPHISM (light use)
   ============================================ */
.glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1199px) {
    .timeline::before {
        left: 30px;
    }
    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        margin-left: 0;
        padding-left: 70px;
        padding-right: 0;
        text-align: left;
    }
    .timeline-item:nth-child(odd) .timeline-dot,
    .timeline-item:nth-child(even) .timeline-dot {
        left: 18px;
    }
}

@media (max-width: 991px) {
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    .hero-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .hero-subtitle {
        margin: 0 auto 36px;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        position: relative;
    }
    .stat-card::after {
        display: none;
    }
    .process-step::after {
        display: none;
    }
    .hero-stat-item::after {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 600px;
    }
    .hero-slide {
        min-height: 600px;
    }
    .section {
        padding: 60px 0;
    }
    .navbar-cta {
        display: none;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: var(--fs-lg);
    }
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    .page-header {
        padding: 130px 0 60px;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 1.875rem;
    }
    .btn-vision {
        padding: 12px 24px;
        font-size: var(--fs-xs);
    }
    .stat-number {
        font-size: var(--fs-4xl);
    }
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.gold-line {
    width: 80px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
}

.gold-line.centered {
    margin: 0 auto;
}

.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media (max-width: 991px) {
    .parallax-bg {
        background-attachment: scroll;
    }
}

.hover-lift {
    transition: transform var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-8px);
}

.text-gradient {
    background: var(--gradient-blue-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Alert messages */
.alert-vision {
    padding: 16px 24px;
    border-radius: var(--radius-md);
    font-size: var(--fs-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.2);
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.2);
}

.alert-info {
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

/* ============================================
   BESPOKE ARCHITECTURAL DESIGN SYSTEM EXTENSIONS
   ============================================ */

/* Blueprint Grid Background */
.bg-blueprint {
    background-color: #070D18 !important;
    background-image: 
        linear-gradient(rgba(197, 160, 89, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 160, 89, 0.04) 1px, transparent 1px) !important;
    background-size: 50px 50px !important;
}

/* Section Architectural Badge */
.section-badge-architectural {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 14px;
}
.section-badge-architectural::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--secondary);
}

/* Editorial Heading Styling */
.editorial-heading {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    font-weight: 800;
}

.editorial-sub {
    font-family: var(--font-primary);
    font-size: var(--fs-lg);
    line-height: 1.8;
    color: var(--gray-600);
}

/* Continuous Marquee Ticker */
.marquee-strip {
    overflow: hidden;
    white-space: nowrap;
    background: #080D1A;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 0;
    position: relative;
    z-index: 10;
}
.marquee-content {
    display: inline-flex;
    gap: 40px;
    animation: marqueeScroll 30s linear infinite;
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
}
.marquee-item i {
    color: var(--secondary);
    font-size: 8px;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Architectural Service Cards */
.service-card-architectural {
    background: var(--white);
    border: var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    position: relative;
    transition: all var(--transition-base);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.service-card-architectural::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: transparent;
    transition: var(--transition-fast);
}
.service-card-architectural:hover::before {
    background: var(--gradient-gold);
}
.service-card-architectural:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(8, 13, 26, 0.08);
    border-color: rgba(197, 160, 89, 0.4);
}
.service-num {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gray-300);
    margin-bottom: 24px;
    transition: var(--transition-fast);
}
.service-card-architectural:hover .service-num {
    color: var(--secondary);
}

/* Architectural Glass Container */
.glass-card-architectural {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 32px;
}

/* Project Card Architectural Curtain Overlay */
.project-card-architectural {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--dark-obsidian);
}
.project-card-img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.project-card-architectural:hover .project-card-img {
    transform: scale(1.08);
}
.project-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(8, 13, 26, 0.95) 90%);
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    transition: var(--transition-base);
}
.project-card-tag {
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 8px;
}

/* Stats Architectural counter */
.stat-box-architectural {
    padding: 36px 24px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-box-architectural:last-child {
    border-right: none;
}
.stat-number-architectural {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}
.stat-number-architectural span {
    color: var(--secondary);
}
.stat-label-architectural {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   ARCHITECTURAL PAGE HEADER / HERO BANNER
   ============================================ */
.page-header {
    position: relative;
    padding: 160px 0 85px 0;
    background-color: #070D18 !important;
    background-image: 
        radial-gradient(circle at 85% 20%, rgba(197, 160, 89, 0.15) 0%, transparent 45%),
        linear-gradient(rgba(197, 160, 89, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(197, 160, 89, 0.04) 1px, transparent 1px) !important;
    background-size: 100% 100%, 50px 50px, 50px 50px !important;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--secondary), transparent);
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.page-header-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--secondary);
    margin-bottom: 14px;
}
.page-header-tag::before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 2px;
    background: var(--secondary);
}

/* Breadcrumbs Styling */
.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-full);
}

.breadcrumb-nav a {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition-fast);
}

.breadcrumb-nav a:hover {
    color: var(--secondary);
}

.breadcrumb-nav .separator {
    color: var(--secondary);
    font-size: 0.65rem;
}

.breadcrumb-nav .current {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--white);
}

/* ============================================
   MOBILE RESPONSIVENESS & TOUCH OPTIMIZATIONS
   ============================================ */

@media (max-width: 991.98px) {
    /* Mobile Navigation Dropdown Menu */
    .navbar-collapse {
        background: #080D1A;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: var(--radius-lg);
        padding: 24px 20px;
        margin-top: 15px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }
    
    .navbar-vision .nav-link {
        padding: 12px 16px !important;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
    
    .navbar-vision .nav-link::after {
        display: none;
    }

    .mega-menu {
        min-width: 100% !important;
        background: #0D1527 !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    .dropdown-item {
        color: rgba(255, 255, 255, 0.85) !important;
        padding: 10px 14px !important;
    }
    
    .dropdown-item:hover {
        background: rgba(197, 160, 89, 0.15) !important;
        color: var(--secondary) !important;
    }

    /* Page Header Mobile Adjustments */
    .page-header {
        padding: 130px 0 60px 0 !important;
    }

    .page-header h1 {
        font-size: clamp(2rem, 7vw, 2.8rem) !important;
        word-wrap: break-word;
    }

    .breadcrumb-nav {
        flex-wrap: wrap;
        padding: 8px 18px !important;
        gap: 8px !important;
    }

    .breadcrumb-nav a, 
    .breadcrumb-nav .current {
        font-size: 0.72rem !important;
    }
    
    /* Hero Buttons Mobile */
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 12px;
    }

    .hero-buttons .btn-vision {
        width: 100%;
        justify-content: center;
    }

    .hero-quick-call {
        justify-content: center;
        width: 100%;
        margin-top: 8px;
    }

    /* Hero Height on Mobile */
    .hero-section,
    .hero-slide {
        min-height: 640px;
        height: auto;
        padding-top: 100px;
        padding-bottom: 70px;
    }

    .hero-title {
        font-size: clamp(2rem, 7.5vw, 3rem) !important;
    }

    .hero-subtitle {
        font-size: 0.98rem !important;
        margin-bottom: 28px !important;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 50px;
        --container-padding: 18px;
    }

    /* Architectural Cards on Mobile */
    .service-card-architectural {
        padding: 28px 22px !important;
    }

    .project-card-img {
        height: 280px !important;
    }

    .project-card-overlay {
        padding: 22px !important;
    }

    .editorial-heading {
        font-size: clamp(1.75rem, 6vw, 2.4rem) !important;
    }

    .page-header-tag {
        font-size: 0.68rem !important;
        letter-spacing: 0.18em !important;
    }

    /* Prevent text cutoff in breadcrumbs */
    .breadcrumb-nav {
        max-width: 100%;
        border-radius: var(--radius-md) !important;
    }

    .breadcrumb-nav .current {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 180px;
        display: inline-block;
        vertical-align: bottom;
    }

    /* Floating Stats Bar for Mobile */
    .hero-stats-glass {
        padding: 20px 14px !important;
    }
    
    .hero-stat-item {
        padding: 10px 6px;
    }

    .hero-stat-number {
        font-size: 1.5rem !important;
    }

    .hero-stat-label {
        font-size: 0.7rem !important;
    }

    /* Form Fields Touch Target */
    .form-control-vision, 
    .form-select-vision {
        font-size: 16px !important; /* Prevents iOS auto-zoom */
        padding: 14px 16px !important;
    }

    .btn-vision {
        padding: 14px 28px !important;
        min-height: 48px;
    }
}

@media (max-width: 480px) {
    .hero-badge {
        font-size: 0.68rem !important;
        padding: 8px 14px !important;
        letter-spacing: 1px !important;
    }

    .page-header {
        padding: 110px 0 45px 0 !important;
    }

    .page-header h1 {
        font-size: 1.8rem !important;
    }

    .btn-lg {
        padding: 14px 24px !important;
        font-size: 0.85rem !important;
    }
}
