:root {
    --primary: #0A2540;
    --primary-light: #1a3a5c;
    --primary-dark: #061525;
    --accent: #2563eb;
    --accent-hover: #1d4ed8;
    --accent-light: #3b82f6;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --white: #ffffff;
    --body-bg: #ffffff;
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --border-color: #e2e8f0;
    --shadow-sm: 0 1px 2px rgba(10,37,64,0.05);
    --shadow: 0 4px 20px rgba(10,37,64,0.08);
    --shadow-lg: 0 10px 40px rgba(10,37,64,0.12);
    --shadow-xl: 0 20px 60px rgba(10,37,64,0.15);
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Montserrat', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; font-size: 90%; }

body {
    font-family: var(--font-secondary);
    color: var(--text-primary);
    background: var(--body-bg);
    overflow-x: hidden;
    line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
}

a { text-decoration: none; color: var(--accent); transition: var(--transition); }
a:hover { color: var(--accent-hover); }
img { max-width: 100%; height: auto; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding { padding: 100px 0; }


@media (max-width: 768px) { .section-padding { padding: 60px 0; } }
@media (max-width: 768px) { .stats-section { padding: 40px 0; } }

.section-label {
    display: inline-block;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 12px;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .section-title { font-size: 1.8rem; }
}

.section-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
}

.bg-light {
    background: var(--gray-50) !important;  /* #f8fafc */
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

#preloader.hidden { opacity: 0; visibility: hidden; }

.loader { text-align: center; }

.loader-icon {
    font-size: 3rem;
    color: var(--accent);
    animation: spin 1.5s linear infinite;
}

.loader-text {
    display: block;
    margin-top: 16px;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ===== NAVBAR (Premium Floating Glass) ===== */

.navbar {
    padding-top: 16px;
    background: transparent !important;
    transition: padding 0.3s ease;
    z-index: 1000;
}

.navbar.scrolled {
    padding-top: 8px;
}

.navbar-glass {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    height: 76px;
    padding: 0 24px;
    background: rgba(10,20,40,0.75);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow:
        0 8px 30px rgba(0,0,0,0.25),
        inset 0 1px 0 rgba(255,255,255,0.08);
    transition: all 0.3s ease;
    gap: 6px;
}



.navbar-glass::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 10%;
    width: 80%;
    height: 24px;
    background: radial-gradient(ellipse at center, rgba(37,99,235,0.15) 0%, transparent 70%);
    filter: blur(8px);
    pointer-events: none;
    z-index: -1;
}

.navbar.scrolled .navbar-glass {
    height: 68px;
    box-shadow:
        0 12px 40px rgba(0,0,0,0.35),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

/* ===== Brand ===== */

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.brand-icon {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-name {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.brand-suffix {
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--accent-light);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.navbar-logo {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: opacity 0.3s ease;
}

.navbar.scrolled .navbar-logo {
    filter: none;
}

.footer-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* ===== Desktop (lg+) ===== */

@media (min-width: 992px) {
    .navbar {
        padding-top: 20px;
    }

    .navbar-glass {
        width: fit-content;
        min-width: 1350px;
        height: 78px;
        padding: 0 20px;
        border-radius: 999px;
        background: rgba(10,20,40,0.75);
        border: 1px solid rgba(255,255,255,0.12);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        box-shadow:
            0 8px 30px rgba(0,0,0,0.25),
            inset 0 1px 0 rgba(255,255,255,0.08);
        justify-content: flex-start;
        margin: 0 auto;
        gap: 4px;
    }

    .navbar.scrolled .navbar-glass {
        height: 68px;
        box-shadow:
            0 12px 40px rgba(0,0,0,0.35),
            inset 0 1px 0 rgba(255,255,255,0.1);
    }

    .navbar-collapse {
        display: flex !important;
        flex-direction: row;
        align-items: center;
        flex: none;
        gap: 8px;
        margin-left: auto;
    }

    .navbar-nav {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 2px;
        margin: 0;
    }

    .navbar-nav .nav-link {
        font-family: var(--font-primary);
        font-size: 13px;
        font-weight: 500;
        color: rgba(255,255,255,0.75) !important;
        padding: 6px 12px !important;
        border-radius: 100px;
        transition: all 0.3s ease;
        white-space: nowrap;
    }

    .navbar-nav .nav-link:hover {
        color: var(--white) !important;
        background: rgba(255,255,255,0.08);
        transform: translateY(-2px);
    }

    .navbar-nav .nav-link.active {
        color: var(--white) !important;
        background: linear-gradient(135deg, #2563eb, #3b82f6);
        box-shadow: 0 2px 12px rgba(37,99,235,0.35);
        transform: none;
    }

    .navbar-nav .nav-link.active:hover {
        transform: none;
        background: linear-gradient(135deg, #3b82f6, #2563eb);
    }

    /* Dropdown hover */
    .navbar-nav .dropdown:hover > .dropdown-menu {
        display: block;
        opacity: 1;
        visibility: visible;
        transform: translateY(4px);
    }

    .navbar-nav .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: all 0.2s ease;
        background: rgba(10,37,64,0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 16px;
        box-shadow: 0 8px 32px rgba(0,0,0,0.3);
        padding: 6px;
        margin-top: 8px;
    }

    .navbar-nav .dropdown-item {
        font-family: var(--font-primary);
        font-size: 13px;
        font-weight: 500;
        color: rgba(255,255,255,0.8);
        padding: 10px 18px;
        border-radius: 10px;
        transition: all 0.2s ease;
    }

    .navbar-nav .dropdown-item:hover {
        background: rgba(255,255,255,0.08);
        color: var(--white);
        transform: translateX(4px);
    }

    .navbar-nav .dropdown-toggle::after {
        color: rgba(255,255,255,0.6);
        vertical-align: middle;
    }

    .nav-aux {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-shrink: 0;
    }
}

@media (max-width: 1399.98px) {
    .navbar-glass {
        min-width: auto;
        width: calc(100vw - 48px);
    }
}

/* ===== Toggler (Hamburger) ===== */

.navbar-toggler {
    border: none !important;
    background: transparent;
    padding: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1050;
}

.navbar-toggler:focus {
    box-shadow: none !important;
    outline: none;
}

.hamburger-lines {
    width: 22px;
    height: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.hamburger-lines span {
    display: block;
    width: 100%;
    height: 2px;
    background: rgba(255,255,255,0.8);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.navbar-toggler[aria-expanded="true"] .hamburger-lines span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .hamburger-lines span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.navbar-toggler[aria-expanded="true"] .hamburger-lines span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===== Nav Actions (Lang + Mode + CTA) ===== */

.lang-switcher {
    position: relative;
}

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    text-decoration: none !important;
}

.lang-toggle:hover {
    color: var(--white);
    background: rgba(255,255,255,0.06);
}

.lang-toggle i {
    font-size: 14px;
}

.lang-toggle::after,
.lang-toggle.dropdown-toggle::after {
    display: none !important;
}

.lang-switcher .dropdown-menu {
    min-width: 120px;
    background: rgba(10,37,64,0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    padding: 4px;
    margin-top: 6px;
}

.lang-switcher .dropdown-item {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    padding: 8px 14px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.lang-switcher .dropdown-item:hover,
.lang-switcher .dropdown-item.active {
    background: rgba(255,255,255,0.08);
    color: var(--white);
}

/* CTA Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: #0A2540;
    background: var(--white);
    padding: 10px 24px;
    border-radius: 100px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    white-space: nowrap;
}

.cta-btn:hover {
    color: #0A2540;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

.cta-btn i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.cta-btn:hover i {
    transform: translateX(4px);
}

.cta-btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    background: transparent;
    padding: 10px 24px;
    border-radius: 100px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1.5px solid rgba(255,255,255,0.3);
    white-space: nowrap;
}

.cta-btn-outline:hover {
    color: var(--white);
    border-color: var(--white);
    background: rgba(255,255,255,0.08);
    transform: translateY(-2px);
}

/* ===== Mobile (< 992px) ===== */

@media (max-width: 991.98px) {
    .navbar {
        padding-top: 12px;
    }

    .navbar-glass {
        height: auto;
        min-height: 68px;
        padding: 12px 16px;
        border-radius: 20px;
        flex-wrap: wrap;
    }

    .navbar-collapse {
        width: 100%;
        padding: 16px 8px 8px;
        margin-top: 12px;
        border-top: 1px solid rgba(255,255,255,0.06);
    }

    .navbar-nav {
        width: 100%;
    }

    .navbar-nav .nav-link {
        font-family: var(--font-primary);
        font-size: 14px;
        font-weight: 500;
        color: rgba(255,255,255,0.8) !important;
        padding: 14px 16px !important;
        border-radius: 12px;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .navbar-nav .nav-link:hover {
        background: rgba(255,255,255,0.05);
        color: var(--white) !important;
    }

    .navbar-nav .nav-link.active {
        color: var(--white) !important;
        background: linear-gradient(135deg, var(--accent), var(--accent-hover));
        box-shadow: 0 2px 12px rgba(37,99,235,0.3);
    }

    .navbar-nav .dropdown-menu {
        background: rgba(255,255,255,0.04);
        border: none;
        border-radius: 12px;
        margin: 4px 0 8px;
        padding: 4px;
        box-shadow: none;
    }

    .navbar-nav .dropdown-item {
        font-family: var(--font-primary);
        font-size: 13px;
        font-weight: 500;
        color: rgba(255,255,255,0.7);
        padding: 10px 16px;
        border-radius: 10px;
        transition: all 0.2s ease;
    }

    .navbar-nav .dropdown-item:hover {
        background: rgba(255,255,255,0.06);
        color: var(--white);
    }

    .navbar-nav .dropdown-toggle::after {
        margin-left: auto;
        border-top-color: rgba(255,255,255,0.6);
    }

    .nav-aux {
        display: flex;
        align-items: center;
        gap: 8px;
        padding-top: 12px;
        border-top: 1px solid rgba(255,255,255,0.06);
        margin-top: 4px;
    }

    .nav-aux .cta-btn {
        flex: 1;
        justify-content: center;
    }

    .lang-switcher .dropdown-menu {
        background: rgba(10,37,64,0.98);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 14px;
    }
}

.service-req-btn {
    padding: 7px 16px !important;
    font-size: 13px !important;
}

@media (max-width: 991px) {
    .service-req-btn {
        padding: 6px 14px !important;
        font-size: 12px !important;
    }
    .service-req-btn i {
        font-size: 1rem;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--primary);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(37,99,235,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(37,99,235,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(37,99,235,0.08) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(10,37,64,0.8) 100%);
}

.hero-content { position: relative; z-index: 2; }

.min-vh-85 { min-height: 85vh; }

.hero-badge {
    display: inline-block;
    padding: 5px 16px;
    background: rgba(37,99,235,0.15);
    border: 1px solid rgba(37,99,235,0.3);
    color: var(--accent-light);
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .hero-title { font-size: 1.8rem; }
}

.hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.hero-btn {
    padding: 12px 28px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    background: var(--accent);
    border: none;
    color: var(--white);
    transition: var(--transition);
}

.hero-btn:hover {
    background: var(--accent-hover);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37,99,235,0.4);
}

.hero-btn-outline {
    padding: 12px 28px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    background: transparent;
    transition: var(--transition);
}

.hero-btn-outline:hover {
    border-color: var(--white);
    color: var(--white);
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 420px;
}

.hero-illustration {
    width: 170px;
    height: 170px;
    background: rgba(37,99,235,0.1);
    border: 2px solid rgba(37,99,235,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--accent-light);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

.floating-card {
    position: absolute;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 500;
    animation: float 4s ease-in-out infinite;
}

.floating-card i { font-size: 1.3rem; color: var(--accent-light); }

.card-1 { top: 10%; right: 0; animation-delay: 0s; }
.card-2 { bottom: 20%; left: 0; animation-delay: 1.5s; }
.card-3 { bottom: 5%; right: 10%; animation-delay: 3s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-shape {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
    z-index: 2;
}

.hero-shape svg { width: 100%; height: auto; }

/* About Summary */
.about-image-wrapper {
    position: relative;
}

.about-image-placeholder {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.about-image-placeholder .about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent);
    color: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .years {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.about-features { display: flex; flex-direction: column; gap: 20px; }

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about-feature .feature-icon i {
    font-size: 1.4rem;
    color: var(--accent);
}

.about-feature h6 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.about-feature p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Service Cards */
.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px 36px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(10,37,64,0.08), 0 2px 8px rgba(10,37,64,0.04);
    transition: var(--transition);
    border: 1px solid #e5e7eb;
    position: relative;
    overflow: hidden;
    opacity: 1 !important;
    display: block;
    text-decoration: none;
    color: inherit;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(10,37,64,0.12);
}



.service-icon {
    width: 72px;
    height: 72px;
    background: #eff6ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--accent);
    color: var(--white);
    transform: scale(1.1);
}

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.service-desc {
    color: #6b7280;
    font-size: 0.875rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-link {
    font-family: var(--font-primary);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.service-link i { transition: var(--transition); }

.service-link:hover { color: var(--accent-hover); }
.service-link:hover i { transform: translateX(4px); }

/* Stats Section */
.stats-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
    padding: 70px 0;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(37,99,235,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(37,99,235,0.08) 0%, transparent 50%);
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 20px;
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--accent-light);
    margin-bottom: 16px;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.stat-label {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-light);
}

.stat-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

/* Testimonials */
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}



.quote-icon {
    font-size: 2rem;
    color: var(--accent);
    opacity: 0.2;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--text-secondary);
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-rating {
    margin-bottom: 16px;
}

.testimonial-rating i {
    color: #f59e0b;
    font-size: 0.9rem;
    margin-right: 2px;
}

/* Marquee Testimonials */
.marquee-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.marquee-gradient-left,
.marquee-gradient-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}

.marquee-gradient-left {
    left: 0;
    background: linear-gradient(to right, var(--gray-50), transparent);
}

.marquee-gradient-right {
    right: 0;
    background: linear-gradient(to left, var(--gray-50), transparent);
}





.marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
    padding: 12px 0;
}

.marquee-track.reverse {
    animation-direction: reverse;
}

.marquee-track.paused {
    animation-play-state: paused;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes marquee-scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.review-card {
    width: 340px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    background: var(--white);
    padding: 28px;
    transition: all 0.25s ease;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(10,37,64,0.08);
}

.review-card:hover {
    background: var(--white);
    box-shadow: 0 8px 30px rgba(10,37,64,0.12);
    border-color: var(--accent);
    transform: translateY(-2px);
}





.review-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #eff6ff;
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    flex-shrink: 0;
}

.review-info {
    display: flex;
    flex-direction: column;
}

.review-name {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.3;
}

.review-company {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 0;
}

.review-body {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 10px 0;
}

@media (max-width: 576px) {
    .review-card { width: 280px; padding: 16px; }
    .marquee-track { gap: 16px; }
    .marquee-gradient-left,
    .marquee-gradient-right { width: 60px; }
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.author-avatar img,
.avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-placeholder {
    background: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h6 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.author-info small {
    color: var(--text-secondary);
    font-size: 0.8rem;
}

/* Reference Logos */
/* ===== REFERENCES MARQUEE ===== */
.references-section {
    overflow: hidden;
}

.marquee-wrapper {
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    gap: 30px;
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-wrapper:hover .marquee-track {
    animation-play-state: paused;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.reference-logo {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    width: 260px;
    height: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reference-logo img {
    max-height: 160px;
    max-width: 95%;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--transition);
}

.reference-logo:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.reference-logo:hover img {
    filter: grayscale(0);
    opacity: 1;
}

.logo-placeholder {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Blog Cards */
.blog-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}



.blog-image {
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img { transform: scale(1.05); }

.blog-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: rgba(255,255,255,0.15);
}

.blog-body {
    padding: 24px;
}

.blog-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.blog-meta i { margin-right: 4px; }

.blog-title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-title a { color: var(--text-primary); }
.blog-title a:hover { color: var(--accent); }

.blog-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.blog-link {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-link i { transition: var(--transition); }
.blog-link:hover i { transform: translateX(4px); }

/* CTA Section */
.cta-section {
    background: var(--primary);
    position: relative;
    overflow: hidden;
    padding: 80px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(37,99,235,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(37,99,235,0.1) 0%, transparent 50%);
}

.cta-wrapper {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.cta-desc {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto 24px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-actions .btn-light {
    padding: 12px 28px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.cta-actions .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.cta-actions .btn-outline-light {
    padding: 11px 28px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.cta-actions .btn-outline-light:hover {
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--primary-dark);
    color: rgba(255,255,255,0.7);
}

.footer-top { padding: 80px 0 40px; }

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-brand i {
    font-size: 1.8rem;
    color: var(--accent);
}

.text-accent { color: var(--accent); }

.footer-desc {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-3px);
}

.widget-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-links a:hover {
    color: var(--accent-light);
    padding-left: 4px;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-info a {
    color: rgba(255,255,255,0.7);
}

.contact-info a:hover {
    color: var(--accent-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 24px 0;
}

.copyright, .credit {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
    margin: 0;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--white);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow);
    pointer-events: none;
    opacity: 0;
    transition: var(--transition);
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
}

/* Live Support Widget */
.live-support-widget {
    position: fixed;
    bottom: 100px;
    right: 24px;
    z-index: 999;
}

.support-toggle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--accent) !important;
    color: white !important;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.support-toggle:hover {
    transform: scale(1.1);
    background: var(--accent-hover) !important;
}

.support-panel {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 340px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    display: none;
}

.support-panel.active { display: block; }



.support-header {
    background: var(--primary);
    color: white;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.support-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 14px;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.support-header .btn-close {
    filter: brightness(0) invert(1);
}

.support-body {
    height: 350px;
    display: flex;
    flex-direction: column;
}

.support-messages {
    flex: 1;
    padding: 16px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message {
    max-width: 80%;
    display: flex;
    flex-direction: column;
}

.message.received { align-self: flex-start; }
.message.sent { align-self: flex-end; }

.msg-content {
    padding: 10px 16px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
}

.message.received .msg-content {
    background: var(--gray-100);
    color: var(--text-primary);
    border-bottom-left-radius: 4px;
}

.message.sent .msg-content {
    background: var(--accent);
    color: white;
    border-bottom-right-radius: 4px;
}

.msg-time {
    font-size: 0.7rem;
    color: var(--text-secondary);
    margin-top: 4px;
    padding: 0 4px;
}

.support-input {
    display: flex;
    padding: 12px;
    border-top: 1px solid var(--border-color);
    gap: 8px;
}

.support-input input {
    flex: 1;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 8px 16px;
    font-size: 0.9rem;
}

.support-input input:focus {
    outline: none;
    border-color: var(--accent);
}

.btn-send {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-send:hover {
    background: var(--accent-hover);
}

/* Page Header */
.page-header {
    background: var(--primary);
    padding: 220px 0 166px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header h1 {
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 800;
}

.page-header-sm { padding: 120px 0 60px; }
.page-header-sm h1 { font-size: 1.8rem; }

.breadcrumb {
    justify-content: center;
    margin-top: 12px;
    background: transparent;
}

.breadcrumb-item,
.breadcrumb-item a {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
}

.breadcrumb-item.active { color: var(--accent-light); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* About Page */
.about-page-image {
    overflow: hidden;
    border-radius: var(--radius-lg);
    height: 500px;
}

.about-page-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-page-image:hover img {
    transform: scale(1.06);
}
.about-text { font-size: 1.05rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 16px; }
.about-text:last-child { margin-bottom: 0; }

.vm-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.vm-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}



.vm-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(37,99,235,0.05));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.vm-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.vm-card p { color: var(--text-secondary); line-height: 1.8; }

/* ===== Collapsible Vision/Mission ===== */
.vm-card--collapsible {
    cursor: pointer;
    position: relative;
    padding-bottom: 48px;
    user-select: none;
}

.vm-card--collapsible .vm-summary {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0;
}

.vm-card--collapsible .vm-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

.vm-card--collapsible .vm-details p {
    margin-top: 16px;
}

.vm-card--collapsible.active .vm-details {
    max-height: 2000px;
    opacity: 1;
}

.vm-card--collapsible .vm-toggle {
    position: absolute;
    bottom: 16px;
    right: 24px;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent);
    color: var(--white);
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.vm-card--collapsible.active .vm-toggle {
    transform: rotate(180deg);
}

.vm-card--collapsible .vm-toggle i {
    transition: transform 0.3s ease;
}

.value-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}



.value-card i {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 16px;
}

.value-card h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* Service Detail */
.service-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(37,99,235,0.05));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--accent);
    flex-shrink: 0;
}

.service-content { line-height: 1.9; color: var(--text-secondary); }

.service-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    margin-bottom: 24px;
}



.sidebar-widget h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-services { list-style: none; padding: 0; margin: 0; }

.sidebar-services li { margin-bottom: 8px; }

.sidebar-services a {
    display: block;
    padding: 10px 14px;
    background: var(--gray-50);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.sidebar-services a:hover {
    background: var(--accent);
    color: var(--white);
}

.sidebar-contact { text-align: center; }
.sidebar-contact p { color: var(--text-secondary); font-size: 0.9rem; margin-bottom: 20px; }

/* Solutions Page */
.solution-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}



.solution-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.solution-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(37,99,235,0.05));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--accent);
    flex-shrink: 0;
}

.solution-card p { color: var(--text-secondary); line-height: 1.8; }

.solution-features {
    list-style: none;
    padding: 0;
    margin: 16px 0 0;
}

.solution-features li {
    padding: 6px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.solution-features li i { color: var(--accent); }

/* SLA Cards */
.sla-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: var(--transition);
    position: relative;
    height: 100%;
}

.sla-card.featured {
    border-color: var(--accent);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}





.sla-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 4px 20px;
    border-radius: 50px;
    font-family: var(--font-primary);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sla-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.sla-price {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 24px;
}

.sla-price small {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.sla-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.sla-features li {
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.sla-features li i { color: #22c55e; }

/* Contact Page */
.contact-form .form-group { margin-bottom: 4px; }

.contact-form label {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 13px;
    color: var(--text-primary);
    margin-bottom: 6px;
    display: block;
}

.contact-form .form-control {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--body-bg);
    color: var(--text-primary);
}

.contact-form .form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, rgba(37,99,235,0.1), rgba(37,99,235,0.05));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-item h6 {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.contact-item p,
.contact-item a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.contact-item a:hover { color: var(--accent); }

/* Dotted Map */
.dotted-map-wrapper {
    position: relative;
    width: 100%;
    height: 350px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}



.dotted-map-svg {
    width: 100%;
    height: 100%;
    display: block;
}

.map-overlay-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(8px);
    padding: 14px 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}



.map-marker-info {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-primary);
    font-family: var(--font-primary);
}

.marker-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent);
    flex-shrink: 0;
    opacity: 0.6;
}

.marker-dot.main {
    width: 14px;
    height: 14px;
    background: var(--accent);
    opacity: 1;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.2);
}

@media (max-width: 576px) {
    .dotted-map-wrapper { height: 280px; }
    .map-overlay-info { bottom: 12px; left: 12px; padding: 10px 14px; gap: 6px; }
    .map-marker-info { font-size: 0.7rem; }
    .marker-dot { width: 8px; height: 8px; }
    .marker-dot.main { width: 12px; height: 12px; }
}

/* Service Features List */
.service-features-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
    text-align: left;
}

.service-features-list li {
    padding: 4px 0;
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features-list li i { color: #22c55e; }

/* Blog Detail */
.blog-article {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.article-image {
    height: 400px;
    overflow: hidden;
}

.article-image img { width: 100%; height: 100%; object-fit: cover; }

.article-meta {
    padding: 24px 32px 0;
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.article-meta i { margin-right: 4px; }

.article-title {
    padding: 16px 32px 0;
    font-size: 1.8rem;
}

.article-content {
    padding: 24px 32px 32px;
    line-height: 1.9;
    color: var(--text-secondary);
}

.article-content h2 { font-size: 1.5rem; margin: 28px 0 12px; color: var(--text-primary); }
.article-content h3 { font-size: 1.2rem; margin: 24px 0 10px; color: var(--text-primary); }
.article-content p { margin-bottom: 16px; }
.article-content ul, .article-content ol { margin-bottom: 16px; padding-left: 24px; }
.article-content img { border-radius: var(--radius); margin: 16px 0; }

/* FAQ Accordion */
.faq-filters .btn {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 20px;
    border-radius: 50px;
    margin: 4px;
}

.accordion-item {
    border: 1px solid var(--border-color);
    border-radius: var(--radius) !important;
    margin-bottom: 12px;
    overflow: hidden;
}



.accordion-button {
    font-family: var(--font-primary);
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
    padding: 20px 24px;
    background: transparent;
}

.accordion-button:not(.collapsed) {
    background: transparent;
    color: var(--accent);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.accordion-body {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Reference Card */
.reference-card {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    height: 100%;
}



.ref-logo-placeholder {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gray-300); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gray-400); }

/* Responsive */
@media (max-width: 991px) {
    .hero-visual { display: none; }
    .experience-badge { right: 0; }

    .page-header { padding: 180px 0 126px; }
    .page-header h1 { font-size: 2rem; }

    .about-image-placeholder { height: 350px; }
    .about-features { gap: 14px; }

    .blog-card { border-radius: var(--radius); }

    .article-image { height: 280px; }
    .article-meta { padding: 16px 20px 0; flex-wrap: wrap; gap: 12px; }
    .article-title { padding: 12px 20px 0; font-size: 1.4rem; }
    .article-content { padding: 16px 20px 24px; }
}

@media (max-width: 576px) {
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .hero-badge { font-size: 10px; padding: 4px 14px; }

    .page-header { padding: 110px 0 50px; }
    .page-header h1 { font-size: 1.6rem; }

    .section-title { font-size: 1.6rem; }
    .section-desc { font-size: 0.95rem; }

    .service-card { padding: 28px 20px 24px; }
    .service-icon { width: 60px; height: 60px; font-size: 1.5rem; }
    .service-title { font-size: 1.05rem; }

    .stat-number { font-size: 2.2rem; }
    .stat-label { font-size: 1.2rem; }

    .blog-image { height: 180px; }
    .blog-body { padding: 18px; }

    .cta-title { font-size: 1.4rem; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; }

    .sla-card.featured { transform: none; }
    .sla-card { padding: 28px 20px; }

    .about-image-placeholder { height: 280px; font-size: 4rem; }
    .experience-badge { position: relative; bottom: 0; right: 0; margin-top: -40px; }

    .testimonial-card { padding: 24px; }
    .footer-top { padding: 50px 0 20px; }

    .contact-form .btn-lg { width: 100%; }
    .support-panel { width: 300px; right: -10px; }
}







































/* ===== HERO PARTICLES ===== */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}
.hero-particles canvas {
    pointer-events: auto;
}

/* ===== TYPEWRITER ===== */
#hero-typewriter {
    visibility: hidden;
}
.typewriter-cursor {
    display: inline-block;
    color: var(--accent-light);
    font-weight: 300;
    margin-left: 2px;
}

/* ===== ENHANCED PRELOADER ===== */
.loader-anim-container {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: loaderSpin 1.5s linear infinite;
}
.loader-ring-1 {
    width: 100px;
    height: 100px;
    border-top-color: var(--accent);
    border-right-color: var(--accent-light);
}
.loader-ring-2 {
    width: 76px;
    height: 76px;
    border-bottom-color: var(--accent-light);
    border-left-color: var(--accent);
    animation-direction: reverse;
    animation-duration: 1.2s;
}
.loader-ring-3 {
    width: 52px;
    height: 52px;
    border-top-color: white;
    border-right-color: rgba(255,255,255,0.3);
    animation-duration: 1s;
}
.loader-icon {
    font-size: 1.5rem;
    color: var(--accent-light);
    position: relative;
    z-index: 2;
}
@keyframes loaderSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.loader-progress-bar {
    width: 160px;
    height: 3px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin: 16px auto 0;
    overflow: hidden;
}
.loader-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), #6366f1);
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px rgba(37,99,235,0.4);
}

/* ===== CUSTOM CURSOR ===== */
.custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 99998;
    transition: none;
}
.cursor-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: width 0.15s, height 0.15s;
}
.cursor-ring {
    width: 36px;
    height: 36px;
    border: 2px solid rgba(37,99,235,0.4);
    border-radius: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: all 0.2s ease;
}
.cursor-hover .cursor-dot {
    width: 12px;
    height: 12px;
    background: var(--accent-light);
}
.cursor-hover .cursor-ring {
    width: 50px;
    height: 50px;
    border-color: rgba(37,99,235,0.6);
    background: rgba(37,99,235,0.06);
}
@media (pointer: coarse) {
    .custom-cursor { display: none !important; }
}

/* ===== STATS CIRCLE SVG ===== */
.stat-circle-wrap {
    position: relative;
    width: 140px;
    height: 140px;
    margin: 0 auto 12px;
}
.stat-circle {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}
.stat-circle-bg {
    fill: none;
    stroke: rgba(255,255,255,0.08);
    stroke-width: 6;
}
.stat-circle-fill {
    fill: none;
    stroke: var(--accent-light);
    stroke-width: 6;
    stroke-linecap: round;
    transition: stroke-dashoffset 1.5s ease;
}
.stat-circle-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}
.stat-circle-content .stat-icon {
    margin-bottom: 4px;
}

/* ===== FOOTER ACCORDION ===== */
@media (max-width: 767.98px) {
    .footer-accordion-trigger {
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 0;
        margin: 0;
        user-select: none;
    }
    .footer-accordion-trigger i {
        transition: transform 0.3s ease;
        font-size: 0.9rem;
        color: rgba(255,255,255,0.4);
    }
    .footer-accordion-trigger i.rotated {
        transform: rotate(180deg);
    }
    .footer-accordion-body {
        display: none;
        padding-bottom: 8px;
    }
}
@media (min-width: 768px) {
    .footer-accordion-body {
        display: block !important;
    }
}

/* ===== UPDATE EXISTING STATS ICON ===== */
.stat-item .stat-circle-content .stat-icon {
    font-size: 1.4rem;
    color: var(--accent-light);
    margin-bottom: 4px;
}
.stat-item .stat-circle-content .stat-number {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}
.stat-item .stat-circle-content .stat-label {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-light);
}

/* ===== About Stats ===== */
.about-stats {
    background: var(--primary);
    padding: 70px 0;
}

.about-stats .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.about-stats .stat-item {
    padding: 24px;
}

.about-stats .stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
}

.about-stats .stat-label {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
}

@media (max-width: 768px) {
    .about-stats .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .about-stats .stat-number { font-size: 2.2rem; }
}

/* ===== About Reasons ===== */
.about-reasons .reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.about-reasons .reason-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 22px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.about-reasons .reason-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
}

.about-reasons .reason-item i {
    font-size: 1.4rem;
    color: var(--accent);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .about-reasons .reasons-grid { grid-template-columns: 1fr; }
}

/* ===== About Partners ===== */
.about-partners .partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 24px;
}

