/*
 * U-SAFE Custom Premium Theme Stylesheet
 * Modern UI/UX Overrides
 */

/* ----------------------------------------------------
   1. Theme Variables & Fonts
------------------------------------------------------- */
:root {
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --color-primary: #0a192f;      /* Premium Deep Navy */
    --color-secondary: #0f2244;    /* Slate Navy */
    --color-accent: #d6b759;       /* Corporate Gold */
    --color-accent-hover: #bda047; /* Hover Gold */
    --color-dark-bg: #071324;      /* Deep dark background */
    --color-light-bg: #f8fafc;     /* Clean slate-50 background */
    --color-card-bg: #ffffff;
    --color-border: #e2e8f0;       /* Slate-200 border */
    
    --color-text-dark: #0f172a;    /* Slate-900 */
    --color-text-muted: #64748b;   /* Slate-500 */
    --color-text-light: #f8fafc;   /* Slate-50 */
    
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 20px;
    --shadow-premium: 0 10px 30px -10px rgba(7, 19, 36, 0.08);
    --shadow-hover: 0 20px 45px -12px rgba(7, 19, 36, 0.15);
}

/* Apply Fonts to Base Elements */
body {
    font-family: var(--font-body) !important;
    color: var(--color-text-dark) !important;
    background-color: #ffffff;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading) !important;
    color: var(--color-primary) !important;
    font-weight: 700 !important;
}

/* ----------------------------------------------------
   2. Header Modernization
------------------------------------------------------- */
/* Header Top */
.header-top {
    background-color: var(--color-dark-bg) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 0;
}
.header-top p {
    color: var(--color-text-light) !important;
    font-family: var(--font-heading);
    font-size: 13px;
    letter-spacing: 0.8px;
    margin-bottom: 0;
}
.header-top .social-links a {
    color: rgba(255, 255, 255, 0.6) !important;
    margin-right: 15px;
    transition: var(--transition-base);
}
.header-top .social-links a:hover {
    color: var(--color-accent) !important;
}

/* Header Info Bar */
.header-info {
    background: #ffffff !important;
    padding: 20px 0 !important;
}
.header-info .main-logo img {
    max-height: 70px;
    transition: var(--transition-base);
}
.header-contact-info ul li {
    padding-left: 55px !important;
    margin-right: 30px !important;
}
.header-contact-info ul li .iocn-holder {
    background: var(--color-light-bg) !important;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    line-height: 42px;
    text-align: center;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%);
    transition: var(--transition-base);
}
.header-contact-info ul li:hover .iocn-holder {
    background: var(--color-accent) !important;
}
.header-contact-info ul li:hover .iocn-holder span {
    color: var(--color-primary) !important;
}
.header-contact-info ul li .iocn-holder span {
    color: var(--color-accent) !important;
    font-size: 16px;
    transition: var(--transition-base);
}
.header-contact-info ul li .text-holder h6 {
    font-size: 12px;
    color: var(--color-text-muted) !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}
.header-contact-info ul li .text-holder p {
    font-size: 13px;
    color: var(--color-primary) !important;
    font-weight: 700;
}
.header-info .iso {
    max-height: 60px;
    margin-left: 20px;
    vertical-align: middle;
}

/* Navigation Bar */
.header-upper {
    background: var(--color-primary) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.main-menu .navigation li > a {
    font-family: var(--font-heading) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.8px;
    padding: 16px 20px !important;
    color: #ffffff !important;
    transition: var(--transition-base) !important;
}
.main-menu .navigation li:hover > a,
.main-menu .navigation li.current > a {
    color: var(--color-accent) !important;
}
.sticky-header {
    background: rgba(10, 25, 47, 0.95) !important;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}
.sticky-header .logo img {
    max-height: 50px;
}
.sticky-header .navigation li > a {
    padding: 12px 20px !important;
}

/* ----------------------------------------------------
   3. Homepage Slider & Hero
------------------------------------------------------- */
.main-slider {
    position: relative;
}
.main-slider .slide {
    position: relative;
    padding: 160px 0 160px !important;
}
.main-slider .slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(7, 19, 36, 0.85) 0%, rgba(10, 25, 47, 0.6) 100%);
    z-index: 1;
}
.main-slider .content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.main-slider .content h1 {
    font-family: var(--font-heading) !important;
    color: #ffffff !important;
    font-size: 48px !important;
    font-weight: 800 !important;
    line-height: 1.25 !important;
    margin-bottom: 30px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.theme-btn.btn-style-one {
    background-color: var(--color-accent) !important;
    color: var(--color-primary) !important;
    font-family: var(--font-heading) !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 14px 35px !important;
    border-radius: var(--border-radius-sm) !important;
    border: 2px solid var(--color-accent) !important;
    transition: var(--transition-base) !important;
}
.theme-btn.btn-style-one:hover {
    background-color: transparent !important;
    color: var(--color-accent) !important;
}

/* ----------------------------------------------------
   4. Welcome Section & Cards (Key Benefits)
------------------------------------------------------- */
.welcome-section {
    background-color: var(--color-light-bg) !important;
    padding: 90px 0 !important;
}
.sec-title h1 {
    font-size: 38px !important;
    margin-bottom: 20px !important;
    position: relative;
    padding-bottom: 15px;
}
.sec-title h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
}
.sec-title.left h1::after {
    left: 0;
    transform: none;
}
.sec-title .text {
    font-size: 16px;
    color: var(--color-text-muted);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.7;
}

.welcome-block {
    margin-bottom: 30px;
}
.welcome-block .inner-box {
    background: var(--color-card-bg) !important;
    border: 1px solid var(--color-border) !important;
    border-radius: var(--border-radius-md) !important;
    padding: 35px 30px !important;
    box-shadow: var(--shadow-premium) !important;
    transition: var(--transition-base) !important;
    height: 100%;
}
.welcome-block .inner-box:hover {
    transform: translateY(-8px) !important;
    box-shadow: var(--shadow-hover) !important;
    border-color: rgba(214, 183, 89, 0.4) !important;
}
.welcome-block .inner-box .icon-box {
    width: 60px;
    height: 60px;
    line-height: 60px;
    background: rgba(214, 183, 89, 0.1) !important;
    border-radius: 50% !important;
    text-align: center;
    margin-bottom: 25px !important;
    transition: var(--transition-base);
}
.welcome-block .inner-box:hover .icon-box {
    background: var(--color-accent) !important;
}
.welcome-block .inner-box .icon-box span {
    font-size: 24px !important;
    color: var(--color-accent) !important;
    transition: var(--transition-base);
}
.welcome-block .inner-box:hover .icon-box span {
    color: var(--color-primary) !important;
}
.welcome-block .inner-box h4 {
    font-size: 20px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
}
.welcome-block .inner-box .text {
    font-size: 14px !important;
    color: var(--color-text-muted) !important;
    line-height: 1.6 !important;
}

/* ----------------------------------------------------
   5. Dark Sections (Exclusive Features)
------------------------------------------------------- */
.n-sec {
    background: var(--color-primary) !important;
    padding: 90px 0 !important;
}
.n-sec p strong {
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-size: 32px;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}
.n-sec p strong::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
}
.welcome-block .inner-box.new-box {
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: none !important;
}
.welcome-block .inner-box.new-box:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: var(--color-accent) !important;
}
.welcome-block .inner-box.new-box h4 {
    color: var(--color-accent) !important;
    font-size: 19px !important;
}
.welcome-block .inner-box.new-box .text {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* ----------------------------------------------------
   6. About Us Sections
------------------------------------------------------- */
.about-section {
    background: var(--color-secondary) !important;
    padding: 0 !important;
}
.about-section .about-block-area {
    padding: 90px 40px !important;
    max-width: 600px;
    margin-left: auto;
}
.about-section .sec-title.light h1 {
    color: #ffffff !important;
}
.about-section .sec-title.light h1::after {
    left: 0;
    transform: none;
}
.about-section .sec-title.light .text {
    color: rgba(255, 255, 255, 0.8) !important;
    line-height: 1.8;
}
.about-section .image-column {
    background-size: cover;
    background-position: center;
    position: relative;
}
.about-section .image-column::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 25, 47, 0.3);
}
.about-section .image-column figure {
    height: 100%;
    margin: 0;
}
.about-section .image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ----------------------------------------------------
   7. Funfact & Help Banner
------------------------------------------------------- */
.funfact-section {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%) !important;
    padding: 80px 0 !important;
    position: relative;
    overflow: hidden;
}
.funfact-section::before {
    content: '';
    position: absolute;
    width: 300px; height: 300px;
    border-radius: 50%;
    background: rgba(214, 183, 89, 0.03);
    top: -100px; right: -100px;
}
.funfact-section .sec-title h1 {
    color: var(--color-accent) !important;
    margin-bottom: 15px !important;
}
.funfact-section .bottom-content h4 {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 16px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500 !important;
    margin-bottom: 10px;
}
.funfact-section .bottom-content h3 {
    color: #ffffff !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    letter-spacing: 1px;
}

/* ----------------------------------------------------
   8. Fluid Testimonials & Brand Logos
------------------------------------------------------- */
.fluid-section {
    background: #ffffff !important;
}
.fluid-section .left-column {
    background-size: cover;
    background-position: center;
    padding: 80px 40px !important;
    position: relative;
}
.fluid-section .left-column::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(7, 19, 36, 0.85);
}
.fluid-section .carousel-box {
    position: relative;
    z-index: 2;
}
.fluid-section .testimonial-block .text {
    font-size: 16px !important;
    line-height: 1.8 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-style: italic;
    margin-bottom: 20px;
}
.fluid-section .testimonial-block .author {
    color: var(--color-accent) !important;
    font-weight: 700;
    font-family: var(--font-heading);
}
.fluid-section .testimonial-block .author span {
    color: #ffffff !important;
    font-weight: 400;
}

.fluid-section .right-column {
    background: var(--color-light-bg) !important;
    padding: 80px 40px !important;
}
.fluid-section .right-column h3 {
    font-size: 28px !important;
    margin-bottom: 20px !important;
}
.fluid-section .right-column .text {
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 30px;
}
.fluid-section .client-logo ul li {
    padding: 10px;
}
.fluid-section .client-logo ul li .image {
    background: #ffffff;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-sm);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 90px;
    transition: var(--transition-base);
}
.fluid-section .client-logo ul li .image:hover {
    border-color: var(--color-accent);
    transform: scale(1.05);
}
.fluid-section .client-logo ul li img {
    max-height: 60px;
    width: auto !important;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition-base);
}
.fluid-section .client-logo ul li:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* ----------------------------------------------------
   9. Team Section
------------------------------------------------------- */
.team-section {
    background: #ffffff !important;
    padding: 90px 0 !important;
}
.team-block .inner-box {
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-base);
    margin-bottom: 30px;
}
.team-block .inner-box:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(214, 183, 89, 0.3);
}
.team-block .inner-box .image img {
    transition: var(--transition-base);
    width: 100%;
}
.team-block .inner-box:hover .image img {
    transform: scale(1.05);
}
.team-block .inner-box .lower-content {
    padding: 25px 20px !important;
    text-align: center;
}
.team-block .inner-box .lower-content h4 {
    font-size: 18px !important;
    margin-bottom: 5px !important;
}
.team-block .inner-box .lower-content .designation {
    color: var(--color-accent) !important;
    font-size: 13px !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ----------------------------------------------------
   10. Consultation & Forms
------------------------------------------------------- */
.consultation-section {
    padding: 90px 0 !important;
    position: relative;
}
.consultation-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(10, 25, 47, 0.9);
}
.consultation-section .container {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: center;
}
.consultation-section h1 {
    color: #ffffff !important;
    font-size: 32px !important;
    margin-bottom: 15px !important;
}
.consultation-section .number {
    color: var(--color-accent) !important;
    font-size: 30px !important;
    font-weight: 800 !important;
    margin-bottom: 35px;
    font-family: var(--font-heading);
}
/* Contact Form Styling */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
    width: 100%;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: var(--border-radius-sm) !important;
    padding: 12px 20px !important;
    color: #ffffff !important;
    font-size: 14px;
    margin-bottom: 15px;
    transition: var(--transition-base);
}
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    border-color: var(--color-accent) !important;
    outline: none;
    background: rgba(255, 255, 255, 0.08) !important;
}
.wpcf7-form input[type="submit"] {
    background: var(--color-accent) !important;
    color: var(--color-primary) !important;
    border: none;
    padding: 12px 35px !important;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--transition-base);
}
.wpcf7-form input[type="submit"]:hover {
    background: #ffffff !important;
}

/* ----------------------------------------------------
   11. Footer Section
------------------------------------------------------- */
.main-footer {
    background: var(--color-dark-bg) !important;
    padding-top: 80px !important;
    text-align: left !important;
}
.main-footer .footer-logo img {
    max-height: 80px;
    margin-bottom: 25px;
}
.main-footer .contact-info {
    margin-bottom: 30px;
}
.main-footer .contact-info li {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 14px !important;
    margin-bottom: 12px !important;
    padding-left: 0 !important;
}
.main-footer .contact-info li a {
    color: rgba(255, 255, 255, 0.65) !important;
    transition: var(--transition-base);
}
.main-footer .contact-info li a:hover {
    color: var(--color-accent) !important;
}
.main-footer .social-icon-three li a {
    background: rgba(255, 255, 255, 0.05) !important;
    color: rgba(255, 255, 255, 0.6) !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    display: inline-block;
    transition: var(--transition-base);
}
.main-footer .social-icon-three li a:hover {
    background: var(--color-accent) !important;
    color: var(--color-primary) !important;
}

