/* 
   Shine Security - Custom Premium Design System
   Vanilla CSS with rich aesthetics, glassmorphism, and animations
*/

/* ==========================================
   1. VARIABLES & RESET
   ========================================== */
:root {
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Outfit', sans-serif;
    
    /* Color Palette */
    --clr-bg-dark: #0f172a;       /* Slate 900 */
    --clr-bg-darker: #090d16;     /* Deep Slate/Black */
    --clr-bg-light: #f8fafc;      /* Slate 50 */
    --clr-bg-alt: #f1f5f9;        /* Slate 100 */
    --clr-text-dark: #0f172a;     /* Slate 900 */
    --clr-text-muted: #64748b;    /* Slate 500 */
    --clr-text-light: #ffffff;
    --clr-text-faded: #94a3b8;    /* Slate 400 */
    
    /* Accent Colors */
    --clr-gold: #d97706;          /* Amber 700 */
    --clr-gold-light: #fbbf24;    /* Amber 400 */
    --clr-crimson: #e11d48;       /* Rose 600 */
    --clr-crimson-dark: #be123c;  /* Rose 700 */
    --clr-green: #10b981;         /* Emerald 500 */
    --clr-green-glow: rgba(16, 185, 129, 0.4);
    
    /* Borders */
    --border-light: rgba(15, 23, 42, 0.08);
    --border-dark: rgba(255, 255, 255, 0.08);
    
    /* System Globals */
    --header-height: 80px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow-premium: 0 20px 40px -15px rgba(15, 23, 42, 0.08);
    --shadow-hover: 0 30px 60px -15px rgba(15, 23, 42, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

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

/* ==========================================
   2. TYPOGRAPHY & BUTTONS
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

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

.gradient-text {
    background: linear-gradient(135deg, var(--clr-gold) 0%, var(--clr-gold-light) 50%, var(--clr-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Custom Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-crimson) 0%, var(--clr-crimson-dark) 100%);
    color: var(--clr-text-light);
    box-shadow: 0 4px 15px rgba(225, 29, 72, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(225, 29, 72, 0.4);
    filter: brightness(1.1);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: rgba(15, 23, 42, 0.05);
    color: var(--clr-bg-dark);
    border: 1.5px solid rgba(15, 23, 42, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(15, 23, 42, 0.1);
    border-color: var(--clr-bg-dark);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

.btn-lg {
    padding: 14px 30px;
    font-size: 1rem;
}

/* ==========================================
   3. MAIN HEADER
   ========================================== */
.main-header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1400px;
    height: 82px;
    background: rgba(255, 255, 255, 0.85); /* Light glassmorphism */
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(15, 23, 42, 0.08); /* Dark subtle border for light theme */
    border-radius: 100px;
    z-index: 999;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08); /* Softer shadow */
    /* Smooth cubic-bezier transition for scrolling animation */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-header.scrolled {
    top: 12px;
    width: 80%; /* Modern floating shrink effect */
    height: 68px;
    background: rgba(15, 23, 42, 0.94); /* Dark background */
    border-color: rgba(251, 191, 36, 0.15); /* Glowing gold border */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.header-container {
    height: 100%;
    padding: 0 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand Logo (Centered golden wings, with professional tagline below) */
.brand-logo {
    display: flex;
    align-items: center;
}

.logo-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.logo-tagline {
    font-size: 7px;
    font-weight: 700;
    color: #fdb71b; /* Matching bright gold from logo.webp (#fdb71b) */
    text-shadow: 0 1px 1px rgba(9, 13, 22, 0.25); /* Crisp drop shadow for light background readability */
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: -6px; /* Bring closer to the wings */
    margin-bottom: 2px;
    white-space: nowrap;
    opacity: 0.9;
    font-family: var(--font-heading);
    transition: var(--transition-smooth);
}

.main-header.scrolled .logo-tagline {
    font-size: 5.5px;
    margin-top: -3px;
    opacity: 0.8;
}

@media (max-width: 480px) {
    .logo-tagline {
        font-size: 6px;
        margin-top: -4px;
    }
}

.logo-img {
    height: 76px; /* Restored to 76px for ideal layout balance */
    width: auto;
    /* Dark double drop shadow (1px crisp outline + soft depth shadow) to make logo pop on light header background */
    filter: drop-shadow(0 0 2px rgba(9, 13, 22, 0.45)) drop-shadow(0 3px 8px rgba(9, 13, 22, 0.25));
    transition: var(--transition-smooth);
}

.main-header.scrolled .logo-img {
    height: 48px; /* Slightly smaller to fit perfectly inside the 68px scrolled header height */
    /* Restore the premium gold glow shadow on scrolled dark background */
    filter: drop-shadow(0 0 8px rgba(251, 191, 36, 0.45));
}

.brand-logo:hover .logo-img {
    transform: scale(1.06) rotate(-3deg);
}

/* Desktop Navigation Menu */
.nav-menu {
    height: 100%;
}

.nav-list {
    display: flex;
    list-style: none;
    height: 100%;
    align-items: center;
    gap: 26px;
}

.nav-list > li {
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-link {
    color: var(--clr-text-muted); /* Darker default text for light background */
    font-size: 0.88rem;
    font-weight: 700;
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
}

.nav-link:hover,
.nav-link.active {
    color: var(--clr-text-dark); /* Dark active/hover on light header */
}

/* Overwrite nav-links color for scrolled dark header */
.main-header.scrolled .nav-link {
    color: var(--clr-text-faded); /* Light gray for dark background */
}

.main-header.scrolled .nav-link:hover,
.main-header.scrolled .nav-link.active {
    color: var(--clr-text-light); /* White hover for dark background */
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--clr-gold), var(--clr-gold-light));
    transition: var(--transition-smooth);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu Layout */
.nav-item-dropdown {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.dropdown-icon {
    font-size: 0.65rem;
    margin-left: 6px;
    transition: transform 0.3s ease, color 0.3s ease;
    color: var(--clr-text-muted); /* Darker dropdown icon by default */
}

.nav-item-dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
    color: var(--clr-text-dark);
}

.main-header.scrolled .dropdown-icon {
    color: var(--clr-text-faded);
}

.main-header.scrolled .nav-item-dropdown:hover .dropdown-icon {
    color: var(--clr-text-light);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 210px;
    background: rgba(255, 255, 255, 0.95); /* Light dropdown background */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(15, 23, 42, 0.08); /* Dark subtle border */
    border-radius: 8px;
    padding: 10px 0;
    box-shadow: 0 15px 40px rgba(15, 23, 42, 0.1);
    opacity: 0;
    visibility: hidden;
    list-style: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
}

/* Scrolled (dark dropdown menu) override */
.main-header.scrolled .dropdown-menu {
    background: rgba(22, 30, 46, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 10px 20px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--clr-text-muted); /* Darker default text for light theme */
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: left;
    transition: var(--transition-smooth);
}

.dropdown-item:hover {
    color: var(--clr-gold); /* Gold text on hover in light theme */
    background: rgba(15, 23, 42, 0.03);
    padding-left: 25px;
}

/* Scrolled (dark menu item) overrides */
.main-header.scrolled .dropdown-item {
    color: var(--clr-text-faded);
}

.main-header.scrolled .dropdown-item:hover {
    color: var(--clr-gold-light);
    background: rgba(255, 255, 255, 0.03);
}

/* Header Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* 24/7 Support Info Box */
.support-info {
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}

.support-text {
    display: flex;
    flex-direction: column;
}

.support-label {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--clr-text-muted); /* Slate-500 by default */
    letter-spacing: 1px;
    line-height: 1.2;
    transition: var(--transition-smooth);
}

.support-phone {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--clr-text-dark); /* Slate-900 for default light header */
    line-height: 1.2;
    font-family: var(--font-heading);
    transition: var(--transition-smooth);
}

/* Scrolled overrides for support box */
.main-header.scrolled .support-label {
    color: var(--clr-text-faded);
}

.main-header.scrolled .support-phone {
    color: #ffffff;
}

/* Separator Line */
.nav-separator {
    width: 1px;
    height: 28px;
    background-color: rgba(15, 23, 42, 0.08); /* Dark separator for default light theme */
    margin: 0 5px;
    transition: var(--transition-smooth);
}

/* Pill Action Button - Theme Gold Shimmer Animation */
.btn-pill-action {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 100%);
    color: var(--clr-bg-darker);
    border: none;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.5px;
    padding: 12px 26px;
    border-radius: 100px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.btn-pill-action::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    transition: none;
    z-index: -1;
}

.btn-pill-action:hover::before {
    left: 150%;
    transition: all 0.8s ease-in-out;
}

.btn-pill-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(217, 119, 6, 0.45);
    filter: brightness(1.05);
}

.btn-pill-action:active {
    transform: translateY(0);
}

/* Pulse Dot Animation */
.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
    position: relative;
}

.pulse-dot.crimson {
    background-color: var(--clr-crimson);
    box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7);
    animation: pulse-crimson 2s infinite;
}

.pulse-dot.gold {
    background-color: var(--clr-gold-light);
    box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
    animation: pulse-gold 2s infinite;
}

@keyframes pulse-crimson {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(225, 29, 72, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0);
    }
}

@keyframes pulse-gold {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(251, 191, 36, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(251, 191, 36, 0);
    }
}

/* Threat Level Badge Styling */
.threat-level-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(225, 29, 72, 0.08);
    border: 1px solid rgba(225, 29, 72, 0.18);
    color: #fda4af;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.threat-level-badge:hover {
    background: rgba(225, 29, 72, 0.15);
    border-color: rgba(225, 29, 72, 0.35);
    color: #ffffff;
    transform: translateY(-1px);
}

.header-threat-badge {
    margin-right: 5px;
    /* Light header styling by default */
    background: rgba(225, 29, 72, 0.06);
    border-color: rgba(225, 29, 72, 0.18);
    color: var(--clr-crimson);
}

.header-threat-badge:hover {
    background: rgba(225, 29, 72, 0.1);
    color: var(--clr-crimson-dark);
    border-color: rgba(225, 29, 72, 0.3);
}

/* Scrolled (dark header) overrides for threat badge */
.main-header.scrolled .header-threat-badge {
    background: rgba(225, 29, 72, 0.08);
    border-color: rgba(225, 29, 72, 0.18);
    color: #fda4af;
}

.main-header.scrolled .header-threat-badge:hover {
    background: rgba(225, 29, 72, 0.15);
    border-color: rgba(225, 29, 72, 0.35);
    color: #ffffff;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--clr-text-dark); /* Dark by default for light header */
    font-size: 1.5rem;
    cursor: pointer;
    padding: 5px;
    transition: var(--transition-smooth);
}

.main-header.scrolled .mobile-toggle {
    color: var(--clr-text-light); /* Light for scrolled dark header */
}

