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

/* ==========================================
   FORTUNE 500 DESIGN TOKENS (BROCHURE IDENTITY)
   ========================================== */
:root {
    /* Brochure Brand Colors */
    --navy: #241E72;            /* Deep Corporate Navy Blue */
    --navy-dark: #191454;       /* Darker Navy Slate */
    --navy-light: #F0EFF9;      /* Ultra Soft Navy Tint */
    --yellow: #F4D000;          /* Signature Construction Yellow */
    --yellow-dark: #D6B700;     /* Deep Construction Gold */
    --yellow-light: #FFFDF0;    /* Soft Yellow Tint */
    --accent-green: #10B981;    /* Compliance Green */
    
    /* Neutrals & Text */
    --charcoal: #0F172A;        /* Slate 900 - High Contrast Text */
    --slate-heading: #120E3D;   /* Dark Navy Heading Color */
    --text-main: #334155;       /* Slate 700 Body Text */
    --text-muted: #64748B;      /* Slate 500 Muted */
    --text-light: #94A3B8;      /* Slate 400 Extra Muted */
    
    /* Background Surfaces */
    --bg-white: #FFFFFF;        /* Pure Crisp White */
    --bg-canvas: #F8FAFC;       /* Clean Light Slate Canvas */
    --bg-alt: #F1F5F9;          /* Alternate Section Background */
    
    /* Borders & Glass Effects */
    --border-color: #E2E8F0;
    --border-yellow: rgba(244, 208, 0, 0.5);
    --border-navy: rgba(36, 30, 114, 0.18);
    --glass-bg: rgba(255, 255, 255, 0.94);
    
    /* Typography */
    --font-title: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Shadows & Radii */
    --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.04), 0 2px 4px -2px rgba(15, 23, 42, 0.03);
    --shadow-md: 0 10px 25px -5px rgba(36, 30, 114, 0.06), 0 8px 10px -6px rgba(15, 23, 42, 0.03);
    --shadow-lg: 0 20px 40px -15px rgba(36, 30, 114, 0.12), 0 0 20px rgba(244, 208, 0, 0.1);
    --shadow-hover: 0 25px 50px -12px rgba(36, 30, 114, 0.18);
    
    --radius-sm: 8px;
    /* Transitions & Easing (Apple / Tesla Motion System) */
    --ease-out-cubic: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-slow: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================
   MOTION KEYFRAMES & UTILITY CLASSES
   ========================================== */
@keyframes blurClear {
    0% {
        opacity: 0;
        transform: translateY(24px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0px);
    }
}

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

@keyframes logoPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; filter: drop-shadow(0 0 15px rgba(244, 208, 0, 0.6)); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(36, 30, 114, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(36, 30, 114, 0); }
}

/* Corporate Preloader Overlay */
#appPreloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--navy);
    z-index: 99999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    transition: opacity 0.6s var(--ease-out-cubic), visibility 0.6s var(--ease-out-cubic);
}

#appPreloader img {
    height: 64px;
    width: auto;
    animation: logoPulse 2s ease-in-out infinite;
}

#appPreloader .preloader-bar {
    width: 160px;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

#appPreloader .preloader-progress {
    width: 40%;
    height: 100%;
    background: var(--yellow);
    border-radius: 4px;
    position: absolute;
    animation: preloaderSlide 1.5s var(--ease-out-cubic) infinite;
}

@keyframes preloaderSlide {
    0% { left: -40%; }
    100% { left: 100%; }
}

#appPreloader.preloader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* Scroll Viewport Reveal Observers */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(32px);
    transition: transform 0.65s var(--ease-out-cubic), opacity 0.65s var(--ease-out-cubic);
    will-change: transform, opacity;
}

.reveal-on-scroll.reveal-active {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--text-main);
    background-color: var(--bg-canvas);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-title);
    font-weight: 700;
    color: var(--slate-heading);
    line-height: 1.25;
    letter-spacing: -0.02em;
}

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