.footer-bottom {
    background: #040b15 !important;
    padding: 25px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-bottom .copyright-text p {
    color: rgba(255, 255, 255, 0.5) !important;
    font-size: 13px !important;
    margin: 0;
}
.footer-bottom .copyright-text a {
    color: var(--color-accent) !important;
}

/* Floating WhatsApp / Call Icon */
.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}
.my-float {
    margin-top: 16px;
}

/* ----------------------------------------------------
   12. Inner Pages Overrides (About, Services, Contact)
------------------------------------------------------- */
.page-title {
    padding: 100px 0 100px !important;
    position: relative;
}
.page-title::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(7, 19, 36, 0.85);
}
.page-title .outer-box {
    position: relative;
    z-index: 2;
    text-align: center;
}
.page-title h1 {
    color: #ffffff !important;
    font-size: 40px !important;
    text-transform: uppercase;
    font-weight: 800 !important;
    margin-bottom: 15px !important;
}
.page-title .bread-crumb li {
    color: var(--color-accent) !important;
    font-weight: 600;
}
.page-title .bread-crumb li a {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: var(--transition-base);
}
.page-title .bread-crumb li a:hover {
    color: var(--color-accent) !important;
}

/* Services Include List */
.ser {
    padding: 90px 0 0 !important;
    background: var(--color-light-bg);
}
.ser h4 {
    font-size: 28px !important;
    margin-bottom: 15px !important;
    text-align: center;
}
.ser p {
    font-size: 16px;
    color: var(--color-text-muted);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.ser-new {
    padding: 90px 0 !important;
    background: #ffffff;
}
.ser-new h4 {
    font-size: 28px !important;
    margin-bottom: 20px !important;
}
.ser-new p {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* Contact Details Blocks */
.contact-info-block .inner-box {
    background: var(--color-light-bg) !important;
    border: 1px solid var(--color-border) !important;
    border-radius: var(--border-radius-md);
    padding: 30px !important;
    margin-bottom: 30px;
    transition: var(--transition-base);
}
.contact-info-block .inner-box:hover {
    background: #ffffff !important;
    box-shadow: var(--shadow-premium);
    border-color: var(--color-accent);
}
.contact-info-block h6 {
    font-size: 13px !important;
    color: var(--color-accent) !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}
.contact-info-block p {
    font-size: 15px;
    color: var(--color-primary);
    font-weight: 600;
    margin: 0;
}


/* ----------------------------------------------------
   13. Floating Info Drawer (Slide-out panel)
------------------------------------------------------- */
.quick-info-drawer {
    position: fixed;
    top: 0; 
    right: -400px;
    width: 380px; 
    height: 100vh;
    background: var(--color-primary);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
    z-index: 999999;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}
.quick-info-drawer.open {
    right: 0;
}

/* Overlay background */
.quick-info-drawer .drawer-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(7, 19, 36, 0.6);
    backdrop-filter: blur(4px);
    z-index: -1;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.quick-info-drawer.open .drawer-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* Content block */
.quick-info-drawer .drawer-content {
    width: 100%; height: 100%;
    padding: 45px 30px;
    overflow-y: auto;
    background: var(--color-primary);
    position: relative;
    border-left: 3px solid var(--color-accent);
}

.quick-info-drawer .drawer-close {
    position: absolute;
    top: 20px; right: 25px;
    font-size: 32px;
    background: none;
    border: none;
    color: var(--color-accent);
    cursor: pointer;
    transition: var(--transition-base);
}
.quick-info-drawer .drawer-close:hover {
    color: #ffffff;
    transform: rotate(90deg);
}

.quick-info-drawer .drawer-logo {
    text-align: center;
    margin-bottom: 25px;
    margin-top: 15px;
}
.quick-info-drawer .drawer-logo img {
    max-height: 65px;
}

.quick-info-drawer .drawer-title {
    color: #ffffff !important;
    text-align: center;
    font-size: 16px !important;
    margin-bottom: 35px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700 !important;
}

.quick-info-drawer .drawer-section {
    margin-bottom: 25px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.quick-info-drawer .drawer-section h5 {
    color: var(--color-accent) !important;
    font-size: 13px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px !important;
    display: flex;
    align-items: center;
}
.quick-info-drawer .drawer-section h5 span {
    margin-right: 10px;
    font-size: 15px;
}
.quick-info-drawer .drawer-section p {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 13.5px;
    margin-bottom: 4px;
    line-height: 1.6;
}
.quick-info-drawer .drawer-section p a {
    color: #ffffff;
    font-weight: 600;
    transition: var(--transition-base);
}
.quick-info-drawer .drawer-section p a:hover {
    color: var(--color-accent);
}

/* Modern navbar alignment overrides */
.header-upper .container,
.sticky-header .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    max-width: 1200px;
}
.header-upper .upper-right,
.sticky-header .right-col {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-grow: 1 !important;
}
.header-upper .nav-outer,
.sticky-header .right-col nav {
    margin-right: 0 !important;
    float: none !important;
}
.header-upper .logo-outer,
.sticky-header .logo {
    float: none !important;
}

/* Hide the old clunky middle header info block */
.header-info {
    display: none !important;
}

/* Adjust mobile layout styling */
@media (max-width: 991px) {
    .header-upper .container,
    .sticky-header .container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 5px 15px !important;
    }
    .header-upper .upper-right {
        width: auto !important;
        justify-content: flex-end !important;
    }
    .header-upper .nav-outer {
        margin: 0 !important;
    }
    .quick-info-drawer {
        width: 320px;
    }
    .sticky-header .logo {
        margin: 0 !important;
    }
}


/* ----------------------------------------------------
   14. Modern Navbar Layout Overrides (Same Line Fix)
------------------------------------------------------- */
/* Force header upper container to be flex and prevent wrapping */
.header-upper .container,
.sticky-header .container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
    max-width: 1200px !important;
    width: 100% !important;
}

/* Logo box */
.header-upper .logo-outer,
.sticky-header .logo {
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
}

/* Nav Outer container */
.header-upper .upper-right,
.sticky-header .right-col {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-end !important;
    flex-grow: 1 !important;
    flex-wrap: nowrap !important;
}

/* Main Menu overrides */
.main-menu {
    float: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
}

.main-menu .navigation {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.main-menu .navigation > li {
    float: none !important;
    display: inline-block !important;
    margin: 0 4px !important; /* tight margins to fit in one line */
    position: relative !important;
}

.main-menu .navigation > li > a {
    padding: 12px 14px !important; /* reduced padding */
    font-size: 13px !important; /* slightly smaller font for sleek look */
    white-space: nowrap !important;
    letter-spacing: 0.5px !important;
    position: relative !important;
    transition: color 0.3s ease !important;
}

/* Modern hover slide underline animation */
.main-menu .navigation > li > a::after {
    content: '' !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 14px !important;
    right: 14px !important;
    height: 2px !important;
    background-color: var(--color-accent) !important;
    transform: scaleX(0) !important;
    transform-origin: right !important;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.main-menu .navigation > li:hover > a::after,
.main-menu .navigation > li.current > a::after {
    transform: scaleX(1) !important;
    transform-origin: left !important;
}

/* CTA Trigger Button (Contact Info) styling */
.info-btn-holder {
    flex-shrink: 0 !important;
}

.info-btn-holder button.info-drawer-trigger {
    white-space: nowrap !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-family: var(--font-heading) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding: 10px 22px !important;
    border-radius: 30px !important; /* Pill shape */
    border: 2px solid var(--color-accent) !important;
    background: var(--color-accent) !important;
    color: var(--color-primary) !important;
    box-shadow: 0 4px 15px rgba(214, 183, 89, 0.2) !important;
    transition: var(--transition-base) !important;
    cursor: pointer !important;
    height: auto !important;
    line-height: 1 !important;
}

.info-btn-holder button.info-drawer-trigger:hover {
    background: transparent !important;
    color: var(--color-accent) !important;
    box-shadow: 0 6px 20px rgba(214, 183, 89, 0.4) !important;
    transform: translateY(-2px) !important;
}

.info-btn-holder button.info-drawer-trigger span {
    font-size: 13px !important;
    margin-right: 6px !important;
}


/* ----------------------------------------------------
   15. Sticky Header Ugly White Block Fix
------------------------------------------------------- */
/* Remove the hardcoded theme white background for sticky header hover/active states */
.main-header .sticky-header .main-menu .navigation > li > a {
    color: #ffffff !important;
    background: transparent !important;
    transition: var(--transition-base) !important;
}

.main-header .sticky-header .main-menu .navigation > li:hover > a,
.main-header .sticky-header .main-menu .navigation > li.current > a,
.main-header .sticky-header .main-menu .navigation > li.current-menu-item > a {
    background: transparent !important;
    color: var(--color-accent) !important;
    opacity: 1 !important;
}

/* Custom underline hover effect specifically for sticky header links */
.sticky-header .main-menu .navigation > li > a::after {
    bottom: -5px !important;
}


/* ====================================================
/* ====================================================
/* ====================================================
   16. Premium Hero Section V3 & Transparent Header
======================================================= */
/* Premium Glass Navigation Bar */
body.home .main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(5, 15, 35, 0.65) !important;
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1) !important;
    transition: all 0.3s ease;
}

body.home .main-header .header-top {
    background-color: #041832 !important; /* Firm dark navy background */
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    overflow: hidden !important; /* Clip the yellow skew pseudo-element */
    position: relative !important;
    padding: 8px 0 !important;
    z-index: 10;
}

/* Ensure corporate name text on the gold bar is black/navy for strong readability */
body.home .main-header .header-top .top-right p,
body.home .main-header .header-top .top-right p strong {
    color: #041832 !important; /* High contrast navy text on yellow gold background */
    font-weight: 700 !important;
    font-family: var(--font-heading) !important;
    font-size: 13px !important;
}

body.home .main-header .header-upper {
    background: transparent !important;
    box-shadow: none !important;
    padding: 8px 0 !important;
}

/* Hide duplicate sticky header elements on home to avoid double navigation rendering */
body.home .sticky-header {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Make sticky header class apply dark blur styling to main header on scroll */
body.home .main-header.fixed-header {
    background: rgba(4, 24, 50, 0.94) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

body.home .main-header.fixed-header .header-top {
    display: none !important; /* Hide topbar on scroll to maximize viewport space */
}

/* Custom premium buttons */
.btn-gold {
    background-color: #D4AF37 !important;
    color: #041832 !important;
    border: 2px solid #D4AF37 !important;
    font-weight: 700 !important;
    border-radius: 30px !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2) !important;
    transition: all 0.3s ease !important;
}
.btn-gold:hover {
    background-color: transparent !important;
    color: #D4AF37 !important;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4) !important;
    transform: translateY(-2px) !important;
}

.btn-glass {
    background-color: rgba(255, 255, 255, 0.03) !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
    font-weight: 600 !important;
    border-radius: 30px !important;
    padding: 10px 24px !important;
    transition: all 0.3s ease !important;
}
.btn-glass:hover {
    background-color: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2) !important;
    transform: translateY(-2px) !important;
}

/* Premium Hero Layout V3 */
.premium-hero {
    background: #041832; /* Primary V3 Dark navy */
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0 !important;
    color: #ffffff;
    z-index: 1;
}

.premium-hero .container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Align content to the left edge of the grid and offset for header */
.hero-left-col {
    padding-top: 110px; /* Offset standard header + topbar height */
    padding-left: 0 !important;
    margin-left: 0 !important;
    text-align: left;
    animation: fadeInUp 1s ease-out;
}

/* Right Side Background Image Area (60% Width) */
.hero-slider-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.1s ease-out;
}

/* Image Crossfade Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    z-index: 1;
    transition: opacity 1.8s ease-in-out;
}

.hero-slider .slide.active {
    opacity: 1;
    z-index: 2;
    animation: kenBurnsSubtle 12s linear forwards;
}

@keyframes kenBurnsSubtle {
    0% { transform: scale(1.0); }
    100% { transform: scale(1.05); }
}

/* Cinematic Enterprise Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(4, 24, 50, 0.97) 0%,
        rgba(4, 24, 50, 0.94) 35%,
        rgba(4, 24, 50, 0.65) 50%,
        rgba(4, 24, 50, 0.25) 75%,
        rgba(4, 24, 50, 0.05) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* Subtle Grid Pattern Overlay (Opacity 3%) */
.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    opacity: 0.03;
    background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* High-Tech Radar Sweep */
.hero-radar-hud {
    position: absolute;
    bottom: 8%;
    right: 8%;
    width: 240px;
    height: 240px;
    z-index: 3;
    pointer-events: none;
    opacity: 0.06;
}

