/* =========================================
   INDLOVUS SECURITY SERVICES - MAIN STYLES
   Brand Colors:
   - Navy Blue (Primary):   #0B2A6F
   - Royal Blue (Accent):   #1E4FA3
   - White:                 #FFFFFF
   - Steel Gray:            #98A7B7
   - Light Gray:            #C7D1DB
   - Gold Accent:           #C8973A
   ========================================= */

/* ===== CSS VARIABLES ===== */
:root {
    --navy:         #0B2A6F;
    --navy-dark:    #071a4a;
    --navy-mid:     #102E78;
    --royal-blue:   #1E4FA3;
    --blue-light:   #2563d4;
    --gold:         #C8973A;
    --gold-light:   #e0ac4a;
    --white:        #FFFFFF;
    --off-white:    #F4F6FB;
    --steel:        #98A7B7;
    --steel-light:  #C7D1DB;
    --dark:         #0d1420;
    --text-dark:    #1a2332;
    --text-mid:     #3d4f63;
    --text-light:   #667788;
    --border:       #dde3ed;

    --shadow-sm:    0 2px 8px rgba(11,42,111,0.08);
    --shadow-md:    0 8px 30px rgba(11,42,111,0.14);
    --shadow-lg:    0 20px 60px rgba(11,42,111,0.18);

    --radius-sm:    6px;
    --radius-md:    12px;
    --radius-lg:    20px;
    --radius-xl:    30px;

    --transition:   all 0.3s ease;
    --font-heading: 'Montserrat', sans-serif;
    --font-body:    'Open Sans', sans-serif;
}

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

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

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--navy-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-logo {
    width: 120px;
    margin: 0 auto 24px;
    animation: preloaderPulse 1.5s ease-in-out infinite;
}
@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}
.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.15);
    border-radius: 2px;
    overflow: hidden;
    margin: 0 auto;
}
.preloader-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--royal-blue), var(--gold));
    border-radius: 2px;
    animation: preloaderBar 1.8s ease-in-out forwards;
}
@keyframes preloaderBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--navy-dark);
    padding: 8px 0;
    font-size: 12.5px;
    color: var(--steel-light);
}
.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}
.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.top-bar span {
    display: flex;
    align-items: center;
    gap: 6px;
}
.top-bar i { color: var(--gold); font-size: 11px; }

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--navy);
    padding: 14px 0;
    transition: var(--transition);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}
.navbar.scrolled {
    background: rgba(7,26,74,0.97);
    backdrop-filter: blur(10px);
    padding: 10px 0;
}
.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.nav-logo img {
    height: 52px;
    width: auto;
    filter: brightness(1);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-link {
    color: rgba(255,255,255,0.82);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}
.nav-cta { margin-left: 10px; }

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
}
.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(135deg, var(--royal-blue), var(--blue-light));
    color: var(--white);
    border-color: var(--royal-blue);
    box-shadow: 0 4px 15px rgba(30,79,163,0.4);
}
.btn-primary:hover {
    background: linear-gradient(135deg, var(--blue-light), var(--royal-blue));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30,79,163,0.5);
    color: var(--white);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
    transform: translateY(-2px);
    color: var(--white);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
    background: var(--white);
    color: var(--navy);
    border-color: var(--white);
    transform: translateY(-2px);
}
.btn-large { padding: 16px 36px; font-size: 14px; }
.btn-full { width: 100%; justify-content: center; }

/* ===== SECTION HEADER COMMON ===== */
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--royal-blue);
    background: rgba(30,79,163,0.08);
    padding: 6px 18px;
    border-radius: 30px;
    margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.2;
    margin-bottom: 16px;
}
.section-subtitle {
    font-size: 17px;
    color: var(--text-light);
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.7;
}
.text-accent { color: var(--royal-blue); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 95vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 40%, var(--navy-mid) 70%, #1a3a8f 100%);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231E4FA3' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.particle {
    position: absolute;
    background: rgba(255,255,255,0.06);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}