button, input, textarea, select {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

ul {
    list-style: none;
}

img, video {
    max-width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

/* Accessibility Skip Link */
.skip-link {
    position: absolute;
    top: -100px;
    left: 20px;
    background: var(--navy);
    color: var(--bg-white);
    padding: 12px 24px;
    z-index: 9999;
    border-radius: var(--radius-sm);
    font-weight: 600;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 20px;
}

/* Page Section Management */
.page-section {
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
}

.page-section.active {
    display: block;
    opacity: 1;
}

/* Container & Layout Utilities */
.container {
    max-width: 1360px;
    width: min(92%, 1360px);
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: clamp(4.5rem, 7.5vw, 6.5rem) 0;
}

.text-center { text-align: center; }
.text-right { text-align: right; }

.section-title-wrap {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
    position: relative;
}

.section-subtitle {
    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--navy);
    background: var(--navy-light);
    padding: 6px 20px;
    border-radius: var(--radius-full);
    display: inline-block;
    margin-bottom: 14px;
    border-left: 4px solid var(--yellow);
}

.section-title {
    font-size: clamp(2.1rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--slate-heading);
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.section-title span {
    color: var(--navy);
    position: relative;
    display: inline-block;
}

.section-title span::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--yellow);
    z-index: -1;
    border-radius: 4px;
}

.section-desc {
    max-width: 720px;
    margin: 0 auto;
    color: var(--text-muted);
    font-size: clamp(1.02rem, 1.2vw, 1.15rem);
    line-height: 1.7;
}

/* Geometric Brochure Background Motif */
.geo-pattern-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(var(--navy) 1px, transparent 1px);
    background-size: 20px 20px;
    opacity: 0.06;
    pointer-events: none;
}

/* ==========================================
   BUTTONS & ENTERPRISE CONTROLS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.01em;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    gap: 10px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--navy);
    color: var(--bg-white);
    border: 2px solid var(--navy);
    box-shadow: 0 8px 20px rgba(36, 30, 114, 0.22);
}

.btn-primary:hover {
    background: var(--navy-dark);
    border-color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(36, 30, 114, 0.32);
    color: var(--bg-white);
}

.btn-secondary {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--navy-dark);
    font-weight: 800;
}

.btn-secondary:hover {
    background: var(--yellow-dark);
    border-color: var(--yellow-dark);
    color: var(--navy-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(244, 208, 0, 0.35);
}

.btn-outline-navy {
    background: transparent;
    border-color: var(--navy);
    color: var(--navy);
}

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

.btn-white {
    background: var(--bg-white);
    color: var(--navy);
    font-weight: 800;
}

.btn-white:hover {
    background: var(--yellow);
    color: var(--navy-dark);
    transform: translateY(-2px);
}

/* ==========================================
   NAVIGATION BAR (ENTERPRISE STICKY)
   ========================================== */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition-slow);
    padding: 20px 0;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}

header.scrolled {
    padding: 12px 0;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: var(--shadow-md);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 68px;
    max-height: 80px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 4px 10px rgba(36, 30, 114, 0.15));
}

header.scrolled .logo img {
    height: 56px;
}

.nav-menu {
    display: flex;
    gap: 24px;
    align-items: center;
}

.nav-link {
    font-family: var(--font-title);
    font-weight: 700;
    font-size: 14.5px;
    color: var(--slate-heading);
    position: relative;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--navy) !important;
    background: var(--navy-light);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 12px;
    right: 12px;
    height: 3px;
    background: var(--yellow);
    border-radius: var(--radius-full);
}

.nav-cta .btn {
    padding: 10px 22px;
    font-size: 14px;
}

/* Mobile Hamburger Menu */
.menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    cursor: pointer;
    z-index: 1001;
}

.menu-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--navy);
    border-radius: 3px;
    transition: var(--transition);
}

/* ==========================================
   HERO SECTION (BRIGHT FORTUNE 500 SHOWCASE)
   ========================================== */
.hero-section {
    position: relative;
    padding: 170px 0 100px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 50%, #F0EFF9 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 48vw;
    height: 100%;
    background: var(--navy-light);
    clip-path: polygon(18% 0, 100% 0, 100% 100%, 0% 100%);
    z-index: 1;
}

/* Blueprint Grid Background Pattern */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(36, 30, 114, 0.07) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 720px;
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 22px;
    background: var(--bg-white);
    border: 1px solid var(--border-navy);
    border-left: 4px solid var(--yellow);
    box-shadow: 0 4px 15px rgba(36, 30, 114, 0.08);
    border-radius: var(--radius-full);
    color: var(--navy);
    font-weight: 800;
    font-size: 13.5px;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: blurClear 0.7s var(--ease-out-cubic) forwards;
}