/* ==========================================
   4. MOBILE NAVIGATION DRAWER
   ========================================== */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: var(--clr-bg-dark);
    z-index: 1001;
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    padding: 30px;
    transition: var(--transition-bounce);
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.drawer-close {
    background: none;
    border: none;
    color: var(--clr-text-light);
    font-size: 1.8rem;
    cursor: pointer;
}

.drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 25px;
    flex-grow: 1;
}

.drawer-link {
    color: var(--clr-text-faded);
    font-size: 1.15rem;
    font-family: var(--font-heading);
    font-weight: 600;
    display: block;
    transition: var(--transition-smooth);
}

.drawer-link:hover,
.drawer-link.active {
    color: var(--clr-text-light);
    padding-left: 5px;
}

/* Mobile Drawer Dropdown Accordion */
.drawer-item-dropdown {
    display: flex;
    flex-direction: column;
}

.drawer-link-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.drawer-dropdown-toggle-btn {
    background: transparent;
    border: none;
    color: var(--clr-text-faded);
    font-size: 1rem;
    cursor: pointer;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.drawer-dropdown-toggle-btn.open {
    transform: rotate(180deg);
    color: var(--clr-gold-light);
}

.drawer-dropdown-menu {
    display: none;
    list-style: none;
    padding-left: 15px;
    border-left: 1.5px solid rgba(251, 191, 36, 0.2);
    margin-top: 10px;
    flex-direction: column;
    gap: 12px;
}

.drawer-dropdown-menu.open {
    display: flex;
}

.drawer-dropdown-link {
    color: var(--clr-text-faded);
    font-size: 0.95rem;
    font-family: var(--font-heading);
    font-weight: 500;
    text-decoration: none;
    display: block;
    transition: var(--transition-smooth);
}

.drawer-dropdown-link:hover {
    color: var(--clr-gold-light);
    padding-left: 5px;
}

.drawer-footer {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ==========================================
   5. HERO SECTION
   ========================================== */
.hero-section {
    background: linear-gradient(180deg, #ecf3f9 0%, #f1f5f9 100%);
    padding-top: calc(var(--header-height) + 60px);
    padding-bottom: 120px;
    position: relative;
    overflow: hidden;
}

/* Background Gradients */
.hero-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.05) 0%, rgba(217, 119, 6, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* Hero Badge */
.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--clr-text-light);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.03);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 25px;
}

.hero-badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--clr-crimson);
}

.hero-taglines {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.4rem;
    line-height: 1.15;
    color: var(--clr-bg-dark);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-description {
    color: var(--clr-text-muted);
    font-size: 1.05rem;
    margin-bottom: 35px;
    max-width: 580px;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    width: 100%;
    margin-bottom: 40px;
}

.hero-footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding-top: 20px;
    width: 100%;
}

.footer-links-title {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
    font-weight: 600;
}

.links-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.verify-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--clr-crimson);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border-bottom: 1.5px solid transparent;
}

.verify-link:hover {
    color: var(--clr-crimson-dark);
    border-color: var(--clr-crimson-dark);
}

/* ==========================================
   6. HERO GRAPHIC (FULL BACKGROUND SLIDER & NEON UK MAP)
   ========================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: 120px;
    background-color: var(--clr-bg-darker);
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Fullscreen Background Slider */
.hero-slider-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slider-bg-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    visibility: hidden;
    /* transition for dynamic background switch */
    transition: opacity 1.2s ease-in-out, visibility 1.2s ease-in-out, transform 6s ease-in-out;
    transform: scale(1.0);
}

.slider-bg-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1.05); /* Premium Ken Burns zoom-in effect */
}

/* Dark gradient overlay to blend map and text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(9, 13, 22, 0.96) 0%, 
        rgba(9, 13, 22, 0.90) 35%, 
        rgba(9, 13, 22, 0.65) 65%, 
        rgba(9, 13, 22, 0.88) 100%
    );
    z-index: 2;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* Hero Badge */
.hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 30px;
}

.hero-badge-text {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--clr-gold-light);
}

/* Text Slides (Heading & Descriptions) */
.hero-text-slider {
    position: relative;
    width: 100%;
    margin-bottom: 25px;
}

.text-slide {
    display: none;
}

.text-slide.active {
    display: block;
    animation: slideUpFade 0.7s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideUpFade {
    0% {
        opacity: 0;
        transform: translateY(25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-taglines {
    color: var(--clr-gold-light);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -1.5px;
    font-family: var(--font-heading);
    font-weight: 800;
}

.hero-description {
    color: var(--clr-text-faded);
    font-size: 1.05rem;
    line-height: 1.55;
    max-width: 580px;
}

/* Modern Timeline Progress Indicators */
.hero-timeline-nav {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    width: 100%;
    max-width: 580px;
}

.timeline-indicator {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    opacity: 0.45;
    transition: var(--transition-smooth);
}

.timeline-indicator:hover,
.timeline-indicator.active {
    opacity: 1;
}

.indicator-label {
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1.2px;
    transition: var(--transition-smooth);
}

@media (max-width: 768px) {
    .indicator-label {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .hero-timeline-nav {
        gap: 12px;
    }
    .indicator-label {
        font-size: 0.65rem;
        letter-spacing: 0.5px;
    }
}

.indicator-progress-bar {
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.12);
    border-radius: 99px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    width: 0%;
    height: 100%;
    background-color: var(--clr-gold);
    border-radius: 99px;
    transition: width 0.1s linear; /* Smooth loading transition run by JS */
}

/* Adjust layout actions and footer link tags for dark background context */
.hero-cta-group {
    display: flex;
    gap: 15px;
    width: 100%;
    margin-bottom: 45px;
}

.hero-cta-group .btn-secondary {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
}

.hero-cta-group .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.hero-footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 25px;
    width: 100%;
}

.hero-footer-links .footer-links-title {
    color: var(--clr-text-faded);
}

.hero-footer-links .verify-link {
    color: var(--clr-gold-light);
}

.hero-footer-links .verify-link:hover {
    color: #ffffff;
    border-color: #ffffff;
}

/* UK Map Container (Right Column) */
.map-wrapper {
    position: relative;
    width: 420px;
    height: 540px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.uk-map-container {
    position: relative;
    width: 100%;
    height: 100%;
    background: transparent;
}

.uk-map-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Map background is already 100% transparent. Filter converts blue outline to glowing gold. */
    filter: sepia(1) saturate(5.5) hue-rotate(338deg) brightness(1.2) contrast(1.1);
    opacity: 0.82;
    transition: var(--transition-smooth);
}

/* Horizontal scan line */
.scan-line {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(217, 119, 6, 0) 0%, rgba(251, 191, 36, 0.85) 50%, rgba(217, 119, 6, 0) 100%);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.7);
    z-index: 5;
    animation: scan-line-anim 6s ease-in-out infinite;
    pointer-events: none;
}

@keyframes scan-line-anim {
    0% { top: 12%; opacity: 0.1; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { top: 88%; opacity: 0.1; }
}

/* Pulsing City Hotspots */
.map-hotspot {
    position: absolute;
    width: 16px;
    height: 16px;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
}

.hotspot-dot {
    width: 8px;
    height: 8px;
    background-color: var(--clr-gold-light);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1.5px solid #ffffff;
    box-shadow: 0 0 8px var(--clr-gold);
    transition: var(--transition-smooth);
}

/* Gentle gold pulse for inactive locations */
.hotspot-pulse {
    width: 24px;
    height: 24px;
    border: 1.5px solid rgba(251, 191, 36, 0.4);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    pointer-events: none;
    animation: pulse-spot-gentle 3s infinite ease-out;
}

@keyframes pulse-spot-gentle {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0.8; }
    100% { transform: translate(-50%, -50%) scale(1.6); opacity: 0; }
}

/* Active City Hotspot: Glowing Crimson Dot and Radar Ripples */
.map-hotspot.active .hotspot-dot {
    background-color: var(--clr-crimson);
    box-shadow: 0 0 15px var(--clr-crimson);
    transform: translate(-50%, -50%) scale(1.35);
    border-color: #ffffff;
}

/* Hide gentle inactive pulse when active */
.map-hotspot.active .hotspot-pulse {
    display: none;
}

/* Advanced Sonar Pulse ripples (Dual Rings) */
.map-hotspot.active::before,
.map-hotspot.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    border: 2px solid var(--clr-crimson);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    box-shadow: 0 0 8px rgba(225, 29, 72, 0.4);
}

.map-hotspot.active::before {
    animation: sonar-ripple-1 2s infinite cubic-bezier(0.1, 0.8, 0.3, 1);
}

.map-hotspot.active::after {
    animation: sonar-ripple-2 2s infinite cubic-bezier(0.1, 0.8, 0.3, 1);
    animation-delay: 0.65s;
}

@keyframes sonar-ripple-1 {
    0% { width: 8px; height: 8px; opacity: 1; transform: translate(-50%, -50%) scale(0.6); }
    100% { width: 52px; height: 52px; opacity: 0; transform: translate(-50%, -50%) scale(1.6); }
}

@keyframes sonar-ripple-2 {
    0% { width: 8px; height: 8px; opacity: 1; transform: translate(-50%, -50%) scale(0.6); }
    100% { width: 52px; height: 52px; opacity: 0; transform: translate(-50%, -50%) scale(1.6); }
}