.radar-circle {
    width: 100%;
    height: 100%;
    border: 1px solid #D4AF37;
    border-radius: 50%;
    position: relative;
}

.radar-circle::before {
    content: '';
    position: absolute;
    top: 50%; left: 0; right: 0; height: 1px;
    background: rgba(212, 175, 55, 0.25);
}

.radar-circle::after {
    content: '';
    position: absolute;
    left: 50%; top: 0; bottom: 0; width: 1px;
    background: rgba(212, 175, 55, 0.25);
}

.radar-sweep-line {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(212, 175, 55, 0.25) 0deg, rgba(212, 175, 55, 0) 180deg);
    animation: radarSweep 5s linear infinite;
}

@keyframes radarSweep {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Minimal Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 8px #D4AF37;
}

.p-1 { top: 20%; left: 30%; animation: particleFloat 12s infinite linear; }
.p-2 { top: 60%; left: 50%; animation: particleFloat 16s infinite linear; }
.p-3 { top: 40%; left: 75%; animation: particleFloat 14s infinite linear; }
.p-4 { top: 80%; left: 15%; animation: particleFloat 18s infinite linear; }

@keyframes particleFloat {
    0% { transform: translateY(100px) scale(0.8); opacity: 0; }
    50% { opacity: 0.6; }
    100% { transform: translateY(-150px) scale(1.2); opacity: 0; }
}

/* Floating Enterprise Widgets (Only Two) */
.floating-widget {
    position: absolute;
    background: rgba(5, 15, 35, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 16px;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.1s ease-out;
    pointer-events: none;
}

.floating-widget i {
    color: #D4AF37;
    font-size: 15px;
}

.widget-info {
    display: flex;
    flex-direction: column;
}

.widget-label {
    font-size: 9px;
    font-weight: 600;
    color: #BFC8D4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.widget-val {
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

/* Status Dot pulse */
.widget-status-dot {
    width: 8px;
    height: 8px;
    background-color: #2ec4b6;
    border-radius: 50%;
    display: inline-block;
}

.widget-status-dot.pulse {
    position: relative;
}

.widget-status-dot.pulse::after {
    content: '';
    position: absolute;
    top: -4px; left: -4px; right: -4px; bottom: -4px;
    border-radius: 50%;
    border: 1.5px solid #2ec4b6;
    animation: pulseAnim 1.6s infinite;
}

@keyframes pulseAnim {
    0% { transform: scale(0.6); opacity: 1; }
    100% { transform: scale(1.6); opacity: 0; }
}

/* Widget Coordinate Placements on the Right Section */
.widget-top-right {
    top: 15%;
    right: 8%;
    animation: floatWidget1 5s ease-in-out infinite;
}

.widget-bottom-right {
    bottom: 15%;
    right: 8%;
    animation: floatWidget2 6s ease-in-out infinite;
}

@keyframes floatWidget1 {
    0%, 100% { margin-top: 0; }
    50% { margin-top: -8px; }
}
@keyframes floatWidget2 {
    0%, 100% { margin-top: 0; }
    50% { margin-top: 8px; }
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 5px 12px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    color: #D4AF37;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
    animation: fadeInUp 0.8s ease-out;
}

.badge-icon {
    font-size: 12px;
    margin-right: 5px;
}

/* Hero Titles V3 (Highly Optimized 42px size to fit perfectly) */
.hero-main-title {
    font-family: var(--font-heading) !important;
    font-size: 42px !important; /* Reduced from 56px to ensure no wrapping issues */
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
    margin-bottom: 12px !important;
    letter-spacing: -0.5px;
    animation: fadeInUp 1s ease-out;
    text-transform: none !important;
}

.text-gradient {
    background: linear-gradient(120deg, #ffffff, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-sub-title {
    font-family: var(--font-body);
    font-size: 14.5px !important; /* Reduced from 15px */
    line-height: 1.5 !important;
    color: #BFC8D4 !important;
    margin-bottom: 18px !important;
    font-weight: 400 !important;
    max-width: 600px;
    animation: fadeInUp 1.2s ease-out;
}

/* Hero CTAs */
.hero-ctas {
    display: flex;
    gap: 12px;
    margin-bottom: 18px;
    animation: fadeInUp 1.4s ease-out;
}

.hero-cta-btn {
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 12px !important;
    padding: 10px 24px !important;
    height: auto !important;
    line-height: 1.2 !important;
}

.play-icon {
    margin-right: 5px;
    font-size: 9px;
}

/* Trust Badges - V3 Glass Badge style */
.hero-trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
    padding-bottom: 0px;
    animation: fadeInUp 1.5s ease-out;
}

.trust-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 11.5px;
    font-weight: 500;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 5px;
}

.trust-badge i {
    color: #D4AF37;
    font-size: 12px;
}

/* KPI Metrics Section (Highly Symmetrical 2x2 horizontal cards) */
.hero-kpi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    animation: fadeInUp 1.6s ease-out;
}

.kpi-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 12px;
    padding: 10px 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 10px;
    height: 80px; /* Highly compact height */
}

.kpi-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.kpi-icon-wrap {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.kpi-icon-wrap i {
    color: #D4AF37;
    font-size: 13px;
}

.kpi-card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.kpi-num {
    font-family: var(--font-heading) !important;
    font-size: 20px !important; /* Optimized from 24px */
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 0px !important;
    line-height: 1.1 !important;
    letter-spacing: -0.5px;
}

.kpi-label {
    font-size: 10.5px !important; /* Optimized from 11px */
    color: #BFC8D4 !important;
    margin-bottom: 0 !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
}

/* ====================================================
   17. Auto Scrolling Trust Bar Marquee
======================================================= */
.trust-bar {
    background: #040b15;
    padding: 35px 0;
    border-bottom: 1px solid rgba(214, 183, 89, 0.1);
    overflow: hidden;
}

.trust-bar-title {
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 25px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 25s linear infinite;
}
.marquee-content:hover {
    animation-play-state: paused;
}

.marquee-item {
    flex-shrink: 0;
    padding: 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.marquee-item img {
    height: 38px;
    width: auto;
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 0.4;
    transition: var(--transition-base);
}

.marquee-item img:hover {
    filter: none;
    opacity: 0.9;
}

@keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* ====================================================
   18. Mobile Responsive Overrides
======================================================= */
@media (max-width: 991px) {
    .premium-hero {
        height: auto;
        min-height: auto;
        display: block;
        padding: 130px 0 60px !important;
        text-align: center;
    }
    
    .hero-left-col {
        padding-top: 0;
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
        padding-left: 15px !important;
        text-align: center;
    }
    
    .hero-slider-wrap {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        height: 400px;
        margin-top: 40px;
        transform: none !important;
    }
    
    .hero-slider .slide:not(.active) {
        display: none !important;
    }
    
    .hero-slider .slide {
        animation: none !important;
        transform: none !important;
    }
    
    .hero-overlay {
        background: linear-gradient(
            to bottom,
            rgba(4, 24, 50, 0.9) 0%,
            rgba(4, 24, 50, 0.1) 100%
        );
    }
    
    .floating-widget,
    .hero-radar-hud,
    .hero-grid-pattern,
    .hero-particles {
        display: none !important;
    }
    
    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-main-title {
        font-size: 38px !important;
        line-height: 1.25 !important;
    }
    
    .hero-sub-title {
        font-size: 15px !important;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-ctas {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-cta-btn {
        width: 100%;
        padding: 12px 25px !important;
    }
    
    .hero-trust-badges {
        justify-content: center;
    }
    
    .hero-kpi-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px;
    }
}

@media (max-width: 575px) {
    .premium-hero {
        padding: 110px 0 50px !important;
    }
    
    .hero-main-title {
        font-size: 30px !important;
    }
    
    .hero-kpi-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px;
    }
    
    .kpi-num {
        font-size: 20px !important;
    }
    
    .kpi-label {
        font-size: 10px !important;
    }
    
    .hero-slider-wrap {
        height: 300px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Hero Scroll Down Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    opacity: 0.75;
    transition: all 0.3s ease;
}

.hero-scroll-indicator:hover {
    opacity: 1;
    transform: translateX(-50%) translateY(-3px);
}

.mouse-scroll {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
    transition: all 0.3s ease;
}

.hero-scroll-indicator:hover .mouse-scroll {
    border-color: #D4AF37;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

.mouse-wheel {
    width: 4px;
    height: 8px;
    background-color: #D4AF37; /* Corporate Gold Wheel */
    border-radius: 2px;
    position: absolute;
    top: 6px;
    animation: scrollWheelAnim 1.8s infinite ease-in-out;
}

@keyframes scrollWheelAnim {
    0% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(14px);
        opacity: 0.1;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

.scroll-text {
    font-family: var(--font-heading);
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.hero-scroll-indicator:hover .scroll-text {
    color: #D4AF37;
}

/* Hide scroll indicator on smaller mobile screens to maintain clean spacing */
@media (max-width: 768px) {
    .hero-scroll-indicator {
        display: none !important;
    }
}

/* Trusted By Section V2 Style Overrides */
.trust-section-v2 {
    background: linear-gradient(180deg, #071B3A 0%, #0B2555 100%) !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 260px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
    z-index: 2 !important;
}

.trust-grid-pattern {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    pointer-events: none !important;
    opacity: 0.03 !important;
    background-image: linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px) !important;
    background-size: 50px 50px !important;
}

.radial-glow {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 800px !important;
    height: 800px !important;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 70%) !important;
    z-index: 2 !important;
    pointer-events: none !important;
}

/* Metric Cards Row */
.trust-metrics-row {
    margin-bottom: 50px !important;
    position: relative !important;
    z-index: 5 !important;
}

.metric-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    padding: 24px !important;
    text-align: center !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 8px !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.metric-card:hover {
    transform: translateY(-6px) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(212, 175, 55, 0.25) !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2) !important;
}

.metric-icon-wrap {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    background: rgba(212, 175, 55, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 4px !important;
}

.metric-icon-wrap i {
    color: #D4AF37 !important;
    font-size: 16px !important;
}

.metric-num {
    font-family: var(--font-heading) !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 0 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.5px !important;
}

.metric-label {
    font-family: var(--font-body) !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-bottom: 0 !important;
    font-weight: 500 !important;
}

/* Trust Header Styling */
.trust-header {
    position: relative !important;
    z-index: 5 !important;
    margin-bottom: 40px !important;
}

.micro-trust-badges {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin-bottom: 25px !important;
}

.trust-pill {
    background: rgba(212, 175, 55, 0.08) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    padding: 6px 14px !important;
    border-radius: 50px !important;
    font-family: var(--font-heading) !important;
    font-size: 11px !important;
    font-weight: 600 !important;
    color: #D4AF37 !important;
    letter-spacing: 0.5px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.trust-pill i {
    font-size: 11px !important;
}

.trust-heading-v2 {
    font-family: var(--font-heading) !important;
    font-size: 40px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 12px !important;
    text-align: center !important;
    letter-spacing: -0.5px !important;
}

.trust-subheading-v2 {
    font-family: var(--font-body) !important;
    font-size: 18px !important;
    color: rgba(255, 255, 255, 0.75) !important;
    max-width: 700px !important;
    margin: 0 auto 35px auto !important;
    text-align: center !important;
    line-height: 1.5 !important;
}

/* Category labels */
.category-labels {
    display: flex !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
    margin-bottom: 15px !important;
}

.category-pill {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    padding: 6px 14px !important;
    border-radius: 30px !important;
    font-family: var(--font-heading) !important;
    font-size: 11.5px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.6) !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.category-pill:hover,
.category-pill.active {
    background: rgba(212, 175, 55, 0.1) !important;
    border-color: #D4AF37 !important;
    color: #D4AF37 !important;
}

/* Logo Showcase Marquee */
.logo-marquee-container {
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
    display: flex !important;
    padding: 30px 0 !important;
    z-index: 5 !important;
}

.logo-marquee-content {
    display: flex !important;
    gap: 24px !important;
    white-space: nowrap !important;
    animation: logoMarquee 35s linear infinite !important;
}

.logo-marquee-content:hover {
    animation-play-state: paused !important;
}

.logo-marquee-content .logo-card {
    flex-shrink: 0 !important;
    width: 200px !important;
    height: 120px !important;
    border-radius: 18px !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.logo-marquee-content .logo-card img {
    max-height: 55px !important;
    max-width: 100% !important;
    object-fit: contain !important;
    opacity: 0.75 !important;
    filter: grayscale(100%) brightness(0) invert(1) !important;
    transition: all 0.3s ease !important;
}

.logo-marquee-content .logo-card:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(212, 175, 55, 0.3) !important;
    transform: scale(1.05) translateY(-2px) !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25) !important;
    cursor: pointer !important;
}

.logo-marquee-content .logo-card:hover img {
    opacity: 1 !important;
    filter: grayscale(0%) brightness(1) invert(0) !important;
}

@keyframes logoMarquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
}

/* CTA Section below logos */
.trust-cta-section {
    position: relative !important;
    z-index: 5 !important;
    margin-top: 45px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 15px !important;
}

.trust-cta-text {
    font-family: var(--font-body) !important;
    font-size: 15px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    margin-bottom: 0 !important;
    font-weight: 500 !important;
}

.trust-cta-buttons {
    display: flex !important;
    align-items: center !important;
    gap: 24px !important;
}

.trust-cta-btn {
    font-size: 12px !important;
    padding: 10px 24px !important;
    letter-spacing: 0.5px !important;
}

.trust-cta-link {
    font-family: var(--font-heading) !important;
    font-size: 13.5px !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 600 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    transition: all 0.3s ease !important;
}

.trust-cta-link:hover {
    color: #D4AF37 !important;
    text-decoration: none !important;
}

.trust-cta-link i {
    font-size: 15px !important;
    transition: transform 0.3s ease !important;
}

.trust-cta-link:hover i {
    transform: translateX(4px) !important;
}



/* ====================================================
   19. Services Mega Menu V3 Styles (Lightweight)
======================================================= */
.header-upper .container,
.sticky-header .container {
    position: relative !important;
}

/* Reset all intermediate header parent containers to static so absolute positioning resolves to the container */
.header-upper .upper-right,
.header-upper .nav-outer,
.header-upper .main-menu,
.header-upper .navbar-collapse,
.header-upper .navigation,
.sticky-header .right-col,
.sticky-header .main-menu,
.sticky-header .navbar-collapse,
.sticky-header .navigation {
    position: static !important;
}

/* Set Services parent menu item to static so mega menu spans full container */
.main-menu .navigation > li.mega-menu-parent {
    position: static !important;
}

/* Mega Menu V3 Wrapper */
.main-menu .navigation > li.mega-menu-parent > .usafe-mega-menu-wrapper {
    position: absolute !important;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(8px) !important;
    width: 850px !important;
    max-width: calc(100vw - 40px) !important; /* Prevent viewport overflow */
    background: #071B3A !important; /* Rich Dark Background */
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 24px !important;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35) !important;
    padding: 32px !important; /* Visual spacing gap */
    opacity: 0 !important;
    visibility: hidden !important;
    transition: opacity 220ms ease-out, transform 220ms ease-out, visibility 220ms ease-out !important;
    z-index: 9999 !important;
    display: block !important;
    pointer-events: none !important;
}

/* Show V3 Menu on Hover */
.main-menu .navigation > li.mega-menu-parent:hover > .usafe-mega-menu-wrapper {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(-50%) translateY(0) !important;
    pointer-events: auto !important;
}

/* Grid layout for Sidebar (20%), Cards Area (80%) */
.mega-menu-main-layout {
    display: grid !important;
    grid-template-columns: 2fr 8fr !important;
    gap: 32px !important; /* Visual spacing gap */
    text-align: left !important;
}

/* Left Sidebar panel */
.mega-menu-sidebar {
    background: rgba(255, 255, 255, 0.01) !important;
    border: 1px solid rgba(255, 255, 255, 0.04) !important;
    border-radius: 18px !important;
    padding: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.sidebar-icon-pill {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 12px;
}

.sidebar-title {
    font-family: var(--font-heading) !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 6px !important;
    text-transform: none !important;
}

.sidebar-subtitle {
    font-family: var(--font-body) !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.4 !important;
    margin-bottom: 16px !important;
}

.sidebar-cta-btn {
    font-family: var(--font-heading) !important;
    font-size: 13.5px !important;
    font-weight: 600 !important;
    color: #D4AF37 !important;
    display: inline-flex !important;
    align-items: center;
    gap: 5px !important;
    transition: all 0.25s ease !important;
}

.sidebar-cta-btn:hover {
    color: #ffffff !important;
    text-decoration: none !important;
}

.sidebar-cta-btn .arrow-icon {
    transition: transform 0.25s ease !important;
    display: inline-block !important;
}

.sidebar-cta-btn:hover .arrow-icon {
    transform: translateX(4px) !important;
}

/* Cards Grid Area */
.mega-menu-cards-area {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.mega-menu-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 24px !important; /* Visual spacing gap */
}

/* Individual Cards Styling (Height: 160px, Width: 240px preference or auto flex width) */
.mega-menu-card {
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 18px !important;
    padding: 20px !important;
    height: 160px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    cursor: pointer !important;
    transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1) !important;
}

.mega-menu-card:hover {
    transform: translateY(-4px) scale(1.02) !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-color: rgba(212, 175, 55, 0.25) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2) !important;
}

.card-header-wrap {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
}

.card-icon-wrap {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: rgba(212, 175, 55, 0.1) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.card-icon-wrap i {
    color: #D4AF37 !important;
    font-size: 15px !important;
}

.card-title {
    font-family: var(--font-heading) !important;
    font-size: 18px !important; /* Title Case 18px */
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
    text-transform: none !important;
}

.card-desc {
    font-family: var(--font-body) !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    line-height: 1.4 !important;
    margin: 0 !important;
}

.card-footer-metrics {
    display: flex !important;
    align-items: center !}

.card-services-count {
    font-family: var(--font-heading) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
    color: #D4AF37 !important;
    transition: transform 0.25s ease !important;
    display: inline-block !important;
}

.mega-menu-card:hover .card-services-count {
    transform: translateX(4px) !important;
}

/* Bottom Popular links as Glass Pills */
.mega-menu-bottom-featured {
    border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
    margin-top: 24px !important;
    padding-top: 20px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
}

.featured-label {
    font-family: var(--font-body) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.45) !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
}

.featured-links {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}

.featured-link-pill {
    font-family: var(--font-heading) !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.06) !important;
    border-radius: 30px !important;
    padding: 6px 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    transition: all 0.25s ease !important;
}

.featured-link-pill i {
    font-size: 12px !important;
    color: #D4AF37 !important;
}

.featured-link-pill:hover {
    color: #D4AF37 !important;
    border-color: #D4AF37 !important;
    background: rgba(212, 175, 55, 0.05) !important;
    transform: translateY(-2px) !important;
    text-decoration: none !important;
}

/* Mobile Accordion Style Overrides */
@media (max-width: 991px) {
    .main-menu .navigation > li.mega-menu-parent > .usafe-mega-menu-wrapper {
        position: static !important;
        width: 100% !important;
        max-width: 100% !important;
        background: rgba(5, 15, 35, 0.4) !important;
        border: none !important;
        box-shadow: none !important;
        padding: 15px !important;
        display: none !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .main-menu .navigation > li.mega-menu-parent.open > .usafe-mega-menu-wrapper {
        display: block !important;
    }
    
    .mega-menu-main-layout {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .mega-menu-sidebar,
    .mega-menu-bottom-featured {
        display: none !important; /* Hide sidebar and popular bottom bar on mobile */
    }
    
    .mega-menu-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    
    .mega-menu-card {
        padding: 16px !important;
        height: auto !important;
        border-radius: 12px !important;
    }
}

/* ====================================================================
   Executive Leadership & Governance Page Styles (V2 Redesign)
   ==================================================================== */

/* Hero Section */
.leadership-hero {
    height: 400px;
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #ffffff;
    overflow: hidden;
}

.leadership-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(7, 27, 58, 0.95) 0%, rgba(11, 37, 85, 0.85) 100%);
    z-index: 1;
}

.leadership-hero .container {
    position: relative;
    z-index: 2;
}

.leadership-hero h1 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 48px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 15px !important;
    line-height: 1.2 !important;
}

