/*
Theme Name: Business Setup
Theme URI: https://example.com/
Author: Antigravity
Author URI: https://example.com/
Description: Premium modern WordPress business setup consultancy theme with pixel-perfect custom HTML/CSS design.
Version: 2.0.8
Requires at least: 6.2
Requires PHP: 7.4
Text Domain: business-setup
Tags: custom-colors, custom-menu, block-patterns, block-theme
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* --- Reset & Base Variables --- */
:root {
    --color-navy: #0B1B36;
    --color-navy-light: #10213E;
    --color-green: #159957;
    --color-green-light: #26D07C;
    --color-blue: #0E5EFF;
    --color-white: #FFFFFF;
    --color-gray-light: #F3F4F6;
    --color-text-main: #1F2937;
    --color-text-muted: #6B7280;
    
    --gradient-hero: linear-gradient(90deg, #0B1B36 40%, rgba(11,27,54,0.8) 100%);
    --gradient-section: linear-gradient(135deg, #022E54 0%, #156B48 100%);
    
    --font-main: 'Plus Jakarta Sans', sans-serif;
}

/* --- Global Scroll Animations --- */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-fade {
    opacity: 0;
    transition: opacity 1s ease-in-out;
}
.reveal-fade.is-visible {
    opacity: 1;
}
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-stagger.is-visible > * {
    opacity: 1;
    transform: translateY(0);
}
.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.1s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.2s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.3s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.4s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.5s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.6s; }

html {
    overflow-x: hidden;
    box-sizing: border-box;
}
*, *::before, *::after {
    box-sizing: inherit;
}
body {
    font-family: var(--font-main);
    color: var(--color-text-main);
    margin: 0;
    padding: 0;
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

img {
    max-width: 100%;
    display: block;
}

svg {
    flex-shrink: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* --- Container & Layout --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Utilities --- */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary {
    background-color: var(--color-green);
    color: var(--color-white);
}
.btn-primary:hover {
    background-color: var(--color-green-light);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-green);
    border: 1px solid var(--color-green);
}
.btn-outline:hover {
    background-color: var(--color-green);
    color: var(--color-white);
}

.btn-white-outline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.5);
}
.btn-white-outline:hover {
    background-color: var(--color-white);
    color: var(--color-navy);
}

/* Premium Gradient Button */
.btn-premium {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    color: var(--color-white);
    background: linear-gradient(90deg, #2B5A9B 0%, #2CA662 100%);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(44, 166, 98, 0.2);
    position: relative;
    overflow: hidden;
}
.btn-premium::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-20deg);
    transition: none;
}
.btn-premium:hover::before {
    animation: shine 0.75s ease forwards;
}
@keyframes shine {
    100% { left: 200%; }
}
.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 166, 98, 0.4);
    color: var(--color-white);
}
.btn-premium svg {
    width: 18px;
    height: 18px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}
.btn-premium:hover svg {
    transform: translate(2px, -2px);
}

/* --- Premium Header (Floating/Fixed) --- */
.premium-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 0;
    transition: all 0.3s ease;
}

/* --- Header Top Bar Styles --- */
.header-top-bar {
    max-height: 50px;
    opacity: 1;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: rgba(11, 27, 54, 0.2);
    padding: 8px 0;
    transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.3s ease, border-color 0.3s ease;
}
.premium-header.scrolled .header-top-bar {
    max-height: 0;
    padding: 0;
    opacity: 0;
    border-color: transparent;
}
.header-top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.top-bar-left {
    display: flex;
    gap: 20px;
    align-items: center;
}
.top-bar-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    font-weight: 500;
    transition: color 0.3s ease;
}
.top-bar-link:hover {
    color: var(--color-white);
}
.top-bar-icon {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Search Bar */
.top-bar-search {
    position: relative;
    display: flex;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
}
.top-bar-search .search-field {
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 20px !important;
    padding: 6px 35px 6px 15px !important;
    color: var(--color-white) !important;
    font-size: 13px !important;
    outline: none !important;
    transition: all 0.3s ease !important;
    width: 140px !important;
    height: auto !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
}
.top-bar-search .search-field:focus {
    width: 180px !important;
    background: rgba(255,255,255,0.12) !important;
    border-color: rgba(255,255,255,0.25) !important;
}
.top-bar-search .search-submit {
    position: absolute !important;
    right: 12px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    margin: 0 !important;
    box-shadow: none !important;
    cursor: pointer !important;
    color: rgba(255,255,255,0.6) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    line-height: 1 !important;
}
.top-bar-search .search-submit svg {
    width: 14px !important;
    height: 14px !important;
    stroke: currentColor !important;
    fill: none !important;
    stroke-width: 2.5 !important;
}
.top-bar-search .search-submit:hover {
    color: var(--color-white) !important;
}

/* Language Dropdown */
.top-bar-lang {
    position: relative;
    cursor: pointer;
}
.lang-selected {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    color: var(--color-white);
    font-size: 13px;
    transition: all 0.3s ease;
}
.lang-selected:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.2);
}
.lang-selected img {
    border-radius: 2px;
    display: block;
}
.lang-arrow {
    width: 12px;
    height: 12px;
    stroke: var(--color-green-light);
    fill: none;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 0.3s ease;
}
.top-bar-lang:hover .lang-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.top-bar-lang:hover .lang-arrow {
    transform: rotate(180deg);
}
.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin: 8px 0 0 0;
    background: var(--color-navy-light);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 6px 0;
    list-style: none;
    min-width: 120px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    z-index: 100;
}
.lang-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 15px;
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    transition: all 0.2s ease;
}
.lang-dropdown a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--color-white);
}

/* Cost Calculator Button */
.btn-cost-calc {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 13px;
    color: var(--color-white);
    background: linear-gradient(90deg, #2B5A9B 0%, #2CA662 100%);
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(44, 166, 98, 0.15);
}
.btn-cost-calc:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 15px rgba(44, 166, 98, 0.3);
    color: var(--color-white);
}

@media (max-width: 991px) {
    .header-top-bar {
        display: none !important;
    }
}

/* Scrolled State for Floating Header */
.premium-header.scrolled {
    background: rgba(11, 27, 54, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

/* Adjust for WordPress Admin Bar & Fix Lenis.js White Gap */
@media screen {
    html:root {
        margin-top: 0 !important;
    }
}
@media screen and (max-width: 782px) {
    html:root {
        margin-top: 0 !important;
    }
}
html:root {
    overflow-x: hidden;
}
body.admin-bar {
    padding-top: 32px !important;
    margin-top: 0 !important;
}
body.admin-bar .premium-header {
    top: 30px;
}
@media screen and (max-width: 782px) {
    body.admin-bar {
        padding-top: 46px !important;
        margin-top: 0 !important;
    }
    body.admin-bar .premium-header {
        top: 46px;
    }
    body.admin-bar .premium-header.scrolled {
        top: 0 !important;
    }
}

main {
    margin-top: 0 !important;
    margin-block-start: 0 !important;
    padding-top: 130px; /* Adjust padding-top to match height of header + top-bar */
    transition: padding 0.3s ease;
}

@media (max-width: 991px) {
    main {
        padding-top: 64px !important;
    }
}

/* On front-page with a hero section, the hero section handles its own padding to go under the transparent header */
.home main,
main.has-hero,
body > main {
    padding-top: 0 !important;
}

/* ==========================================================================
   INNER PAGE MAIN CONTAINERS — No top padding needed; hero sections handle
   the header offset themselves via their own padding-top: 140px.
   Background set to dark to prevent white body background flash/gap.
   ========================================================================== */
.service-detail-main,
.about-page-main,
.accounting-tax-page-main,
.wills-page-main,
.zoho-page-main,
.business-support-page-main,
.industry-detail-main,
.blog-detail-main,
.product-detail-main,
.project-detail-main,
.careers-page-main,
.careers-detail-main,
.services-page-main,
.contact-page-main,
.faq-page-main,
.downloads-page-main,
.news-page-main,
.industries-page-main,
.products-page-main,
.projects-page-main,
.support-page-main,
.blog-page-main {
    padding-top: 0 !important;
    margin-top: 0 !important;
    background-color: #021B34; /* Matches dark hero — closes white gap under fixed header */
    overflow-x: hidden;
    width: 100%;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 20px;
    transition: padding 0.3s ease;
}
.premium-header.scrolled .header-container {
    padding: 8px 20px;
}
.header-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
/* Logo — use high-specificity selector + !important to beat WordPress Gutenberg global styles */
.premium-header .logo-image,
.logo-image {
    height: 50px !important;
    width: auto !important;
    max-width: 200px !important;
    max-height: 50px !important;
    display: block !important;
    transition: height 0.3s ease, filter 0.3s ease;
    filter: brightness(0) invert(1) !important;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    object-fit: contain !important;
    flex-shrink: 0;
}
.premium-header.scrolled .logo-image {
    height: 40px !important;
    max-height: 40px !important;
}
.mobile-logo-img {
    height: 40px !important;
    max-height: 40px !important;
    filter: brightness(0) invert(1) !important;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}
.header-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}
.nav-links-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
}
.header-nav a {
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 15px;
    position: relative;
    padding-bottom: 5px;
    white-space: nowrap;
}
.header-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-green);
    transition: width 0.3s ease;
}
.header-nav a:hover::after {
    width: 100%;
}
.header-nav a:hover {
    color: var(--color-white);
}

/* Mobile Toggle & Drawer Styles */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1000;
}
.mobile-menu-toggle .burger-line {
    width: 100%;
    height: 2px;
    background-color: var(--color-white);
    border-radius: 4px;
    transition: all 0.3s ease;
}
.mobile-nav-header,
.mobile-nav-footer {
    display: none;
}

@media (max-width: 991px) {
    .header-actions {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .header-nav {
        position: fixed;
        top: 0;
        bottom: 0;
        height: auto;
        right: -100%;
        width: 300px;
        background: var(--color-navy-light);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 30px 40px 80px 40px;
        gap: 0;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -10px 0 30px rgba(0,0,0,0.3);
        z-index: 9999;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    .header-nav.active {
        right: 0;
    }
    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 40px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        padding-bottom: 20px;
    }
    .mobile-nav-logo {
        font-size: 20px;
        font-weight: 800;
        color: var(--color-white);
        letter-spacing: -0.5px;
    }
    .mobile-menu-close {
        font-size: 32px;
        color: rgba(255, 255, 255, 0.7);
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        line-height: 1;
        transition: color 0.2s ease;
    }
    .mobile-menu-close:hover {
        color: var(--color-white);
    }
    .nav-links-wrapper {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin-bottom: auto;
        align-items: flex-start;
    }
    .header-nav a {
        font-size: 18px;
        font-weight: 600;
        color: rgba(255, 255, 255, 0.85);
        padding: 5px 0;
        display: block;
    }
    .header-nav a::after {
        display: none;
    }
    .mobile-nav-footer {
        display: block;
        margin-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        padding-top: 20px;
    }
}

/* --- Specific Sections CSS --- */

/* Hero Section */
.hero-section {
    background-color: var(--color-navy);
    position: relative;
    z-index: 1;
    margin-top: 0 !important;
    padding-top: 150px; /* top-bar ~40px + header ~90px + 20px spacing */
    padding-bottom: 120px;
    overflow: hidden;
    color: var(--color-white);
}
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center right;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    z-index: 0;
    opacity: 0.6;
}
.hero-section::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at center right, rgba(212,175,55,0.3) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}
.hero-cta-row {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    margin-top: 5px;
}
.hero-rating-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 15px;
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
}
.hero-rating-pill span {
    color: #FBBF24;
}
@keyframes splitTextReveal {
    0% {
        transform: translateY(120%) rotate(1deg);
        opacity: 0;
    }
    100% {
        transform: translateY(0) rotate(0);
        opacity: 1;
    }
}

.hero-title {
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-top: 0;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
}
.title-line {
    display: block;
    overflow: hidden;
    padding-bottom: 10px;
    margin-bottom: -10px;
}
.title-inner {
    display: block;
    transform: translateY(120%);
    opacity: 0;
    text-shadow: 0px 10px 25px rgba(0, 0, 0, 0.4);
    animation: splitTextReveal 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
.title-line:nth-child(1) .title-inner {
    animation-delay: 0.1s;
}
.title-line:nth-child(2) .title-inner {
    animation-delay: 0.3s;
}

.hero-title span.amp {
    font-family: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    font-weight: 600;
    background: linear-gradient(90deg, #2CA662 0%, #4ADE80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding: 0 4px;
    transform: translateY(4px);
    text-shadow: none;
}
.hero-subtitle {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
    line-height: 1.7;
    max-width: 550px;
}
.hero-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.hero-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
}
.hero-benefits li i {
    color: var(--color-green);
}

/* Overlapping Trust Badges */
@keyframes fadeUpPremium {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trust-badges-wrapper {
    margin-top: -80px;
    position: relative;
    z-index: 10;
    padding: 0 15px;
}
.trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Premium Mobile & Tablet Grid */
@media (max-width: 1024px) {
    .trust-badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .trust-badges-wrapper {
        margin-top: -60px;
        padding: 0 20px;
        overflow: visible;
    }
    .trust-badges-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 20px 5px 30px 5px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .trust-badges-grid::-webkit-scrollbar {
        display: none;
    }
    .badge-card {
        flex: 0 0 82%;
        scroll-snap-align: center;
        opacity: 1 !important;
        animation: none !important;
        transform: none !important;
        box-shadow: 0 10px 30px rgba(11, 27, 54, 0.06);
        background: #ffffff !important;
    }
}

.badge-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 45px 30px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    border: 1px solid #f1f5f9;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    opacity: 0;
    animation: fadeUpPremium 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    position: relative;
    z-index: 1;
}

.badge-card:nth-child(1) { animation-delay: 0.1s; }
.badge-card:nth-child(2) { animation-delay: 0.2s; }
.badge-card:nth-child(3) { animation-delay: 0.3s; }
.badge-card:nth-child(4) { animation-delay: 0.4s; }

/* Premium Motion on Hover */
.badge-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -10px rgba(11, 27, 54, 0.08);
    border-color: rgba(59, 130, 246, 0.1);
}