.hero-title {
    font-size: clamp(2.6rem, 4.8vw, 4rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--slate-heading);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    animation: blurClear 0.8s var(--ease-out-cubic) 0.15s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-title span {
    color: var(--navy);
    background: linear-gradient(180deg, transparent 65%, var(--yellow) 65%);
}

.hero-desc {
    font-size: clamp(1.05rem, 1.3vw, 1.22rem);
    color: var(--text-main);
    margin-bottom: 36px;
    line-height: 1.75;
    animation: blurClear 0.8s var(--ease-out-cubic) 0.3s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: blurClear 0.8s var(--ease-out-cubic) 0.45s forwards;
    opacity: 0;
    animation-fill-mode: forwards;
}

.hero-media-wrap {
    position: relative;
}

.hero-media-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 25px 60px -15px rgba(36, 30, 114, 0.22);
    border: 6px solid var(--bg-white);
    animation: floatingSubtle 6s ease-in-out infinite;
}

.hero-media-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out-cubic);
}

.hero-media-card:hover img {
    transform: scale(1.04);
}

.hero-media-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(36, 30, 114, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    color: var(--bg-white);
    padding: 18px 24px;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--yellow);
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.25);
}

.hero-media-badge span {
    display: block;
    font-family: var(--font-title);
    font-size: 26px;
    font-weight: 800;
    color: var(--yellow);
    line-height: 1;
}

.hero-media-badge p {
    font-size: 13px;
    font-weight: 600;
    color: var(--bg-white);
}

/* ==========================================
   STATISTICS BANNER (CLEAN GEOMETRIC CARDS)
   ========================================== */
.stats-section {
    position: relative;
    z-index: 10;
    margin-top: -40px;
    padding-bottom: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-navy);
    border-bottom: 4px solid var(--yellow);
    border-radius: var(--radius-lg);
    padding: 34px 24px;
    text-align: center;
    box-shadow: 0 15px 35px -5px rgba(36, 30, 114, 0.08);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -10px rgba(36, 30, 114, 0.18);
    border-color: var(--navy);
}

.stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--navy);
}

.stat-number {
    display: block;
    font-family: var(--font-title);
    font-size: clamp(2.4rem, 3.8vw, 3.2rem);
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ==========================================
   ABOUT & CORPORATE HERITAGE
   ========================================== */
.about-short {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-short-img {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.about-short-img img {
    width: 100%;
    max-height: 520px;
    object-fit: contain;
    opacity: 0.95;
    filter: drop-shadow(0 15px 30px rgba(36, 30, 114, 0.12));
    transition: var(--transition);
}

.about-short-img:hover img {
    opacity: 1;
    transform: scale(1.02);
}

.about-short-img-badge {
    position: absolute;
    bottom: -15px;
    right: 15px;
    background: var(--navy);
    border: 3px solid var(--yellow);
    border-radius: var(--radius-md);
    padding: 18px 28px;
    box-shadow: 0 12px 30px rgba(36, 30, 114, 0.25);
    text-align: center;
    z-index: 5;
}

.about-short-img-badge span {
    font-family: var(--font-title);
    font-size: 34px;
    font-weight: 800;
    color: var(--yellow);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.about-short-img-badge p {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--bg-white);
}

.about-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 30px 0;
}

.about-bullet-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-white);
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
    color: var(--slate-heading);
}

.about-bullet-item i {
    color: var(--navy);
    font-size: 18px;
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.about-intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-intro-stat {
    background: var(--bg-white);
    padding: 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    border-top: 4px solid var(--navy);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.about-intro-stat span {
    font-family: var(--font-title);
    font-size: 34px;
    font-weight: 800;
    color: var(--navy);
    display: block;
    margin-bottom: 4px;
}

.about-intro-stat p {
    font-weight: 600;
    color: var(--text-main);
    font-size: 13.5px;
}

/* ==========================================
   MISSION, VISION, CORE VALUES (BROCHURE MVV)
   ========================================== */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mvv-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--navy) 0%, var(--yellow) 100%);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--navy);
}

.mvv-icon {
    width: 60px;
    height: 60px;
    background: var(--navy-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 26px;
    margin-bottom: 24px;
}

.mvv-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

.mvv-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14.5px;
    color: var(--text-main);
}

.mvv-list i {
    color: var(--navy);
    margin-top: 4px;
}