.leadership-hero p {
    font-family: 'Inter', sans-serif !important;
    font-size: 18px !important;
    color: rgba(255, 255, 255, 0.85) !important;
    max-width: 800px;
    margin-bottom: 25px !important;
    line-height: 1.6 !important;
}

.leadership-hero .bread-crumb-wrap {
    display: inline-block;
}

.leadership-hero .bread-crumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.leadership-hero .bread-crumb-list li a {
    color: rgba(255, 255, 255, 0.6) !important;
    transition: color 0.3s;
}

.leadership-hero .bread-crumb-list li a:hover {
    color: #D4AF37 !important;
}

.leadership-hero .bread-crumb-list li.active {
    color: #D4AF37 !important;
    font-weight: 600;
}

.leadership-hero .bread-crumb-list li:not(:last-child)::after {
    content: '/';
    margin-left: 8px;
    color: rgba(255, 255, 255, 0.4);
}

/* Leadership Intro */
.leadership-intro {
    padding: 90px 0;
    background: #ffffff;
}

.leadership-intro-grid {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.leadership-intro-left h2 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 38px !important;
    font-weight: 700 !important;
    color: #071B3A !important;
    line-height: 1.3 !important;
    position: relative;
    padding-bottom: 15px;
}

.leadership-intro-left h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 60px;
    height: 4px;
    background-color: #D4AF37;
}

.leadership-intro-right p {
    font-family: 'Inter', sans-serif !important;
    font-size: 18px !important;
    color: #475569 !important;
    line-height: 1.8 !important;
}

/* Showcase Grid */
.leadership-showcase {
    padding: 100px 0;
    background: #F8FAFC;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Executive Card */
.exec-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    height: 490px;
    box-shadow: 0 10px 30px rgba(7, 27, 58, 0.04);
    border: 1px solid rgba(7, 27, 58, 0.03);
    position: relative;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}

.exec-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(7, 27, 58, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

.exec-img-wrap {
    position: relative;
    height: 290px;
    width: 100%;
    overflow: hidden;
}

.exec-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.exec-card:hover .exec-img-wrap img {
    transform: scale(1.05);
}

/* Hover Details Overlay */
.exec-hover-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(7, 27, 58, 0.95);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    z-index: 5;
    text-align: center;
}

.exec-card:hover .exec-hover-overlay {
    opacity: 1;
    visibility: visible;
}

.exec-hover-title {
    font-family: 'Space Grotesk', sans-serif;
    color: #D4AF37;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    position: relative;
}

.exec-hover-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: #D4AF37;
    margin: 8px auto 0;
}

.exec-hover-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.exec-hover-list li {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
    font-size: 15px;
    margin-bottom: 12px;
}

.exec-hover-list li i {
    color: #D4AF37;
    margin-right: 8px;
}

.exec-info {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.exec-info h4 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    color: #071B3A !important;
    margin-bottom: 2px !important;
}

.exec-desig {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: #D4AF37;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.exec-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: #64748B;
    line-height: 1.5;
    margin-bottom: auto;
}

.exec-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    padding-top: 10px;
    border-top: 1px solid rgba(7, 27, 58, 0.05);
}

.exec-profile-btn {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #071B3A !important;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.exec-profile-btn:hover {
    color: #D4AF37 !important;
}

.exec-linkedin {
    color: #64748B !important;
    font-size: 16px;
    transition: color 0.3s;
}

.exec-linkedin:hover {
    color: #0077b5 !important;
}

/* Philosophy Section */
.leadership-philosophy {
    padding: 100px 0;
    background: #F8FAFC;
    border-top: 1px solid rgba(7, 27, 58, 0.03);
}

.philosophy-wrap {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.phil-quote-icon {
    font-size: 60px;
    color: rgba(212, 175, 55, 0.15);
    line-height: 1;
    margin-bottom: 10px;
}

.philosophy-wrap h2 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 38px !important;
    font-weight: 700 !important;
    color: #071B3A !important;
    margin-bottom: 25px !important;
}

.philosophy-text {
    font-family: 'Inter', sans-serif !important;
    font-size: 20px !important;
    line-height: 1.8 !important;
    color: #475569 !important;
    font-style: italic;
}

/* Governance & Values Section */
.governance-values {
    padding: 100px 0;
    background: linear-gradient(180deg, #071B3A 0%, #0B2555 100%);
    position: relative;
    overflow: hidden;
}

.governance-values::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.governance-values .container {
    position: relative;
    z-index: 2;
}

.value-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
}

.value-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.value-card h3 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 12px !important;
}

.value-card p {
    font-family: 'Inter', sans-serif !important;
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Trust section on Leadership */
.leadership-trust {
    padding: 80px 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(7, 27, 58, 0.03);
}

.trust-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-metric-item {
    text-align: center;
    padding: 20px;
}

.trust-metric-item h3 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 48px !important;
    font-weight: 800 !important;
    color: #071B3A !important;
    margin-bottom: 8px !important;
}

.trust-metric-item p {
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    color: #64748B !important;
    font-weight: 500 !important;
}

/* Horizontal Timeline Section */
.leadership-timeline-section {
    padding: 100px 0;
    background: #ffffff;
}

.timeline-horizontal-wrap {
    max-width: 1200px;
    margin: 60px auto 0;
    position: relative;
    padding-bottom: 20px;
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 5%;
    right: 5%;
    height: 4px;
    background: rgba(7, 27, 58, 0.08);
    z-index: 1;
}

.timeline-progress-line {
    position: absolute;
    top: 40px;
    left: 5%;
    width: 75%;
    height: 4px;
    background: #D4AF37;
    z-index: 2;
}

.timeline-nodes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 3;
}