.badge-icon {
    width: 64px;
    height: 64px;
    background: #eff6ff;
    color: #3b82f6;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

/* Make the first badge look "active" by default as per the mockup */
.badge-card:nth-child(1) .badge-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    color: #ffffff;
    transform: perspective(400px) rotateY(-10deg) rotateX(10deg) scale(1.05);
    box-shadow: -10px 15px 20px -5px rgba(16, 185, 129, 0.2);
}

.badge-card:hover .badge-icon {
    transform: perspective(400px) rotateY(15deg) rotateX(-10deg) scale(1.15);
    background: linear-gradient(135deg, #3b82f6 0%, #10b981 100%);
    color: #ffffff;
    box-shadow: -15px 20px 30px -10px rgba(16, 185, 129, 0.3);
}

.badge-icon svg {
    width: 28px;
    height: 28px;
    transition: transform 0.5s ease;
}

.badge-card:hover .badge-icon svg {
    transform: translateZ(20px);
}

.badge-title {
    font-weight: 800;
    font-size: 19px;
    letter-spacing: -0.4px;
    margin-bottom: 12px;
    color: var(--color-navy);
}

.badge-desc {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* Premium White Section (About / Stats) */
.premium-white-section {
    padding: 60px 0 40px;
    background: linear-gradient(180deg, #ffffff 0%, #f9fbfd 100%);
    position: relative;
    overflow: hidden;
}

/* Background Decorations */
.premium-bg-elements {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
    pointer-events: none;
}
.bg-blob {
    position: absolute;
    filter: blur(90px);
    border-radius: 50%;
    opacity: 0.1;
}
.blob-1 {
    width: 500px;
    height: 500px;
    background: var(--color-blue);
    top: -150px;
    right: -150px;
}
.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--color-green);
    bottom: -100px;
    left: -100px;
}
.bg-grid-pattern {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(var(--color-navy) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.04;
}
.premium-bg-lines {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1160px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 1;
}
.premium-bg-lines .bg-line {
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, rgba(14, 94, 255, 0) 0%, rgba(14, 94, 255, 0.08) 50%, rgba(14, 94, 255, 0) 100%);
    display: block;
}

/* Content Layout */
.setup-content-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    gap: 80px;
    align-items: center;
}
.setup-text-col {
    flex: 0 0 calc(50% - 40px);
    max-width: calc(50% - 40px);
}
.section-heading {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 24px;
    color: var(--color-navy);
    line-height: 1.15;
}
.section-subheading {
    color: var(--color-text-muted);
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 90%;
}
.highlight-blue {
    color: #2563EB;
}

/* Feature Cards */
.premium-feature-cards {
    margin: 30px 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.feature-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 24px;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}
.feature-card.active {
    border-color: #3b82f6;
    box-shadow: 0 10px 25px -5px rgba(59, 130, 246, 0.15);
}
.card-icon-wrap {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #eff6ff;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.card-icon-wrap.active {
    background: #3b82f6;
    color: #ffffff;
}
.card-icon-wrap svg {
    width: 16px;
    height: 16px;
}
.feature-card-content h3 {
    margin: 0 0 8px 0;
    font-size: 17px;
    font-weight: 700;
    color: var(--color-navy);
}
.feature-card-content p {
    margin: 0 0 15px 0;
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}
.card-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #3b82f6;
}
.card-footer svg {
    width: 14px;
    height: 14px;
    vertical-align: middle;
    margin-right: 4px;
}
.card-footer .dot {
    color: #cbd5e1;
}
.card-footer .green-text {
    color: #059669;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}
.btn-dark {
    background: #0f172a;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: background 0.2s;
}
.btn-dark:hover {
    background: #1e293b;
    color: #fff;
}
.btn-calc {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #e2e8f0;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s;
}
.btn-calc:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}
.btn-calc svg {
    width: 18px;
    height: 18px;
    color: #94a3b8;
}

/* Image Column (New Design) */
.setup-image-col.new-design {
    flex: 0 0 calc(50% - 40px);
    max-width: calc(50% - 40px);
    position: relative;
    z-index: 2;
}
.image-inner-wrap {
    background: #ffffff;
    padding: 15px;
    border-radius: 32px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 1px solid #f1f5f9;
}
.image-inner-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}

/* Bottom Overlay inside Image */
.bottom-overlay {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0) 100%);
    padding: 40px 25px 25px 25px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    display: flex;
    flex-direction: column;
    pointer-events: none;
}
.bottom-overlay .location {
    font-size: 11px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
}
.bottom-overlay .title {
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: #ffffff;
    border-radius: 50px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    border: 1px solid #f1f5f9;
}
.top-badge-1 {
    top: -15px;
    left: 40px;
    padding: 6px 20px 6px 6px;
}
.top-badge-1 .avatars {
    display: flex;
}
.top-badge-1 .avatars img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #ffffff;
    margin-left: -10px;
}
.top-badge-1 .avatars img:first-child { margin-left: 0; }
.top-badge-1 .badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}
.top-badge-1 .badge-text strong {
    font-size: 13px;
    color: #0f172a;
}
.top-badge-1 .badge-text span {
    font-size: 11px;
    color: #64748b;
}

.top-badge-2 {
    top: 50px;
    left: -15px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #0f172a;
}
.green-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
}

.bottom-badge {
    bottom: -20px;
    right: 40px;
    border-radius: 16px;
    padding: 12px 24px 12px 12px;
}
.bottom-badge .icon-square {
    width: 40px;
    height: 40px;
    background: #d1fae5;
    color: #059669;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.bottom-badge .icon-square svg {
    width: 20px;
    height: 20px;
}
.bottom-badge .badge-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}
.bottom-badge .badge-text span {
    font-size: 11px;
    color: #94a3b8;
}
.bottom-badge .badge-text strong {
    font-size: 15px;
    color: #0f172a;
}

@media (max-width: 991px) {
    .setup-content-wrapper {
        flex-direction: column;
        gap: 60px;
    }
    .setup-text-col {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: left;
    }
    .setup-image-col.new-design {
        flex: 0 0 100%;
        max-width: 100%;
        padding-left: 0;
    }
    .section-heading {
        font-size: min(10vw, 36px);
    }
    .floating-badge {
        transform: scale(0.85);
    }
    .top-badge-1 { left: 10px; }
    .bottom-badge { right: 10px; }
}
.tabs-wrapper {
    display: inline-flex;
    background: var(--color-white);
    padding: 5px;
    border-radius: 50px;
    margin-bottom: 40px;
}
.tab-btn {
    padding: 10px 24px;
    border-radius: 50px;
    border: none;
    background: transparent;
    font-weight: 600;
    cursor: pointer;
    color: var(--color-text-muted);
    transition: all 0.3s ease;
}
.tab-btn.active {
    background: rgba(21, 153, 87, 0.1);
    color: var(--color-green);
}
.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
}
/* --- Why Setup a Business in UAE Section --- */
@keyframes backgroundShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes fadeUpPremium {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}.why-setup-uae-section {
    background: linear-gradient(-45deg, #020C1B, #0B1B36, #0A192F, #041226);
    background-size: 400% 400%;
    animation: backgroundShift 20s ease infinite;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: #ffffff;
}
.why-setup-glow-1 {
    position: absolute;
    top: -10%; left: -10%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(14, 94, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    animation: floatGlow1 20s infinite alternate ease-in-out;
}
.why-setup-glow-2 {
    position: absolute;
    bottom: -15%; right: -10%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(38, 208, 124, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    animation: floatGlow2 25s infinite alternate ease-in-out;
}
@keyframes floatGlow1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(120px, 60px) scale(1.15); }
    100% { transform: translate(-60px, 120px) scale(0.9); }
}
@keyframes floatGlow2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-140px, -90px) scale(0.95); }
    100% { transform: translate(80px, 80px) scale(1.2); }
}
.why-setup-particles {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.why-setup-particles .particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.45) 0%, transparent 80%);
    border-radius: 50%;
}
.why-setup-container {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 80px;
    align-items: flex-start;
    position: relative;
    z-index: 2;
}
.why-setup-left {
    position: sticky;
    top: 120px;
    display: flex;
    flex-direction: column;
    align-self: start;
    height: auto;
}
.why-setup-heading {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
    opacity: 0;
    animation: fadeUpPremium 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.why-setup-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    align-self: flex-start;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}
.why-setup-badge:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 242, 254, 0.3);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 242, 254, 0.1);
}
.badge-status-glow {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: relative;
    display: inline-block;
}
.badge-glow-blue {
    background-color: #00F2FE;
    box-shadow: 0 0 8px #00F2FE;
}
.badge-status-glow::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    border: 1px solid currentColor;
    animation: status-pulsate 1.8s infinite ease-out;
}
.badge-glow-blue::after {
    color: #00F2FE;
}
@keyframes status-pulsate {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.4); opacity: 0.8; }
    100% { transform: scale(2.2); opacity: 0; }
}
.title-gradient-glow {
    background: linear-gradient(90deg, #00F2FE 0%, #0E5EFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
    position: relative;
    padding-bottom: 8px;
    filter: drop-shadow(0 0 15px rgba(0, 242, 254, 0.15));
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.why-setup-heading:hover .title-gradient-glow {
    filter: drop-shadow(0 0 25px rgba(0, 242, 254, 0.4)) drop-shadow(0 0 40px rgba(14, 94, 255, 0.25));
}
.title-gradient-glow::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #00F2FE, #0E5EFF, transparent);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(0, 242, 254, 0.8), 0 0 15px rgba(14, 94, 255, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform-origin: left;
}
.why-setup-heading:hover .title-gradient-glow::after {
    box-shadow: 0 0 12px rgba(0, 242, 254, 1), 0 0 25px rgba(14, 94, 255, 0.7);
    transform: scaleX(1.05);
}
.why-setup-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUpPremium 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards;
}
.why-setup-btn {
    align-self: flex-start;
    margin-bottom: 35px;
    opacity: 0;
    animation: fadeUpPremium 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards;
    position: relative;
    overflow: hidden;
}
.why-setup-btn::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-20deg);
    transition: none;
}
.why-setup-btn:hover::before {
    animation: shineCard 0.6s ease forwards;
}

.why-setup-image-wrapper {
    margin-top: 0;
    position: relative;
    width: 100%;
    max-width: 440px;
    align-self: center;
    opacity: 0;
    animation: fadeUpPremium 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
    border-radius: 24px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.why-setup-accent-shape {
    position: absolute;
    top: -15px; left: -15px; right: -15px; bottom: -15px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(14, 94, 255, 0.25) 0%, rgba(38, 208, 124, 0.25) 100%);
    z-index: 1;
    filter: blur(20px);
    opacity: 0.8;
    animation: shapeRotate 12s infinite alternate linear;
}
.why-setup-accent-shape-2 {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 24px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    z-index: 3;
    pointer-events: none;
}
@keyframes shapeRotate {
    0% { transform: rotate(0deg) scale(0.95); }
    100% { transform: rotate(360deg) scale(1.05); }
}
.why-setup-image-wrapper img {
    position: relative;
    z-index: 2;
    width: 100%;
    display: block;
    border-radius: 18px;
    mix-blend-mode: screen;
    opacity: 0.88;
    filter: brightness(1.1) contrast(1.1);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0.1) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0.1) 100%);
}
.why-setup-image-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    background: rgba(11, 27, 54, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 20px;
    border-radius: 16px;
    z-index: 4;
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}
.badge-status-glow {
    width: 8px;
    height: 8px;
    background-color: #26D07C;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px #26D07C;
    animation: statusPulse 1.8s infinite;
}

.why-setup-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    position: relative;
    z-index: 2;
}
.why-benefit-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 38px 30px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeUpPremium 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    z-index: 2;
}

.why-benefit-card:nth-child(1) { animation-delay: 0.1s; }
.why-benefit-card:nth-child(2) { animation-delay: 0.2s; }
.why-benefit-card:nth-child(3) { animation-delay: 0.3s; }
.why-benefit-card:nth-child(4) { animation-delay: 0.4s; }
.why-benefit-card:nth-child(5) { animation-delay: 0.5s; }
.why-benefit-card:nth-child(6) { animation-delay: 0.6s; }

.why-benefit-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%, rgba(14, 94, 255, 0.35) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.15;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 3;
}
.why-benefit-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(14, 94, 255, 0.08), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.why-benefit-card:hover {
    background: rgba(255, 255, 255, 0.04);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}
.why-benefit-card:hover::before {
    opacity: 1;
}
.why-benefit-card:hover::after {
    opacity: 1;
}
.why-benefit-card .benefit-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: rgba(14, 94, 255, 0.08);
    color: #00C6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
}
.why-benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--color-blue) 0%, #00C6FF 100%);
    color: #ffffff;
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 8px 20px rgba(14, 94, 255, 0.25);
    border-color: transparent;
}
.why-benefit-card .benefit-icon svg {
    width: 25px;
    height: 25px;
}
.why-benefit-card h4 {
    font-size: 19px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.4;
    color: #ffffff;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}
.why-benefit-card:hover h4 {
    color: #00C6FF;
}
.why-benefit-card p {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}
}