/* Hotspot Tooltips */
.hotspot-tooltip {
    position: absolute;
    bottom: 22px;
    left: 50%;
    transform: translateX(-50%) translateY(5px);
    background: rgba(9, 13, 22, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--clr-text-light);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    border-radius: 4px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.map-hotspot:hover .hotspot-tooltip,
.map-hotspot.active .hotspot-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Badges Placement (Dark Glassmorphism UI) */
.map-status-badge {
    top: 40px;
    left: -40px;
    background: rgba(22, 30, 46, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.map-patrol-badge {
    bottom: 60px;
    right: -40px;
    background: rgba(22, 30, 46, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.map-status-badge .status-icon.green,
.map-patrol-badge .status-icon.green {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(16, 185, 129, 0.12) !important;
    color: var(--clr-green) !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
}

/* Floating Animation */
.animate-float {
    animation: floating-badge 4s ease-in-out infinite;
}

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

/* ==========================================
   7. VERIFICATION CARDS SECTION
   ========================================== */
.verification-section {
    background-color: transparent;
    padding-bottom: 120px;
    position: relative;
    z-index: 10;
}

.verification-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

/* Card Component */
.verification-card {
    background-color: var(--clr-text-light);
    border-top: 4px solid var(--clr-crimson);
    border-radius: 4px;
    padding: 30px;
    box-shadow: var(--shadow-premium);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: var(--transition-smooth);
    border-left: 1px solid rgba(15, 23, 42, 0.03);
    border-right: 1px solid rgba(15, 23, 42, 0.03);
    border-bottom: 1px solid rgba(15, 23, 42, 0.03);
}

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

.card-tag {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--clr-text-muted);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.card-title {
    font-size: 1.6rem;
    color: var(--clr-bg-dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

/* Dropdown Content */
.card-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--clr-crimson);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    margin-bottom: 15px;
    padding: 5px 0;
}

.card-dropdown-toggle i {
    transition: var(--transition-smooth);
}

.card-dropdown-toggle.active i {
    transform: rotate(180deg);
}

.card-details-content {
    width: 100%;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    margin-bottom: 0px;
}

.card-details-content.show {
    max-height: 200px;
    opacity: 1;
    margin-bottom: 20px;
}

.details-inner {
    background-color: var(--clr-bg-alt);
    border-radius: 4px;
    padding: 15px;
    font-size: 0.82rem;
    color: var(--clr-bg-dark);
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-left: 3px solid var(--clr-gold);
}

.details-inner p {
    margin: 0;
}

/* Buttons in Cards */
.btn-card-action {
    width: 100%;
    background-color: var(--clr-bg-dark);
    color: var(--clr-text-light);
    font-size: 0.82rem;
    padding: 12px;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
}

.btn-card-action:hover {
    background-color: var(--clr-gold);
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.3);
}

.btn-card-action i {
    font-size: 0.75rem;
}

.card-description {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

/* ==========================================
   8. SCROLLING BAR (MARQUEE TICKER)
   ========================================== */
.marquee-bar {
    background-color: var(--clr-bg-darker);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 22px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    z-index: 10;
}

.marquee-track {
    display: flex;
    width: max-content;
}

.marquee-content {
    display: flex;
    align-items: center;
    animation: scroll-left 30s linear infinite;
    gap: 40px;
    padding-right: 40px;
}

.marquee-content span {
    color: var(--clr-text-light);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 2px;
}

.marquee-separator {
    width: 6px;
    height: 6px;
    background-color: var(--clr-gold);
    border-radius: 50%;
    display: inline-block;
    filter: drop-shadow(0 0 3px var(--clr-gold));
}

@keyframes scroll-left {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

/* Speed adjustment on hover to let users read */
.marquee-bar:hover .marquee-content {
    animation-play-state: paused;
}

/* ==========================================
   9. MODALS & FORMS
   ========================================== */
.modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -45%) scale(0.95);
    width: 90%;
    max-width: 500px;
    background-color: var(--clr-text-light);
    border-radius: 8px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.modal.open {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    visibility: visible;
}

.modal-dialog {
    padding: 30px;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.modal-title {
    color: var(--clr-bg-dark);
    font-size: 1.3rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    color: var(--clr-text-muted);
}

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

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(9, 13, 22, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Forms */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--clr-bg-dark);
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid rgba(15, 23, 42, 0.15);
    border-radius: 4px;
    font-family: var(--font-primary);
    font-size: 0.9rem;
    transition: var(--transition-smooth);
}

.form-control:focus {
    outline: none;
    border-color: var(--clr-gold);
    box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

/* ==========================================
   10. RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================== */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 2.8rem;
    }
    .cards-grid {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .main-header {
        top: 10px;
        width: 94%;
        height: 70px;
    }

    .logo-img {
        height: 48px; /* Safe size for mobile screen header height */
    }

    .header-container {
        padding: 0 24px;
    }
    
    .nav-menu,
    .support-info,
    .nav-separator,
    .btn-pill-action {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
        padding: 0 20px;
    }
    
    .hero-content {
        align-items: center;
    }
    
    .hero-description {
        margin: 0 auto 35px auto;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .links-wrapper {
        justify-content: center;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: -40px auto 0 auto;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-lg {
        width: 100%;
    }
    
    .map-wrapper {
        width: 320px;
        height: 420px;
    }
    
    .map-status-badge {
        top: 20px;
        left: -10px;
    }
    
    .map-patrol-badge {
        bottom: 30px;
        right: -15px;
    }
}

/* ==========================================
   10. SOLUTIONS & COMPLIANCE SEAMLESS WRAPPER
   ========================================== */
.solutions-compliance-wrapper {
    position: relative;
    background-color: #ffffff;
    background-image: url('map_bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    z-index: 5;
}

.solutions-section {
    position: relative;
    background: transparent; /* Seamless transparency to reveal wrapper background */
    padding: 130px 0 60px 0;
    z-index: 5;
}

/* Overlapping Stats Bar */
.stats-overlap-container {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1240px;
    padding: 0 20px;
    z-index: 10;
}

.stats-overlap-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px; /* Gap between individual cards */
}

.stat-item {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 10px 30px rgba(9, 13, 22, 0.05);
    border-radius: 12px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(9, 13, 22, 0.12);
    border-color: rgba(217, 119, 6, 0.2);
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem; /* Increased for premium readability */
    font-weight: 800;
    color: #0c1a30; /* Dark slate blue */
    line-height: 1.2;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--clr-text-muted); /* Darker slate-500 for better contrast on white background */
    font-weight: 600;
    text-transform: capitalize;
}

/* Solutions Split Layout */
.solutions-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 70px;
    align-items: center;
}

.solutions-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.solutions-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-gold);
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.solutions-title {
    font-size: 2.75rem;
    line-height: 1.15;
    font-weight: 800;
    color: #0c1a30;
    margin-bottom: 24px;
    letter-spacing: -1.2px;
    font-family: var(--font-heading);
}

.solutions-description {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--clr-text-faded);
}

/* Right Side Stack of Cards */
.solutions-right {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dark-solution-card {
    background-color: #0c1a30; /* Dark slate blue from screenshot */
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 15px 35px rgba(12, 26, 48, 0.15);
    color: #ffffff;
    transition: all 0.4s ease;
}

.dark-solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(12, 26, 48, 0.25);
}

.solution-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.solution-card-icon {
    font-size: 1.45rem;
    color: var(--clr-gold-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution-card-title {
    font-size: 1.22rem;
    font-weight: 700;
    color: #ffffff;
    font-family: var(--font-heading);
}

.solution-card-text {
    font-size: 0.92rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.82);
}

/* Two side-by-side cards */
.solution-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.light-solution-card {
    background-color: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.05);
    border-radius: 12px;
    padding: 26px;
    box-shadow: 0 8px 30px rgba(9, 13, 22, 0.03);
    transition: all 0.4s ease;
}

.light-solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(9, 13, 22, 0.08);
}

.light-solution-card .solution-card-title {
    color: #0c1a30;
    font-size: 1.15rem;
}

.light-solution-card .solution-card-text {
    color: var(--clr-text-faded);
    font-size: 0.88rem;
}

.solution-card-icon.blue-icon {
    color: #0c1a30; /* Dark slate blue icon */
}

/* Responsive overrides for solutions grid */
@media (max-width: 992px) {
    .solutions-section {
        padding: 80px 0 40px 0;
    }
    
    .stats-overlap-container {
        position: relative;
        top: 0;
        left: 0; /* Reset left positioning on mobile/tablet to prevent horizontal shift and overflow */
        transform: none;
        margin-top: -60px; /* Overlap dark hero section natively on tablet */
        margin-bottom: 40px;
    }
    
    .stats-overlap-bar {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablet */
        gap: 16px;
    }
    
    .stat-item {
        padding: 20px 16px;
    }
    
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .solutions-left {
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .stats-overlap-container {
        margin-top: -40px; /* Adjust overlap space on small mobile */
        margin-bottom: 30px;
    }
    
    .stats-overlap-bar {
        grid-template-columns: repeat(2, 1fr); /* 2x2 grid on mobile */
        gap: 10px;
    }
    
    .stat-item {
        padding: 16px 10px;
    }
    
    .stat-number {
        font-size: 1.35rem;
        word-break: break-word;
    }
    
    .stat-title {
        font-size: 0.75rem;
    }
    
    .stat-desc {
        font-size: 0.65rem;
        line-height: 1.35;
    }
    
    .solutions-title {
        font-size: 2.1rem;
    }
    
    .solution-cards-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 400px) {
    .stat-number {
        font-size: 1.15rem;
    }
    .stat-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 1200px) {
    .header-threat-badge {
        display: none !important;
    }
}

/* ==========================================
   11. SERVICES SECTION (REFERENCE CARD GRID)
   ========================================== */
.services-section {
    position: relative;
    background-color: var(--clr-bg-light);
    padding: 100px 0 120px 0;
    z-index: 10;
}

.services-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-tagline {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-gold);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    display: block;
}

.services-main-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0c1a30;
    font-family: var(--font-heading);
    letter-spacing: -0.8px;
}

.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Service Card Components */
.service-card {
    background-color: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.04);
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(9, 13, 22, 0.02);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.18);
    border-color: var(--clr-gold-light);
}

.service-card.highlighted {
    border: 2px solid var(--clr-gold-light);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.05);
}

.service-card.highlighted:hover {
    border-color: var(--clr-gold);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.22);
}

.service-icon-box {
    background-color: #0c1a30;
    color: var(--clr-gold-light);
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-box {
    background-color: var(--clr-gold-light);
    color: #0c1a30;
    transform: scale(1.05);
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0c1a30;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.service-card-desc {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--clr-text-faded);
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-card-link {
    font-size: 0.8rem;
    font-weight: 800;
    color: #0c1a30;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.service-card-link i {
    font-size: 0.72rem;
    transition: transform 0.3s ease;
}

.service-card-link:hover {
    color: var(--clr-gold);
}

.service-card-link:hover i {
    transform: translateX(4px);
}

/* Call To Action Card (Double width in grid) */
.service-card-cta {
    grid-column: span 3;
    background-color: #0c1a30;
    color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    box-shadow: 0 15px 35px rgba(12, 26, 48, 0.15);
    transition: all 0.4s ease;
}

.service-card-cta:hover {
    box-shadow: 0 20px 45px rgba(12, 26, 48, 0.25);
}

.cta-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

.cta-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    max-width: 650px;
}

.cta-card-actions {
    display: flex;
    gap: 16px;
    width: 100%;
}

.btn-outline-white {
    background: transparent;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.82rem;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline-white:hover {
    background: #ffffff;
    color: #0c1a30;
    border-color: #ffffff;
    transform: translateY(-1px);
}

/* Responsiveness overrides for services section */
@media (max-width: 1024px) {
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-card-cta {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 80px 0 80px 0;
    }
    
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card-cta {
        grid-column: span 1;
        padding: 30px;
    }
    
    .cta-card-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }
    
    .services-main-title {
        font-size: 2.1rem;
    }
}

/* ==========================================
   12. SECTORS SECTION (IMAGE GRID)
   ========================================== */
.sectors-section {
    position: relative;
    background-color: #ffffff;
    padding: 110px 0;
    z-index: 10;
}

.sectors-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

.sectors-header-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: flex-end;
}