.timeline-node {
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid #071B3A;
    margin: 30px auto;
    transition: all 0.3s;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.timeline-node.active .timeline-dot {
    border-color: #D4AF37;
    background: #D4AF37;
    transform: scale(1.1);
}

.timeline-year {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #071B3A;
    margin-bottom: 5px;
}

.timeline-node.active .timeline-year {
    color: #D4AF37;
}

.timeline-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #071B3A;
    margin-bottom: 8px;
}

.timeline-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: #64748B;
    line-height: 1.5;
}

/* Executive Quote */
.exec-quote-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(7, 27, 58, 0.02) 0%, rgba(11, 37, 85, 0.05) 100%);
    position: relative;
}

.exec-quote-wrap {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.exec-quote-text {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 26px !important;
    font-weight: 600 !important;
    line-height: 1.6 !important;
    color: #071B3A !important;
    margin-bottom: 25px !important;
}

.exec-quote-author {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Why Clients Trust Us Section */
.leadership-why-trust {
    padding: 100px 0;
    background: #ffffff;
}

.why-trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 50px auto 0;
}

.why-trust-item {
    padding: 20px;
    border-radius: 16px;
    transition: all 0.3s;
}

.why-trust-item:hover {
    background: #F8FAFC;
}

.why-trust-icon {
    font-size: 32px;
    color: #D4AF37;
    margin-bottom: 20px;
}

.why-trust-item h3 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #071B3A !important;
    margin-bottom: 12px !important;
}

.why-trust-item p {
    font-family: 'Inter', sans-serif !important;
    font-size: 14.5px !important;
    color: #64748B !important;
    line-height: 1.6 !important;
}

/* Leadership CTA Section */
.leadership-cta {
    padding: 90px 0;
    background: linear-gradient(135deg, #071B3A 0%, #0B2555 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.leadership-cta-wrap {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.leadership-cta h2 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 38px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 30px !important;
    line-height: 1.3 !important;
}

.leadership-cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.leadership-cta-btns .btn-style-one {
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
}

.btn-white-outline {
    background: transparent !important;
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
}

.btn-white-outline:hover {
    background: #ffffff !important;
    color: #071B3A !important;
}

/* Vertical Timeline (Mobile only) */
.timeline-vertical-wrap {
    display: none;
    position: relative;
    max-width: 500px;
    margin: 40px auto 0;
}

.timeline-v-line {
    position: absolute;
    top: 0; bottom: 0; left: 12px;
    width: 4px;
    background: rgba(7, 27, 58, 0.08);
}

.timeline-v-node {
    position: relative;
    padding-left: 45px;
    margin-bottom: 30px;
}

.timeline-v-dot {
    position: absolute;
    left: 2px;
    top: 4px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #ffffff;
    border: 4px solid #071B3A;
    z-index: 2;
}

.timeline-v-node.active .timeline-v-dot {
    border-color: #D4AF37;
    background: #D4AF37;
}

.timeline-v-year {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 4px;
}

.timeline-v-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #071B3A;
    margin-bottom: 6px;
}

.timeline-v-desc {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: #64748B;
    line-height: 1.5;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .leadership-hero {
        height: 350px;
    }
    
    .leadership-intro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
    
    .value-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 0 20px;
    }
    
    .trust-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .timeline-horizontal-wrap {
        display: none;
    }
    
    .timeline-vertical-wrap {
        display: block !important;
        margin-top: 40px;
        padding-left: 30px;
        position: relative;
    }
    
    .why-trust-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

@media (max-width: 767px) {
    .leadership-hero {
        height: 320px;
        text-align: center;
    }
    
    .leadership-hero h1 {
        font-size: 32px !important;
    }
    
    .leadership-hero p {
        font-size: 15px !important;
    }
    
    .leadership-hero .bread-crumb-list {
        justify-content: center;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .value-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .leadership-cta-btns {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* ====================================================================
   Enterprise Global Footer Styles (V2 Redesign)
   ==================================================================== */

/* CTA Strip */
.footer-cta-strip {
    margin-bottom: -60px;
    position: relative;
    z-index: 10;
    padding: 0 15px;
}

.cta-strip-inner {
    background: linear-gradient(135deg, #D4AF37 0%, #B89020 100%);
    border-radius: 20px;
    padding: 35px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.25);
}

.cta-strip-inner h3 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #041832 !important;
    margin: 0 !important;
}

.cta-buttons {
    display: flex;
    gap: 15px;
}

.cta-btn {
    padding: 12px 28px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-btn.btn-navy {
    background: #041832 !important;
    color: #ffffff !important;
    border: 1px solid #041832 !important;
}

.cta-btn.btn-navy:hover {
    background: #ffffff !important;
    color: #041832 !important;
    border-color: #ffffff !important;
    transform: translateY(-2px);
    text-decoration: none !important;
}

.cta-btn.btn-outline-navy {
    background: transparent !important;
    color: #041832 !important;
    border: 2px solid #041832 !important;
}

.cta-btn.btn-outline-navy:hover {
    background: #041832 !important;
    color: #ffffff !important;
    transform: translateY(-2px);
    text-decoration: none !important;
}

/* Trust Badges Strip */
.footer-trust-badges {
    padding-top: 110px;
    padding-bottom: 30px;
    background: #041832;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-badges-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px 25px;
}

.badge-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 10px 24px;
    color: rgba(255, 255, 255, 0.85);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.badge-pill i {
    color: #D4AF37;
}

.badge-pill:hover {
    background: rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

/* Global Presence Section */
.footer-map-bg {
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 90%;
    max-width: 1300px;
    z-index: 1;
    pointer-events: none;
    opacity: 0.12;
}

.world-map-svg {
    width: 100%;
    height: 100%;
}

/* Location markers */
.map-marker {
    cursor: pointer;
}

.map-marker .dot {
    fill: #D4AF37;
}

.map-marker .pulse {
    fill: #D4AF37;
    fill-opacity: 0;
    stroke: #D4AF37;
    stroke-width: 1.5;
    animation: markerPulse 2.5s infinite ease-out;
    transform-origin: center;
}

.map-marker .marker-label {
    fill: rgba(255, 255, 255, 0.6);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 600;
    pointer-events: none;
    letter-spacing: 0.5px;
    transition: fill 0.3s;
}

.map-marker:hover .marker-label {
    fill: #D4AF37;
}

@keyframes markerPulse {
    0% {
        r: 3px;
        fill-opacity: 0.5;
        stroke-opacity: 1;
    }
    100% {
        r: 20px;
        fill-opacity: 0;
        stroke-opacity: 0;
    }
}

/* Main Footer Area */
.main-footer {
    background: linear-gradient(180deg, #071B3A 0%, #020E25 100%) !important;
    padding: 80px 0 30px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.main-footer .container {
    position: relative;
    z-index: 2;
}

.footer-widget-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 25px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

/* Column 1 */
.footer-desc {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    line-height: 1.7;
    margin: 15px 0 20px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-logo img {
    max-height: 50px;
    width: auto;
}

.footer-consult-btn {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #D4AF37 !important;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform 0.3s;
}

.footer-consult-btn:hover {
    transform: translateX(4px);
    color: #ffffff !important;
    text-decoration: none !important;
}

/* Column 2 */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
}

.footer-contact-list li i {
    color: #D4AF37;
    font-size: 16px;
    margin-top: 4px;
}

.footer-contact-list li a {
    color: rgba(255, 255, 255, 0.75) !important;
    transition: color 0.3s;
}

.footer-contact-list li a:hover {
    color: #D4AF37 !important;
    text-decoration: none !important;
}

/* Column 3 */
.footer-locations-wrap {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 20px;
}

.location-group h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #D4AF37;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.location-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.location-group ul li {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-group ul li i {
    font-size: 12px;
    color: #D4AF37;
}

/* Column 4 */
.iso-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    backdrop-filter: blur(5px);
}

.iso-card img {
    height: 45px;
    width: auto;
    filter: brightness(1.1);
}

.iso-text h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff !important;
    margin: 0 0 2px;
    letter-spacing: 1px;
}

.iso-text p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #D4AF37;
    margin: 0;
}

.footer-social-icons {
    display: flex;
    gap: 12px;
}

.glass-social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.glass-social-btn:hover {
    background: rgba(212, 175, 55, 0.1) !important;
    border-color: #D4AF37 !important;
    color: #D4AF37 !important;
    transform: translateY(-4px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

/* Footer Bottom */
.footer-bottom {
    background: #020E25 !important;
    padding: 25px 0 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 60px;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright-text p {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5) !important;
    margin: 0;
}

.copyright-text a {
    color: rgba(255, 255, 255, 0.7) !important;
}

.copyright-text a:hover {
    color: #D4AF37 !important;
}

.footer-bottom-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 20px;
}

.footer-bottom-links li {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links li a {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    color: rgba(255, 255, 255, 0.5) !important;
    transition: color 0.3s;
}

.footer-bottom-links li a:hover {
    color: #D4AF37 !important;
}

/* Mobile responsive styles */
@media (max-width: 991px) {
    .cta-strip-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px;
    }
    
    .footer-locations-wrap {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 767px) {
    /* Mobile Accordion style toggles */
    .footer-widget-title {
        margin-bottom: 0 !important;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-widget-title::after {
        display: none;
    }
    
    .footer-widget-title::before {
        content: '\f107';
        font-family: 'FontAwesome';
        float: right;
        transition: transform 0.3s;
    }
    
    .footer-widget-title.active::before {
        transform: rotate(180deg);
    }
    
    .footer-widget-content {
        display: none;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    .footer-trust-badges {
        padding-top: 80px;
    }
    
    .cta-strip-inner h3 {
        font-size: 22px !important;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-btn {
        width: 100%;
        text-align: center;
    }
    
    .footer-map-bg {
        height: 80%;
        top: 10%;
        opacity: 0.08;
    }
}

/* Dotted world map settings override */
.world-map-svg {
    width: 100%;
    height: 100%;
}

.world-map-svg .map-dot {
    fill: rgba(56, 189, 248, 0.15) !important;
    transition: fill 0.3s, r 0.3s;
}

.world-map-svg .map-dot.highlight-dot {
    fill: rgba(212, 175, 55, 0.45) !important;
}

.world-map-svg .map-dot:hover {
    fill: #D4AF37 !important;
    r: 0.6 !important;
}

/* Markers on the 85x41 coordinate system */
.world-map-svg .map-marker {
    cursor: pointer;
    pointer-events: auto !important;
}

.world-map-svg .map-marker .dot {
    fill: #D4AF37 !important;
    stroke: #071B3A !important;
    stroke-width: 0.2px !important;
}

.world-map-svg .map-marker .pulse {
    fill: #D4AF37 !important;
    fill-opacity: 0 !important;
    stroke: #D4AF37 !important;
    stroke-width: 0.25px !important;
    animation: markerPulseSmall 2.5s infinite ease-out !important;
    transform-origin: center;
}

.world-map-svg .map-marker .marker-label {
    fill: rgba(255, 255, 255, 0.6) !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 1.3px !important;
    font-weight: 700 !important;
    pointer-events: none;
    letter-spacing: 0.1px !important;
    transition: fill 0.3s, font-size 0.3s;
}

.world-map-svg .map-marker:hover .marker-label {
    fill: #D4AF37 !important;
    font-size: 1.5px !important;
}

@keyframes markerPulseSmall {
    0% {
        r: 0.6px;
        fill-opacity: 0.6;
        stroke-opacity: 1;
    }
    100% {
        r: 5px;
        fill-opacity: 0;
        stroke-opacity: 0;
    }
}

/* ====================================================================
   Enterprise Contact Page V2 (Lead Generation Redesign)
   ==================================================================== */

/* Main Contact Page Wrapper Settings */
.contact-hero-section,
.contact-cards-section,
.consultation-form-section,
.contact-map-section-v2,
.contact-faq-section,
.emergency-cta-section {
    position: relative;
    box-sizing: border-box;
}

/* 1. Contact Hero */
.contact-hero-section {
    min-height: 560px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: #ffffff;
    padding: 160px 0 100px; /* Ample top clearance for fixed header and bottom space */
    position: relative;
}

.contact-hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(7, 27, 58, 0.95) 0%, rgba(11, 37, 85, 0.8) 100%);
    z-index: 1;
}

.contact-hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
}

.contact-hero-content .hero-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 12px;
}

.contact-hero-content h1 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 46px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
    margin-bottom: 18px !important;
}

.contact-hero-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 25px;
}

.hero-trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    margin-bottom: 30px;
}

.indicator-item {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.indicator-item i {
    color: #D4AF37;
}

.contact-hero-btns {
    display: flex;
    gap: 15px;
}

/* 2. Quick Contact Cards */
.contact-cards-section {
    background: #F8FAFC;
    padding: 0 0 50px;
    margin-top: -60px; /* Overlap Hero */
    z-index: 5;
}

.contact-quick-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 20px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(7, 27, 58, 0.03);
    text-decoration: none !important;
}

.contact-quick-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(7, 27, 58, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.card-icon i {
    font-size: 20px;
    color: #D4AF37;
}

.contact-quick-card:hover .card-icon {
    background: #D4AF37;
}

.contact-quick-card:hover .card-icon i {
    color: #071B3A;
}

.contact-quick-card h3 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #071B3A !important;
    margin-bottom: 10px !important;
}