@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { transform: translateY(-100px) rotate(720deg); opacity: 0; }
}
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 80px 24px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(30,79,163,0.3);
    border: 1px solid rgba(30,79,163,0.5);
    color: var(--steel-light);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 28px;
}
.hero-badge i { color: var(--gold); }
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 900;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-title .text-accent { color: var(--gold); }
.hero-subtitle {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255,255,255,0.78);
    max-width: 680px;
    margin: 0 auto 40px;
    line-height: 1.8;
}
.hero-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 28px 48px;
    max-width: 700px;
    margin: 0 auto;
    backdrop-filter: blur(10px);
}
.stat-item { text-align: center; padding: 0 32px; }
.stat-item .stat-num {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}
.stat-item .stat-unit {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
}
.stat-item p {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}
.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.15);
}
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}
.hero-scroll-indicator a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    color: rgba(255,255,255,0.6);
    animation: bounce 2s ease infinite;
    transition: var(--transition);
}
.hero-scroll-indicator a:hover {
    border-color: var(--gold);
    color: var(--gold);
}
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

/* ===== TRUST STRIP ===== */
.trust-strip {
    background: var(--navy);
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 3px solid var(--gold);
}
.trust-strip-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.85);
    font-family: var(--font-heading);
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 10px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 30px;
    transition: var(--transition);
}
.trust-badge:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--gold);
    color: var(--white);
}
.trust-badge i { color: var(--gold); font-size: 14px; }

/* ===== ABOUT SECTION ===== */
.about-section { background: var(--off-white); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}
.about-image-wrapper {
    position: relative;
    padding: 20px;
}
.about-logo-display {
    background: linear-gradient(145deg, var(--navy) 0%, var(--navy-mid) 100%);
    border-radius: var(--radius-xl);
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.about-logo-display::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(30,79,163,0.4), transparent 70%);
}
.about-logo-display img { width: 80%; max-width: 280px; position: relative; z-index: 1; }
.about-badge-float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    font-size: 12.5px;
}
.about-badge-float i { font-size: 20px; color: var(--royal-blue); }
.about-badge-float strong { display: block; font-size: 13px; color: var(--text-dark); font-weight: 700; }
.about-badge-float small { color: var(--text-light); font-size: 11px; }
.about-badge-1 { bottom: 20px; left: -10px; }
.about-badge-2 { top: 20px; right: -10px; }

.about-content-col .section-label { margin-bottom: 8px; }
.about-lead {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 16px;
}
.about-body {
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 32px;
}

/* MVV Tabs */
.mvv-tabs { border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.mvv-tab-btns { display: flex; background: var(--off-white); border-bottom: 1px solid var(--border); }
.mvv-btn {
    flex: 1;
    padding: 14px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
    margin-bottom: -1px;
}
.mvv-btn:hover { color: var(--royal-blue); background: rgba(30,79,163,0.05); }
.mvv-btn.active { color: var(--royal-blue); border-bottom-color: var(--royal-blue); background: var(--white); }
.mvv-tab-content { padding: 28px; background: var(--white); }
.mvv-panel { display: none; }
.mvv-panel.active { display: block; }
.mvv-icon { font-size: 32px; color: var(--royal-blue); margin-bottom: 12px; }
.mvv-panel p { color: var(--text-mid); line-height: 1.8; }
.values-list { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.values-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}
.values-list i { color: var(--royal-blue); font-size: 14px; }

/* ===== SERVICES SECTION ===== */
.services-section { background: var(--white); }
.services-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}
.services-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border: 2px solid var(--border);
    border-radius: 40px;
    background: var(--white);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--text-mid);
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.services-tab-btn:hover {
    border-color: var(--royal-blue);
    color: var(--royal-blue);
    background: rgba(30,79,163,0.04);
}
.services-tab-btn.active {
    background: var(--navy);
    border-color: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow-md);
}
.services-grid {
    display: none;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}