.sectors-tagline-small {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--clr-gold);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 12px;
    display: block;
}

.sectors-main-title {
    font-size: 2.8rem;
    line-height: 1.1;
    font-weight: 800;
    color: #0c1a30;
    font-family: var(--font-heading);
    letter-spacing: -1.2px;
}

.sectors-header-desc {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--clr-text-faded);
    margin-bottom: 5px;
}

.sectors-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* Sector Card layout */
.sector-card {
    position: relative;
    height: 360px;
    border-radius: 12px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    padding: 32px;
    box-shadow: 0 8px 30px rgba(9, 13, 22, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.sector-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.25);
    border-color: var(--clr-gold-light);
}

.sector-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(12, 26, 48, 0.2) 0%, rgba(12, 26, 48, 0.8) 100%);
    transition: opacity 0.4s ease;
    z-index: 1;
}

.sector-card:hover .sector-card-overlay {
    background: linear-gradient(180deg, rgba(12, 26, 48, 0.15) 0%, rgba(12, 26, 48, 0.85) 100%);
}

.sector-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    text-align: center;
}

.sector-card-badge {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 15px;
    letter-spacing: 0.8px;
    transition: all 0.3s ease;
}

.sector-card-badge.gold-badge {
    color: #0c1a30;
    background: var(--clr-gold-light);
    border-color: var(--clr-gold-light);
}

.sector-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    font-family: var(--font-heading);
    line-height: 1.35;
    max-width: 260px;
}

.sector-card-link-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    padding: 9px 22px;
    border-radius: 100px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.sector-card-link-btn i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.sector-card-link-btn:hover {
    background: #ffffff;
    color: #0c1a30;
    border-color: #ffffff;
}

.sector-card-link-btn:hover i {
    transform: translateX(4px);
}

/* Responsiveness overrides for sectors section */
@media (max-width: 992px) {
    .sectors-header-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .sectors-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .sectors-section {
        padding: 60px 0;
    }
    
    .sectors-cards-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns grid on mobile */
        gap: 12px;
    }
    
    .sectors-main-title {
        font-size: 1.8rem;
    }
    
    .sector-card {
        height: 200px; /* Reduced from 330px to save vertical space */
        padding: 16px;
    }
    
    .sector-card-title {
        font-size: 1.1rem;
        margin-bottom: 6px;
    }
    
    .sector-card-badge {
        font-size: 0.65rem;
        padding: 3px 6px;
        margin-bottom: 6px;
    }
    
    .sector-card-link-btn {
        padding: 5px 12px;
        font-size: 0.62rem;
        gap: 4px;
    }
    
    .sector-card-link-btn i {
        font-size: 0.55rem;
    }
}

/* ==========================================
   13. COOKIE CONSENT BANNER
   ========================================== */
.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    width: calc(100% - 48px);
    max-width: 380px; /* Reduced from 480px for a much cleaner, compact look */
    background: rgba(15, 23, 42, 0.95); /* Deep slate-black */
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid var(--clr-gold); /* Golden premium stripe highlight */
    border-radius: 8px;
    padding: 18px 20px; /* Reduced padding for compact layout */
    z-index: 2000;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    gap: 14px;
    opacity: 0;
    transform: translateY(30px);
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}

.cookie-title {
    color: var(--clr-text-light);
    font-size: 0.85rem; /* Slightly smaller for cleaner look */
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
}

.cookie-title i {
    color: var(--clr-gold-light);
    font-size: 0.95rem;
}

.cookie-text {
    color: var(--clr-text-faded);
    font-size: 0.76rem; /* Reduced from 0.82rem for premium density */
    line-height: 1.45;
}

.cookie-link {
    color: var(--clr-gold-light);
    text-decoration: underline;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.cookie-link:hover {
    color: #ffffff;
}

.cookie-actions {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space out preferences link and action buttons */
    gap: 12px;
}

.cookie-btn-link {
    background: transparent;
    border: none;
    color: var(--clr-text-faded);
    font-size: 0.72rem;
    text-decoration: underline;
    cursor: pointer;
    padding: 0;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition-smooth);
}

.cookie-btn-link:hover {
    color: #ffffff;
}

.cookie-btn-group {
    display: flex;
    gap: 8px;
}

/* Cookie buttons */
.btn-cookie-accept,
.btn-cookie-reject {
    font-family: var(--font-heading);
    font-size: 0.74rem;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
}

.btn-cookie-accept {
    background: linear-gradient(135deg, var(--clr-gold-light) 0%, var(--clr-gold) 100%);
    color: var(--clr-bg-darker);
    font-weight: 800;
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.2);
}

.btn-cookie-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(217, 119, 6, 0.3);
    filter: brightness(1.1);
}

.btn-cookie-reject {
    background: rgba(255, 255, 255, 0.08);
    color: var(--clr-text-light);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-weight: 700;
    padding: 5px 12px;
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

/* Mobile responsive for cookie banner */
@media (max-width: 576px) {
    .cookie-banner {
        bottom: 16px;
        left: 16px;
        width: calc(100% - 32px);
        max-width: none;
        padding: 16px;
    }
    
    .cookie-actions {
        flex-direction: column-reverse; /* Stacks button group on top, manage link below */
        align-items: stretch;
        gap: 10px;
    }
    
    .cookie-btn-group {
        width: 100%;
    }
    
    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
        text-align: center;
        padding: 8px;
    }
    
    .cookie-btn-link {
        text-align: center;
        margin-top: 4px;
    }
}

/* ==========================================
   14. CREDENTIALS STATS SECTION
   ========================================== */
.credentials-section {
    background-color: var(--clr-bg-darker); /* Deep slate-black */
    padding: 100px 0;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.credentials-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.credential-card {
    background: rgba(22, 30, 46, 0.4); /* Dark blue slate tint */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 40px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.credential-card:hover {
    transform: translateY(-6px);
    background: rgba(22, 30, 46, 0.65);
    border-color: rgba(217, 119, 6, 0.35); /* Subtle gold glow border */
    box-shadow: 0 15px 35px rgba(217, 119, 6, 0.15);
}

.credential-val {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--clr-gold-light); /* Golden amber value matching brand */
    line-height: 1;
    margin-bottom: 14px;
    font-family: var(--font-heading);
    letter-spacing: -1px;
}

.credential-label {
    color: var(--clr-text-light);
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
    font-family: var(--font-heading);
}

.credential-desc {
    color: var(--clr-text-muted);
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.45;
}

/* Responsiveness overrides for credentials section */
@media (max-width: 992px) {
    .credentials-section {
        padding: 80px 0;
    }
    
    .credentials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .credentials-section {
        padding: 60px 0;
    }
    
    .credentials-container {
        padding: 0 20px;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .credential-card {
        padding: 30px 20px;
    }
    
    .credential-val {
        font-size: 2.8rem;
    }
}

/* ==========================================
   15. STICKY CONTACT SIDEBAR
   ========================================== */
.sticky-contact-sidebar {
    position: fixed;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1010; /* Sits above standard layouts but below modals */
    display: flex;
    flex-direction: column;
    gap: 3px; /* Minimal gap between squares */
}

.sticky-contact-item {
    display: flex;
    align-items: center;
    background-color: var(--clr-gold-light);
    color: #0c1a30; /* Dark slate blue icon */
    width: 50px;
    height: 50px;
    cursor: pointer;
    text-decoration: none;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.sticky-contact-item.email-item {
    border-top-right-radius: 6px;
}

.sticky-contact-item.query-item {
    border-bottom-right-radius: 6px;
}

.sticky-contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.sticky-contact-label {
    padding: 0 18px;
    font-size: 0.82rem;
    font-weight: 700;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    color: var(--clr-gold-light); /* Golden text matching mockup */
    background: #1e293b; /* Dark slate background matching mockup */
    height: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateX(-15px);
    transition: opacity 0.3s ease, transform 0.3s ease;
    flex-grow: 1;
}

/* Hover effects */
.sticky-contact-item:hover .sticky-contact-icon {
    transform: scale(1.15);
}

.sticky-contact-item:hover .sticky-contact-label {
    opacity: 1;
    transform: translateX(0);
}

/* Specific hover expansion widths matching label content length */
.sticky-contact-item.email-item:hover {
    width: 250px; /* Fits fulcrum@shinefm.co.uk */
}

.sticky-contact-item.phone-item:hover {
    width: 190px; /* Fits 020 8153 8961 */
}

.sticky-contact-item.query-item:hover {
    width: 210px; /* Fits REQUEST A QUOTE */
}

/* Mobile responsive: Hide sidebar to prevent screen overlap on mobile and tablets */
@media (max-width: 768px) {
    .sticky-contact-sidebar {
        display: none;
    }
}

/* ==========================================
   16. SECURITY FEATURES (INCLUSIONS)
   ========================================== */
.inclusions-section {
    background-color: #f8fafc; /* Premium off-white light background */
    padding: 100px 0;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(15, 23, 42, 0.06);
}

.inclusions-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.inclusions-header {
    text-align: center;
    margin-bottom: 60px;
}

.inclusions-tagline {
    color: var(--clr-gold); /* Gold tagline matching brand */
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}

.inclusions-title {
    color: #0f172a; /* Deep navy text for light theme */
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-top: 10px;
    letter-spacing: -0.5px;
}

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

.inclusion-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.05); /* Subtle dark border for light card */
    border-radius: 12px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03); /* Soft subtle shadow */
}

.inclusion-card:hover {
    transform: translateY(-6px);
    /* Brand gold/amber glow on hover */
    box-shadow: 0 15px 35px rgba(217, 119, 6, 0.18);
    border-color: rgba(217, 119, 6, 0.35);
}

.inclusion-icon-box {
    width: 56px;
    height: 56px;
    background: rgba(217, 119, 6, 0.08); /* Light gold/amber tint */
    color: var(--clr-gold); /* Gold icon */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.inclusion-card:hover .inclusion-icon-box {
    background: var(--clr-gold);
    color: #ffffff;
    transform: rotate(360deg);
}

.inclusion-card-title {
    color: #0f172a;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 750;
    margin-bottom: 12px;
}

.inclusion-card-desc {
    color: #64748b;
    font-size: 0.88rem;
    line-height: 1.6;
}

/* Responsiveness overrides for Inclusions Section */
@media (max-width: 992px) {
    .inclusions-section {
        padding: 80px 0;
    }
    
    .inclusions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .inclusions-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 576px) {
    .inclusions-section {
        padding: 50px 0;
    }
    
    .inclusions-container {
        padding: 0 20px;
    }
    
    .inclusions-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile! */
        gap: 12px;
    }
    
    .inclusion-card {
        padding: 16px 10px;
        text-align: center;
    }
    
    .inclusion-icon-box {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0 auto 10px auto;
    }
    
    .inclusion-card-title {
        font-size: 0.88rem;
        margin-bottom: 4px;
    }
    
    .inclusion-card-desc {
        font-size: 0.74rem;
        line-height: 1.4;
    }
    
    .inclusions-title {
        font-size: 1.8rem;
    }
}