.card-detail {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #1E293B;
    margin-bottom: 4px !important;
    word-break: break-all;
}

.card-meta {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: #64748B;
    margin-bottom: 25px;
}

.card-link {
    margin-top: auto;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: #D4AF37;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s ease;
}

.contact-quick-card:hover .card-link {
    gap: 10px;
}

/* 3. Form & Consultation Section */
.consultation-form-section {
    background: #F8FAFC;
    padding: 40px 0 60px;
}

.form-outer-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.02);
    height: 100%;
}

.section-title-left {
    margin-bottom: 35px;
}

.section-title-left .title-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 8px;
}

.section-title-left h2 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 30px !important;
    font-weight: 700 !important;
    color: #071B3A !important;
    margin-bottom: 12px !important;
}

.section-title-left p {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    line-height: 1.6;
    color: #64748B;
    margin: 0;
}

/* Premium Form Styling override */
.contact-form-v2 form p {
    margin-bottom: 20px;
}

.contact-form-v2 .wpcf7-form-control-wrap {
    display: block;
}

.contact-form-v2 input[type="text"],
.contact-form-v2 input[type="email"],
.contact-form-v2 input[type="tel"],
.contact-form-v2 select,
.contact-form-v2 textarea {
    width: 100%;
    background: #F8FAFC !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 12px !important;
    padding: 12px 18px !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 14.5px !important;
    color: #1E293B !important;
    transition: all 0.3s ease !important;
    box-shadow: none !important;
    outline: none !important;
}

.contact-form-v2 input[type="text"]:focus,
.contact-form-v2 input[type="email"]:focus,
.contact-form-v2 input[type="tel"]:focus,
.contact-form-v2 select:focus,
.contact-form-v2 textarea:focus {
    border-color: #D4AF37 !important;
    background: #ffffff !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15) !important;
}

.contact-form-v2 select {
    height: auto !important;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 18px center !important;
    background-size: 16px !important;
    padding-right: 40px !important;
}

.contact-form-v2 textarea {
    height: 120px !important;
    resize: none;
}

.contact-form-v2 input[type="submit"] {
    background: linear-gradient(135deg, #D4AF37 0%, #B89020 100%) !important;
    border: none !important;
    border-radius: 30px !important;
    padding: 14px 35px !important;
    color: #041832 !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    width: 100% !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
    margin-top: 10px !important;
}

.contact-form-v2 input[type="submit"]:hover {
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3) !important;
    transform: translateY(-2px);
}

/* Right Panel Column */
.consultation-info-panel {
    background: linear-gradient(135deg, #071B3A 0%, #0B2555 100%);
    border-radius: 24px;
    padding: 45px;
    color: #ffffff;
    box-shadow: 0 15px 40px rgba(7, 27, 58, 0.15);
    height: 100%;
}

.consultation-info-panel h3 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 25px !important;
}

.panel-stats-list {
    display: flex;
    gap: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 25px;
    margin-bottom: 25px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: #D4AF37;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.panel-details {
    margin-bottom: 35px;
}

.info-block-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-block-item:last-child {
    margin-bottom: 0;
}

.info-block-item i {
    font-size: 18px;
    color: #D4AF37;
    margin-top: 3px;
}

.info-block-item h4 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 4px !important;
}

.info-block-item p {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* Vertical Process Timeline */
.consultation-process-box h4 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #D4AF37 !important;
    margin-bottom: 20px !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-steps-vertical {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.process-steps-vertical::before {
    content: '';
    position: absolute;
    top: 5px; bottom: 5px; left: 16px;
    width: 2px;
    background: rgba(255, 255, 255, 0.08);
}

.process-steps-vertical li {
    position: relative;
    display: flex;
    gap: 18px;
    margin-bottom: 20px;
}

.process-steps-vertical li:last-child {
    margin-bottom: 0;
}

.step-badge {
    width: 34px;
    height: 34px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    border-radius: 50%;
    color: #D4AF37;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.step-info h5 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 14.5px !important;
    font-weight: 600 !important;
    color: #ffffff !important;
    margin-bottom: 3px !important;
}

.step-info p {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* 4. Global Presence Map Overlay Card */
.contact-map-section-v2 {
    height: 450px;
    overflow: hidden;
    position: relative;
    background: #e5e5e5;
}

.home-google-map-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.google-map-v2 {
    width: 100%;
    height: 100%;
}

.google-map-v2 iframe {
    width: 100% !important;
    height: 450px !important;
    border: none;
    filter: grayscale(0.2) contrast(1.05);
}

/* Glass Card Overlay */
.map-overlay-glass-card {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
    background: rgba(7, 27, 58, 0.9);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 25px;
    width: 360px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    color: #ffffff;
}

.overlay-header {
    display: flex;
    gap: 12px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.overlay-header i {
    font-size: 24px;
    color: #D4AF37;
}

.overlay-header h4 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
}

.overlay-header .subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
}

.locations-brief-box {
    margin-bottom: 20px;
}

.loc-group {
    margin-bottom: 12px;
}

.loc-group:last-child {
    margin-bottom: 0;
}

.loc-group-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    color: #D4AF37;
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 3px;
}

.loc-list {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 !important;
}

.overlay-footer {
    display: flex;
    gap: 10px;
}

.badge-pill-small {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 4px 12px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
}

/* 5. FAQ Section */
.contact-faq-section {
    background: #ffffff;
    padding: 60px 0;
}

.faq-accordion-wrap {
    max-width: 800px;
    margin: 0 auto;
}

.faq-card {
    background: #F8FAFC !important;
    border: 1px solid #E2E8F0 !important;
    border-radius: 12px !important;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: none;
    transition: all 0.3s ease;
}

.faq-card:hover {
    border-color: rgba(212, 175, 55, 0.2) !important;
    box-shadow: 0 5px 15px rgba(7, 27, 58, 0.02);
}

.faq-btn {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #071B3A !important;
    padding: 20px 24px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none !important;
    outline: none !important;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.faq-btn.active, .faq-btn:hover {
    color: #D4AF37 !important;
}

.accordion-icon {
    font-size: 18px;
    color: #64748B;
    transition: color 0.3s;
}

.faq-btn:hover .accordion-icon,
.faq-btn.active .accordion-icon {
    color: #D4AF37;
}

.faq-body {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    line-height: 1.7;
    color: #475569;
    padding: 0 24px 20px 24px !important;
    background: #F8FAFC;
    border-top: none !important;
}

/* 6. Emergency CTA */
.emergency-cta-section {
    background: #041832;
    padding: 60px 0;
}

.emergency-cta-inner {
    background: linear-gradient(135deg, #071B3A 0%, #0B2555 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 24px;
    padding: 45px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.emergency-content {
    max-width: 600px;
}

.emergency-badge {
    background: rgba(220, 38, 38, 0.15);
    border: 1px solid rgba(220, 38, 38, 0.3);
    border-radius: 30px;
    padding: 4px 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #EF4444;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
}

.emergency-cta-inner h2 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 8px !important;
}

.emergency-cta-inner p {
    font-family: 'Inter', sans-serif;
    font-size: 14.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

.emergency-btns {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* Responsive Overrides */
@media (max-width: 991px) {
    .contact-hero-section {
        height: auto;
        padding: 120px 0 100px;
        text-align: center;
    }
    
    .contact-hero-content {
        max-width: 100%;
    }
    
    .contact-hero-content h1 {
        font-size: 34px !important;
    }
    
    .hero-trust-indicators {
        justify-content: center;
    }
    
    .contact-hero-btns {
        justify-content: center;
    }
    
    .contact-cards-section {
        margin-top: 0;
        padding-top: 40px;
    }
    
    .contact-card-col {
        margin-bottom: 25px;
    }
    
    .contact-card-col:last-child {
        margin-bottom: 0;
    }
    
    .form-column-wrap {
        margin-bottom: 30px;
    }
    
    .map-overlay-glass-card {
        position: relative;
        top: 0; left: 0;
        width: 100%;
        margin-bottom: 20px;
        border-radius: 0;
        box-shadow: none;
    }
    
    .contact-map-section-v2 {
        height: auto;
    }
    
    .google-map-v2 iframe {
        height: 300px !important;
    }
    
    .emergency-cta-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 35px 25px;
    }
    
    .emergency-btns {
        width: 100%;
        flex-direction: column;
    }
}

/* ====================================================================
   U-SAFE Operations Coverage Dashboard (Leaflet Map V2)
   ==================================================================== */

.ops-dashboard-section {
    background: #041832;
    padding: 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ops-dashboard-container {
    display: flex;
    height: 650px;
    width: 100%;
}

/* Left Panel styling */
.ops-left-panel {
    width: 320px;
    background: #071B3A;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
    color: #ffffff;
    z-index: 10;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.2);
}

.ops-panel-header {
    padding: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ops-panel-header h3 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 6px !important;
}

.ops-panel-header p {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Search Box */
.ops-search-box {
    margin-top: 15px;
    position: relative;
}

.ops-search-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.4);
    font-size: 13px;
    z-index: 5;
}

#opsSearchInput {
    width: 100%;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 30px !important;
    padding: 8px 15px 8px 35px !important;
    font-family: 'Inter', sans-serif;
    font-size: 13px !important;
    color: #ffffff !important;
    outline: none !important;
    transition: all 0.3s ease;
}

#opsSearchInput:focus {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: #D4AF37 !important;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.15);
}

.search-autocomplete-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #071B3A;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    margin: 5px 0 0 0;
    padding: 8px 0;
    list-style: none;
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.search-autocomplete-list li {
    padding: 8px 15px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.85);
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-autocomplete-list li:hover {
    background: rgba(212, 175, 55, 0.15);
    color: #D4AF37;
}

/* Location Tree */
.ops-location-tree {
    flex: 1;
    overflow-y: auto;
    padding: 15px 24px;
}

.tree-category {
    margin-bottom: 20px;
}

.tree-cat-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    color: #D4AF37;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
    opacity: 0.8;
}

.tree-item {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 4px;
}

.tree-item i {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s;
}

.tree-item:hover {
    background: rgba(255, 255, 255, 0.03);
    color: #ffffff;
}

.tree-item.active {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    font-weight: 600;
}

.tree-item.active i {
    color: #D4AF37;
}

/* Details Card */
.ops-details-card {
    padding: 24px;
    background: rgba(4, 24, 50, 0.8);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ops-details-card h4 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 6px !important;
}

.detail-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #D4AF37;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 3px 8px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.detail-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 6px;
}

.detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.detail-lbl {
    color: rgba(255, 255, 255, 0.5);
}

.status-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.status-indicator::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10B981;
}

/* Right Map Area styling */
.ops-map-area {
    flex: 1;
    position: relative;
    height: 100%;
}

#opsLeafletMap {
    width: 100%;
    height: 100%;
    background: #041832;
    z-index: 1;
}

/* Custom styles overlay */
.ops-map-controls {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    pointer-events: none;
}