@media (max-width: 1024px) {
    .why-setup-container {
        gap: 40px;
    }
}
@media (max-width: 991px) {
    .why-setup-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .why-setup-uae-section {
        padding: 80px 0;
    }
    .why-setup-right {
        padding-bottom: 0;
    }
    .why-setup-image-wrapper {
        display: block;
        margin-top: 50px;
        margin-left: auto;
        margin-right: auto;
        max-width: 440px;
    }
}
@media (max-width: 600px) {
    .why-setup-right {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .why-setup-heading {
        font-size: 32px;
    }
    .why-benefit-card {
        padding: 25px;
    }
}

/* ==========================================================================
   PREMIUM INCORPORATION JOURNEY — White Edition v4.0
   pij- prefix | White background | CSS-only animations | Always visible
   ========================================================================== */

/* ── Section ── */
.pij-section {
    position: relative;
    padding: 110px 0 90px;
    background: #ffffff;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ── Background decorative layer ── */
.pij-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}
.pij-bg-glow-1 {
    position: absolute;
    top: -15%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14,94,255,0.06) 0%, transparent 65%);
    animation: pij-glow-drift-1 22s ease-in-out infinite alternate;
}
.pij-bg-glow-2 {
    position: absolute;
    bottom: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0,194,255,0.05) 0%, transparent 65%);
    animation: pij-glow-drift-2 28s ease-in-out infinite alternate;
}
.pij-bg-glow-3 {
    position: absolute;
    top: 40%;
    left: 45%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(0,217,192,0.04) 0%, transparent 65%);
    animation: pij-glow-drift-1 18s ease-in-out infinite alternate-reverse;
}
@keyframes pij-glow-drift-1 {
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(40px,-30px) scale(1.1); }
}
@keyframes pij-glow-drift-2 {
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(-35px,45px) scale(1.08); }
}

/* Subtle dot grid */
.pij-bg-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(14,94,255,0.07) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.6;
}

/* Floating rings */
.pij-bg-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(14,94,255,0.06);
    pointer-events: none;
}
.pij-ring-1 {
    width: 500px; height: 500px;
    top: -10%; left: -8%;
    animation: pij-ring-spin 40s linear infinite;
}
.pij-ring-2 {
    width: 350px; height: 350px;
    bottom: -5%; right: 10%;
    border-color: rgba(0,194,255,0.07);
    animation: pij-ring-spin 55s linear infinite reverse;
}
.pij-ring-3 {
    width: 200px; height: 200px;
    top: 35%; left: 60%;
    border-color: rgba(0,217,192,0.06);
    animation: pij-ring-spin 30s linear infinite;
}
@keyframes pij-ring-spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ── Container ── */
.pij-wrap {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* ── Section Header ── */
.pij-header {
    text-align: center;
    margin-bottom: 80px;
    animation: pij-fade-up 0.8s ease both;
}
@keyframes pij-fade-up {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Badge */
.pij-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(14,94,255,0.06);
    border: 1px solid rgba(14,94,255,0.18);
    border-radius: 40px;
    margin-bottom: 22px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #0E5EFF;
}
.pij-badge-dot {
    width: 7px; height: 7px;
    background: #0E5EFF;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(14,94,255,0.5);
    animation: pij-dot-pulse 2s ease-in-out infinite;
    flex-shrink: 0;
}
@keyframes pij-dot-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 6px rgba(14,94,255,0.4); }
    50%       { transform: scale(1.4); box-shadow: 0 0 14px rgba(14,94,255,0.7); }
}