/* ==========================================
   17. ACCREDITATIONS & CERTIFICATIONS SECTION
   ========================================== */
.accreditations-section {
    background-color: #f8fafc; /* Premium off-white base */
    background-image: radial-gradient(rgba(15, 23, 42, 0.04) 1.5px, transparent 1.5px); /* Premium dot-matrix blueprint background */
    background-size: 24px 24px;
    padding: 100px 0;
    position: relative;
    z-index: 10;
    border-top: 1px solid rgba(15, 23, 42, 0.05);
}

.accreditations-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.accreditations-header {
    text-align: center;
    margin-bottom: 60px;
}

.accreditations-sub {
    color: var(--clr-gold); /* Gold tagline matching brand color */
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
}

.accreditations-title {
    color: #0f172a; /* Deep navy text */
    font-size: 2.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-top: 10px;
    letter-spacing: -0.5px;
    text-transform: uppercase;
}

.accreditations-line {
    width: 60px;
    height: 4px;
    background-color: var(--clr-gold); /* Gold underline matching logo */
    margin: 20px auto 0 auto;
    border-radius: 2px;
}

.accreditations-grid.three-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    justify-content: center;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
}

.accreditations-grid.four-cols {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    justify-content: center;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
}

.accreditations-grid.five-cols {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    justify-content: center;
    align-items: center;
    max-width: 1240px;
    margin: 0 auto;
}

.accreditation-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 12px;
    padding: 24px;
    height: 140px; /* Adjusted height for brand image logos */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.02);
}

.accreditation-card a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.accreditation-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 119, 6, 0.35); /* Gold glow border on hover */
    box-shadow: 0 15px 35px rgba(217, 119, 6, 0.15); /* Gold glow shadow */
}

.accreditation-card img.accreditation-img {
    max-width: 100%;
    max-height: 80px; /* Scaled perfectly for high resolution png logos */
    object-fit: contain;
    filter: grayscale(100%) opacity(0.65); /* Soft premium monochrome default look */
    transition: all 0.4s ease;
}

.accreditation-card:hover img.accreditation-img {
    filter: grayscale(0%) opacity(1); /* Full color reveals dynamically on hover */
    transform: scale(1.04);
}

/* Responsiveness for Accreditations Section */
@media (max-width: 1100px) {
    .accreditations-grid.five-cols {
        gap: 16px;
    }
}

@media (max-width: 992px) {
    .accreditations-section {
        padding: 80px 0;
    }
    
    .accreditations-grid.three-cols,
    .accreditations-grid.four-cols,
    .accreditations-grid.five-cols {
        gap: 20px;
    }

    .accreditations-grid.five-cols {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .accreditations-title {
        font-size: 2.1rem;
    }
}

@media (max-width: 768px) {
    .accreditations-grid.three-cols {
        grid-template-columns: repeat(3, 1fr); /* Keep 3-columns readable on tablets */
    }
    .accreditations-grid.four-cols {
        grid-template-columns: repeat(2, 1fr); /* 2x2 grid on tablets for 4 items */
    }
    .accreditations-grid.five-cols {
        grid-template-columns: repeat(2, 1fr);
    }
    .accreditations-grid.five-cols .accreditation-card:last-child {
        grid-column: span 2;
        justify-self: center;
        width: 100%;
        max-width: 320px;
    }
    .accreditation-card {
        height: 120px;
        padding: 16px;
    }
    .accreditation-card img.accreditation-img {
        max-height: 65px;
    }
}

@media (max-width: 576px) {
    .accreditations-section {
        padding: 60px 0;
    }
    
    .accreditations-container {
        padding: 0 20px;
    }
    
    .accreditations-grid.three-cols,
    .accreditations-grid.four-cols {
        grid-template-columns: 1fr; /* Stacks vertically on small mobiles */
        gap: 16px;
        max-width: 320px;
    }
    
    .accreditations-grid.five-cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        max-width: 100%;
    }

    .accreditations-grid.five-cols .accreditation-card:last-child {
        grid-column: span 2;
        justify-self: center;
        width: 100%;
        max-width: 280px;
    }
    
    .accreditation-card {
        height: 110px;
        padding: 12px;
    }
    
    .accreditations-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 400px) {
    .accreditations-grid.five-cols {
        grid-template-columns: 1fr;
    }
    .accreditations-grid.five-cols .accreditation-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
}

/* ==========================================
   18. SITE FOOTER
   ========================================== */
.site-footer {
    background-color: var(--clr-bg-darker); /* Deep slate-black */
    color: var(--clr-text-faded);
    padding: 85px 0 0 0;
    position: relative;
    z-index: 10;
    border-top: 2px solid var(--clr-gold); /* Gold accent line matching brand logo */
}

.footer-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo-box {
    flex-shrink: 0;
    margin-right: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo-box .footer-logo {
    width: 150px; /* Force a larger visual width for the square image */
    height: 150px; /* Maintain square aspect ratio */
    object-fit: contain;
    margin-top: -35px; /* Crop out transparent vertical margins inside logo.webp */
    margin-bottom: -15px; /* Adjusted to leave space for tagline */
    display: block;
}

.footer-logo-tagline {
    font-size: 8px;
    font-weight: 700;
    color: #fdb71b; /* Matching bright gold from logo.webp (#fdb71b) */
    letter-spacing: 0.8px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0.85;
    font-family: var(--font-heading);
    margin-top: 0;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .footer-logo-box {
        margin-right: 0;
    }
}

.footer-contact-details {
    display: flex;
    gap: 50px;
    flex: 1;
    align-items: center;
    justify-content: flex-end; /* Shifts numbers and email towards the right */
    margin-right: 20px;
}

.footer-contact-item {
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.76rem;
    text-transform: uppercase;
    color: var(--clr-gold-light); /* Golden label text matching mockup */
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.contact-value {
    font-size: 1.15rem;
    color: #ffffff;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition-smooth);
    font-family: var(--font-heading);
}

.contact-value:hover {
    color: var(--clr-gold-light);
}

.footer-social-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    min-width: 150px;
}

.social-box-title {
    font-size: 0.76rem;
    text-transform: uppercase;
    color: var(--clr-text-faded);
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 14px;
}

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

.footer-social-links a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
}

.footer-social-links a:hover {
    background: var(--clr-gold);
    color: var(--clr-bg-darker);
    border-color: var(--clr-gold-light);
    transform: translateY(-3px);
}

.footer-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    margin: 0 0 50px 0;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr); /* 5 equal menu columns */
    gap: 30px;
    margin-bottom: 60px;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
}

.footer-col-title {
    font-size: 0.95rem;
    font-weight: 750;
    color: #ffffff;
    margin-bottom: 22px;
    font-family: var(--font-heading);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links-list a {
    font-size: 0.88rem;
    color: var(--clr-text-faded);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-links-list a:hover {
    color: var(--clr-gold-light);
    padding-left: 4px;
}

.footer-corporate-col .footer-corp-details p {
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 10px; /* Reduced vertical space */
    color: var(--clr-text-faded);
}

.footer-corporate-col .footer-corp-details p strong {
    color: #ffffff;
    font-weight: 600;
    display: inline; /* Display label and details inline on the same line */
}

/* Footer Bottom Bar */
.footer-bottom-bar {
    background: #05080e; /* Solid dark bar base */
    padding: 24px 0; /* Compact padding */
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom-info {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.footer-bottom-desc {
    font-size: 0.84rem;
    line-height: 1.65;
    color: var(--clr-text-faded);
    margin-bottom: 12px;
}

.footer-bottom-meta {
    font-size: 0.8rem;
    color: var(--clr-text-muted);
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.footer-bottom-copyright {
    font-size: 0.78rem;
    color: var(--clr-text-muted);
    opacity: 0.85;
}

/* Responsiveness for Site Footer */
@media (max-width: 992px) {
    .site-footer {
        padding: 65px 0 0 0;
    }
    
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .footer-corporate-col {
        grid-column: span 2; /* Corporate info spans full-width on tablet */
        margin-top: 15px;
    }
    
    .footer-top-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
    }
    
    .footer-contact-details {
        width: 100%;
        gap: 30px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    
    .footer-social-box {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .site-footer {
        padding: 50px 0 0 0;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr !important; /* Forces single column stack */
        gap: 0 !important;
    }
    
    .footer-links-col {
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .footer-links-col:last-child {
        border-bottom: none;
    }
    
    .footer-col-title {
        margin-bottom: 0;
        padding: 16px 0;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 0.9rem;
    }
    
    .footer-col-title::after {
        content: '\f078'; /* Font Awesome down chevron */
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        font-size: 0.75rem;
        color: var(--clr-gold-light);
        transition: transform 0.3s ease;
    }
    
    /* Collapsed state by default on tablet & mobile */
    .footer-links-list, 
    .footer-corp-details {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
    }
    
    /* Expanded active state */
    .footer-links-col.active .footer-links-list,
    .footer-links-col.active .footer-corp-details {
        max-height: 350px;
        padding-bottom: 20px;
        transition: max-height 0.3s ease-in-out;
    }
    
    .footer-links-col.active .footer-col-title::after {
        transform: rotate(180deg);
    }
    
    /* Restructure top row contact info to be compact row items on mobile */
    .footer-contact-details {
        flex-direction: column;
        width: 100%;
        gap: 0;
        margin-right: 0;
    }
    
    .footer-contact-item {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 12px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .footer-contact-item:last-child {
        border-bottom: none;
    }
    
    .contact-label {
        margin-bottom: 0;
        font-size: 0.72rem;
    }
    
    .contact-value {
        font-size: 0.92rem;
    }
    
    .footer-social-box {
        width: 100%;
        align-items: center;
        margin-top: 15px;
    }
    
    .footer-social-links {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-bottom-container {
        padding: 0 20px;
    }
    
    .footer-bottom-desc {
        font-size: 0.8rem;
    }
}

/* ==========================================
   20. DEDICATED ABOUT PAGE CUSTOM STYLES
   ========================================== */
.about-hero {
    background-image: linear-gradient(180deg, rgba(9, 13, 22, 0.85) 0%, rgba(15, 23, 42, 0.92) 100%), url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 215px 0 130px; /* Aligns content beautifully under the floating header */
    position: relative;
    overflow: hidden;
    color: var(--clr-text-light);
    text-align: left;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -250px;
    left: -250px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(225, 29, 72, 0.09) 0%, rgba(225, 29, 72, 0) 70%);
    pointer-events: none;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: -250px;
    right: -250px;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.07) 0%, rgba(217, 119, 6, 0) 70%);
    pointer-events: none;
}

.about-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.about-hero-content {
    max-width: 800px;
}

.about-title {
    font-size: 3.6rem;
    line-height: 1.15;
    margin-bottom: 25px;
    color: var(--clr-text-light);
}

.about-description {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--clr-text-faded);
    margin-bottom: 35px;
}

.about-hero-ctas {
    display: flex;
    gap: 15px;
}

/* Story Section */
.story-section {
    padding: 100px 0;
    background-color: var(--clr-bg-light);
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.story-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 70px;
    align-items: center;
}

.section-tagline {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--clr-gold);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--clr-bg-dark);
    line-height: 1.2;
    margin-bottom: 15px;
}

.section-divider {
    width: 60px;
    height: 3px;
    background-color: var(--clr-crimson);
    margin-bottom: 30px;
}

.story-text {
    font-size: 1.02rem;
    color: var(--clr-text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-text strong {
    color: var(--clr-text-dark);
}

.story-image-box {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    padding-right: 20px;
    padding-bottom: 20px;
}

.about-story-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
    z-index: 1;
    position: relative;
}

.about-story-img:hover {
    transform: translateY(-5px);
}

.image-accent-border {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 80%;
    height: 80%;
    border: 2px solid var(--clr-gold);
    border-radius: 12px;
    z-index: 0;
}

.image-stat-overlay {
    position: absolute;
    bottom: 40px;
    left: -30px;
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 18px 24px;
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    color: var(--clr-text-light);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.overlay-stat-num {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--clr-gold-light);
    line-height: 1;
    font-family: var(--font-heading);
}

.overlay-stat-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--clr-text-faded);
    text-transform: uppercase;
}

/* Values Section (Dark Middle Block) */
.values-section {
    background-color: var(--clr-bg-dark);
    color: var(--clr-text-light);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.values-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.03) 0%, rgba(217, 119, 6, 0) 60%);
    pointer-events: none;
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.values-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.values-tagline-small {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--clr-gold-light);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.values-main-title {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.values-sub-desc {
    font-size: 1.05rem;
    color: var(--clr-text-faded);
}

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

.value-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 35px 30px;
    transition: var(--transition-bounce);
    position: relative;
}

.value-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(251, 191, 36, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.value-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    background: rgba(217, 119, 6, 0.1);
    border: 1px solid rgba(217, 119, 6, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--clr-gold-light);
    margin-bottom: 25px;
    transition: var(--transition-smooth);
}

.value-card:hover .value-icon-wrapper {
    background: var(--clr-gold);
    color: var(--clr-text-light);
    transform: scale(1.05);
}

.value-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.value-desc {
    font-size: 0.88rem;
    color: var(--clr-text-faded);
    line-height: 1.6;
}

/* Standards Detail Section */
.standards-detail-section {
    padding: 100px 0;
    background-color: var(--clr-bg-alt);
}

.standards-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.standards-detail-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.standards-graphic {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.standards-visual-box {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, var(--clr-bg-dark) 0%, var(--clr-bg-darker) 100%);
    border-radius: 50%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-premium);
    overflow: hidden;
}