.services-grid.active { display: grid; }
.service-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--royal-blue), var(--gold));
    transform: scaleX(0);
    transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); background: var(--white); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--navy), var(--royal-blue));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 6px 20px rgba(30,79,163,0.3);
}
.service-icon i { font-size: 22px; color: var(--white); }
.service-card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.service-card p { color: var(--text-light); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.service-tag {
    display: inline-block;
    padding: 4px 14px;
    background: rgba(30,79,163,0.08);
    color: var(--royal-blue);
    font-size: 11px;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 20px;
}

/* ===== INDUSTRIES SECTION ===== */
.industries-section { background: var(--navy); }
.industries-section .section-label { background: rgba(255,255,255,0.1); color: var(--steel-light); }
.industries-section .section-title { color: var(--white); }
.industries-section .section-subtitle { color: rgba(255,255,255,0.65); }
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 16px;
}
.industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 16px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    color: rgba(255,255,255,0.8);
    font-family: var(--font-heading);
    font-size: 12.5px;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: default;
}
.industry-card:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-4px);
}
.industry-card i { font-size: 28px; color: var(--gold); transition: var(--transition); }
.industry-card:hover i { transform: scale(1.15); }

/* ===== WHY CHOOSE US ===== */
.why-section { background: var(--off-white); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}
.why-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 36px 32px;
    transition: var(--transition);
    position: relative;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(11,42,111,0.08), rgba(30,79,163,0.12));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: var(--transition);
}
.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--navy), var(--royal-blue));
}
.why-icon i { font-size: 24px; color: var(--royal-blue); transition: var(--transition); }
.why-card:hover .why-icon i { color: var(--white); }
.why-card h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}
.why-card p { color: var(--text-light); font-size: 14px; line-height: 1.7; }

.compliance-banner {
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    border-radius: var(--radius-lg);
    padding: 40px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
    box-shadow: var(--shadow-lg);
}
.compliance-banner-left {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    flex: 1;
}
.compliance-banner-left > i { font-size: 36px; color: var(--gold); margin-top: 4px; flex-shrink: 0; }
.compliance-banner-left h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}
.compliance-banner-left p { color: rgba(255,255,255,0.7); font-size: 14px; line-height: 1.7; }

/* ===== LEADERSHIP ===== */
.leadership-section { background: var(--white); }
.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
}
.leader-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 28px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}
.leader-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--royal-blue), var(--gold));
    transform: scaleY(0);
    transition: var(--transition);
}
.leader-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); background: var(--white); }
.leader-card:hover::before { transform: scaleY(1); }
.leader-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--royal-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(30,79,163,0.3);
}
.leader-avatar i { font-size: 22px; color: var(--white); }
.leader-info { flex: 1; }
.leader-info h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 4px;
}
.leader-role {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--royal-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.leader-info p { color: var(--text-light); font-size: 13.5px; line-height: 1.6; }
.leader-icon-badge {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(30,79,163,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    align-self: flex-start;
}
.leader-icon-badge i { font-size: 14px; color: var(--royal-blue); }

/* ===== CTA SECTION ===== */
.cta-section {
    position: relative;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
    padding: 100px 0;
    text-align: center;
    overflow: hidden;
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(30,79,163,0.08)' stroke-width='1'/%3E%3C/svg%3E") center/200px;
    opacity: 0.5;
}
.cta-content { position: relative; z-index: 2; }
.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}
.cta-content p {
    color: rgba(255,255,255,0.72);
    font-size: 17px;
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--off-white); }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 48px;
    align-items: start;
}
.contact-card-info {
    background: var(--navy);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: var(--white);
}
.contact-card-info h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 22px;
}
.contact-item-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-item-icon i { color: var(--gold); font-size: 15px; }
.contact-item strong { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.contact-item p { font-size: 14.5px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.contact-item a { color: rgba(255,255,255,0.85); }
.contact-item a:hover { color: var(--gold); }
.emergency-panel {
    display: flex;
    align-items: center;
    gap: 14px;
    background: rgba(200,151,58,0.15);
    border: 1px solid rgba(200,151,58,0.3);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    margin-top: 24px;
}
.emergency-panel > i { font-size: 22px; color: var(--gold); flex-shrink: 0; }
.emergency-panel strong { display: block; font-size: 13px; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.emergency-panel p { font-size: 12.5px; color: rgba(255,255,255,0.65); }

.contact-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}
.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14.5px;
    color: var(--text-dark);
    background: var(--off-white);
    transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--royal-blue);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(30,79,163,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success {
    display: none;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(34,197,94,0.1);
    border: 1px solid rgba(34,197,94,0.3);
    border-radius: var(--radius-sm);
    color: #16a34a;
    font-size: 14px;
    font-weight: 600;
    margin-top: 16px;
}
.form-success.visible { display: flex; }
.form-success i { font-size: 18px; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); }
.footer-top { padding: 80px 0 60px; }
.footer-top-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 48px;
}
.footer-logo { height: 64px; margin-bottom: 20px; }
.footer-brand p {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 24px;
    max-width: 300px;
}
.footer-emergency {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(200,151,58,0.12);
    border: 1px solid rgba(200,151,58,0.25);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    max-width: 240px;
}
.footer-emergency i { color: var(--gold); font-size: 18px; }
.footer-emergency small { display: block; font-size: 10.5px; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.footer-emergency strong { color: var(--white); font-size: 17px; font-family: var(--font-heading); }

/* Social Buttons in Footer */
.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 18px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: var(--transition);
    border: 2px solid transparent;
}
.social-btn.facebook {
    background: #1877F2;
    color: var(--white);
    border-color: #1877F2;
}
.social-btn.facebook:hover {
    background: transparent;
    color: #1877F2;
    border-color: #1877F2;
    transform: translateY(-2px);
}
.social-btn.whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}
.social-btn.whatsapp:hover {
    background: transparent;
    color: #25D366;
    border-color: #25D366;
    transform: translateY(-2px);
}
.social-btn i { font-size: 13px; }
.footer-links-col h4 {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(200,151,58,0.4);
}
.footer-links-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links-col a {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
    transition: var(--transition);
}
.footer-links-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
    background: rgba(0,0,0,0.3);
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 12.5px; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 54px;
    height: 54px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    z-index: 900;
    box-shadow: 0 6px 24px rgba(37,211,102,0.45);
    transition: var(--transition);
    animation: waPulse 2.5s ease infinite;
}
.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.1);
    color: var(--white);
    animation: none;
}
@keyframes waPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,0.45); }
    50% { box-shadow: 0 6px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.12); }
}