/* Title */
.pij-title {
    font-size: clamp(34px, 4.5vw, 58px);
    font-weight: 800;
    color: #021B34;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 0 0 20px;
}
.pij-title-accent {
    background: linear-gradient(135deg, #0E5EFF 0%, #00C2FF 50%, #00D9C0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Subtitle */
.pij-subtitle {
    font-size: clamp(15px, 1.15vw, 18px);
    color: #5A6B84;
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.75;
    font-weight: 400;
}

/* ── Process Track (4 col grid) ── */
.pij-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    align-items: start;
}

/* ── Connector line ── */
.pij-connector {
    position: absolute;
    top: 30px;
    left: calc(12.5% - 10px);
    right: calc(12.5% - 10px);
    height: 2px;
    z-index: 1;
    pointer-events: none;
}
.pij-conn-line {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0E5EFF 0%, #00C2FF 50%, #00D9C0 100%);
    border-radius: 2px;
    opacity: 0.25;
}
.pij-conn-pulse {
    position: absolute;
    top: 50%;
    left: 0;
    width: 60px;
    height: 100%;
    transform: translateY(-50%);
    background: linear-gradient(90deg, transparent 0%, rgba(14,94,255,0.7) 50%, transparent 100%);
    border-radius: 2px;
    animation: pij-pulse-travel 3.5s ease-in-out infinite;
}
@keyframes pij-pulse-travel {
    0%   { left: -60px; opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

/* ── Step ── */
.pij-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 14px;
    animation: pij-fade-up 0.7s ease both;
}
.pij-step-1 { animation-delay: 0.1s; }
.pij-step-2 { animation-delay: 0.2s; }
.pij-step-3 { animation-delay: 0.3s; }
.pij-step-4 { animation-delay: 0.4s; }

/* Alternate vertical offset for visual rhythm */
.pij-step--offset {
    padding-top: 50px;
}

/* ── Step Node ── */
.pij-node {
    position: relative;
    width: 60px; height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    flex-shrink: 0;
    z-index: 2;
}
.pij-node-pulse {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(14,94,255,0.2);
    animation: pij-node-ring-spin 8s linear infinite;
}
.pij-node-pulse::after {
    content: '';
    position: absolute;
    top: -4px; left: -4px; right: -4px; bottom: -4px;
    border-radius: 50%;
    border: 1px dashed rgba(14,94,255,0.12);
    animation: pij-node-ring-spin 12s linear infinite reverse;
}
@keyframes pij-node-ring-spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.pij-node-inner {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, #0E5EFF 0%, #00C2FF 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 20px rgba(14,94,255,0.35), 0 0 0 6px rgba(14,94,255,0.07);
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
}
.pij-step:hover .pij-node-inner {
    transform: scale(1.15);
    box-shadow: 0 10px 28px rgba(14,94,255,0.45), 0 0 0 10px rgba(14,94,255,0.09);
}

/* Node color variants */
.pij-node-teal .pij-node-inner {
    background: linear-gradient(135deg, #00C2FF 0%, #00D9C0 100%);
    box-shadow: 0 6px 20px rgba(0,194,255,0.35), 0 0 0 6px rgba(0,194,255,0.07);
}
.pij-node-navy .pij-node-inner {
    background: linear-gradient(135deg, #021B34 0%, #0E5EFF 100%);
    box-shadow: 0 6px 20px rgba(2,27,52,0.3), 0 0 0 6px rgba(2,27,52,0.07);
}
.pij-pulse-teal { border-color: rgba(0,194,255,0.2); }
.pij-pulse-navy { border-color: rgba(2,27,52,0.15); }

/* ── Card ── */
.pij-card {
    position: relative;
    background: #ffffff;
    border: 1px solid rgba(14,94,255,0.1);
    border-radius: 20px;
    padding: 32px 26px 26px;
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(11,27,54,0.06), 0 1px 4px rgba(11,27,54,0.04);
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease, border-color 0.3s ease;
    cursor: pointer;
}
.pij-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(14,94,255,0.14), 0 4px 12px rgba(11,27,54,0.06);
    border-color: rgba(14,94,255,0.2);
}

/* Top gradient accent bar */
.pij-card-accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0E5EFF 0%, #00C2FF 100%);
    border-radius: 20px 20px 0 0;
    transition: height 0.3s ease;
}
.pij-card:hover .pij-card-accent { height: 4px; }
.pij-accent-cyan { background: linear-gradient(90deg, #00C2FF 0%, #00D9C0 100%); }
.pij-accent-teal { background: linear-gradient(90deg, #00D9C0 0%, #26D07C 100%); }
.pij-accent-navy { background: linear-gradient(90deg, #021B34 0%, #0E5EFF 100%); }

/* Card hover glow (bottom shine) */
.pij-card-glow {
    position: absolute;
    bottom: -40px; left: 50%;
    transform: translateX(-50%);
    width: 200px; height: 100px;
    background: radial-gradient(circle, rgba(14,94,255,0.08) 0%, transparent 70%);
    pointer-events: none;
    transition: opacity 0.4s ease;
    opacity: 0;
}
.pij-card:hover .pij-card-glow { opacity: 1; }
.pij-glow-cyan { background: radial-gradient(circle, rgba(0,194,255,0.09) 0%, transparent 70%); }
.pij-glow-teal { background: radial-gradient(circle, rgba(0,217,192,0.09) 0%, transparent 70%); }
.pij-glow-navy { background: radial-gradient(circle, rgba(14,94,255,0.07) 0%, transparent 70%); }

/* ── Icon box ── */
.pij-icon-box {
    position: relative;
    width: 64px; height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
    background: rgba(14,94,255,0.06);
    border-radius: 16px;
    border: 1px solid rgba(14,94,255,0.1);
    color: #0E5EFF;
    transition: background 0.4s ease, color 0.4s ease, transform 0.4s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.4s ease;
}
.pij-icon-box::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 22px;
    border: 1px dashed rgba(14,94,255,0.15);
    animation: pij-icon-ring-spin 10s linear infinite;
}
@keyframes pij-icon-ring-spin {
    0%   { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.pij-icon-box svg {
    width: 26px; height: 26px;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.pij-card:hover .pij-icon-box {
    background: #0E5EFF;
    color: #fff;
    border-color: transparent;
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(14,94,255,0.3);
}
.pij-card:hover .pij-icon-box svg { transform: rotate(-8deg) scale(1.1); }

/* Icon color variants */
.pij-icon-cyan { background: rgba(0,194,255,0.06); border-color: rgba(0,194,255,0.12); color: #00A8D9; }
.pij-icon-teal { background: rgba(0,217,192,0.06); border-color: rgba(0,217,192,0.12); color: #00B39F; }
.pij-icon-navy { background: rgba(2,27,52,0.05);   border-color: rgba(2,27,52,0.1);    color: #021B34; }
.pij-card:hover .pij-icon-cyan { background: #00C2FF; color: #fff; box-shadow: 0 8px 24px rgba(0,194,255,0.3); }
.pij-card:hover .pij-icon-teal { background: #00D9C0; color: #fff; box-shadow: 0 8px 24px rgba(0,217,192,0.3); }
.pij-card:hover .pij-icon-navy { background: #021B34; color: #fff; box-shadow: 0 8px 24px rgba(2,27,52,0.25); }

/* Large watermark number */
.pij-card-num {
    position: absolute;
    bottom: -8px;
    right: 14px;
    font-size: 100px;
    font-weight: 900;
    color: rgba(14,94,255,0.04);
    line-height: 1;
    pointer-events: none;
    user-select: none;
    letter-spacing: -6px;
    transition: color 0.3s ease;
}
.pij-card:hover .pij-card-num { color: rgba(14,94,255,0.07); }

/* Card content */
.pij-card-title {
    font-size: 17px;
    font-weight: 800;
    color: #021B34;
    line-height: 1.35;
    letter-spacing: -0.3px;
    margin: 0 0 12px;
    transition: color 0.3s ease;
}
.pij-card:hover .pij-card-title { color: #0E5EFF; }

.pij-card-desc {
    font-size: 13.5px;
    line-height: 1.75;
    color: #64748b;
    margin: 0 0 18px;
}

/* Tag pills */
.pij-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.pij-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(14,94,255,0.05);
    border: 1px solid rgba(14,94,255,0.12);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #0E5EFF;
    letter-spacing: 0.2px;
    transition: all 0.3s ease;
}
.pij-card:hover .pij-tag {
    background: rgba(14,94,255,0.08);
    border-color: rgba(14,94,255,0.2);
}
.pij-tag svg { flex-shrink: 0; }

/* Tag color variants */
.pij-tag-cyan { background: rgba(0,194,255,0.05); border-color: rgba(0,194,255,0.14); color: #0099C2; }
.pij-tag-teal { background: rgba(0,217,192,0.05); border-color: rgba(0,217,192,0.14); color: #009B89; }
.pij-tag-navy { background: rgba(2,27,52,0.05);   border-color: rgba(2,27,52,0.1);    color: #021B34; }

/* Arrow button reveal */
.pij-card-arrow {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 32px; height: 32px;
    background: rgba(14,94,255,0.08);
    border: 1px solid rgba(14,94,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(6px) scale(0.8);
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.34,1.56,0.64,1), background 0.3s ease;
    color: #0E5EFF;
}
.pij-card-arrow svg { width: 14px; height: 14px; }
.pij-card:hover .pij-card-arrow {
    opacity: 1;
    transform: translateY(0) scale(1);
    background: rgba(14,94,255,0.12);
}
.pij-arrow-cyan { color: #00A8D9; background: rgba(0,194,255,0.08); border-color: rgba(0,194,255,0.18); }
.pij-arrow-teal { color: #009B89; background: rgba(0,217,192,0.08); border-color: rgba(0,217,192,0.18); }
.pij-arrow-navy { color: #021B34; background: rgba(2,27,52,0.06);   border-color: rgba(2,27,52,0.12);   }

/* ── CTA Strip ── */
.pij-cta {
    margin-top: 70px;
    animation: pij-fade-up 0.8s ease 0.5s both;
}
.pij-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 30px 40px;
    background: linear-gradient(135deg, #f0f6ff 0%, #e8f4ff 50%, #f0fff8 100%);
    border: 1px solid rgba(14,94,255,0.1);
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(14,94,255,0.06);
}
.pij-cta-left {
    display: flex;
    align-items: center;
    gap: 18px;
}
.pij-cta-dot {
    width: 42px; height: 42px;
    background: linear-gradient(135deg, #0E5EFF, #00C2FF);
    border-radius: 12px;
    flex-shrink: 0;
    box-shadow: 0 6px 16px rgba(14,94,255,0.3);
    animation: pij-dot-pulse 3s ease-in-out infinite;
}
.pij-cta-label {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #021B34;
    letter-spacing: -0.3px;
    margin-bottom: 2px;
}
.pij-cta-sub {
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.5;
}
.pij-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #0E5EFF 0%, #00A8D9 100%);
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.2px;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(14,94,255,0.3);
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s ease;
}
.pij-cta-btn svg { width: 16px; height: 16px; transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1); }
.pij-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 14px 35px rgba(14,94,255,0.38);
}
.pij-cta-btn:hover svg { transform: translate(3px,-3px); }

/* ── Responsive ── */
@media (max-width: 1024px) {
    .pij-section { padding: 80px 0 70px; }
    .pij-track {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
    .pij-connector { display: none; }
    .pij-step--offset { padding-top: 0; }
    .pij-cta-inner { padding: 24px 28px; }
}
@media (max-width: 640px) {
    .pij-section { padding: 60px 0 55px; }
    .pij-wrap { padding: 0 18px; }
    .pij-header { margin-bottom: 48px; }
    .pij-title { font-size: clamp(28px,8vw,40px); letter-spacing: -1px; }
    .pij-subtitle { font-size: 14px; }
    .pij-track {
        grid-template-columns: 1fr;
        gap: 0;
        padding-left: 20px;
        border-left: 2px solid rgba(14,94,255,0.12);
    }
    .pij-step {
        flex-direction: row;
        align-items: flex-start;
        gap: 18px;
        padding: 0 0 36px;
    }
    .pij-step:last-child { padding-bottom: 0; }
    .pij-step--offset { padding-top: 0; }
    .pij-node {
        margin-bottom: 0;
        margin-left: -33px;
        flex-shrink: 0;
    }
    .pij-card { padding: 24px 20px 22px; border-radius: 16px; }
    .pij-card-num { font-size: 72px; }
    .pij-icon-box { width: 52px; height: 52px; margin-bottom: 14px; }
    .pij-icon-box svg { width: 22px; height: 22px; }
    .pij-card-title { font-size: 15px; }
    .pij-cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
    }
    .pij-cta-left { flex-direction: column; gap: 12px; align-items: center; }
    .pij-cta-label { font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) {
    .pij-bg-glow-1, .pij-bg-glow-2, .pij-bg-glow-3,
    .pij-bg-ring, .pij-badge-dot, .pij-node-pulse,
    .pij-node-pulse::after, .pij-icon-box::before,
    .pij-conn-pulse { animation: none !important; }
    .pij-header, .pij-step, .pij-cta { animation: none !important; opacity: 1 !important; transform: none !important; }
}


/* --- End-to-End Business Support (Value Added Services) --- */
.business-support-section {
    background: radial-gradient(circle at 50% 50%, #0B1B36 0%, #030814 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    color: var(--color-white);
}


.support-bg-glow-1 {
    position: absolute;
    top: -10%; left: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(14, 94, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.support-bg-glow-2 {
    position: absolute;
    bottom: -10%; right: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(21, 153, 87, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.support-bg-wireframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 700px;
    height: 700px;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    animation: spinWireframe 80s linear infinite;
    opacity: 0.5;
}

@keyframes spinWireframe {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.business-support-section .container {
    position: relative;
    z-index: 2;
}

.support-header {
    text-align: center;
    margin-bottom: 60px;
}

.support-subtitle {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 3px;
    background: linear-gradient(135deg, var(--color-green-light) 0%, var(--color-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    display: inline-block;
    margin-bottom: 12px;
}

.support-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.support-desc {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.support-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    z-index: 2;
}

/* Mouse coordinate glow effect */
.support-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(300px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(14, 94, 255, 0.12) 0%, rgba(21, 153, 87, 0.03) 50%, transparent 80%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
}

.support-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(14, 94, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), inset 0 0 15px rgba(14, 94, 255, 0.05);
}

.support-card:hover::after {
    opacity: 1;
}

.support-card-glow {
    position: absolute;
    top: 0; left: 0;
    width: 100px; height: 100px;
    background: radial-gradient(circle, rgba(14, 94, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.support-card-icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-green-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.support-card:hover .support-card-icon {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-green-light) 100%);
    color: #ffffff;
    border-color: transparent;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(14, 94, 255, 0.25);
}

.support-card-icon svg {
    width: 26px;
    height: 26px;
}

.support-card-title {
    font-size: 19px;
    font-weight: 800;
    color: #ffffff;
    margin-top: 0;
    margin-bottom: 14px;
    letter-spacing: -0.3px;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.support-card:hover .support-card-title {
    color: var(--color-green-light);
}

.support-card-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0 0 25px 0;
    position: relative;
    z-index: 2;
}

.support-card-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.support-card-link svg {
    width: 14px;
    height: 14px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    transition: transform 0.3s ease;
}

.support-card:hover .support-card-link {
    color: var(--color-green-light);
}

.support-card:hover .support-card-link svg {
    transform: translateX(4px);
}

.support-cta {
    text-align: center;
}

.support-cta .btn-premium {
    padding: 16px 36px;
    font-size: 16px;
}

@media (max-width: 1024px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .business-support-section {
        padding: 60px 0;
    }
    .support-title {
        font-size: 32px;
    }
    .support-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .support-card {
        padding: 30px;
    }
}

/* Locations Section */
.locations-section {
    background: var(--color-gray-light);
    padding: 70px 0;
    overflow: hidden; /* Prevent 3D flip card animations from causing horizontal viewport scrolling */
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.premium-location-card {
    border-radius: 20px;
    position: relative;
    box-shadow: 0 15px 35px -5px rgba(0,0,0,0.1);
    background: transparent;
    height: 480px; /* Increased height to fit description paragraph */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.premium-location-card .card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden; /* Guarantee rounded corners on children */
}
.premium-location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -10px rgba(0,0,0,0.15);
}
.card-front, .card-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-sizing: border-box;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.5s ease;
}
.card-front {
    background: #fff;
    z-index: 2;
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    box-sizing: border-box;
}
.card-back {
    background: linear-gradient(135deg, var(--color-navy) 0%, #10213E 100%);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.05);
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    box-sizing: border-box;
}

.premium-location-card.flipped .card-front {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    z-index: 1;
}
.premium-location-card.flipped .card-back {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}
.back-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}
.back-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
    margin-bottom: 25px;
}
.card-image-wrapper {
    position: relative;
    height: 100%;
    width: 100%;
}
.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.premium-location-card:hover .card-image-wrapper img {
    transform: scale(1.08);
}
.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 27, 54, 0.9) 0%, rgba(11, 27, 54, 0.3) 50%, transparent 100%);
    z-index: 1;
}
.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 2;
    color: var(--color-white);
    display: flex;
    flex-direction: column;
    box-sizing: border-box;
}
.card-content h3 {
    margin: 0 0 8px 0;
    font-size: 24px;
    font-weight: 700;
}
.card-content p {
    margin: 0 0 20px 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}
.card-btn {
    align-self: flex-start;
    padding: 12px 24px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    opacity: 0.9;
}
.card-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}
.premium-location-card:hover .card-btn {
    opacity: 1;
}
.premium-location-card:hover .card-btn svg {
    transform: translateX(4px);
}
.btn-white-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.4);
    color: #fff;
    border-radius: 30px;
    padding: 10px 24px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}
.btn-white-outline:hover {
    background: #fff;
    color: var(--color-navy);
    transform: translateX(-4px);
}



/* Services Grid */
.services-section {
    background: var(--color-navy);
    padding: 70px 0;
    color: var(--color-white);
    overflow: hidden;
}
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.premium-service-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    text-align: center;
}
.premium-service-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.premium-service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, rgba(21, 153, 87, 0.15) 0%, rgba(14, 94, 255, 0.15) 100%);
    color: var(--color-green);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.premium-service-item:hover .premium-service-icon {
    transform: scale(1.1) rotate(5deg);
    color: #fff;
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-blue) 100%);
    box-shadow: 0 10px 20px rgba(21, 153, 87, 0.3);
}
.premium-service-icon svg {
    width: 28px;
    height: 28px;
}

/* How It Works (Blue with Green Triangle) */
.how-it-works-section {
    background: var(--color-navy-light);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}
.how-it-works-section::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: var(--color-green);
    clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
    opacity: 0.1;
}

/* Premium Values Section */
.premium-values-section {
    position: relative;
    background: #021224;
    padding: 65px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.values-bg-motion {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.values-glow-1 {
    position: absolute;
    top: -20%; left: 20%;
    width: 50%; height: 60%;
    background: radial-gradient(ellipse, rgba(14, 94, 255, 0.06) 0%, transparent 60%);
    animation: blob-drift 20s infinite alternate ease-in-out;
}
.values-glow-2 {
    position: absolute;
    bottom: -10%; right: 10%;
    width: 40%; height: 50%;
    background: radial-gradient(circle, rgba(38, 208, 124, 0.04) 0%, transparent 60%);
    animation: blob-drift-reverse 25s infinite alternate ease-in-out;
}
@keyframes blob-drift {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.08); }
    100% { transform: translate(-15px, 30px) scale(0.96); }
}
@keyframes blob-drift-reverse {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-25px, 25px) scale(0.92); }
    100% { transform: translate(30px, -15px) scale(1.04); }
}
.values-bg-particles {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}
.values-bg-particles .particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.45) 0%, transparent 80%);
    border-radius: 50%;
}
.values-deco-line-1 {
    position: absolute;
    top: 0; left: 15%;
    width: 1px; height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.03), transparent);
}
.values-deco-line-2 {
    position: absolute;
    top: 0; right: 15%;
    width: 1px; height: 100%;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.03), transparent);
}
.values-container {
    position: relative;
    z-index: 10;
    max-width: 980px;
    margin: 0 auto;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.ultra-value-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 35px 28px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
}
.card-glow-bar {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 3px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 3;
}
.card-glow-green { background: linear-gradient(90deg, #00D06B, #0E5EFF); }
.card-glow-purple { background: linear-gradient(90deg, #0E5EFF, #9D4EDD); }
.card-glow-blue { background: linear-gradient(90deg, #9D4EDD, #00D06B); }

.ultra-icon-wrap {
    width: 54px; height: 54px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
}
.icon-green {
    background: linear-gradient(135deg, rgba(0,208,107,0.15), rgba(14,94,255,0.15));
    box-shadow: 0 8px 20px rgba(0,208,107,0.08);
}
.icon-purple {
    background: linear-gradient(135deg, rgba(14,94,255,0.15), rgba(157,78,221,0.15));
    box-shadow: 0 8px 20px rgba(14,94,255,0.08);
}
.icon-blue {
    background: linear-gradient(135deg, rgba(157,78,221,0.15), rgba(0,208,107,0.15));
    box-shadow: 0 8px 20px rgba(157,78,221,0.08);
}
.ultra-value-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%, rgba(14, 94, 255, 0.2) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.1;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 3;
}
.ultra-value-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(800px circle at var(--mouse-x, 0px) var(--mouse-y, 0px), rgba(14, 94, 255, 0.08), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}
.ultra-value-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.035);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
}
.ultra-value-card:hover::before { opacity: 0.8; }
.ultra-value-card:hover::after { opacity: 1; }
.ultra-value-card:hover .card-glow-bar { opacity: 1; }
.ultra-value-card:hover .ultra-icon-wrap {
    transform: scale(1.08) rotate(3deg);
    border-color: rgba(255,255,255,0.2);
}
.ultra-value-card h3 {
    font-size: 21px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}
.ultra-value-card:hover h3 {
    color: #00C6FF;
}
.ultra-value-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14.5px;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 2;
}

/* Premium Empowering Layout */
.empowering-section {
    padding: 100px 0 140px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}
.empowering-radial-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(14, 94, 255, 0.015) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}
.empowering-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr;
    gap: 80px;
    align-items: center;
}
.empowering-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #475569;
    margin-bottom: 20px;
}
.badge-dot {
    width: 6px;
    height: 6px;
    background-color: var(--color-blue);
    border-radius: 50%;
    display: inline-block;
}
.empowering-content h2.section-heading {
    font-size: 48px;
    font-weight: 800;
    color: var(--color-navy);
    margin-bottom: 20px;
    line-height: 1.15;
    letter-spacing: -1px;
}
.heading-gradient {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    display: inline-block;
}
.empowering-content p {
    color: var(--color-text-muted);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 25px;
}
.empowering-highlights {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.empowering-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-navy);
}
.highlight-check {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #E8F5E9;
    color: var(--color-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}
.stat-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}
/* Stagger columns on desktop */
.stat-cards-grid > *:nth-child(even) {
    transform: translateY(40px);
}
.premium-stat-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 28px;
    padding: 40px 32px;
    box-shadow: 0 10px 30px rgba(11, 27, 54, 0.02);
    display: flex;
    flex-direction: column;
    gap: 25px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.premium-stat-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at 0% 0%, rgba(255,255,255,0.8) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}
.premium-stat-card:hover {
    transform: translateY(-8px);
    border-color: #CBD5E1;
    box-shadow: 0 25px 60px rgba(11, 27, 54, 0.08);
}
/* Offset cards translation reset on hover */
.stat-cards-grid > *:nth-child(even):hover {
    transform: translateY(32px);
}
.stat-icon-wrapper {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.stat-icon-wrapper svg {
    width: 26px;
    height: 26px;
    transition: transform 0.4s ease;
}
.premium-stat-card:hover .stat-icon-wrapper {
    transform: scale(1.05);
}
.premium-stat-card:hover .stat-icon-wrapper svg {
    transform: rotate(5deg);
}
.stat-info {
    position: relative;
    z-index: 2;
}
.stat-number {
    font-size: 46px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -1.5px;
}
.stat-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-muted);
    line-height: 1.45;
}

/* Color Variants */
.style-green .stat-icon-wrapper {
    background: #E8F5E9;
    color: var(--color-green);
    box-shadow: 0 4px 15px rgba(21, 153, 87, 0.06);
}
.style-green .stat-number {
    color: var(--color-green);
}
.style-green:hover {
    border-color: rgba(21, 153, 87, 0.2);
    background: radial-gradient(circle at 100% 100%, rgba(21, 153, 87, 0.01) 0%, #ffffff 80%);
}

.style-blue .stat-icon-wrapper {
    background: #E0F2FE;
    color: var(--color-blue);
    box-shadow: 0 4px 15px rgba(14, 94, 255, 0.06);
}
.style-blue .stat-number {
    color: var(--color-blue);
}
.style-blue:hover {
    border-color: rgba(14, 94, 255, 0.2);
    background: radial-gradient(circle at 100% 100%, rgba(14, 94, 255, 0.01) 0%, #ffffff 80%);
}

.style-navy .stat-icon-wrapper {
    background: #F1F5F9;
    color: var(--color-navy);
    box-shadow: 0 4px 15px rgba(11, 27, 54, 0.06);
}
.style-navy .stat-number {
    color: var(--color-navy);
}
.style-navy:hover {
    border-color: rgba(11, 27, 54, 0.2);
    background: radial-gradient(circle at 100% 100%, rgba(11, 27, 54, 0.01) 0%, #ffffff 80%);
}

.style-gold .stat-icon-wrapper {
    background: #FEF3C7;
    color: #D97706;
    box-shadow: 0 4px 15px rgba(217, 119, 6, 0.06);
}
.style-gold .stat-number {
    color: #D97706;
}
.style-gold:hover {
    border-color: rgba(217, 119, 6, 0.2);
    background: radial-gradient(circle at 100% 100%, rgba(217, 119, 6, 0.01) 0%, #ffffff 80%);
}

@media (max-width: 992px) {
    .empowering-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .stat-cards-grid {
        gap: 20px;
    }
    .stat-cards-grid > *:nth-child(even) {
        transform: translateY(0);
    }
    .stat-cards-grid > *:nth-child(even):hover {
        transform: translateY(-8px);
    }
    .empowering-content h2.section-heading {
        font-size: 36px;
    }
}

/* FAQ Section */
.faq-section {
    background: #ffffff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}
.faq-section .faq-bg-glow-1 {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14, 94, 255, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}
.faq-section .faq-bg-glow-2 {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(38, 208, 124, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}
.faq-split-layout {
    display: grid;
    grid-template-columns: 4fr 7fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 2;
}
.faq-sidebar {
    position: sticky;
    top: 100px;
}
.faq-header-content {
    margin-bottom: 35px;
}
.faq-subtitle {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-green) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 12px;
}
.faq-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--color-navy);
    margin: 0 0 16px 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}
.faq-desc {
    font-size: 16px;
    color: var(--color-text-muted);
    line-height: 1.6;
}
.faq-advisor-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}
.faq-advisor-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-green) 100%);
}
.advisor-avatar-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}
.advisor-avatar {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.advisor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.advisor-status {
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    background: #ffffff;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid #E2E8F0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.status-dot {
    width: 8px;
    height: 8px;
    background-color: #26D07C;
    border-radius: 50%;
    display: inline-block;
    animation: statusPulse 1.8s infinite;
}
@keyframes statusPulse {
    0% { transform: scale(0.9); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; box-shadow: 0 0 8px rgba(38, 208, 124, 0.8); }
    100% { transform: scale(0.9); opacity: 0.6; }
}
.faq-advisor-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-navy);
    margin: 0 0 10px 0;
}
.faq-advisor-card p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0 0 20px 0;
}
.btn-faq-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 12px;
}
.premium-faq-item {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    margin-bottom: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}
.premium-faq-item:hover {
    border-color: #CBD5E1;
    box-shadow: 0 10px 25px rgba(11, 27, 54, 0.04);
    transform: translateY(-2px);
}
.premium-faq-item.active {
    border-color: rgba(14, 94, 255, 0.3);
    box-shadow: 0 20px 40px rgba(11, 27, 54, 0.06);
    transform: translateY(-2px);
}
.faq-question {
    padding: 24px 30px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    color: var(--color-navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
    gap: 20px;
    user-select: none;
}
.premium-faq-item:hover .faq-question {
    color: var(--color-blue);
}
.premium-faq-item.active .faq-question {
    color: var(--color-navy);
}
.faq-icon-wrapper {
    width: 36px;
    height: 36px;
    background: #F1F5F9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    color: #475569;
}
.premium-faq-item:hover .faq-icon-wrapper {
    background: #E0F2FE;
    color: var(--color-blue);
}
.premium-faq-item.active .faq-icon-wrapper {
    background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-green) 100%);
    color: #ffffff;
    transform: rotate(180deg);
    box-shadow: 0 5px 15px rgba(14, 94, 255, 0.3);
}
.faq-arrow-svg {
    width: 16px;
    height: 16px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-answer {
    height: 0;
    overflow: hidden;
}
.faq-answer-inner {
    padding: 0 30px 24px;
    color: #475569;
    font-size: 15px;
    line-height: 1.8;
}

@media (max-width: 991px) {
    .faq-split-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .faq-sidebar {
        position: static;
    }
    .faq-header-content {
        text-align: center;
    }
    .faq-advisor-card {
        max-width: 500px;
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    .faq-title {
        font-size: 32px;
    }
    .faq-question {
        padding: 20px 20px;
        font-size: 16px;
    }
    .faq-answer-inner {
        padding: 0 20px 20px;
        font-size: 14px;
    }
    .premium-faq-item {
        border-radius: 14px;
        margin-bottom: 14px;
    }
}

/* Jurisdiction Section */
.jurisdiction-section {
    padding: 70px 0;
}
.jurisdiction-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.jurisdiction-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.jurisdiction-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.1);
}
.jurisdiction-card.style-mainland {
    background-color: #0b1521;
}
.jurisdiction-card.style-freezone {
    background-color: #0d0a20;
}
.jurisdiction-card.style-offshore {
    background-color: #2b5646;
}
.jurisdiction-card .card-content {
    position: relative;
    z-index: 3;
    padding: 50px 40px;
    color: #ffffff;
}
.jurisdiction-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}
.jurisdiction-card p {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
    margin-bottom: 30px;
}
.btn-jurisdiction {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    color: #ffffff;
    background: linear-gradient(90deg, #1877F2, #159957);
    transition: all 0.3s ease;
    text-decoration: none;
}
.btn-jurisdiction:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(21, 153, 87, 0.4);
    color: #ffffff;
}