.standards-icon-circle {
    font-size: 4rem;
    color: var(--clr-gold-light);
    z-index: 2;
    animation: bounce-slow 4s infinite alternate;
}

@keyframes bounce-slow {
    0% { transform: translateY(0); }
    100% { transform: translateY(-10px); }
}

.standards-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
    border: 1px dashed rgba(251, 191, 36, 0.2);
    border-radius: 50%;
    animation: rotate-dashed 20s linear infinite;
    z-index: 1;
}

@keyframes rotate-dashed {
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

.badge-row {
    position: absolute;
    bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    z-index: 2;
}

.standards-pill-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--clr-text-light);
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.standards-text-content {
    display: flex;
    flex-direction: column;
}

.standards-desc {
    font-size: 1.05rem;
    color: var(--clr-text-muted);
    margin-bottom: 30px;
}

.standards-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.standards-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.list-icon {
    color: var(--clr-green);
    font-size: 1.2rem;
    margin-top: 2px;
}

.list-text {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.list-text strong {
    color: var(--clr-text-dark);
}

/* About CTA Section */
.about-cta-section {
    padding: 100px 0;
    background-color: var(--clr-bg-light);
}

.about-cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-cta-box {
    background: linear-gradient(135deg, var(--clr-bg-darker) 0%, var(--clr-bg-dark) 100%);
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    box-shadow: var(--shadow-premium);
    position: relative;
    overflow: hidden;
}

.about-cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('map_bg.svg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
}

.about-cta-title {
    font-size: 2.4rem;
    color: #ffffff;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.about-cta-desc {
    font-size: 1.05rem;
    color: var(--clr-text-faded);
    max-width: 700px;
    margin: 0 auto 35px;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.about-cta-actions {
    display: flex;
    justify-content: center;
    gap: 15px;
    position: relative;
    z-index: 1;
}

.btn-outline-white {
    background-color: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background-color: #ffffff;
    color: var(--clr-bg-dark);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* ==========================================
   21. RESPONSIVENESS FOR ABOUT PAGE
   ========================================== */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-grid,
    .standards-detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-image-box {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .standards-graphic {
        order: 2;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.8rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-hero-ctas,
    .about-cta-actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
    }
    
    .about-hero-ctas button,
    .about-hero-ctas a,
    .about-cta-actions button,
    .about-cta-actions a {
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .values-main-title {
        font-size: 2rem;
    }
    
    .about-cta-title {
        font-size: 1.8rem;
    }
    
    .image-stat-overlay {
        left: 10px;
        bottom: 20px;
        padding: 12px 18px;
    }
    
    .overlay-stat-num {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-hero-container,
    .story-container,
    .values-container,
    .standards-detail-container,
    .about-cta-container {
        padding: 0 20px;
    }
    
    .about-title {
        font-size: 2.2rem;
    }
}

/* ==========================================
   22. MISSION/VISION, CEO VOICES, & DELIVERY STYLES
   ========================================== */
.mission-vision-section {
    padding: 100px 0;
    background-color: var(--clr-bg-alt);
    border-top: 1px solid var(--border-light);
}

.mission-vision-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mv-card {
    background-color: var(--clr-text-light);
    border: 1px solid var(--border-light);
    border-left: 4px solid var(--clr-crimson); /* Left border accent */
    border-radius: 14px;
    padding: 45px 40px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.mv-card:nth-child(2) {
    border-left-color: var(--clr-gold); /* Gold left border accent for Vision */
}

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

.mv-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(225, 29, 72, 0.08);
    color: var(--clr-crimson);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.mv-card:nth-child(2) .mv-icon-wrapper {
    background-color: rgba(217, 119, 6, 0.08);
    color: var(--clr-gold);
}

.mv-card:hover .mv-icon-wrapper {
    background-color: var(--clr-crimson);
    color: var(--clr-text-light);
}

.mv-card:nth-child(2):hover .mv-icon-wrapper {
    background-color: var(--clr-gold);
    color: var(--clr-text-light);
}

.mv-title {
    font-size: 1.6rem;
    color: var(--clr-text-dark);
    margin-bottom: 15px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.mv-desc {
    font-size: 1rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
}

/* CEO & Founder Messages Section */
.voices-section {
    background-color: #080d1a; /* Deep slate background */
    padding: 110px 0;
    position: relative;
    overflow: hidden;
    color: #ffffff; /* Section default text is white */
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.voices-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.04) 0%, rgba(251, 191, 36, 0) 70%);
    pointer-events: none;
}

.voices-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.voices-header {
    text-align: center;
    margin-bottom: 70px;
}

.voices-main-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #ffffff; /* White title for the dark section */
    font-family: var(--font-heading);
    letter-spacing: -0.5px;
}

.voices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.voices-grid.single-voice {
    grid-template-columns: 1fr;
    max-width: 860px;
    margin: 0 auto;
    width: 100%;
}

.voice-card {
    background-color: #ffffff; /* Solid white card floating on dark background */
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 45px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: var(--transition-bounce);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3); /* Distinct dark shadow for contrast */
}

.voice-card.ceo-theme {
    border-top: 4.5px solid var(--clr-crimson); /* CEO Crimson border */
}

.voice-card.founder-theme {
    border-top: 4.5px solid var(--clr-gold); /* Founder Gold border */
}

.voice-card:hover {
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.45);
    transform: translateY(-6px);
}

.voice-card.ceo-theme:hover {
    border-color: rgba(225, 29, 72, 0.15);
    border-top-color: var(--clr-crimson);
}

.voice-card.founder-theme:hover {
    border-color: rgba(217, 119, 6, 0.15);
    border-top-color: var(--clr-gold);
}

.quote-watermark {
    position: absolute;
    bottom: 30px;
    right: 45px;
    font-size: 8rem;
    color: rgba(15, 23, 42, 0.02); /* Extremely subtle dark quote mark inside white card */
    line-height: 1;
    pointer-events: none;
    font-family: Georgia, serif;
    z-index: 0;
}

/* Executive Header Styles */
.executive-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(15, 23, 42, 0.06); /* Dark border for white card */
    padding-bottom: 20px;
    position: relative;
    z-index: 1;
}

.executive-avatar-frame {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
    transition: var(--transition-smooth);
}

.voice-card.ceo-theme .executive-avatar-frame {
    background: rgba(225, 29, 72, 0.03);
    border: 2px solid rgba(225, 29, 72, 0.15);
}

.voice-card.founder-theme .executive-avatar-frame {
    background: rgba(217, 119, 6, 0.03);
    border: 2px solid rgba(217, 119, 6, 0.15);
}

.voice-card.ceo-theme:hover .executive-avatar-frame {
    border-color: var(--clr-crimson);
    box-shadow: 0 8px 20px rgba(225, 29, 72, 0.15);
    transform: scale(1.05);
}

.voice-card.founder-theme:hover .executive-avatar-frame {
    border-color: var(--clr-gold);
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.15);
    transform: scale(1.05);
}

.voice-card.ceo-theme .executive-placeholder-icon {
    font-size: 2.2rem;
    color: var(--clr-crimson);
}

.voice-card.founder-theme .executive-placeholder-icon {
    font-size: 2.2rem;
    color: var(--clr-gold);
}

.executive-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.executive-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.executive-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--clr-text-dark); /* Dark name inside white card */
    font-family: var(--font-heading);
    margin: 0;
    line-height: 1.2;
}