.about-partners .partner-item {
    padding: 16px 32px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-secondary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    letter-spacing: 1px;
}

.about-partners .partner-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    border-color: var(--accent);
    color: var(--accent);
}

/* ===== Analysis / Free Quote Page ===== */
.analysis-form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    padding: 40px;
    height: 100%;
}

.analysis-form-header {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--gray-100);
}

.analysis-form-header .section-label {
    margin-bottom: 8px;
}

.analysis-form-header .section-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.analysis-form-header .section-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.analysis-benefits-card {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.analysis-benefits-card::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(37,99,235,0.08);
}

.analysis-benefits-card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(37,99,235,0.06);
}

.analysis-benefits-card .feature-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(59,130,246,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.analysis-benefits-card .feature-icon-circle i {
    font-size: 1.3rem;
    color: var(--accent-light);
}

/* Pill checkboxes */
.pill-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pill-checkbox {
    display: inline-flex;
    cursor: pointer;
}

.pill-checkbox input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.pill-checkbox span {
    display: inline-block;
    padding: 8px 18px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-primary);
    color: var(--text-secondary);
    background: var(--gray-50);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    transition: all 0.2s ease;
    user-select: none;
}

.pill-checkbox:hover span {
    border-color: var(--accent-light);
    color: var(--accent);
    background: rgba(37,99,235,0.04);
}