/* Why Choose Us (01, 02, 03 Cards) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: var(--bg-white);
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
}

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

.value-number {
    font-family: var(--font-title);
    font-size: 40px;
    font-weight: 800;
    color: var(--navy);
    background: var(--yellow);
    width: 60px;
    height: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

/* Technical Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.team-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

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

.team-card-icon-wrap {
    width: 76px;
    height: 76px;
    background: var(--navy-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: var(--navy);
    font-size: 30px;
    border: 2px solid var(--yellow);
}

.team-card-info h3 {
    font-size: 18.5px;
    margin-bottom: 4px;
}

.team-card-role {
    font-weight: 700;
    color: var(--navy);
    font-size: 14px;
    margin-bottom: 6px;
}

.team-card-exp {
    font-size: 13px;
    color: var(--text-muted);
}

/* ==========================================
   CORE SERVICES SECTION
   ========================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.service-card-img {
    position: relative;
    height: 200px;
    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.08);
}

.service-card-icon {
    position: absolute;
    bottom: -20px;
    right: 20px;
    width: 52px;
    height: 52px;
    background: var(--navy);
    border-radius: var(--radius-md);
    color: var(--yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 8px 20px rgba(36, 30, 114, 0.3);
    border: 2px solid var(--yellow);
}

.service-card-body {
    padding: 32px 24px 24px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-card-body h3 {
    font-size: 18.5px;
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card-body p {
    font-size: 13.5px;
    color: var(--text-main);
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card-btn {
    background: transparent;
    border: none;
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.service-card-btn:hover {
    gap: 12px;
    color: var(--navy-dark);
}

/* ==========================================
   FEATURED PROJECTS CAROUSEL & PORTFOLIO
   ========================================== */
.carousel-section {
    background: var(--bg-alt);
}

.carousel-container {
    overflow: hidden;
    margin: 0 -15px;
    padding: 10px 15px;
}

.carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-out;
}

.carousel-slide {
    flex: 0 0 calc(33.333% - 20px);
    min-width: 300px;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
}

.carousel-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-arrow:hover {
    background: var(--navy);
    color: var(--yellow);
    border-color: var(--navy);
}

.project-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--navy);
}

.project-card-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.project-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.project-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(36, 30, 114, 0.65);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.project-card-overlay-btn {
    width: 50px;
    height: 50px;
    background: var(--yellow);
    border-radius: 50%;
    color: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.project-card-overlay-btn:hover {
    transform: scale(1.15);
}

.project-card-content {
    padding: 24px;
}

.project-card-cat {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--navy);
    background: var(--navy-light);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 10px;
}

.project-card-title {
    font-size: 18px;
    margin-bottom: 10px;
}

.project-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
    margin-top: 12px;
}

.project-card-meta i {
    color: var(--navy);
    margin-right: 4px;
}

/* Portfolio Filters */
.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    border-radius: var(--radius-full);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--slate-heading);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--navy);
    color: var(--yellow);
    border-color: var(--navy);
    box-shadow: 0 6px 18px rgba(36, 30, 114, 0.25);
}

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

/* ==========================================
   TESTIMONIALS & FAQ
   ========================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px 30px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    position: relative;
    transition: var(--transition);
}

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

.testimonial-quote-icon {
    font-size: 36px;
    color: rgba(36, 30, 114, 0.12);
    position: absolute;
    top: 24px;
    right: 28px;
}

.testimonial-stars {
    color: #EAB308;
    font-size: 14px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 14.5px;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.testimonial-author-avatar {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 16px;
}

.testimonial-author-info h3 {
    font-size: 16px;
    margin-bottom: 2px;
}

.testimonial-author-info p {
    font-size: 13px;
    color: var(--text-muted);
}

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

.faq-container {
    max-width: 860px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--navy);
    box-shadow: var(--shadow-md);
}

.faq-header {
    padding: 22px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 16.5px;
    color: var(--slate-heading);
}

.faq-icon {
    color: var(--navy);
    transition: transform 0.3s ease;
}

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

.faq-body {
    padding: 0 28px 24px 28px;
    display: none;
    color: var(--text-main);
    font-size: 14.5px;
    line-height: 1.75;
    border-top: 1px solid rgba(226, 232, 240, 0.8);
    padding-top: 16px;
}

.faq-item.active .faq-body {
    display: block;
}

/* Partners Logos */
.partners-section {
    padding: 40px 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.partners-flex {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.partner-logo {
    font-family: var(--font-title);
    font-size: 18px;
    font-weight: 800;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
    color: var(--navy);
}

/* ==========================================
   SAFETY & HSE COMPLIANCE
   ========================================== */
.safety-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.safety-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 24px;
}

.safety-bullet {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-white);
    padding: 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    font-weight: 600;
    color: var(--slate-heading);
}