/* Premium Footer */
.premium-footer {
    background: var(--color-navy);
    color: var(--color-gray-light);
    position: relative;
    margin-top: 150px; /* Space for floating newsletter */
    padding-top: 1px; /* Prevent margin collapse */
}

/* Floating Newsletter Card */
.newsletter-card {
    background: linear-gradient(135deg, var(--color-green) 0%, var(--color-blue) 100%);
    border-radius: 24px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 30px 60px rgba(11, 27, 54, 0.15);
    margin-top: -100px;
    margin-bottom: 60px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.newsletter-card::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
    pointer-events: none;
}
.newsletter-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 10px;
}
.newsletter-content p {
    font-size: 16px;
    opacity: 0.9;
    margin: 0;
}
.newsletter-form {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
    width: 450px;
}
.newsletter-form input {
    flex: 1;
    padding: 16px 25px;
    border-radius: 50px;
    border: none;
    outline: none;
    font-size: 15px;
    font-family: inherit;
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-navy);
}
.newsletter-form .btn-premium {
    background: var(--color-navy);
    color: #ffffff;
    white-space: nowrap;
}
.newsletter-form .btn-premium:hover {
    background: #061226;
    transform: translateY(-2px);
}

/* Footer Main */
.footer-main {
    padding: 0 0 80px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
}
.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
}
.brand-col p {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 300px;
}
.footer-logo-wrapper {
    margin-bottom: 20px;
    display: flex;
}
.footer-logo-img {
    height: 80px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}
@media (max-width: 768px) {
    .footer-logo-wrapper {
        justify-content: center;
    }
    .footer-logo-img {
        height: 64px;
        margin: 0 auto;
        filter: brightness(0) invert(1);
    }
}
.social-links {
    display: flex;
    gap: 15px;
}
.social-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background: var(--color-green);
    transform: translateY(-3px);
}
.social-icon svg { width: 18px; height: 18px; }