.executive-role {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.voice-card.ceo-theme .executive-role {
    color: var(--clr-crimson);
}

.voice-card.founder-theme .executive-role {
    color: var(--clr-gold);
}

.executive-company {
    font-size: 0.75rem;
    color: var(--clr-text-muted);
}

.voice-card-top {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.voice-accent-line {
    width: 45px;
    height: 3px;
    display: block;
    border-radius: 2px;
}

.voice-card.ceo-theme .voice-accent-line {
    background-color: var(--clr-crimson);
}

.voice-card.founder-theme .voice-accent-line {
    background-color: var(--clr-gold);
}

.voice-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 6px 14px;
    border-radius: 30px;
    max-width: fit-content;
    text-transform: uppercase;
}

.voice-card.ceo-theme .voice-badge {
    color: var(--clr-crimson);
    background: rgba(225, 29, 72, 0.06);
}

.voice-card.founder-theme .voice-badge {
    color: var(--clr-gold);
    background: rgba(217, 119, 6, 0.06);
}

.voice-heading {
    font-size: 1.55rem;
    color: var(--clr-text-dark); /* Dark heading inside white card */
    margin-bottom: 20px;
    line-height: 1.35;
    font-family: var(--font-heading);
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.voice-text-content {
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.voice-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--clr-text-muted); /* Muted slate text inside white card */
    margin-bottom: 18px;
}

.voice-text:last-child {
    margin-bottom: 0;
}

.quote-italic {
    font-style: italic;
    color: var(--clr-gold);
}

/* Delivery Section (How We Deliver) */
.delivery-section {
    padding: 110px 0;
    background-color: var(--clr-bg-light);
    border-top: 1px solid var(--border-light);
}

.delivery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.delivery-header {
    text-align: left;
    max-width: 800px;
    margin-bottom: 60px;
}

.delivery-tag {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: var(--clr-crimson);
    text-transform: uppercase;
    display: block;
    margin-bottom: 12px;
}

.delivery-title {
    font-size: 3rem;
    color: var(--clr-text-dark);
    margin-bottom: 20px;
    line-height: 1.15;
    font-family: var(--font-heading);
    font-weight: 800;
}

.delivery-desc {
    font-size: 1.15rem;
    color: var(--clr-text-muted);
    line-height: 1.6;
}

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

.delivery-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 35px 28px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.015);
    transition: var(--transition-bounce);
}

.delivery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(225, 29, 72, 0.12);
}

.delivery-card-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--clr-crimson);
    display: block;
}

.delivery-card-header {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.delivery-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(225, 29, 72, 0.06); /* Giant subtle background watermark number */
    position: absolute;
    top: 25px;
    right: 25px;
    line-height: 1;
    font-family: var(--font-heading);
    transition: var(--transition-smooth);
}

.delivery-card:hover .delivery-number {
    color: rgba(225, 29, 72, 0.15);
    transform: scale(1.1);
}

.delivery-card-title {
    font-size: 1.35rem;
    color: var(--clr-text-dark);
    font-family: var(--font-heading);
    line-height: 1.25;
    font-weight: 700;
}

.delivery-card-text {
    font-size: 0.92rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
}

/* ==========================================
   23. RESPONSIVENESS FOR NEW SECTIONS
   ========================================== */
@media (max-width: 992px) {
    .voices-grid,
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .delivery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .voice-card {
        min-height: auto;
        padding: 40px 30px;
    }
}

@media (max-width: 768px) {
    /* Tighten vertical space on mobile and tablets to reduce length */
    .story-section,
    .mission-vision-section,
    .voices-section,
    .values-section,
    .delivery-section,
    .standards-detail-section,
    .about-cta-section {
        padding: 50px 0 !important;
    }
    
    .voices-header,
    .delivery-header,
    .values-header {
        margin-bottom: 35px !important;
    }
    
    .voices-main-title {
        font-size: 2.5rem;
    }
    
    .voice-heading {
        font-size: 1.45rem;
    }
    
    .delivery-title {
        font-size: 2.3rem;
    }
}

@media (max-width: 576px) {
    /* Stack grid columns on portrait mobile screens */
    .delivery-grid,
    .values-grid {
        grid-template-columns: 1fr !important;
    }
    
    /* Squeeze paddings on mobile cards to prevent horizontal overflow and screen mess-ups */
    .voice-card,
    .mv-card,
    .value-card,
    .delivery-card {
        padding: 30px 20px !important;
    }
    
    /* Resize standards visual circle to prevent right-side screen overflow */
    .standards-visual-box {
        width: 260px !important;
        height: 260px !important;
    }
    
    .standards-icon-circle {
        font-size: 3rem !important;
    }
    
    .delivery-container,
    .voices-container,
    .mission-vision-container {
        padding: 0 20px;
    }
}

/* ==========================================
   24. DEDICATED CONTACT PAGE CUSTOM STYLES
   ========================================== */
.contact-hero {
    background-image: linear-gradient(180deg, rgba(9, 13, 22, 0.85) 0%, rgba(15, 23, 42, 0.92) 100%), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80');
}

.contact-section {
    padding: 100px 0;
    background-color: var(--clr-bg-alt);
    border-top: 1px solid var(--border-light);
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 50px;
    align-items: stretch;
}

/* Contact Info Cards Styles */
.contact-info-panel,
.contact-form-panel {
    display: flex;
    flex-direction: column;
    gap: 25px;
    height: 100%;
}

.contact-info-panel > .contact-info-card:last-child,
.contact-form-panel > .contact-info-card:last-child {
    flex-grow: 1;
    flex-shrink: 0;
}

.contact-info-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 35px 30px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
}

.contact-info-card.phone-card {
    border-left: 4px solid var(--clr-crimson);
}

.contact-info-card.email-card {
    border-left: 4px solid var(--clr-gold);
}

.contact-info-card.address-card {
    border-left: 4px solid var(--clr-crimson);
}

.contact-info-card.hours-card {
    border-left: 4px solid var(--clr-gold);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 18px;
    margin-bottom: 20px;
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.phone-icon-wrapper,
.address-icon-wrapper {
    background-color: rgba(225, 29, 72, 0.08);
    color: var(--clr-crimson);
}

.email-icon-wrapper,
.hours-icon-wrapper {
    background-color: rgba(217, 119, 6, 0.08);
    color: var(--clr-gold);
}

.contact-card-header-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-card-tag {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.phone-card .contact-card-tag,
.address-card .contact-card-tag {
    color: var(--clr-crimson);
}

.email-card .contact-card-tag,
.hours-card .contact-card-tag {
    color: var(--clr-gold);
}

.contact-card-title {
    font-size: 1.25rem;
    color: var(--clr-text-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    margin: 0;
}

.contact-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-card-desc {
    font-size: 0.95rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
    margin: 0;
}

.contact-detail-line {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--clr-text-muted);
    letter-spacing: 0.5px;
}

.contact-card-link {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-text-dark);
    text-decoration: none;
    transition: var(--transition-smooth);
    width: fit-content;
}

.contact-card-link:hover {
    color: var(--clr-crimson);
}

.email-card .contact-card-link:hover {
    color: var(--clr-gold);
}

.contact-card-address {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--clr-text-dark);
    line-height: 1.45;
    margin: 0;
}

/* Contact Form Card Styles */
.contact-form-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 45px;
    box-shadow: var(--shadow-premium);
}

.form-title {
    font-size: 2rem;
    color: var(--clr-text-dark);
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
}

.form-desc {
    font-size: 1rem;
    color: var(--clr-text-muted);
    margin-bottom: 35px;
    line-height: 1.5;
}

.form-row-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.consent-checkbox-group {
    margin-top: 25px;
}

.consent-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.consent-checkbox {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--clr-crimson);
}

.checkbox-text {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.4;
}

/* Map Section Styles */
.map-section {
    background-color: var(--clr-bg-light);
    padding: 0; /* Sits flush against the site footer */
}

/* Map Tabs Styling */
.map-tabs-container {
    display: flex;
    justify-content: center;
    background-color: var(--clr-bg-light);
    padding: 30px 0 20px 0;
    gap: 15px;
    border-top: 1px solid var(--border-light);
}

.map-tab {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--clr-text-muted);
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-heading);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-premium);
}

.map-tab:hover {
    color: var(--clr-crimson);
    border-color: var(--clr-crimson);
}

.map-tab.active {
    background-color: var(--clr-crimson);
    color: #ffffff;
    border-color: var(--clr-crimson);
}

.contact-map-wrapper {
    display: none;
}

.contact-map-wrapper.active {
    display: block;
}

.map-container {
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.map-wrapper {
    border-radius: 0;
    overflow: hidden;
    border: none;
    height: 500px;
}

.map-wrapper iframe {
    display: block;
}

/* ==========================================
   25. RESPONSIVENESS FOR CONTACT PAGE
   ========================================== */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-panel,
    .contact-form-panel {
        height: auto;
    }
    
    .contact-info-panel > .contact-info-card:last-child,
    .contact-form-panel > .contact-info-card:last-child {
        flex-grow: 0;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0 !important;
    }
    
    .contact-form-card {
        padding: 30px 20px;
    }
    
    .form-row-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .map-wrapper {
        height: 380px;
    }
    
    .map-section {
        padding-bottom: 0 !important;
    }
}

@media (max-width: 576px) {
    .contact-container {
        padding: 0 20px;
    }
    
    .contact-info-card {
        padding: 25px 20px !important;
    }
}

/* ==========================================
   26. LEGAL PAGES STYLES
   ========================================== */
.legal-content-section {
    padding: 80px 0;
    background-color: var(--clr-bg-light);
    border-top: 1px solid var(--border-light);
}

.legal-content-container {
    max-width: 900px; /* Squeezed width for optimum legibility */
    margin: 0 auto;
    padding: 0 40px;
}

.legal-text-box {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 50px 45px;
    box-shadow: var(--shadow-premium);
}

.legal-text-box h2 {
    font-size: 1.45rem;
    color: var(--clr-text-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
}

.legal-text-box h2:first-of-type {
    margin-top: 0;
}

.legal-text-box p {
    font-size: 1rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.legal-text-box ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-text-box ul li {
    font-size: 1rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 10px;
    list-style-type: disc;
}

@media (max-width: 576px) {
    .legal-content-container {
        padding: 0 20px;
    }
    .legal-text-box {
        padding: 30px 20px;
    }
}

/* ==========================================
   27. DEDICATED SECTORS PAGE CUSTOM STYLES
   ========================================== */
.sectors-hero {
    background-image: linear-gradient(180deg, rgba(9, 13, 22, 0.85) 0%, rgba(15, 23, 42, 0.92) 100%), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80');
}

.sectors-detail-section {
    padding: 100px 0;
    background-color: var(--clr-bg-alt);
    border-top: 1px solid var(--border-light);
}

.sectors-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.sector-detail-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 40px 30px;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-bounce);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100%;
}

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

.sector-card-bar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4.5px;
}

.sector-card-bar.accent-crimson {
    background-color: var(--clr-crimson);
}

.sector-card-bar.accent-gold {
    background-color: var(--clr-gold);
}

.sector-detail-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.sector-detail-icon {
    font-size: 1.65rem;
}