.safety-bullet i {
    color: var(--navy);
    font-size: 20px;
}

.policies-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.policy-card {
    background: var(--bg-white);
    padding: 36px 30px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.policy-icon {
    width: 56px;
    height: 56px;
    background: var(--navy-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 24px;
    margin-bottom: 20px;
}

.compliance-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.certifications-list {
    display: flex;
    gap: 20px;
    margin-top: 24px;
}

.cert-badge {
    background: var(--bg-white);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--slate-heading);
}

.cert-badge i {
    color: var(--yellow-dark);
    font-size: 22px;
}

/* ==========================================
   DYNAMIC GALLERY SECTION
   ========================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 240px;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

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

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

.gallery-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

.pagination-btn {
    padding: 8px 18px;
    border-radius: var(--radius-md);
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    color: var(--slate-heading);
    font-weight: 700;
    cursor: pointer;
}

.pagination-btn.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-number {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
}

.pagination-number.active {
    background: var(--navy);
    color: var(--yellow);
    border-color: var(--navy);
}

/* ==========================================
   EXPERIENCE & TIMELINE
   ========================================== */
.exp-intro-box {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border-color);
    border-left: 6px solid var(--navy);
    box-shadow: var(--shadow-md);
    margin-bottom: 50px;
}

.exp-tagline {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--navy);
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 16px;
}

.exp-main-quote {
    font-size: 17px;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.7;
}

.exp-reg-meta {
    display: flex;
    gap: 30px;
    font-size: 14px;
    color: var(--text-muted);
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.exp-mvv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.exp-mvv-card {
    background: var(--bg-white);
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.exp-mvv-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.exp-mvv-icon {
    width: 48px;
    height: 48px;
    background: var(--navy-light);
    color: var(--navy);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.exp-values-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.exp-val-badge {
    background: var(--bg-canvas);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    color: var(--slate-heading);
}

.exp-sub-heading {
    font-size: 28px;
    margin-bottom: 40px;
}

.exp-cap-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.exp-cap-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.exp-cap-img-wrap {
    height: 200px;
}

.exp-cap-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.exp-cap-content {
    padding: 28px;
}

.exp-cap-content h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.exp-bullet-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--text-main);
}

.exp-bullet-list i {
    color: var(--navy);
}

.exp-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.exp-tag {
    background: var(--navy-light);
    color: var(--navy);
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 700;
}

.exp-full-width {
    grid-column: 1 / -1;
}

.exp-services-flex {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.exp-service-item {
    text-align: center;
}

.exp-service-icon {
    width: 60px;
    height: 60px;
    background: var(--navy-light);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 10px auto;
}

.exp-certs-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.exp-cert-box {
    background: var(--bg-white);
    padding: 32px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.exp-cert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--yellow-light);
    color: #92400E;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-weight: 800;
    font-size: 13px;
    margin-bottom: 16px;
    border: 1px solid var(--border-yellow);
}

.exp-cert-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 16px 0;
    font-size: 13px;
    color: var(--text-main);
}

/* ==========================================
   CONTACT SECTION & FORM
   ========================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    margin-bottom: 60px;
}

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

.contact-info-card {
    background: var(--bg-white);
    padding: 28px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 52px;
    height: 52px;
    background: var(--navy-light);
    color: var(--navy);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-info-content h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.contact-info-content p {
    font-size: 14px;
    color: var(--text-main);
}

.contact-socials {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.contact-social-link {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--bg-canvas);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--slate-heading);
    transition: var(--transition);
}

.contact-social-link:hover {
    background: var(--navy);
    color: var(--yellow);
    border-color: var(--navy);
}

.contact-form-wrap {
    background: var(--bg-white);
    padding: 44px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-hover);
}

.contact-form-title {
    font-size: 24px;
    margin-bottom: 28px;
}

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

.form-group {
    margin-bottom: 22px;
}

.form-label {
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: var(--slate-heading);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border-radius: var(--radius-md);
    border: 1.5px solid var(--border-color);
    background: var(--bg-canvas);
    color: var(--slate-heading);
    font-size: 14.5px;
    transition: var(--transition);
}

.form-control:focus {
    background: var(--bg-white);
    border-color: var(--navy);
    box-shadow: 0 0 0 4px rgba(36, 30, 114, 0.12);
}

.map-placeholder {
    display: none;
}

/* Full-Screen Edge-to-Edge Visual Banner */
.full-screen-photo-banner {
    position: relative;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    height: clamp(400px, 55vh, 650px);
    margin-top: 60px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
}