@media (max-width: 480px) {
    .whatsapp-float { bottom: 20px; left: 20px; width: 48px; height: 48px; font-size: 22px; }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--royal-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 900;
    box-shadow: var(--shadow-md);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--royal-blue); transform: translateY(-4px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .footer-top-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-image-wrapper { max-width: 420px; margin: 0 auto; }
    .contact-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
    .hero-stats { padding: 24px 20px; }
    .stat-item { padding: 0 16px; }
}

@media (max-width: 768px) {
    .section { padding: 72px 0; }

    .top-bar { display: none; }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        bottom: 0;
        width: 280px;
        background: var(--navy-dark);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 4px;
        transition: right 0.4s ease;
        z-index: 999;
        box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    }
    .nav-links.open { right: 0; }
    .nav-link { font-size: 15px; padding: 12px 16px; width: 100%; }
    .nav-cta { display: none; }
    .hamburger { display: flex; z-index: 1000; }

    .hero-stats { flex-direction: column; gap: 16px; padding: 28px 24px; }
    .stat-divider { width: 80%; height: 1px; }
    .stat-item { padding: 8px 0; }

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

    .contact-form { padding: 28px 24px; }
    .contact-card-info { padding: 28px 24px; }

    .compliance-banner { flex-direction: column; align-items: flex-start; padding: 32px; }

    .footer-top-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }

    .services-tab-btn { padding: 12px 20px; font-size: 12px; }

    .about-badge-1, .about-badge-2 { position: static; margin-top: 12px; }
    .about-image-wrapper { padding: 10px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 30px; }
    .hero-subtitle { font-size: 14px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .btn-large { padding: 14px 28px; font-size: 13px; }
    .industries-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
    .leadership-grid { grid-template-columns: 1fr; }
    .back-to-top { bottom: 20px; right: 20px; }
    .section-title { font-size: 24px; }
    .trust-strip-inner { gap: 8px; }
    .trust-badge { padding: 8px 14px; font-size: 11.5px; }
}