.control-group {
    display: flex;
    gap: 6px;
    background: rgba(7, 27, 58, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    padding: 4px;
    pointer-events: auto;
}

.map-ctrl-btn {
    background: transparent;
    border: none;
    border-radius: 20px;
    padding: 6px 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.map-ctrl-btn:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

.map-ctrl-btn.active {
    background: #D4AF37;
    color: #041832;
    font-weight: 700;
}

/* Stats Overlay bottom left */
.ops-stats-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    background: rgba(7, 27, 58, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 15px 20px;
    display: flex;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.ops-stats-overlay .stat-box {
    display: flex;
    flex-direction: column;
}

.ops-stats-overlay .stat-box .num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #D4AF37;
    line-height: 1.2;
}

.ops-stats-overlay .stat-box .lbl {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Legend bottom right */
.ops-map-legend {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    background: rgba(7, 27, 58, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 15px 20px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.legend-item {
    font-family: 'Inter', sans-serif;
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 8px;
}

.legend-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.legend-dot.hq {
    background: #D4AF37;
    box-shadow: 0 0 6px #D4AF37;
}

.legend-dot.regional {
    background: #3B82F6;
    box-shadow: 0 0 6px #3B82F6;
}

.legend-dot.international {
    background: #8B5CF6;
    box-shadow: 0 0 6px #8B5CF6;
}

.legend-dot.coverage-zone {
    background: rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(212, 175, 55, 0.6);
}

/* Custom Shield Marker pulse styling */
.custom-leaflet-marker {
    position: relative;
}

.marker-shield {
    position: absolute;
    width: 30px;
    height: 30px;
    background: #071B3A;
    border: 2px solid #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    z-index: 10;
    transition: transform 0.3s;
}

.custom-leaflet-marker:hover .marker-shield {
    transform: scale(1.15);
}

.custom-leaflet-marker.marker-hq .marker-shield {
    border-color: #D4AF37;
}

.custom-leaflet-marker.marker-regional .marker-shield {
    border-color: #3B82F6;
}

.custom-leaflet-marker.marker-regional .marker-shield svg path {
    fill: #3B82F6;
}

.custom-leaflet-marker.marker-intl .marker-shield {
    border-color: #8B5CF6;
}

.custom-leaflet-marker.marker-intl .marker-shield svg path {
    fill: #8B5CF6;
}

.marker-pulse {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.25);
    z-index: 1;
    animation: markerPulseGlow 2s infinite ease-out;
}

.custom-leaflet-marker.marker-regional .marker-pulse {
    background: rgba(59, 130, 246, 0.25);
}

.custom-leaflet-marker.marker-intl .marker-pulse {
    background: rgba(139, 92, 246, 0.25);
}

@keyframes markerPulseGlow {
    0% {
        transform: scale(0.6);
        opacity: 0.8;
    }
    100% {
        transform: scale(1.4);
        opacity: 0;
    }
}

/* Custom animated connection lines in Leaflet */
.leaflet-interactive.network-line {
    stroke-dasharray: 6, 6;
    animation: marchLines 25s linear infinite;
    stroke: #D4AF37;
    stroke-opacity: 0.6;
    stroke-width: 1.5px;
}

@keyframes marchLines {
    to {
        stroke-dashoffset: -100;
    }
}

/* Custom Info Popup Leaflet */
.ops-popup-content {
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    padding: 5px;
}

.ops-popup-content h5 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #D4AF37;
}

.ops-popup-content p {
    font-size: 11.5px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Leaflet override to match dark dashboard style */
.leaflet-popup-content-wrapper {
    background: rgba(7, 27, 58, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
}

.leaflet-popup-tip {
    background: rgba(7, 27, 58, 0.95) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.leaflet-container a.leaflet-popup-close-button {
    color: rgba(255,255,255,0.6) !important;
}

.leaflet-bar {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(7, 27, 58, 0.85) !important;
    backdrop-filter: blur(12px) !important;
}

.leaflet-bar a {
    background: transparent !important;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.leaflet-bar a:hover {
    background: rgba(255, 255, 255, 0.05) !important;
}

/* Mobile responsive drawer */
@media (max-width: 991px) {
    .ops-dashboard-container {
        flex-direction: column;
        height: auto;
    }
    
    .ops-left-panel {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        height: auto;
        box-shadow: none;
    }
    
    .ops-location-tree {
        max-height: 180px;
        padding: 10px 24px 15px;
    }
    
    .ops-map-area {
        height: 500px;
    }
    
    .ops-map-controls {
        flex-direction: column;
        gap: 8px;
        top: 15px;
        left: 15px;
        right: 15px;
    }
    
    .control-group {
        width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        border-radius: 12px;
        padding: 5px;
    }
    
    .map-ctrl-btn {
        flex-shrink: 0;
    }
    
    .ops-stats-overlay {
        left: 10px;
        bottom: 10px;
        padding: 10px;
        gap: 15px;
    }
    
    .ops-stats-overlay .stat-box .num {
        font-size: 15px;
    }
    
    .ops-map-legend {
        right: 10px;
        bottom: 10px;
        padding: 10px;
    }
}

/* ====================================================================
   U-SAFE Our Clients Page V2 - Trust & Credibility Redesign
   ==================================================================== */

/* 2. Trust Metrics Section */
.trust-metrics-section {
    background: #F8FAFC;
    padding: 50px 0;
    position: relative;
    z-index: 5;
    margin-top: -50px; /* Overlaps hero section */
}

.metrics-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.metric-card-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(7, 27, 58, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.metric-card-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(7, 27, 58, 0.06);
    border-color: rgba(212, 175, 55, 0.3);
}

.metric-card-box h3 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #D4AF37 !important;
    margin-bottom: 6px !important;
}

.metric-card-box p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #64748B;
    margin: 0;
    font-weight: 600;
}

/* 3. Industries We Serve */
.industries-serve-section {
    background: #ffffff;
    padding: 70px 0;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.industry-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.industry-card:hover {
    background: #ffffff;
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 25px rgba(7, 27, 58, 0.04);
    transform: translateY(-4px);
}

.industry-icon {
    width: 44px;
    height: 44px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.industry-icon i {
    font-size: 18px;
    color: #D4AF37;
}

.industry-card h4 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #071B3A !important;
    margin-bottom: 10px !important;
}

.industry-card p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #64748B;
    margin: 0;
}

/* 4. Client Showcase Grid */
.client-showcase-section {
    background: #F8FAFC;
    padding: 70px 0;
}

.logo-wall-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.logo-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.01);
    transition: all 0.3s ease;
}

.logo-card img {
    max-height: 50px;
    max-width: 100%;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.logo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    border-color: rgba(212, 175, 55, 0.2);
}

.logo-card:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.placeholder-logo {
    border: 1px dashed rgba(212, 175, 55, 0.3);
    background: rgba(212, 175, 55, 0.02);
}

.placeholder-logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: rgba(7, 27, 58, 0.4);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* 5. Why Choose Features Grid */
.why-choose-section {
    background: #ffffff;
    padding: 70px 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.why-choose-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 35px 25px;
    transition: all 0.3s ease;
}

.why-choose-card:hover {
    background: #071B3A;
    color: #ffffff;
    border-color: #071B3A;
    box-shadow: 0 15px 35px rgba(7, 27, 58, 0.15);
    transform: translateY(-5px);
}

.why-choose-card .card-icon-round {
    width: 50px;
    height: 50px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.why-choose-card .card-icon-round i {
    font-size: 20px;
    color: #D4AF37;
}

.why-choose-card:hover .card-icon-round {
    background: rgba(255, 255, 255, 0.1);
}

.why-choose-card h4 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #071B3A !important;
    margin-bottom: 12px !important;
    transition: color 0.3s;
}

.why-choose-card:hover h4 {
    color: #ffffff !important;
}

.why-choose-card p {
    font-family: 'Inter', sans-serif;
    font-size: 13.5px;
    line-height: 1.6;
    color: #64748B;
    margin: 0;
    transition: color 0.3s;
}

.why-choose-card:hover p {
    color: rgba(255, 255, 255, 0.7);
}

/* 6. Success Case Studies Card Grid */
.success-highlights-section {
    background: #F8FAFC;
    padding: 70px 0;
}

.case-study-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.case-study-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(7, 27, 58, 0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.case-card-header {
    background: linear-gradient(135deg, #071B3A 0%, #0B2555 100%);
    padding: 30px 25px;
    color: #ffffff;
}

.case-card-header h4 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 12px !important;
}

.case-metrics-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.case-metric-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 3px 10px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #D4AF37;
}

.case-card-body {
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.case-card-body p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 20px 0;
}

.case-card-link {
    margin-top: auto;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* 8. Testimonials Section Styling */
.testimonials-section {
    background: #ffffff;
    padding: 70px 0;
}

.testimonial-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 40px;
    position: relative;
    height: 100%;
}

.testimonial-quote-icon {
    font-size: 32px;
    color: #D4AF37;
    margin-bottom: 20px;
    line-height: 1;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #334155;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-author-name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #071B3A;
}

.testimonial-author-meta {
    font-family: 'Inter', sans-serif;
    font-size: 12.5px;
    color: #64748B;
}

/* 9. Client Retention Section */
.retention-section {
    background: linear-gradient(135deg, #071B3A 0%, #041832 100%);
    padding: 80px 0;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.retention-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 2;
}

.retention-text-side {
    max-width: 650px;
}

.retention-text-side h2 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 36px !important;
    font-weight: 800 !important;
    color: #ffffff !important;
    margin-bottom: 15px !important;
}

.retention-text-side p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.retention-stats-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 50px;
    border-radius: 24px;
    text-align: center;
}

.retention-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 72px;
    font-weight: 800;
    color: #D4AF37;
    line-height: 1;
    margin-bottom: 10px;
}

.retention-lbl {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #ffffff;
}

/* 10. Gold CTA Section */
.cta-partner-section {
    background: linear-gradient(135deg, #D4AF37 0%, #B89020 100%);
    padding: 65px 0;
    text-align: center;
}

.cta-partner-section h2 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #041832 !important;
    margin-bottom: 12px !important;
}

.cta-partner-section p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(4, 24, 50, 0.85);
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-partner-section .btn-dark-navy {
    background: #071B3A !important;
    color: #ffffff !important;
}

.cta-partner-section .btn-dark-navy:hover {
    background: #041832 !important;
    box-shadow: 0 10px 25px rgba(4, 24, 50, 0.3) !important;
}

.cta-partner-section .btn-white-outline {
    border-color: #071B3A !important;
    color: #071B3A !important;
}

.cta-partner-section .btn-white-outline:hover {
    background: #071B3A !important;
    color: #ffffff !important;
}

/* Responsive Rules for Clients Page */
@media (max-width: 1199px) {
    .metrics-grid-wrapper {
        grid-template-columns: repeat(3, 1fr);
    }
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .logo-wall-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .case-study-grid {
        grid-template-columns: 1fr;
    }
    .retention-wrapper {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .metrics-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }
    .logo-wall-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .metrics-grid-wrapper {
        grid-template-columns: 1fr;
    }
    .industries-grid {
        grid-template-columns: 1fr;
    }
}

/* Dark Mode Variants for dark/light alternation */

/* Client Showcase Dark Mode */
.client-showcase-section.dark-mode {
    background: linear-gradient(135deg, #071B3A 0%, #0B2555 100%);
}

.client-showcase-section.dark-mode .sec-title h2 {
    color: #ffffff !important;
}

.client-showcase-section.dark-mode .sec-title p {
    color: rgba(255, 255, 255, 0.7);
}

.client-showcase-section.dark-mode .sec-title .title-tag {
    color: #D4AF37;
}

.client-showcase-section.dark-mode .logo-card {
    background: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}

.client-showcase-section.dark-mode .logo-card:hover {
    background: #ffffff !important;
    border-color: rgba(212, 175, 55, 0.5) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3) !important;
}

.client-showcase-section.dark-mode .logo-card img {
    filter: grayscale(1) brightness(0.2) !important;
    opacity: 0.65 !important;
}

.client-showcase-section.dark-mode .logo-card:hover img {
    filter: grayscale(0) brightness(0.25) !important;
    opacity: 1 !important;
}

.client-showcase-section.dark-mode .placeholder-logo {
    border-color: rgba(212, 175, 55, 0.3) !important;
    background: rgba(255, 255, 255, 0.05) !important;
}

.client-showcase-section.dark-mode .placeholder-logo-text {
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Success Highlights Dark Mode */
.success-highlights-section.dark-mode {
    background: linear-gradient(135deg, #071B3A 0%, #0B2555 100%);
}

.success-highlights-section.dark-mode .sec-title h2 {
    color: #ffffff !important;
}

.success-highlights-section.dark-mode .sec-title p {
    color: rgba(255, 255, 255, 0.7);
}

.success-highlights-section.dark-mode .sec-title .title-tag {
    color: #D4AF37;
}

.success-highlights-section.dark-mode .case-study-card {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.06);
}

.success-highlights-section.dark-mode .case-card-body {
    background: rgba(4, 24, 50, 0.5);
}

.success-highlights-section.dark-mode .case-card-body p {
    color: rgba(255, 255, 255, 0.7);
}

.success-highlights-section.dark-mode .case-card-link {
    color: #D4AF37;
}

/* ====================================================================
   U-SAFE Services Page V3 - Enterprise Solutions Redesign
   ==================================================================== */

/* Hero inline metrics row */
.hero-metrics-row {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero-metric-item {
    display: flex;
    flex-direction: column;
}

.hero-metric-item .hm-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: #D4AF37;
    line-height: 1.2;
}

.hero-metric-item .hm-lbl {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* 2. Service Categories 2x2 Grid */
.svc-categories-section {
    background: #F8FAFC;
    padding: 70px 0;
}

.svc-cat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.svc-cat-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 40px 30px;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    position: relative;
    overflow: hidden;
}

.svc-cat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #071B3A);
    opacity: 0;
    transition: opacity 0.3s;
}

.svc-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(7, 27, 58, 0.08);
    border-color: rgba(212, 175, 55, 0.2);
}

.svc-cat-card:hover::before {
    opacity: 1;
}

.svc-cat-icon {
    width: 56px;
    height: 56px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.svc-cat-icon i {
    font-size: 22px;
    color: #D4AF37;
}

.svc-cat-card h3 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #071B3A !important;
    margin-bottom: 12px !important;
}

.svc-cat-card > p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #64748B;
    margin-bottom: 20px;
}

.svc-sub-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.svc-sub-list li {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    background: #F1F5F9;
    padding: 4px 10px;
    border-radius: 20px;
}

.svc-cat-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.svc-count-badge {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.svc-view-link {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #071B3A;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s;
}

.svc-view-link:hover {
    color: #D4AF37;
}

/* 3. Featured Solutions Alternating Rows */
.featured-solutions-section {
    background: #ffffff;
    padding: 70px 0;
}

.featured-solution-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 50px;
}

.featured-solution-row:last-child {
    margin-bottom: 0;
}

.featured-solution-row.reverse {
    flex-direction: row-reverse;
}

.featured-sol-visual {
    flex: 0 0 45%;
    background: linear-gradient(135deg, #071B3A 0%, #0B2555 100%);
    border-radius: 20px;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 280px;
    position: relative;
    overflow: hidden;
}

.featured-sol-visual::after {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.05);
    top: -40px;
    right: -40px;
}