.full-screen-photo-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    transition: transform 0.65s var(--ease-out-cubic);
}

.full-screen-photo-banner:hover img {
    transform: scale(1.04);
}

.full-screen-banner-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(36, 30, 114, 0.88) 100%);
    display: flex;
    align-items: flex-end;
}

.banner-overlay-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-white);
    padding: 14px 24px;
    border-radius: var(--radius-md);
    border-left: 5px solid var(--yellow);
    box-shadow: var(--shadow-lg);
    font-weight: 800;
    color: var(--navy);
    font-size: 15px;
}

.banner-overlay-badge i {
    color: var(--yellow-dark);
    font-size: 20px;
}

/* ==========================================
   MODALS (QUOTE, SERVICE, LIGHTBOX)
   ========================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 14, 61, 0.65);
    backdrop-filter: blur(8px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 620px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalSlide 0.3s ease-out;
}

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

.modal-header {
    padding: 24px 32px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 20px;
}

.modal-close {
    font-size: 28px;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--navy);
}

.modal-body {
    padding: 32px;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 14, 61, 0.92);
    backdrop-filter: blur(12px);
    z-index: 2100;
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    text-align: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--bg-white);
    font-size: 40px;
    cursor: pointer;
}

.lightbox-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--bg-white);
    font-size: 40px;
    cursor: pointer;
    padding: 20px;
    user-select: none;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

/* ==========================================
   FOOTER (NAVY BROCHURE BRANDED)
   ========================================== */
footer {
    background: var(--navy);
    color: var(--bg-white);
    padding-top: 80px;
    border-top: 5px solid var(--yellow);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-about img {
    height: 46px;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.7;
}

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

.footer-socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-white);
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--yellow);
    color: var(--navy-dark);
    transform: translateY(-3px);
}

.footer-widget h3 {
    color: var(--bg-white);
    font-size: 18px;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: var(--yellow);
    border-radius: var(--radius-full);
}

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

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

.footer-links a:hover {
    color: var(--yellow);
    transform: translateX(6px);
}

.footer-contact-list li {
    display: flex;
    gap: 14px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-bottom: 16px;
}

.footer-contact-list i {
    color: var(--yellow);
    font-size: 18px;
    margin-top: 2px;
}

.footer-cert-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 14px;
    border-radius: var(--radius-md);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 14px;
}

.footer-cert-card i {
    color: var(--yellow);
    font-size: 22px;
}

.footer-cert-card span {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

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

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
}

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

/* ==========================================
   FLOATING ACTIONS
   ========================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--yellow);
    border: 2px solid var(--yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(36, 30, 114, 0.4);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 990;
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translateY(-4px);
    background: var(--navy-dark);
}

.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: #25D366;
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 990;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.05);
}

/* ==========================================
   RESPONSIVE BREAKPOINTS (320px - 1920px)
   ========================================== */
@media (max-width: 1200px) {
    .services-grid, .team-grid, .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-section::before {
        display: none;
    }
    
    .menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--bg-white);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        padding: 40px;
        transition: right 0.4s ease-in-out;
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-short, .about-intro-grid, .compliance-grid, .safety-intro-grid, .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mvv-grid, .values-grid, .portfolio-grid, .testimonials-grid, .policies-grid, .exp-cap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .carousel-slide {
        flex: 0 0 calc(50% - 15px);
    }
}

@media (max-width: 768px) {
    .services-grid, .team-grid, .gallery-grid, .mvv-grid, .values-grid, .portfolio-grid, .testimonials-grid, .policies-grid, .exp-cap-grid, .exp-certs-container, .exp-mvv-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-slide {
        flex: 0 0 100%;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .contact-form-wrap {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-section {
        padding: 120px 0 60px 0;
    }
    
    .hero-btns {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-btns .btn {
        width: 100%;
    }
}

/* ==========================================
   ACCESSIBILITY: PREFERS REDUCED MOTION
   ========================================== */
@media (prefers-reduced-motion: reduce) {
    *, ::before, ::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .reveal-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    
    #appPreloader {
        display: none !important;
    }
}