.footer-links {
    list-style: none;
    padding: 0; margin: 0;
}
.footer-links li { margin-bottom: 15px; }
.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-links a:hover {
    color: var(--color-green);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0; margin: 0;
}
.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.6);
}
.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-contact a:hover { color: var(--color-green); }
.contact-icon {
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
    color: var(--color-green);
    flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; }

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px 0;
}
.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}
.footer-legal {
    display: flex;
    gap: 30px;
}
.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-legal a:hover { color: #ffffff; }

/* Responsive */
@media (max-width: 992px) {
    .trust-badges-grid, .cards-grid { grid-template-columns: repeat(2, 1fr); }
    .service-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
    .empowering-grid { grid-template-columns: 1fr; gap: 40px; }
    .empowering-content { text-align: center; }
    .empowering-content h2 { font-size: 36px !important; }
    
    .jurisdiction-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }

    .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .newsletter-card { flex-direction: column; text-align: center; gap: 25px; padding: 40px; margin-top: -120px; }
    .newsletter-form { width: 100%; }
}
@media (max-width: 768px) {
    /* ===================================
       MOBILE HEADER
    =================================== */
    .header-container {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        position: relative !important;
        height: 64px !important;
        padding: 0 16px !important;
        overflow: visible !important;
    }
    .header-logo {
        position: absolute !important;
        left: 50% !important;
        top: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
        text-align: center !important;
        white-space: nowrap !important;
        z-index: 1 !important;
    }
    /* Constrain logo image strictly on mobile */
    .logo-image:not(.mobile-logo-img) {
        height: 44px !important;
        max-height: 44px !important;
        width: auto !important;
        max-width: 160px !important;
        object-fit: contain !important;
    }
    .mobile-menu-toggle {
        position: absolute !important;
        right: 16px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        margin: 0 !important;
        z-index: 2 !important;
    }

    /* ===================================
       GLOBAL TYPOGRAPHY & STRUCTURE
    =================================== */
    .section-heading {
        font-size: 26px !important;
        line-height: 1.3 !important;
        margin-bottom: 12px;
        text-align: center !important;
    }
    .section-subheading {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 20px;
        max-width: 100% !important;
        text-align: center !important;
    }

    /* Global button — never stretch full width by default */
    .btn-premium,
    .btn-outline,
    .btn-white-outline {
        display: inline-flex !important;
        width: auto !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        justify-content: center !important;
        text-align: center !important;
        white-space: nowrap !important;
    }

    /* ===================================
       HERO SECTION
    =================================== */
    .hero-section {
        padding-top: 130px !important;
        padding-bottom: 60px !important;
        text-align: center !important;
        overflow: hidden !important;
    }
    .hero-section::before {
        width: 100% !important;
        mask-image: radial-gradient(circle at center, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.95) 100%) !important;
        -webkit-mask-image: radial-gradient(circle at center, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.95) 100%) !important;
        opacity: 0.35 !important;
    }
    .hero-content {
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    .hero-cta-row {
        justify-content: center !important;
        width: 100% !important;
    }
    .hero-title {
        font-size: min(8.5vw, 36px) !important;
        line-height: 1.15 !important;
        letter-spacing: -0.5px !important;
        margin-bottom: 20px !important;
    }
    .hero-subtitle {
        font-size: 15px !important;
        max-width: 100% !important;
    }
    .hero-benefits {
        justify-content: center !important;
        gap: 12px !important;
        margin-bottom: 30px !important;
    }
    .hero-content > div[style*="display: flex"] {
        flex-direction: column !important;
        width: 100% !important;
        gap: 10px !important;
    }
    .hero-content .btn-premium, 
    .hero-content .btn-outline,
    .hero-content .btn-white-outline {
        width: auto !important;
        max-width: 100% !important;
        padding: 12px 28px !important;
        box-sizing: border-box !important;
        text-align: center !important;
        justify-content: center !important;
    }

    /* Trust Badges */
    .trust-badges-wrapper {
        margin-top: 40px;
    }
    .trust-badges-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding: 20px 5px 30px 5px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
        grid-template-columns: none;
    }

    /* About/Stats Section */
    .setup-content-wrapper {
        gap: 30px !important;
    }
    .setup-text-col {
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin-bottom: 0 !important;
    }
    .premium-feature-list {
        display: inline-flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        margin: 0 auto 30px !important;
        text-align: left !important;
    }
    .setup-text-col .btn-premium {
        margin: 0 auto !important;
        display: inline-flex !important;
        width: auto !important;
        max-width: 100% !important;
        padding: 12px 28px !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }
    .setup-image-col {
        width: 100% !important;
        max-width: 450px !important;
        margin: 0 auto !important;
    }

    /* Core Values */
    .premium-values-section {
        padding: 50px 0 !important;
    }
    .values-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .ultra-value-card {
        padding: 28px 24px !important;
        border-radius: 20px !important;
    }

    /* Empowering Section */
    .empowering-section {
        padding: 60px 0 80px 0 !important;
    }
    .empowering-badge {
        margin-bottom: 15px !important;
    }
    .empowering-highlights {
        align-items: flex-start !important;
        margin-bottom: 25px !important;
    }
    .empowering-content {
        text-align: center !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .empowering-content h2 {
        font-size: 32px !important;
        margin-bottom: 15px !important;
    }
    .empowering-content p {
        font-size: 14.5px !important;
        margin-bottom: 25px !important;
    }
    .empowering-content .btn-premium {
        width: auto !important;
        max-width: 100% !important;
        padding: 12px 28px !important;
        box-sizing: border-box !important;
        text-align: center;
        justify-content: center;
    }
    .stat-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    .stat-cards-grid > * {
        transform: none !important;
    }
    .premium-stat-card {
        padding: 20px 20px !important;
        border-radius: 20px !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 15px !important;
        box-shadow: 0 10px 25px rgba(11, 27, 54, 0.03) !important;
    }
    .stat-icon-wrapper {
        width: 46px !important;
        height: 46px !important;
        border-radius: 12px !important;
    }
    .stat-icon-wrapper svg {
        width: 22px !important;
        height: 22px !important;
    }
    .stat-number {
        font-size: 30px !important;
        margin-bottom: 0px !important;
    }
    .stat-label {
        font-size: 13px !important;
    }

    /* Why Setup UAE */
    .why-setup-uae-section {
        padding: 60px 0 !important;
    }
    .why-setup-badge {
        align-self: center !important;
        margin-bottom: 20px !important;
    }
    .why-setup-heading {
        font-size: 32px !important;
        text-align: center !important;
        line-height: 1.25 !important;
        letter-spacing: -1px !important;
    }
    .why-setup-desc {
        text-align: center !important;
        font-size: 15px !important;
    }
    .why-setup-left {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        position: relative !important;
        top: auto !important;
    }
    .why-setup-btn {
        width: 100% !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }
    .why-setup-image-wrapper {
        display: block !important;
        margin-top: 40px !important;
        width: 100% !important;
        max-width: 360px !important;
    }
    .why-setup-right {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .why-benefit-card {
        padding: 24px 20px !important;
        border-radius: 18px !important;
    }

    /* Value Added Services */
    .support-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    .support-card {
        padding: 20px 12px !important;
        border-radius: 14px !important;
        align-items: center !important;
        text-align: center !important;
    }
    .support-card-icon {
        width: 44px !important;
        height: 44px !important;
        margin-bottom: 12px !important;
    }
    .support-card-icon svg {
        width: 22px !important;
        height: 22px !important;
    }
    .support-card h3 {
        font-size: 14px !important;
        font-weight: 700 !important;
        margin-bottom: 6px !important;
        line-height: 1.3 !important;
    }
    .support-card p {
        font-size: 11px !important;
        line-height: 1.5 !important;
        opacity: 0.8 !important;
    }

    /* ===================================
       LOCATION CARDS — Mobile Fix
       Cards stay absolutely positioned.
       Only opacity/visibility changes which face shows.
    =================================== */
    .tabs-wrapper {
        display: flex !important;
        overflow-x: auto !important;
        white-space: nowrap !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 4px !important;
        margin-bottom: 24px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        border-radius: 30px !important;
        background: rgba(255,255,255,0.7) !important;
        border: 1px solid rgba(0,0,0,0.03) !important;
    }
    .tabs-wrapper::-webkit-scrollbar { display: none !important; }
    .tab-btn {
        flex: 1 0 auto !important;
        font-size: 13px !important;
        padding: 8px 14px !important;
        border-radius: 30px !important;
        white-space: nowrap !important;
    }

    .cards-grid {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
    .premium-location-card {
        height: 400px !important;
        min-height: 400px !important;
        max-height: 400px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        border-radius: 20px !important;
        position: relative !important;
    }
    .premium-location-card .card-inner {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 20px !important;
        overflow: hidden !important;
    }
    /* Both faces: absolute, fill the card */
    .card-front,
    .card-back {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        border-radius: 20px !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
        transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease !important;
    }
    /* Default: front visible, back hidden */
    .card-front {
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 2 !important;
        transform: scale(1) !important;
        pointer-events: auto !important;
    }
    .card-back {
        opacity: 0 !important;
        visibility: hidden !important;
        z-index: 1 !important;
        transform: scale(0.96) !important;
        pointer-events: none !important;
        padding: 30px 24px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        background: linear-gradient(135deg, #0B1B36 0%, #10213E 100%) !important;
    }
    /* Flipped: back visible, front hidden */
    .premium-location-card.flipped .card-front {
        opacity: 0 !important;
        visibility: hidden !important;
        z-index: 1 !important;
        transform: scale(0.96) !important;
        pointer-events: none !important;
    }
    .premium-location-card.flipped .card-back {
        opacity: 1 !important;
        visibility: visible !important;
        z-index: 2 !important;
        transform: scale(1) !important;
        pointer-events: auto !important;
    }
    /* Card image fills front face */
    .card-image-wrapper {
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        z-index: 1 !important;
    }
    .card-image-wrapper img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
        filter: none !important;
    }
    /* Card text overlay on front face */
    .card-content {
        position: absolute !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 24px !important;
        z-index: 2 !important;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%) !important;
    }
    /* Back face content */
    .back-content {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        justify-content: center !important;
    }
    .back-content h3 {
        font-size: 20px !important;
        color: #fff !important;
        margin: 0 0 10px !important;
    }
    .back-desc {
        font-size: 13px !important;
        color: rgba(255,255,255,0.85) !important;
        line-height: 1.6 !important;
        margin-bottom: 16px !important;
    }
    .card-back {
        padding: 30px 25px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        box-sizing: border-box !important;
    }
    .back-content {
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
    }
    .back-content h3 {
        font-size: 20px !important;
        margin-top: 0 !important;
        margin-bottom: 12px !important;
        color: #ffffff !important;
    }
    .back-desc {
        font-size: 14px !important;
        line-height: 1.6 !important;
        color: rgba(255, 255, 255, 0.9) !important;
        margin-bottom: 15px !important;
        margin-top: 0 !important;
    }

    /* Business Support Services */
    .service-grid {
        grid-template-columns: 1fr !important;
    }
    .services-section {
        padding: 50px 0 !important;
    }
    .services-section h2 {
        font-size: 30px !important;
        margin-bottom: 35px !important;
    }
    .premium-service-item {
        padding: 25px 20px !important;
        border-radius: 14px !important;
    }
    .premium-service-item h3 {
        font-size: 17px !important;
    }

    /* Footer & Newsletter */
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }
    /* ===================================
       NEWSLETTER CARD
    =================================== */
    .newsletter-card {
        padding: 28px 20px !important;
        margin-top: -40px !important;
        margin-bottom: 0 !important;
        border-radius: 20px !important;
        margin-left: 16px !important;
        margin-right: 16px !important;
        width: auto !important;
        box-sizing: border-box !important;
        text-align: center !important;
    }
    .newsletter-content h3 {
        font-size: 22px !important;
        line-height: 1.3 !important;
    }
    .newsletter-content p {
        font-size: 13px !important;
    }
    .newsletter-form {
        flex-direction: column !important;
        gap: 10px !important;
        width: 100% !important;
    }
    .newsletter-form input {
        border-radius: 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .newsletter-form .btn-primary-glow,
    .newsletter-form .nl-btn {
        width: 100% !important;
        justify-content: center !important;
    }
    .footer-main {
        padding-bottom: 50px !important;
    }
    .footer-grid {
        gap: 35px !important;
        text-align: center !important;
    }
    .brand-col {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    .brand-col p {
        max-width: 100% !important;
    }
    .social-links {
        justify-content: center !important;
    }
    .footer-contact li {
        justify-content: center !important;
        text-align: center !important;
    }
    .footer-bottom-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

/* ==========================================================================
   PREMIUM HERO SECTION REDESIGN
   ========================================================================== */

/* Hero Container */
.premium-hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #021B34;
    overflow: hidden;
    padding: 120px 0 0 0;
}

/* Background Gradients & Effects */
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #021B34 0%, #041F3D 50%, #061428 100%);
    z-index: 0;
}
.hero-bg-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(2, 27, 52, 0.8) 100%);
}
.hero-glow-radial {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(244, 197, 66, 0.15) 0%, rgba(0, 194, 255, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(60px);
}
.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}
.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

/* Layout Container */
.premium-hero .hero-container {
    max-width: 1600px !important;
    margin: 0 auto !important;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 3;
    width: 100%;
}

/* Left Content */
.premium-hero .hero-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.premium-hero .hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    color: #FFFFFF;
    margin: 0;
    letter-spacing: -1px;
}
.premium-hero .text-gradient {
    background: linear-gradient(90deg, #00C2FF 0%, #00D084 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}
.premium-hero .hero-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #C7D2E0;
    margin: 0;
    max-width: 90%;
}

/* CTA Buttons */
.premium-hero .hero-buttons {
    display: flex;
    gap: 20px;
    align-items: center;
    margin-top: 10px;
}
.premium-hero .btn-primary-glow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(90deg, #00C2FF 0%, #00D084 100%);
    color: #021B34;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 208, 132, 0.3);
    position: relative;
    overflow: hidden;
}
.premium-hero .btn-primary-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(0, 208, 132, 0.4);
}
.premium-hero .btn-primary-glow .btn-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
}
.premium-hero .btn-primary-glow:hover .btn-icon {
    transform: translate(3px, -3px);
}
.premium-hero .btn-secondary-glass {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    padding: 15px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.premium-hero .btn-secondary-glass:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Social Proof */
.premium-hero .hero-social-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.premium-hero .proof-item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.premium-hero .proof-logo {
    height: 24px;
    width: auto;
}
.premium-hero .proof-rating {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.premium-hero .rating-score {
    color: #FFFFFF;
    font-weight: 700;
    font-size: 14px;
    line-height: 1;
}
.premium-hero .rating-stars {
    color: #FFD76A;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 1px;
}
.premium-hero .proof-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.1);
}
.premium-hero .proof-text {
    color: #8FA6C4;
    font-size: 13px;
    font-weight: 500;
}

/* Right Visual */
.premium-hero .hero-visual {
    position: relative;
    perspective: 1000px;
}
.premium-hero .visual-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    transform-style: preserve-3d;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.premium-hero .visual-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
    transform: scale(1.05);
}
.premium-hero .visual-glow-edge {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    box-shadow: inset 0 0 40px rgba(244, 197, 66, 0.3);
    pointer-events: none;
    z-index: 2;
}
.premium-hero .visual-swoosh {
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 60%;
    height: 40%;
    background: linear-gradient(135deg, transparent, rgba(244, 197, 66, 0.4));
    filter: blur(40px);
    transform: rotate(-15deg);
    z-index: 3;
    pointer-events: none;
}
.premium-hero .visual-star {
    position: absolute;
    top: 30px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #F4C542, #FFD76A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    box-shadow: 0 10px 30px rgba(244, 197, 66, 0.4);
}
.premium-hero .visual-star svg {
    width: 30px;
    height: 30px;
    fill: #021B34;
}

/* Services Strip */
.premium-hero .hero-services-strip {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1160px;
    z-index: 10;
}
.premium-hero .strip-container {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
.premium-hero .service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 10px;
    text-decoration: none;
    color: #C7D2E0;
    transition: all 0.3s ease;
    flex: 1;
    justify-content: center;
    border-radius: 12px;
}
.premium-hero .service-item:hover {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.05);
}
.premium-hero .service-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00C2FF;
    transition: all 0.3s ease;
}
.premium-hero .service-item:hover .service-icon {
    color: #00D084;
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(0, 208, 132, 0.5));
}
.premium-hero .service-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
}
.premium-hero .service-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.1), transparent);
}

/* Responsive */
@media (max-width: 1024px) {
    .premium-hero .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .premium-hero .hero-content {
        align-items: center;
        padding-right: 0 !important;
        max-width: 100% !important;
        margin: 0 auto !important;
    }
    .premium-hero .hero-subtitle {
        margin: 0 auto;
    }
    .premium-hero .hero-visual {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        width: 100% !important;
        max-width: 500px !important;
        height: 380px !important;
        margin: 40px auto 0 !important;
        pointer-events: auto !important;
        z-index: 2 !important;
    }
    .premium-hero .ultra-premium-visual-wrapper {
        position: relative !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        height: 100% !important;
    }
    .premium-hero .hero-social-proof {
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 15px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 5px;
    }
    .premium-hero .hero-social-proof::-webkit-scrollbar {
        display: none;
    }
    .premium-hero .proof-item {
        flex: 0 0 auto;
    }
    .premium-hero .proof-text {
        flex: 0 0 auto;
        white-space: nowrap;
    }
    .premium-hero .proof-divider {
        display: block;
    }
    .premium-hero .proof-text {
        width: 100%;
        text-align: center;
        margin-top: 5px;
    }
    .premium-hero .hero-services-strip {
        position: relative;
        bottom: 0;
        margin-top: 50px;
        transform: none;
        left: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    .premium-hero .strip-container {
        flex-wrap: nowrap;
        gap: 15px;
        padding: 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
        justify-content: flex-start;
    }
    .premium-hero .strip-container::-webkit-scrollbar {
        display: none;
    }
    .premium-hero .service-item {
        flex: 0 0 auto;
        min-width: 140px;
        flex-direction: column;
    }
    .premium-hero .service-divider {
        display: none;
    }
}
@media (max-width: 768px) {
    .premium-hero {
        padding: 100px 0 60px;
    }
    .premium-hero .hero-title {
        font-size: 36px;
    }
    .premium-hero .hero-social-proof {
        gap: 8px;
    }
    .premium-hero .proof-item {
        gap: 6px;
    }
    .premium-hero .proof-logo {
        height: 18px;
    }
    .premium-hero .rating-score {
        font-size: 12px;
    }
    .premium-hero .rating-stars {
        font-size: 9px;
    }
    .premium-hero .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .premium-hero .btn-primary-glow,
    .premium-hero .btn-secondary-glass {
        width: 100%;
        justify-content: center;
    }
    .premium-hero .service-item {
        min-width: 120px;
        padding: 12px 10px;
    }
    .premium-hero .hero-visual {
        height: 280px !important;
    }
    .premium-hero .floating-trust-badge {
        left: 10px !important;
        bottom: 20px !important;
        padding: 10px 18px !important;
        border-radius: 14px !important;
    }
    .premium-hero .floating-trust-badge div[style*="font-size:42px"] {
        font-size: 28px !important;
    }
    .premium-hero .floating-trust-badge div[style*="font-size:14px"] {
        font-size: 11px !important;
    }
    .premium-hero .floating-star {
        right: 10px !important;
        top: -10px !important;
    }
    .premium-hero .floating-star svg {
        width: 35px !important;
        height: 35px !important;
    }
    .card-footer {
        flex-wrap: wrap !important;
        gap: 6px 12px !important;
    }
}
@media (max-width: 480px) {
    .card-footer {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 6px !important;
    }
    .card-footer .dot {
        display: none !important;
    }
}


/* ============================================================
   PREMIUM MOTION ANIMATIONS
=========================================================== */

/* Glowing Orbs Animation */
.hero-yellow-glow { animation: float-orb-1 14s ease-in-out infinite alternate; }
.hero-blue-glow { animation: float-orb-2 18s ease-in-out infinite alternate; }
.hero-teal-glow { animation: float-orb-3 16s ease-in-out infinite alternate; }

@keyframes float-orb-1 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    100% { transform: translate(-60px, 40px) scale(1.15); opacity: 1; }
}
@keyframes float-orb-2 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    100% { transform: translate(50px, -50px) scale(1.1); opacity: 1; }
}
@keyframes float-orb-3 {
    0% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    100% { transform: translate(-40px, -60px) scale(1.2); opacity: 0.6; }
}