.pill-checkbox input:checked + span {
    background: var(--accent);
    color: var(--white);
    border-color: var(--accent);
    box-shadow: 0 2px 8px rgba(37,99,235,0.25);
}

/* Form select styling */
.contact-form .form-select {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--body-bg);
    color: var(--text-primary);
    cursor: pointer;
}

.contact-form .form-select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

/* Submit button hover enhancement */
.analysis-form-card .btn-primary.btn-lg {
    padding: 14px 24px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.analysis-form-card .btn-primary.btn-lg:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37,99,235,0.3);
}

@media (max-width: 768px) {
    .analysis-form-card,
    .analysis-benefits-card {
        padding: 24px;
    }

    .analysis-form-header .section-title {
        font-size: 1.3rem;
    }
}

/* Service Request Modal - Dark Theme */
.service-modal .modal-backdrop {
    background: var(--primary);
}
.service-modal .modal-backdrop.show {
    opacity: 0.9;
}
.service-modal .modal-content {
    background: var(--primary);
    border: none;
    border-radius: var(--radius-lg);
    color: var(--white);
    position: relative;
    overflow: hidden;
}
.service-modal .modal-content::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(37,99,235,0.08);
    pointer-events: none;
}
.service-modal .modal-content::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(37,99,235,0.06);
    pointer-events: none;
}
.service-modal .modal-header {
    border-bottom-color: rgba(255,255,255,0.1);
    padding: 1.5rem 1.5rem 0.75rem;
    position: relative;
    z-index: 1;
}
.service-modal .modal-title {
    color: var(--white);
    font-weight: 700;
}
.service-modal .modal-body {
    position: relative;
    z-index: 1;
}
.service-modal .modal-body .text-muted {
    color: rgba(255,255,255,0.65) !important;
}
.service-modal .modal-body .form-label {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
}
.service-modal .modal-body .form-control,
.service-modal .modal-body .form-select {
    background: var(--primary-dark);
    border-color: var(--primary-light);
    color: var(--white);
    border-radius: var(--radius-sm);
}
.service-modal .modal-body .form-control:focus,
.service-modal .modal-body .form-select:focus {
    background: var(--primary-dark);
    border-color: var(--accent);
    color: var(--white);
    box-shadow: 0 0 0 0.2rem rgba(37,99,235,0.25);
}
.service-modal .modal-body .form-control::placeholder {
    color: rgba(255,255,255,0.35);
}
.service-modal .modal-body .form-select option {
    background: var(--primary-dark);
    color: var(--white);
}
.service-modal .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.7;
}
.service-modal .btn-close:hover {
    opacity: 1;
}
.service-modal .btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    border-radius: var(--radius-sm);
    padding: 12px 24px;
    font-weight: 600;
}
.service-modal .btn-primary:hover {
    background: var(--accent-hover);
    border-color: var(--accent-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 25px rgba(37,99,235,0.3);
}

/* ===== Skip Link (a11y) ===== */
.skip-link {
    position: absolute;
    top: -100%;
    left: 0;
    z-index: 10000;
    padding: 12px 24px;
    background: var(--accent);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    border-radius: 0 0 8px 0;
    transition: top 0.2s ease;
}
.skip-link:focus {
    top: 0;
    color: #fff;
}

/* Service Regions */
.region-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}
.region-tag {
    display: inline-block;
    padding: 6px 14px;
    background: var(--gray-100);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-secondary);
    transition: var(--transition);
}
.region-tag:hover {
    background: var(--accent);
    color: var(--white);
}
.service-regions h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

/* Analysis Benefits */
.analysis-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.analysis-benefits li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--text-secondary);
}
.analysis-benefits li .bi {
    color: #10b981;
    flex-shrink: 0;
}

/* Service CTA */
.service-cta h2 {
    color: var(--white);
}
.service-cta p {
    opacity: 0.85;
}