.featured-sol-visual i {
    font-size: 48px;
    color: #D4AF37;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.featured-sol-visual h4 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
    text-align: center;
    position: relative;
    z-index: 2;
}

.featured-sol-content {
    flex: 1;
}

.featured-sol-content h3 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 26px !important;
    font-weight: 800 !important;
    color: #071B3A !important;
    margin-bottom: 15px !important;
}

.featured-sol-content > p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #475569;
    margin-bottom: 20px;
}

.sol-feature-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.sol-feature-chips span {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #071B3A;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.sol-feature-chips span i {
    color: #D4AF37;
    font-size: 10px;
}

/* 6. Service Delivery Timeline */
.svc-process-section {
    background: linear-gradient(135deg, #071B3A 0%, #0B2555 100%);
    padding: 70px 0;
    color: #ffffff;
}

.svc-process-section .sec-title h2 {
    color: #ffffff !important;
}

.svc-process-section .sec-title p {
    color: rgba(255, 255, 255, 0.7);
}

.svc-process-section .sec-title .title-tag {
    color: #D4AF37;
}

.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
    padding-top: 30px;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 52px;
    left: calc(10% + 22px);
    right: calc(10% + 22px);
    height: 2px;
    background: rgba(212, 175, 55, 0.3);
}

.timeline-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 10px;
}

.step-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.15);
    border: 2px solid #D4AF37;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #D4AF37;
    margin-bottom: 18px;
}

.timeline-step h5 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 6px !important;
}

.timeline-step p {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    max-width: 140px;
}

/* 8. Service Comparison Matrix */
.svc-matrix-section {
    background: #F8FAFC;
    padding: 70px 0;
}

.comparison-table-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    box-shadow: 0 5px 20px rgba(7, 27, 58, 0.03);
}

.comparison-table-wrap table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
}

.comparison-table-wrap thead th {
    background: #071B3A;
    color: #ffffff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 16px 20px;
    text-align: center;
    border-bottom: 2px solid #D4AF37;
}

.comparison-table-wrap thead th:first-child {
    text-align: left;
}

.comparison-table-wrap tbody td {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #334155;
    padding: 14px 20px;
    border-bottom: 1px solid #F1F5F9;
    text-align: center;
}

.comparison-table-wrap tbody td:first-child {
    font-weight: 600;
    text-align: left;
    color: #071B3A;
}

.comparison-table-wrap tbody tr:hover {
    background: #F8FAFC;
}

.check-yes {
    color: #10B981;
    font-weight: 700;
}

.check-no {
    color: #CBD5E1;
}

/* 10. Services FAQ */
.svc-faq-section {
    background: #ffffff;
    padding: 70px 0;
}

.svc-faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.svc-faq-item {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s;
}

.svc-faq-item:hover {
    border-color: rgba(212, 175, 55, 0.3);
}

.svc-faq-btn {
    width: 100%;
    background: #ffffff;
    border: none;
    padding: 18px 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #071B3A;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.svc-faq-btn:hover {
    background: #F8FAFC;
}

.svc-faq-btn .faq-toggle-icon {
    color: #D4AF37;
    font-size: 14px;
    transition: transform 0.3s;
}

.svc-faq-btn[aria-expanded="true"] .faq-toggle-icon {
    transform: rotate(180deg);
}

.svc-faq-body {
    padding: 0 24px 18px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.7;
    color: #64748B;
}

/* 11. Gold CTA Section (shared) */
.svc-gold-cta {
    background: linear-gradient(135deg, #D4AF37 0%, #B89020 100%);
    padding: 65px 0;
    text-align: center;
}

.svc-gold-cta h2 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 32px !important;
    font-weight: 800 !important;
    color: #041832 !important;
    margin-bottom: 12px !important;
}

.svc-gold-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(4, 24, 50, 0.85);
    max-width: 700px;
    margin: 0 auto 30px;
}

.cta-btns-row {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-dark-navy {
    background: #071B3A !important;
    color: #ffffff !important;
    border: 2px solid #071B3A !important;
    padding: 12px 30px !important;
    border-radius: 8px !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-dark-navy:hover {
    background: #041832 !important;
    box-shadow: 0 10px 25px rgba(4, 24, 50, 0.3) !important;
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent !important;
    color: #071B3A !important;
    border: 2px solid #071B3A !important;
    padding: 12px 30px !important;
    border-radius: 8px !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-outline-dark:hover {
    background: #071B3A !important;
    color: #ffffff !important;
}

/* Service Page Responsive */
@media (max-width: 991px) {
    .svc-cat-grid {
        grid-template-columns: 1fr;
    }
    .featured-solution-row,
    .featured-solution-row.reverse {
        flex-direction: column;
    }
    .featured-sol-visual {
        flex: none;
        width: 100%;
        min-height: 200px;
    }
    .process-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 25px;
    }
    .process-timeline::before {
        top: 74px;
        bottom: 74px;
        left: 22px;
        right: auto;
        width: 2px;
        height: auto;
    }
    .timeline-step {
        flex-direction: row;
        text-align: left;
        gap: 15px;
        padding: 0;
    }
    .timeline-step p {
        max-width: none;
    }
    .comparison-table-wrap {
        overflow-x: auto;
    }
}

@media (max-width: 767px) {
    .hero-metrics-row {
        gap: 15px;
    }
    .hero-metric-item .hm-num {
        font-size: 20px;
    }
}

/* ====================================================================
   U-SAFE Free Assessment Portal Page Styles
   ==================================================================== */

/* Assessment Hero Section */
.assessment-hero {
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 100px 0 80px;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.assessment-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(11, 37, 85, 0.95), rgba(7, 27, 58, 0.98));
    z-index: 1;
}

.assessment-hero .container {
    position: relative;
    z-index: 2;
}

.assessment-badge {
    display: inline-block;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid rgba(212, 175, 55, 0.4);
    color: #D4AF37;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 30px;
    margin-bottom: 25px;
}

.assessment-hero h1 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 42px !important;
    font-weight: 800 !important;
    line-height: 1.2 !important;
    color: #ffffff !important;
    margin-bottom: 20px !important;
}

.assessment-hero p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin-bottom: 30px;
}

.assessment-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    margin-bottom: 35px;
}

.assessment-benefit-item {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.assessment-benefit-item i {
    color: #D4AF37;
    font-size: 16px;
}

/* Why Get Assessment Cards */
.why-assessment-section {
    background: #F8FAFC;
    padding: 70px 0;
}

.why-assessment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-assessment-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    padding: 30px 24px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(7, 27, 58, 0.02);
}

.why-assessment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(7, 27, 58, 0.06);
    border-color: rgba(212, 175, 55, 0.2);
}

.why-assessment-card .card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-assessment-card .card-icon i {
    font-size: 20px;
    color: #D4AF37;
}

.why-assessment-card h4 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    color: #071B3A !important;
    margin-bottom: 10px !important;
}

.why-assessment-card p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.6;
    color: #64748B;
    margin: 0;
}

/* Multi-Step Form Wrapper */
.assessment-form-section {
    background: #ffffff;
    padding: 80px 0;
}

.assessment-form-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(7, 27, 58, 0.05);
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

/* Step Indicators */
.form-step-indicators {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    margin-bottom: 40px;
}

.form-step-indicators::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 20px;
    right: 20px;
    height: 4px;
    background: #F1F5F9;
    z-index: 1;
    border-radius: 2px;
}

.step-indicator-fill {
    content: '';
    position: absolute;
    top: 15px;
    left: 20px;
    height: 4px;
    background: #D4AF37;
    z-index: 2;
    width: 0%;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.step-indicator-item {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #94A3B8;
    position: relative;
    z-index: 3;
    transition: all 0.3s ease;
}

.step-indicator-item.active {
    border-color: #D4AF37;
    color: #071B3A;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.step-indicator-item.completed {
    background: #D4AF37;
    border-color: #D4AF37;
    color: #041832;
}

/* Panels */
.form-step-panel {
    display: none;
}

.form-step-panel.active {
    display: block;
}

.panel-title {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #071B3A !important;
    margin-bottom: 25px !important;
    border-bottom: 1px solid #F1F5F9;
    padding-bottom: 12px;
}

/* Fields & Layouts */
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 20px;
}

.form-group-item label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #071B3A;
    margin-bottom: 8px;
}

.form-group-item input,
.form-group-item select,
.form-group-item textarea {
    padding: 12px 16px;
    border: 1px solid #CBD5E1;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #1E293B;
    background: #ffffff;
    transition: all 0.3s;
}

.form-group-item input:focus,
.form-group-item select:focus,
.form-group-item textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

/* Checkbox and Radio Grid styles */
.checkbox-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.custom-checkbox-card {
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s;
}

.custom-checkbox-card:hover {
    background: #F8FAFC;
    border-color: rgba(212, 175, 55, 0.3);
}

.custom-checkbox-card input[type="checkbox"],
.custom-checkbox-card input[type="radio"] {
    accent-color: #D4AF37;
    width: 18px;
    height: 18px;
}

.custom-checkbox-card span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #071B3A;
}

.custom-checkbox-card:has(input:checked) {
    border-color: #D4AF37 !important;
    background: rgba(212, 175, 55, 0.05) !important;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.1) !important;
}

/* Nav Buttons */
.form-navigation-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    border-top: 1px solid #F1F5F9;
    padding-top: 25px;
}

.btn-form-prev {
    background: transparent;
    border: 1px solid #CBD5E1;
    color: #475569;
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-form-prev:hover {
    background: #F1F5F9;
    color: #071B3A;
}

.btn-form-next {
    background: #071B3A;
    border: 1px solid #071B3A;
    color: #ffffff;
    padding: 10px 28px;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: auto;
}

.btn-form-next:hover {
    background: #0B2555;
    box-shadow: 0 4px 12px rgba(7, 27, 58, 0.15);
}

.btn-form-submit {
    background: #D4AF37;
    border: 1px solid #D4AF37;
    color: #041832;
    padding: 10px 32px;
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s;
    margin-left: auto;
}

.btn-form-submit:hover {
    background: #B89020;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

/* Success Submitted page styles */
.success-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    max-width: 650px;
    margin: 60px auto;
    box-shadow: 0 20px 50px rgba(7, 27, 58, 0.05);
}

.success-icon-wrap {
    width: 72px;
    height: 72px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    color: #10B981;
    font-size: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.success-card h1 {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 28px !important;
    font-weight: 800 !important;
    color: #071B3A !important;
    margin-bottom: 15px !important;
}

.success-card p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #64748B;
    margin-bottom: 30px;
}

.success-details-box {
    background: #F8FAFC;
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: left;
}

.success-detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    padding: 8px 0;
    border-bottom: 1px solid #E2E8F0;
}

.success-detail-row:last-child {
    border-bottom: none;
}

.success-detail-row span:first-child {
    color: #64748B;
    font-weight: 600;
}

.success-detail-row span:last-child {
    color: #071B3A;
    font-weight: 700;
}

/* Responsive Breakpoints */
@media (max-width: 991px) {
    .why-assessment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .assessment-hero h1 {
        font-size: 30px !important;
    }
    .why-assessment-grid {
        grid-template-columns: 1fr;
    }
    .form-grid-2,
    .checkbox-grid {
        grid-template-columns: 1fr;
    }
    .assessment-form-card {
        padding: 25px 20px;
    }
}

/* --- GLOBAL CONSULTATION CTA (DARK SOC OVERLAY) --- */
.consultation-cta-dark {
    padding: 120px 0;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: #ffffff;
}

.consultation-cta-dark::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(7, 27, 58, 0.88);
    z-index: 1;
}

.cta-inner-v4 {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 15px;
}

.cta-inner-v4 h2 {
    font-size: 44px !important;
    color: #ffffff !important;
    line-height: 1.25 !important;
    margin-bottom: 15px !important;
    font-weight: 700 !important;
}

.cta-inner-v4 p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
}

.cta-buttons-v4 {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.cta-buttons-v4 .btn-style-one {
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 600;
}

.cta-btn-hotline {
    background: transparent !important;
    border: 2px solid #ffffff !important;
    color: #ffffff !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-btn-hotline:hover {
    background: #ffffff !important;
    color: #071B3A !important;
}

.cta-hotline-num {
    color: #D4AF37;
    font-weight: 700;
}

@media (max-width: 768px) {
    .cta-inner-v4 h2 {
        font-size: 32px !important;
    }
    .cta-buttons-v4 {
        flex-direction: column;
        gap: 15px;
    }
}

/* Ensure the headers and their dropdowns/mega menus are always on top of all page elements (sliders, section overlays, etc.) */
.main-header {
    z-index: 99999 !important;
}
.main-header .header-upper {
    z-index: 99999 !important;
}
.sticky-header,
.fixed-header .sticky-header {
    z-index: 99999 !important;
}

/* Ensure mobile menu overlay and drawer render above the headers */
.usafe-mobile-overlay {
    z-index: 200000 !important;
}
.usafe-mobile-drawer {
    z-index: 200001 !important;
}