.accent-crimson ~ .sector-detail-header .sector-detail-icon,
.accent-crimson ~ .sector-detail-header .sector-detail-title {
    color: var(--clr-crimson);
}

.accent-gold ~ .sector-detail-header .sector-detail-icon,
.accent-gold ~ .sector-detail-header .sector-detail-title {
    color: var(--clr-gold);
}

.sector-detail-card.highlight-card .sector-detail-icon,
.sector-detail-card.highlight-card .sector-detail-title {
    color: #ffffff !important;
}

.sector-detail-title {
    font-size: 1.3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin: 0;
    line-height: 1.25;
}

.sector-detail-desc {
    font-size: 0.92rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
    margin-bottom: 22px;
}

.sector-detail-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sector-detail-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    line-height: 1.4;
}

.sector-detail-list li i {
    font-size: 0.82rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.accent-crimson ~ .sector-detail-list li i {
    color: var(--clr-crimson);
}

.accent-gold ~ .sector-detail-list li i {
    color: var(--clr-gold);
}

.sector-detail-card.highlight-card {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.sector-detail-card.highlight-card:hover {
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.text-white {
    color: #ffffff !important;
}

.text-gray {
    color: var(--clr-text-faded) !important;
}

/* ==========================================
   28. RESPONSIVENESS FOR SECTORS PAGE
   ========================================== */
@media (max-width: 992px) {
    .sectors-detail-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .sectors-detail-section {
        padding: 50px 0 !important;
    }
    
    .sectors-detail-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

@media (max-width: 576px) {
    .sectors-detail-container {
        padding: 0 20px;
    }
    .sector-detail-card {
        padding: 30px 20px !important;
    }
}

/* ==========================================
   29. DEDICATED SERVICES MAIN DIRECTORY STYLES
   ========================================== */
.services-directory-section {
    padding: 100px 0;
    background-color: var(--clr-bg-light);
    border-top: 1px solid var(--border-light);
}

.services-directory-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-row {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 90px;
}

.services-row:last-of-type {
    margin-bottom: 0;
}

.services-row:nth-child(even) {
    flex-direction: row-reverse;
}

.services-row-image-box {
    flex: 1.1;
    height: 440px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-premium);
    border: 1px solid var(--border-light);
    position: relative;
}

.services-row-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-row-image-box:hover img {
    transform: scale(1.05);
}

.services-row-content-box {
    flex: 0.9;
}

.services-row-tag {
    font-size: 0.78rem;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-block;
}

.services-row-tag.tag-crimson {
    color: var(--clr-crimson);
}

.services-row-tag.tag-gold {
    color: var(--clr-gold);
}

.services-row-title {
    font-size: 2.1rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--clr-text-dark);
    margin-bottom: 20px;
    line-height: 1.2;
}

.services-row-desc {
    font-size: 1.02rem;
    color: var(--clr-text-muted);
    line-height: 1.65;
    margin-bottom: 25px;
}

.services-row-bullets {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 35px;
    padding: 0;
    list-style: none;
}

.services-row-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: var(--clr-text-muted);
}

.services-row-bullets li i {
    font-size: 0.85rem;
    flex-shrink: 0;
}

.services-row:nth-child(odd) .services-row-bullets li i {
    color: var(--clr-crimson);
}

.services-row:nth-child(even) .services-row-bullets li i {
    color: var(--clr-gold);
}

/* ==========================================
   30. SERVICE DETAIL PAGES STYLE
   ========================================== */
.service-detail-section {
    padding: 90px 0;
    background-color: var(--clr-bg-light);
    border-top: 1px solid var(--border-light);
}

.service-detail-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 55px;
    align-items: flex-start;
}

.service-detail-main {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 55px;
    box-shadow: var(--shadow-premium);
}

.service-detail-main-img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 40px;
    box-shadow: var(--shadow-premium);
    display: block;
}

.service-detail-main h2 {
    font-size: 1.7rem;
    color: var(--clr-text-dark);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-top: 35px;
    margin-bottom: 15px;
}

.service-detail-main h2:first-of-type {
    margin-top: 0;
}

.service-detail-main p {
    font-size: 1rem;
    color: var(--clr-text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-detail-main p:last-of-type {
    margin-bottom: 0;
}

.service-detail-bullets {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 25px 0 35px;
    padding: 0;
    list-style: none;
}

.service-detail-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.98rem;
    color: var(--clr-text-muted);
    line-height: 1.5;
}

.service-detail-bullets li i {
    font-size: 0.9rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.retail-theme-bullets li i,
.static-theme-bullets li i,
.event-theme-bullets li i {
    color: var(--clr-crimson);
}

.manned-theme-bullets li i,
.cleaning-theme-bullets li i {
    color: var(--clr-gold);
}

.service-sidebar {
    position: sticky;
    top: 110px;
}

.sidebar-quote-card {
    background-color: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: 14px;
    padding: 35px;
    box-shadow: var(--shadow-premium);
}

.sidebar-quote-card .form-title {
    font-size: 1.45rem;
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--clr-text-dark);
    line-height: 1.2;
}

.sidebar-quote-card .form-desc {
    font-size: 0.88rem;
    color: var(--clr-text-muted);
    margin-bottom: 25px;
    line-height: 1.45;
}

/* ==========================================
   31. RESPONSIVENESS FOR SERVICES & DETAILS
   ========================================== */
@media (max-width: 992px) {
    .services-row {
        gap: 40px;
    }
    
    .services-row-title {
        font-size: 1.8rem;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .services-directory-section,
    .service-detail-section {
        padding: 50px 0 !important;
    }

    .services-row {
        flex-direction: column !important;
        gap: 30px;
        margin-bottom: 60px;
    }
    
    .services-row-image-box {
        width: 100%;
        height: 300px;
        flex: none;
    }
    
    .services-row-content-box {
        width: 100%;
        flex: none;
    }
    
    .services-row-bullets {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 25px;
    }
    
    .service-detail-main {
        padding: 35px 25px;
    }
    
    .service-detail-main-img {
        height: 260px;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .services-directory-container,
    .service-detail-container {
        padding: 0 20px;
    }
    
    .sidebar-quote-card {
        padding: 25px 20px;
    }
}

/* ==========================================
   COMPANY FLYERS SECTION & LIGHTBOX MODAL
   ========================================== */
.flyers-section {
    background-color: var(--clr-bg-darker);
    padding: 90px 0;
    position: relative;
    z-index: 5;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.flyers-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.flyers-header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 50px auto;
}

.flyers-header .section-title {
    color: #ffffff;
}

.flyers-sub-desc {
    color: var(--clr-text-faded);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-top: 15px;
    margin-bottom: 25px;
}

.flyers-cta-wrapper {
    display: flex;
    justify-content: center;
}

.btn-download-flyer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 25px rgba(217, 119, 6, 0.3);
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* 4 Flyer Grid Layout */
.flyers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.flyer-card {
    background: rgba(22, 30, 46, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-premium);
    cursor: pointer;
}

.flyer-card:hover {
    transform: translateY(-8px);
    border-color: var(--clr-gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.flyer-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(9, 13, 22, 0.85);
    color: var(--clr-gold);
    border: 1px solid rgba(251, 191, 36, 0.3);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 99px;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.flyer-img-box {
    position: relative;
    width: 100%;
    aspect-ratio: 2947 / 1107;
    background: #0d131f;
    overflow: hidden;
}

.flyer-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.flyer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(9, 13, 22, 0.65);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

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

.flyer-zoom-btn {
    background: var(--clr-gold);
    color: #ffffff;
    border: none;
    padding: 10px 18px;
    border-radius: 99px;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.flyer-card:hover .flyer-zoom-btn {
    transform: translateY(0);
}

.flyer-info {
    padding: 18px 20px;
    background: rgba(15, 23, 42, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-grow: 1;
}

.flyer-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 6px;
}

.flyer-desc {
    color: var(--clr-text-faded);
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

/* Lightbox Modal */
.flyer-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

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

.flyer-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 8, 14, 0.92);
    backdrop-filter: blur(8px);
}

.flyer-lightbox-content {
    position: relative;
    z-index: 10;
    max-width: 92vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flyer-lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: #ffffff;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.flyer-lightbox-close:hover {
    background: var(--clr-crimson);
}

.flyer-lightbox-nav {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 20;
    margin: 0 15px;
    flex-shrink: 0;
}

.flyer-lightbox-nav:hover {
    background: var(--clr-gold);
    border-color: var(--clr-gold);
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
}

.flyer-lightbox-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 82vw;
    max-height: 84vh;
}

.flyer-lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.flyer-lightbox-caption {
    color: var(--clr-gold-light);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    margin-top: 15px;
    background: rgba(15, 23, 42, 0.8);
    padding: 6px 18px;
    border-radius: 99px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Media Queries for Flyers */
@media (max-width: 1200px) {
    .flyers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .flyers-section {
        padding: 60px 0;
    }
    
    .flyers-container {
        padding: 0 20px;
    }
    
    .flyers-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .flyer-img-box {
        aspect-ratio: 2947 / 1107;
    }

    .flyer-overlay {
        opacity: 1;
        background: linear-gradient(180deg, rgba(9, 13, 22, 0.1) 0%, rgba(9, 13, 22, 0.7) 100%);
        align-items: flex-end;
        padding-bottom: 12px;
    }

    .flyer-zoom-btn {
        transform: translateY(0);
        font-size: 0.72rem;
        padding: 8px 14px;
    }

    .flyer-lightbox-nav {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
        margin: 0 5px;
    }
}

/* ==========================================
   ACCREDITATION CERTIFICATE LIGHTBOX MODAL
   ========================================== */
.cert-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}

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

.cert-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 15, 26, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cert-lightbox-content {
    position: relative;
    z-index: 10;
    max-width: 850px;
    max-height: 90vh;
    width: 100%;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: scale(0.92);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.cert-lightbox-modal.active .cert-lightbox-content {
    transform: scale(1);
}

.cert-lightbox-close {
    position: absolute;
    top: 14px;
    right: 18px;
    z-index: 20;
    width: 40px;
    height: 40px;
    background: rgba(15, 23, 42, 0.8);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cert-lightbox-close:hover {
    background: var(--clr-gold);
    color: #0f172a;
    transform: scale(1.1);
}

.cert-lightbox-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-y: auto;
    max-height: calc(90vh - 20px);
}

.cert-lightbox-img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cert-lightbox-footer {
    margin-top: 18px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
}

.cert-lightbox-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.05rem;
    color: #0f172a;
}

@media (max-width: 576px) {
    .cert-lightbox-content {
        max-height: 95vh;
        border-radius: 12px;
    }
    .cert-lightbox-body {
        padding: 16px;
    }
    .cert-lightbox-footer {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        gap: 10px;
    }
    .cert-lightbox-download {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