/* Floating Particles Drift */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.hero-particles::before, .hero-particles::after {
    content: '';
    position: absolute;
    width: 200%; height: 200%;
    top: -50%; left: -50%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px), radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 120px 120px, 80px 80px;
    background-position: 0 0, 40px 40px;
    animation: particles-drift 50s linear infinite;
    opacity: 0.4;
}
.hero-particles::after {
    background-size: 90px 90px, 50px 50px;
    background-position: 0 0, 25px 25px;
    animation-duration: 70s;
    animation-direction: reverse;
    opacity: 0.2;
}
@keyframes particles-drift {
    0% { transform: rotate(0deg) translateY(0); }
    100% { transform: rotate(5deg) translateY(-150px); }
}

/* Background Subtle Gradient Shimmer */
.hero-bg-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #021b34 0%, #061529 100%);
    z-index: 0;
    overflow: hidden;
}
.hero-bg-gradient::after {
    content: '';
    position: absolute;
    inset: -50%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 208, 107, 0.08), transparent 50%);
    animation: bg-shimmer 25s ease-in-out infinite alternate;
}
@keyframes bg-shimmer {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.3) translate(5%, -5%); }
}

/* Floating Gold Star Pulse */
.floating-star {
    animation: star-pulse-spin 6s ease-in-out infinite alternate !important;
}
@keyframes star-pulse-spin {
    0% { transform: translateY(0) scale(1) rotate(0deg); filter: drop-shadow(0 0 20px rgba(255,223,0,0.6)); }
    100% { transform: translateY(-20px) scale(1.1) rotate(10deg); filter: drop-shadow(0 0 35px rgba(255,223,0,1)); }
}


/* ============================================================
   PREMIUM DARK SECTION (About / Stats)
=========================================================== */
.premium-dark-section {
    padding: 60px 0 80px;
    background: linear-gradient(135deg, #021b34 0%, #061529 100%);
    position: relative;
    overflow: hidden;
}
.premium-dark-section .section-heading {
    color: #ffffff;
}
.premium-dark-section .section-subheading {
    color: rgba(255,255,255,0.85);
}
.premium-dark-section .highlight-blue {
    color: #00A3FF;
}
.premium-dark-section .feature-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.premium-dark-section .feature-card.active {
    border-color: #00D06B;
    box-shadow: 0 10px 25px -5px rgba(0,208,107,0.15);
}
.premium-dark-section .feature-card-content h3 {
    color: #ffffff;
}
.premium-dark-section .feature-card-content p {
    color: rgba(255,255,255,0.7);
}
.premium-dark-section .card-icon-wrap {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.6);
}
.premium-dark-section .card-icon-wrap.active {
    background: linear-gradient(135deg, #00D06B, #0E5EFF);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(0,208,107,0.4);
}
.premium-dark-section .image-inner-wrap {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 25px 50px rgba(0,0,0,0.5);
}
.premium-dark-section .floating-badge {
    background: rgba(6, 21, 41, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,215,0,0.4);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
}
.premium-dark-section .top-badge-1 .badge-text strong,
.premium-dark-section .top-badge-2,
.premium-dark-section .bottom-badge .badge-text strong {
    color: #ffffff;
}
.premium-dark-section .top-badge-1 .badge-text span,
.premium-dark-section .bottom-badge .badge-text span {
    color: rgba(255,255,255,0.7);
}
.premium-dark-section .premium-bg-lines .bg-line {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.04) 50%, rgba(255, 255, 255, 0) 100%);
}
.premium-dark-section .bg-blob {
    opacity: 0.15;
}
.premium-dark-section .blob-1 {
    background: #00D06B;
}
.premium-dark-section .blob-2 {
    background: #0E5EFF;
}

/* ==========================================================================
   ABOUT US PAGE STYLES (Version 2.0.6)
   ========================================================================== */

.about-page-main {
    overflow-x: hidden;
    width: 100%;
    padding-top: 0 !important;
    margin-top: 0 !important;
    background-color: #021B34; /* Close white gap under fixed header */
}


/* About Hero */
.about-hero-section {
    position: relative;
    width: 100%;
    min-height: 75vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #021B34;
    overflow: hidden;
    padding: 180px 0 100px;
}
.about-hero-glow-1 {
    position: absolute;
    left: -10%; top: -10%;
    width: 800px; height: 800px;
    background: radial-gradient(circle, rgba(14, 94, 255, 0.15) 0%, rgba(0, 194, 255, 0.05) 45%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(60px);
    animation: floatGlow1 22s infinite alternate ease-in-out;
}
.about-hero-glow-2 {
    position: absolute;
    right: -10%; bottom: -10%;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(38, 208, 124, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(65px);
    animation: floatGlow2 28s infinite alternate ease-in-out;
}
.about-hero-particles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.45;
}
.about-hero-particles::before {
    content: '';
    position: absolute;
    width: 200%; height: 200%;
    top: -50%; left: -50%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
    background-size: 100px 100px;
    animation: particles-drift 60s linear infinite;
}
.about-hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}
.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-hero-title {
    font-family: var(--font-main);
    font-size: 54px;
    font-weight: 800;
    line-height: 1.15;
    color: #FFFFFF;
    margin-top: 20px;
    margin-bottom: 25px;
    letter-spacing: -1.8px;
}
.about-hero-desc {
    font-size: 18px;
    line-height: 1.7;
    color: #C7D2E0;
    margin-bottom: 40px;
    max-width: 660px;
}

/* Stats Section */
.about-stats-section {
    position: relative;
    z-index: 5;
}
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 2;
}
.about-stat-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 24px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.about-stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(11, 27, 54, 0.06);
    border-color: rgba(14, 94, 255, 0.15);
}
.about-stat-card .stat-icon-wrap {
    width: 48px; height: 48px;
    background: #eff6ff;
    color: #0E5EFF;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}
.about-stat-card:hover .stat-icon-wrap {
    background: #0E5EFF;
    color: #ffffff;
    box-shadow: 0 8px 20px rgba(14, 94, 255, 0.25);
}
.about-stat-card .stat-icon-wrap svg {
    width: 22px; height: 22px;
}
.about-stat-card h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-navy);
    margin: 0 0 12px;
    letter-spacing: -0.5px;
}
.about-stat-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* Vision & Mission */
.about-vision-section {
    position: relative;
    background: linear-gradient(-45deg, #020C1B, #0B1B36, #0A192F, #041226);
    background-size: 400% 400%;
    animation: backgroundShift 20s ease infinite;
    padding: 120px 0;
    overflow: hidden;
    color: #ffffff;
}
.about-vision-glow-1 {
    position: absolute;
    top: -10%; left: -10%;
    width: 650px; height: 650px;
    background: radial-gradient(circle, rgba(14, 94, 255, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    animation: floatGlow1 22s infinite alternate ease-in-out;
}
.about-vision-glow-2 {
    position: absolute;
    bottom: -10%; right: -10%;
    width: 650px; height: 650px;
    background: radial-gradient(circle, rgba(38, 208, 124, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    animation: floatGlow2 26s infinite alternate ease-in-out;
}
.about-vision-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.about-vision-left {
    display: flex;
    flex-direction: column;
}
.about-vision-heading {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1.5px;
}
.about-vision-desc {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
}
.vision-highlights-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.vision-highlight-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.vision-highlight-item .v-icon {
    width: 32px; height: 32px;
    background: rgba(38, 208, 124, 0.15);
    border-radius: 50%;
    color: #26D07C;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
    box-shadow: 0 0 15px rgba(38, 208, 124, 0.15);
}
.vision-highlight-item h4 {
    margin: 0 0 6px;
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
}
.vision-highlight-item p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.7);
}
.about-vision-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    justify-self: center;
    border-radius: 24px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}
.about-vision-accent-shape {
    position: absolute;
    top: -15px; left: -15px; right: -15px; bottom: -15px;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(14, 94, 255, 0.25) 0%, rgba(38, 208, 124, 0.25) 100%);
    z-index: 1;
    filter: blur(20px);
    opacity: 0.8;
    animation: shapeRotate 12s infinite alternate linear;
}
.about-vision-accent-shape-2 {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 24px;
    border: 1.5px solid rgba(255, 255, 255, 0.1);
    z-index: 3;
    pointer-events: none;
}
.about-vision-image-wrapper img {
    position: relative;
    z-index: 2;
    width: 100%;
    display: block;
    border-radius: 18px;
    mix-blend-mode: screen;
    opacity: 0.88;
    filter: brightness(1.1) contrast(1.1);
    -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0.1) 100%);
    mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 75%, rgba(0,0,0,0.1) 100%);
}
.about-vision-image-badge {
    position: absolute;
    bottom: 24px; left: 24px; right: 24px;
    background: rgba(11, 27, 54, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 20px;
    border-radius: 16px;
    z-index: 4;
    font-size: 12.5px;
    font-weight: 700;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: 1px;
}

/* Timeline Section */
.about-timeline-section {
    padding: 100px 0;
}
.about-timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 0;
}
.about-timeline-line {
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, rgba(14,94,255,0.05), rgba(14,94,255,0.4) 15%, rgba(38,208,124,0.4) 85%, rgba(38,208,124,0.05));
    transform: translateX(-50%);
    z-index: 1;
}
.about-timeline-item {
    position: relative;
    width: 50%;
    padding: 0 40px;
    margin-bottom: 50px;
    z-index: 2;
}
.about-timeline-item:last-child {
    margin-bottom: 0;
}
.about-timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}
.about-timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}
.timeline-dot {
    position: absolute;
    top: 25px;
    width: 14px; height: 14px;
    background: #0E5EFF;
    border: 3px solid #ffffff;
    border-radius: 50%;
    z-index: 5;
    box-shadow: 0 0 10px rgba(14,94,255,0.8);
    transition: all 0.3s ease;
}
.about-timeline-item:nth-child(odd) .timeline-dot {
    right: -7px;
}
.about-timeline-item:nth-child(even) .timeline-dot {
    left: -7px;
    background: #26D07C;
    box-shadow: 0 0 10px rgba(38,208,124,0.8);
}
.about-timeline-item:hover .timeline-dot {
    transform: scale(1.3);
}
.timeline-content {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 20px;
    padding: 28px;
    box-shadow: 0 8px 25px rgba(11,27,54,0.02);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.about-timeline-item:hover .timeline-content {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(11,27,54,0.06);
    border-color: rgba(14, 94, 255, 0.15);
}
.timeline-year {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #0E5EFF;
    margin-bottom: 8px;
}
.about-timeline-item:nth-child(even) .timeline-year {
    color: #26D07C;
}
.timeline-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--color-navy);
    margin: 0 0 10px;
}
.timeline-content p {
    font-size: 13.5px;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* About CTA */
.about-cta-section {
    position: relative;
    padding: 100px 0;
    background: #021B34;
    overflow: hidden;
}
.about-cta-glow {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(14, 94, 255, 0.1) 0%, transparent 70%);
    z-index: 1;
    filter: blur(50px);
}
.about-cta-container {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}
.about-cta-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.about-cta-card h2 {
    font-size: 38px;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 15px;
    letter-spacing: -1px;
}
.about-cta-card p {
    font-size: 17px;
    color: #C7D2E0;
    margin-bottom: 35px;
}
.about-cta-buttons {
    display: flex;
    justify-content: center;
}

/* ===== ABOUT RESPONSIVE ===== */
@media (max-width: 1024px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    .about-vision-container {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .about-vision-left {
        align-items: center;
    }
    .vision-highlight-item {
        text-align: left;
    }
}
@media (max-width: 768px) {
    .about-hero-section {
        padding: 140px 0 70px;
    }
    .about-hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }
    .about-hero-desc {
        font-size: 16px;
    }
    .about-vision-heading {
        font-size: 32px;
        letter-spacing: -0.5px;
    }
    .about-timeline-line {
        left: 20px;
    }
    .about-timeline-item {
        width: 100%;
        padding-left: 50px;
        padding-right: 0;
        margin-bottom: 40px;
        text-align: left !important;
    }
    .about-timeline-item:nth-child(even) {
        left: 0;
    }
    .about-timeline-item:nth-child(odd) .timeline-dot,
    .about-timeline-item:nth-child(even) .timeline-dot {
        left: 13px;
        right: auto;
    }
    .about-cta-card {
        padding: 40px 20px;
    }
    .about-cta-card h2 {
        font-size: 28px;
    }
    .about-cta-card p {
        font-size: 15px;
    }
}
@media (max-width: 480px) {
    .about-stats-grid {
        grid-template-columns: 1fr;
    }
    .about-stat-card {
        padding: 30px 20px;
    }
}

/* ==========================================================================
   SHARED INTERNAL PAGES & SUBPAGES STYLE OVERRIDES
   ========================================================================== */

/* Breadcrumbs */
.breadcrumb-container {
    padding: 15px 0;
    background: rgba(7, 15, 35, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 100;
}
.about-page-main .breadcrumb-container,
.inner-hero-section .breadcrumb-container {
    background: transparent;
    border-bottom: none;
    padding: 20px 0 0 0;
}
.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
    font-size: 13.5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.breadcrumbs li {
    display: flex;
    align-items: center;
    color: #64748b;
}
.breadcrumbs a {
    color: #0E5EFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}
.breadcrumbs a:hover {
    color: #00D06B;
}
.breadcrumbs .separator {
    color: #94a3b8;
    margin: 0 4px;
    font-size: 12px;
}
.breadcrumbs .active {
    color: #475569;
    font-weight: 600;
}
.about-hero-section .breadcrumbs li,
.inner-hero-section .breadcrumbs li {
    color: rgba(255,255,255,0.6);
}
.about-hero-section .breadcrumbs a,
.inner-hero-section .breadcrumbs a {
    color: #00C2FF;
}
.about-hero-section .breadcrumbs .active,
.inner-hero-section .breadcrumbs .active {
    color: #FFFFFF;
}

/* Inner Page Hero (Standard Dark Theme) */
.inner-hero-section {
    position: relative;
    width: 100%;
    min-height: 45vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #021B34;
    overflow: hidden;
    padding: 180px 0 60px;
}
.inner-hero-glow-1 {
    position: absolute;
    left: -5%; top: -10%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(14, 94, 255, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(50px);
}
.inner-hero-glow-2 {
    position: absolute;
    right: -5%; bottom: -10%;
    width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(38, 208, 124, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    filter: blur(50px);
}
.inner-hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.inner-hero-title {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: clamp(32px, 3.5vw, 46px);
    font-weight: 800;
    line-height: 1.2;
    color: #FFFFFF;
    margin-top: 15px;
    margin-bottom: 15px;
    letter-spacing: -1.2px;
}
.inner-hero-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #C7D2E0;
    margin: 0;
    max-width: 620px;
}

/* Two Column Sticky Sidebar Layout */
.layout-sticky-sidebar {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    position: relative;
    align-items: start;
}
.sticky-sidebar {
    position: sticky;
    top: 110px;
    z-index: 10;
}
.sidebar-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
}
.sidebar-title {
    font-size: 16px;
    font-weight: 800;
    color: #071B3B;
    margin: 0 0 20px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-bottom: 1.5px solid #eff6ff;
    padding-bottom: 12px;
}
.sidebar-nav-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.sidebar-nav-links li a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    color: #475569;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.25s ease;
    border: 1px solid transparent;
}
.sidebar-nav-links li a:hover {
    color: #0E5EFF;
    background: #eff6ff;
}
.sidebar-nav-links li.active a {
    color: #FFFFFF;
    background: linear-gradient(135deg, #0E5EFF, #00A3FF);
    box-shadow: 0 8px 16px rgba(14, 94, 255, 0.15);
}

/* Service Detail Cards & Steps */
.service-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}
.process-steps-timeline {
    position: relative;
    margin: 40px 0;
}
.process-step-row {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    position: relative;
}
.process-step-row:last-child {
    margin-bottom: 0;
}
.step-number-badge {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #0E5EFF, #00A3FF);
    color: #ffffff;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 15px rgba(14,94,255,0.25);
    z-index: 2;
}
.step-content-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.01);
    flex-grow: 1;
}
.step-content-box h4 {
    margin: 0 0 8px 0;
    font-size: 16px;
    font-weight: 700;
    color: #071B3B;
}
.step-content-box p {
    margin: 0;
    font-size: 13.5px;
    color: #64748b;
    line-height: 1.5;
}

/* Products & Projects Dynamic Tab Filters */
.filter-tabs-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 45px;
}
.filter-tab-btn {
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 30px;
    padding: 10px 24px;
    font-size: 14.5px;
    font-weight: 600;
    color: #475569;
    cursor: pointer;
    transition: all 0.3s ease;
}
.filter-tab-btn:hover {
    color: #0E5EFF;
    border-color: #0E5EFF;
}
.filter-tab-btn.active {
    background: linear-gradient(135deg, #0E5EFF, #00A3FF);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(14, 94, 255, 0.15);
}

.filterable-grid-item {
    transition: all 0.4s ease;
}
.filterable-grid-item.hidden {
    display: none !important;
    opacity: 0;
    transform: scale(0.9);
}

/* Technical Specification Table */
.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}
.premium-spec-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.premium-spec-table th {
    background-color: #071B3B;
    color: #ffffff;
    font-weight: 700;
    padding: 16px 20px;
    border-bottom: 2px solid rgba(255,255,255,0.1);
}
.premium-spec-table td {
    padding: 16px 20px;
    border-bottom: 1px solid #eff6ff;
    color: #475569;
    font-weight: 500;
}
.premium-spec-table tr:last-child td {
    border-bottom: none;
}
.premium-spec-table tr:nth-child(even) td {
    background-color: #f8fafc;
}
.premium-spec-table tr:hover td {
    background-color: #eff6ff;
}

/* Premium Inquiries, Support & Application Forms */
.premium-contact-form-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(11,27,54,0.03);
}
.form-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}
.form-group-full {
    margin-bottom: 20px;
}
.form-group-full:last-of-type {
    margin-bottom: 30px;
}
.form-label {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: #071B3B;
    margin-bottom: 8px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.form-input-field {
    width: 100%;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 14px;
    font-family: inherit;
    color: #071B3B;
    outline: none;
    transition: all 0.3s ease;
}
.form-input-field:focus {
    border-color: #0E5EFF;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(14,94,255,0.1);
}
textarea.form-input-field {
    min-height: 120px;
    resize: vertical;
}

/* Downloads Resource Grid */
.downloads-search-bar {
    max-width: 500px;
    margin: 0 auto 40px auto;
    position: relative;
}
.downloads-search-bar input {
    width: 100%;
    padding: 16px 24px;
    padding-right: 50px;
    border-radius: 30px;
    border: 1.5px solid #e2e8f0;
    background: #ffffff;
    font-size: 15px;
    outline: none;
    box-shadow: 0 10px 25px rgba(0,0,0,0.02);
    transition: all 0.3s ease;
}
.downloads-search-bar input:focus {
    border-color: #0E5EFF;
    box-shadow: 0 10px 25px rgba(14,94,255,0.08);
}
.downloads-search-bar svg {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    width: 20px;
    height: 20px;
    pointer-events: none;
}
.download-card-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}
.download-card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(11,27,54,0.05);
    border-color: rgba(14, 94, 255, 0.15);
}
.download-type-pill {
    align-self: flex-start;
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 6px;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}
.download-type-pill.pdf {
    background: #fee2e2;
    color: #ef4444;
}
.download-type-pill.brochure {
    background: #dcfce7;
    color: #10b981;
}
.download-type-pill.datasheet {
    background: #e0f2fe;
    color: #0284c7;
}

/* Careers open positions list */
.careers-position-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}
.careers-position-row:hover {
    transform: translateX(5px);
    border-color: #0E5EFF;
    box-shadow: 0 6px 20px rgba(14,94,255,0.03);
}

/* Support Help Category Grid */
.support-cat-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
}
.support-cat-card:hover {
    transform: translateY(-5px);
    border-color: #0E5EFF;
    box-shadow: 0 15px 30px rgba(14,94,255,0.04);
}
.support-cat-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: #eff6ff;
    color: #0E5EFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.support-cat-card:hover .support-cat-icon {
    background: #0E5EFF;
    color: #ffffff;
}
.support-cat-icon svg {
    width: 26px;
    height: 26px;
}

/* Sticky Contact Info Card */
.sticky-contact-card {
    background: linear-gradient(135deg, #071B3B 0%, #021226 100%);
    color: #ffffff;
    border-radius: 24px;
    padding: 35px;
    position: sticky;
    top: 110px;
    z-index: 10;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Responsive Overrides */
@media (max-width: 1024px) {
    .layout-sticky-sidebar {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sticky-sidebar {
        position: relative;
        top: 0;
    }
    .sticky-contact-card {
        position: relative;
        top: 0;
    }
}
@media (max-width: 768px) {
    .service-details-grid {
        grid-template-columns: 1fr;
    }
    .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .premium-contact-form-card {
        padding: 25px;
    }
    .careers-position-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .careers-position-row .btn-premium {
        width: 100%;
        justify-content: center;
    }
}

/* Fix for transparent header overlay on non-homepage pages to prevent white-on-white text/logo issues */
body:not(.home) .premium-header:not(.scrolled) {
    background: #0b1b36 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}




/* --- Wide-Screen Desktop Responsiveness Fixes --- */
@media (min-width: 1440px) {
    .container, .header-top-container, .header-container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding-left: 30px;
        padding-right: 30px;
    }
    .hero-container {
        width: 100%;
        max-width: 1400px;
        margin: 0 auto;
        padding-left: 30px;
        padding-right: 30px;
        position: relative;
    }
}

@media (min-width: 1600px) {
    .container, .header-top-container, .header-container, .hero-container {
        max-width: 1600px;
    }
    .hero-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 80px;
    }
    .hero-content {
        flex: 1;
        max-width: 650px !important;
    }
    .hero-visual {
        flex: 1;
        max-width: 750px !important;
        position: relative !important;
        right: auto !important;
        top: auto !important;
        width: 100% !important;
        height: 650px !important;
    }
}

@media (min-width: 1920px) {
    .container, .header-top-container, .header-container, .hero-container {
        max-width: 1750px;
    }
}


/* --- Global Logo Fluidity Override --- */
/* This completely removes all hardcoded max-width constraints so the WP Editor width setting works */
body .premium-header .logo-image,
body .premium-header .custom-logo-link img,
body .premium-header .wp-block-site-logo img {
    height: auto !important;
    max-width: none !important;
    max-height: 120px !important; /* Safety upper limit */
    object-fit: contain !important;
}

body .premium-header.scrolled .logo-image,
body .premium-header.scrolled .custom-logo-link img,
body .premium-header.scrolled .wp-block-site-logo img {
    max-height: 60px !important;
}

/* ==========================================================================
   GLOBAL MOBILE RESPONSIVENESS OVERRIDES
   ========================================================================== */
@media (max-width: 991px) {
    /* Force grids to single column on mobile, overriding inline styles */
    .service-details-grid,
    .form-grid-2,
    .visa-features-grid,
    .visa-compare-grid,
    .why-setup-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    
    /* Adjust padding for premium white sections on mobile */
    .premium-white-section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }
    
    /* Adjust inner hero font sizes for mobile */
    .inner-hero-title {
        font-size: 36px !important;
        line-height: 1.2 !important;
    }
    .inner-hero-desc {
        font-size: 16px !important;
    }
}

@media (max-width: 575px) {
    .service-details-grid,
    .form-grid-2,
    .visa-features-grid,
    .visa-compare-grid,
    .why-setup-grid {
        gap: 20px !important;
    }
    
    .inner-hero-title {
        font-size: 30px !important;
    }
    
    .step-content-box {
        padding: 20px !important;
    }
}

/* ==========================================================================
   HERO SERVICES STRIP MOBILE FIX (PREMIUM 2-COLUMN GRID)
   ========================================================================== */
@media (max-width: 768px) {
    .premium-hero .strip-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 15px !important;
        background: rgba(255, 255, 255, 0.04) !important;
    }
    .premium-hero .service-item {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        padding: 15px 10px !important;
        min-width: 0 !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(255, 255, 255, 0.06) !important;
        border-radius: 12px !important;
        gap: 8px !important;
        margin: 0 !important;
    }
    .premium-hero .service-icon {
        width: 28px !important;
        height: 28px !important;
        margin-bottom: 4px !important;
    }
    .premium-hero .service-label {
        font-size: 12px !important;
        white-space: normal !important;
        line-height: 1.3 !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }
}

@media (max-width: 480px) {
    .premium-hero .strip-container {
        gap: 8px !important;
        padding: 12px !important;
    }
    .premium-hero .service-item {
        padding: 12px 6px !important;
    }
    .premium-hero .service-label {
        font-size: 11.5px !important;
    }
    .premium-hero .service-icon {
        width: 24px !important;
        height: 24px !important;
    }
}

/* ==========================================================================
   GLOBAL OVERRIDE: HERO RATINGS BLOCK MOBILE (PERFECT SINGLE LINE)
   ========================================================================== */
@media (max-width: 768px) {
    body .hero-ratings-block {
        display: flex !important;
        flex-direction: row !important;
        gap: 8px !important;
        flex-wrap: nowrap !important;
        justify-content: center !important;
        align-items: center !important;
        margin-top: 15px !important;
        width: 100% !important;
        padding: 0 !important;
    }
    body .hero-ratings-block::-webkit-scrollbar {
        display: none !important;
    }
    body .hero-ratings-block .rating-box {
        display: flex !important;
        gap: 4px !important;
        flex: 0 1 auto !important;
        flex-wrap: nowrap !important;
        flex-direction: row !important;
        align-items: center !important;
    }
    body .hero-ratings-block .rating-box > span {
        font-size: 14px !important;
        gap: 4px !important;
        white-space: nowrap !important;
    }
    body .hero-ratings-block .rating-box > span svg {
        width: 16px !important;
        height: 16px !important;
    }
    body .hero-ratings-block .rating-box > span > span {
        font-size: 13px !important;
    }
    body .hero-ratings-block .rating-box > div {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }
    body .hero-ratings-block .rating-box > div > span {
        font-size: 9px !important;
        white-space: nowrap !important;
    }
    body .hero-ratings-block .rating-box > div > div {
        gap: 1px !important;
        display: flex !important;
        flex-direction: row !important;
    }
    body .hero-ratings-block .rating-box > div > div svg {
        width: 7px !important;
        height: 7px !important;
    }
    body .hero-ratings-block > div:not(.rating-box) {
        height: 24px !important;
        margin: 0 2px !important;
        width: 1px !important;
    }
}

/* ==========================================================================
   MOBILE ONLY - REVIEW WRAPPER FIX (USER PROVIDED STRUCTURE)
   ========================================================================== */
@media (max-width: 768px) {
    .review-wrapper {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 16px !important;
        width: 100% !important;
        padding: 0 5px !important;
    }

    .review-item {
        flex: 1 !important;
        min-width: 0 !important;
        text-align: center !important;
    }

    .review-item img,
    .review-item svg:not(.star-icon) {
        max-width: 100% !important;
        height: auto !important;
    }

    .review-item p,
    .review-item span {
        white-space: nowrap !important;
    }
    
    .review-text-top,
    .review-text-bottom {
        font-size: 10px !important;
    }
    .trustpilot-name {
        font-size: 16px !important;
    }
    .rating-number {
        font-size: 16px !important;
    }
    .trustpilot-reviews {
        font-size: 9px !important;
    }
    .review-divider {
        height: 20px !important;
        margin: 0 !important;
    }
}

@media (max-width: 480px) {
    .review-wrapper {
        gap: 8px !important;
    }

    .review-item {
        transform: scale(0.95) !important;
    }
}
