/* ==========================================================================
   CODEFYN MASTER DESIGN SYSTEM & COMPLETE COMPONENT SUITE (style.css)
   Ultra-Modern • Light Mode • High Contrast • 100% Component Coverage
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS & CSS VARIABLES
   -------------------------------------------------------------------------- */
:root {
    /* Brand Accent Colors */
    --cf-primary: #4f46e5;
    --cf-primary-hover: #4338ca;
    --cf-primary-light: #6366f1;
    --cf-primary-soft: rgba(79, 70, 229, 0.08);
    --cf-primary-glow: rgba(79, 70, 229, 0.35);

    --cf-secondary: #7c3aed;
    --cf-secondary-hover: #6d28d9;
    --cf-secondary-soft: rgba(124, 58, 237, 0.08);

    --cf-accent: #06b6d4;
    --cf-accent-hover: #0891b2;
    --cf-accent-soft: rgba(6, 182, 212, 0.1);

    --cf-success: #10b981;
    --cf-success-soft: rgba(16, 185, 129, 0.1);
    --cf-warning: #f59e0b;
    --cf-warning-soft: rgba(245, 158, 11, 0.12);
    --cf-danger: #ef4444;
    --cf-danger-soft: rgba(239, 68, 68, 0.1);
    --cf-info: #0284c7;
    --cf-info-soft: rgba(2, 132, 199, 0.1);

    /* Surfaces & Backgrounds */
    --cf-bg: #f8fafc;
    --cf-surface: #ffffff;
    --cf-surface-secondary: #f1f5f9;
    --cf-surface-tertiary: #e2e8f0;
    --cf-dark-bg: #090d1a;
    --cf-dark-surface: #0f172a;
    --cf-dark-surface-secondary: #1e293b;

    /* Borders */
    --cf-border: #e2e8f0;
    --cf-border-light: #f1f5f9;
    --cf-border-hover: #cbd5e1;
    --cf-border-focus: #6366f1;

    /* Typography / High Contrast Text */
    --cf-text-main: #0f172a;
    --cf-text-body: #334155;
    --cf-text-muted: #64748b;
    --cf-text-subtle: #94a3b8;
    --cf-text-light: #f8fafc;

    /* Signature Gradients */
    --gradient-primary: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    --gradient-primary-hover: linear-gradient(135deg, #4338ca 0%, #6d28d9 100%);
    --gradient-glow: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #06b6d4 100%);
    --gradient-accent: linear-gradient(135deg, #06b6d4 0%, #3b82f6 100%);
    --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e1b4b 100%);
    --gradient-hero: radial-gradient(circle at 85% 15%, rgba(79, 70, 229, 0.07) 0%, transparent 45%),
                     radial-gradient(circle at 15% 85%, rgba(6, 182, 212, 0.07) 0%, transparent 45%),
                     #ffffff;

    /* Elevation Shadows */
    --shadow-xs: 0 1px 3px rgba(15, 23, 42, 0.04);
    --shadow-sm: 0 4px 14px -2px rgba(15, 23, 42, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 20px 45px -12px rgba(15, 23, 42, 0.12);
    --shadow-xl: 0 30px 65px -15px rgba(15, 23, 42, 0.16);
    --shadow-primary: 0 10px 25px -4px rgba(79, 70, 229, 0.38);
    --shadow-primary-lg: 0 16px 35px -6px rgba(79, 70, 229, 0.55);

    /* Radii */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: all 0.18s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

/* --------------------------------------------------------------------------
   2. GLOBAL RESETS & TYPOGRAPHY
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    background-color: var(--cf-bg);
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--cf-bg);
    color: var(--cf-text-body);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.modern-v7, body.bg-light {
    background-color: var(--cf-bg) !important;
    color: var(--cf-text-body) !important;
}

/* Fluid Headings */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 800;
    color: var(--cf-text-main);
    letter-spacing: -0.03em;
    line-height: 1.25;
}

h1, .h1 { font-size: clamp(2rem, 4.5vw, 3.25rem); }
h2, .h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3, .h3 { font-size: clamp(1.3rem, 2.5vw, 1.85rem); }
h4, .h4 { font-size: clamp(1.1rem, 2vw, 1.45rem); }
h5, .h5 { font-size: 1.1rem; }
h6, .h6 { font-size: 0.95rem; }

p {
    color: var(--cf-text-body);
    font-size: 1rem;
    line-height: 1.7;
}

a {
    color: var(--cf-primary);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--cf-primary-hover);
}

/* Utilities */
.fw-500 { font-weight: 500 !important; }
.fw-600 { font-weight: 600 !important; }
.fw-700 { font-weight: 700 !important; }
.fw-800 { font-weight: 800 !important; }
.fw-900 { font-weight: 900 !important; }

.text-dark { color: var(--cf-text-main) !important; }
.text-muted { color: var(--cf-text-muted) !important; }
.text-body { color: var(--cf-text-body) !important; }
.text-primary { color: var(--cf-primary) !important; }
.text-secondary { color: var(--cf-secondary) !important; }
.text-success { color: var(--cf-success) !important; }
.text-warning { color: var(--cf-warning) !important; }
.text-danger { color: var(--cf-danger) !important; }
.text-info { color: var(--cf-info) !important; }
.text-white { color: #ffffff !important; }

.text-gradient-primary, .hero-gradient, .title-glow {
    background: var(--gradient-glow) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.text-gradient-secondary {
    background: var(--gradient-accent) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.bg-primary-soft { background: var(--cf-primary-soft) !important; }
.bg-secondary-soft { background: var(--cf-secondary-soft) !important; }
.bg-success-soft { background: var(--cf-success-soft) !important; }
.bg-warning-soft { background: var(--cf-warning-soft) !important; }
.bg-danger-soft { background: var(--cf-danger-soft) !important; }
.bg-info-soft { background: var(--cf-info-soft) !important; }

.hover-lift {
    transition: var(--transition-smooth);
}
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg) !important;
}

.tracking-widest { letter-spacing: 0.15em !important; }
.scroll-mt { scroll-margin-top: 100px; }
.line-height-lg { line-height: 1.85 !important; }

/* --------------------------------------------------------------------------
   3. HEADER & MEGA NAVIGATION SYSTEM
   -------------------------------------------------------------------------- */
.topbar-v6 {
    background: #0f172a;
    color: #94a3b8;
    font-size: 0.8rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-v6 a {
    color: #cbd5e1;
}

.topbar-v6 a:hover {
    color: #ffffff;
}

.v6-navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 8px 10px;
    border-radius: 100px;
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 20px;
    z-index: 1050;
    max-width: 1300px;
    margin: 5px auto;
    width: 98%;
}

.v6-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    color: #12142e;
    text-decoration: none;
}

.v6-logo-img {
    width: 196px;
    height: 36px;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.v6-logo:hover .v6-logo-img {
    transform: scale(1.03);
}

.v6-desktop-links {
    display: flex;
    gap: 10px;
    align-items: center;
    position: static;
}

.v6-desktop-link {
    padding: 8px 18px;
    border-radius: 40px;
    font-weight: 600;
    color: #1e1e38 !important;
    text-decoration: none;
    transition: 0.2s;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.v6-desktop-link:hover {
    background: rgba(18, 20, 46, 0.05);
    color: var(--cf-primary) !important;
}

.v6-desktop-link.highlight {
    background: #12142e !important;
    color: white !important;
    box-shadow: 0 6px 12px -6px rgba(18, 20, 46, 0.4);
    font-weight: 700;
}

.v6-desktop-link.highlight:hover {
    background: #202344 !important;
    color: white !important;
}

/* Mega Menu Dropdowns - Perfectly Centered on Navbar */
.nav-item-mega {
    position: static;
}

.nav-item-mega:hover .v6-desktop-link i {
    transform: rotate(180deg);
}

.v6-mega-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    width: 95vw;
    max-width: 1300px;
    background: #ffffff !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    border-radius: 30px !important;
    box-shadow: 0 40px 80px -20px rgba(0, 0, 0, 0.15) !important;
    padding: 2.5rem !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1060;
    pointer-events: none;
}

.nav-item-mega:hover .v6-mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.mega-col {
    display: flex;
    flex-direction: column;
}

.mega-column-title {
    font-size: 0.85rem;
    font-weight: 800;
    color: #12142e;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
    display: block;
}

.mega-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1rem;
    border-radius: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.mega-item:hover {
    background: rgba(37, 99, 235, 0.05);
    transform: translateX(10px);
}

.mega-icon {
    width: 44px;
    height: 44px;
    background: rgba(37, 99, 235, 0.1);
    color: #12142e;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.mega-info h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b !important;
    margin-bottom: 0.25rem;
}

.mega-info p {
    font-size: 0.8rem;
    color: #64748b !important;
    line-height: 1.4;
    margin: 0;
}

.mega-promo-card {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: 24px;
    padding: 2.5rem;
    color: white !important;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.mega-footer-bar {
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.mega-footer-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.mega-footer-label {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #94a3b8;
}

.mega-tag {
    font-size: 0.8rem;
    font-weight: 600;
    color: #475569;
    background: #f1f5f9;
    padding: 4px 10px;
    border-radius: 20px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.mega-tag:hover {
    background: var(--cf-primary-soft);
    color: var(--cf-primary);
    transform: translateY(-1px);
}

.mega-footer-cta {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--cf-primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: var(--transition-fast);
}

.mega-footer-cta:hover {
    color: #3730a3;
    transform: translateX(3px);
}

/* Mobile Dropdown Menu */
.v6-dropdown-menu {
    position: relative;
    display: none;
}

.v6-drop-btn {
    background: #12142e;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 60px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: 0.2s;
    box-shadow: 0 6px 12px -6px rgba(18, 20, 46, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.v6-drop-btn:hover {
    background: #202344;
}

#v6-drop-toggle {
    display: none;
}

.v6-dropdown-content {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    background: rgba(18, 20, 46, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    min-width: 280px;
    border-radius: 32px;
    padding: 16px 10px;
    box-shadow: 0 28px 50px -16px #030318;
    border: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 1100;
    display: flex;
    flex-direction: column;
}

#v6-drop-toggle:checked ~ .v6-dropdown-content,
#v6-drop-toggle:checked + .v6-drop-btn + .v6-dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.v6-dropdown-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    border-radius: 28px;
    color: white !important;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s;
    font-size: 0.9rem;
}

.v6-dropdown-item i {
    width: 24px;
    font-size: 1.2rem;
    color: #a6b3ff;
}

.v6-dropdown-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 991px) {
    .v6-navbar {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        margin-top: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0 0 15px 15px !important;
        padding: 10px 15px !important;
        border-top: none !important;
        z-index: 10000 !important;
    }
    .v6-desktop-links {
        display: none !important;
    }
    .v6-dropdown-menu {
        display: block !important;
    }
    .v6-logo-img {
        width: 160px;
        height: 32px;
    }
}



/* --------------------------------------------------------------------------
   4. HERO SECTIONS & KEYFRAME PREVIEWS
   -------------------------------------------------------------------------- */
.hero-section-v6, .hero-v6, .hero-v7 {
    padding: clamp(28px, 5vw, 75px) 0 clamp(32px, 5vw, 65px);
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero) !important;
}

.badge-v6, .badge-v7 {
    background: var(--cf-primary-soft) !important;
    color: var(--cf-primary) !important;
    border: 1px solid rgba(79, 70, 229, 0.2) !important;
    padding: 7px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: clamp(0.72rem, 2.5vw, 0.84rem);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: var(--shadow-xs);
    max-width: 100%;
    line-height: 1.3;
}

.hero-title {
    font-size: clamp(1.75rem, 5.2vw, 3.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.035em;
    color: #0f172a !important;
    margin: 0;
}

.hero-subtitle {
    font-size: clamp(0.88rem, 2.2vw, 1.12rem);
    color: var(--cf-text-muted) !important;
    line-height: 1.65;
    max-width: 580px;
}

.avatar-trust {
    width: clamp(30px, 4.5vw, 38px);
    height: clamp(30px, 4.5vw, 38px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.65rem, 2vw, 0.78rem);
    font-weight: 800;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.hero-trust-text {
    font-size: clamp(0.72rem, 2.2vw, 0.84rem);
    line-height: 1.35;
}

.hero-showcase-card {
    background: #12142e;
    border-radius: clamp(24px, 5vw, 44px);
    padding: 0;
    box-shadow: 0 20px 50px -10px rgba(18, 20, 46, 0.18);
    position: relative;
    overflow: hidden;
    min-height: clamp(240px, 40vw, 460px);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
}

.hero-showcase-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.88;
}

.hero-showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 40%, rgba(18, 20, 46, 0.95) 100%);
    z-index: 1;
}

.hero-showcase-content {
    position: relative;
    z-index: 2;
    padding: clamp(16px, 3.5vw, 36px);
    text-align: center;
}

.hero-rating-val {
    font-size: clamp(1.4rem, 4vw, 2.4rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 2px;
}

.hero-rating-sub {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.65);
    font-size: clamp(0.7rem, 2vw, 0.82rem);
    margin-bottom: clamp(10px, 2vw, 18px);
}

.hero-secure-pill {
    padding: clamp(6px, 1.5vw, 10px) clamp(12px, 2.5vw, 20px);
    background: rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: inline-flex;
    align-items: center;
    gap: clamp(6px, 1.8vw, 12px);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.secure-icon {
    width: clamp(22px, 3.5vw, 30px);
    height: clamp(22px, 3.5vw, 30px);
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(0.65rem, 1.8vw, 0.85rem);
    flex-shrink: 0;
}

.secure-title {
    font-weight: 700;
    color: #10b981;
    font-size: clamp(0.68rem, 2vw, 0.82rem);
    line-height: 1.1;
}

.secure-desc {
    color: #fbbf24 !important;
    font-size: clamp(0.6rem, 1.8vw, 0.72rem);
    line-height: 1.1;
}

/* --------------------------------------------------------------------------
   5. COMPLETE BUTTONS SUITE
   -------------------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 700;
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 0.92rem;
    transition: var(--transition-base);
    text-decoration: none;
    line-height: 1.4;
    cursor: pointer;
}

.btn-primary, .btn-submit-modern {
    background: var(--gradient-primary) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover, .btn-submit-modern:hover {
    background: var(--gradient-primary-hover) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary-lg);
    color: #ffffff !important;
}

.btn-outline-primary {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 1.5px solid #cbd5e1 !important;
    box-shadow: var(--shadow-xs);
}

.btn-outline-primary:hover {
    background: #f8fafc !important;
    border-color: #94a3b8 !important;
    color: var(--cf-primary) !important;
    transform: translateY(-2px);
}

/* Codefyn V6 Dark Hero Buttons */
.btn-v6-primary {
    background: #12142e !important;
    color: #ffffff !important;
    padding: 14px 38px;
    border-radius: 60px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: none !important;
    box-shadow: 0 10px 20px -10px #12142e;
    text-decoration: none !important;
    cursor: pointer;
}

.btn-v6-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -10px #12142e;
    background: #202344 !important;
    color: #ffffff !important;
}

.btn-v6-outline {
    background: transparent !important;
    border: 2px solid #12142e !important;
    color: #12142e !important;
    padding: 12px 36px;
    border-radius: 60px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none !important;
    cursor: pointer;
}

.btn-v6-outline:hover {
    background: #12142e !important;
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Call-to-Action Buttons */
.cta-btn-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: #ffffff !important;
    color: #12142e !important;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 60px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
    border: none !important;
}

.cta-btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
    color: #12142e !important;
    background: #ffffff !important;
}

.cta-btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 60px;
    text-decoration: none !important;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(8px);
}

.cta-btn-ghost:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
    transform: translateY(-3px);
}

.btn-dark-pill {
    background: #0f172a;
    color: #ffffff;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-dark-pill:hover {
    background: #1e293b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.25);
}

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

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #ffffff !important;
    color: #ffffff !important;
}

.btn-outline-secondary {
    background: transparent !important;
    color: #475569 !important;
    border: 1.5px solid #cbd5e1 !important;
}

.btn-outline-secondary:hover {
    background: #f1f5f9 !important;
    color: #0f172a !important;
}

.btn-light {
    background: #ffffff !important;
    color: #0f172a !important;
    border: 1px solid #e2e8f0 !important;
}

.btn-light:hover {
    background: #f8fafc !important;
    border-color: #cbd5e1 !important;
}

.btn-dark {
    background: #0f172a !important;
    color: #ffffff !important;
    border: none !important;
}

.btn-dark:hover {
    background: #1e293b !important;
}

.btn-secondary {
    background: #475569 !important;
    color: #ffffff !important;
    border: none !important;
}

.btn-secondary:hover {
    background: #334155 !important;
    color: #ffffff !important;
}

.btn-info {
    background: var(--cf-info) !important;
    color: #ffffff !important;
    border: none !important;
}

.btn-info:hover {
    background: #0369a1 !important;
    color: #ffffff !important;
}

.btn-outline-dark {
    background: transparent !important;
    color: #0f172a !important;
    border: 1.5px solid #0f172a !important;
}

.btn-outline-dark:hover {
    background: #0f172a !important;
    color: #ffffff !important;
}

.btn-outline-info {
    background: transparent !important;
    color: var(--cf-info) !important;
    border: 1.5px solid var(--cf-info) !important;
}

.btn-outline-info:hover {
    background: var(--cf-info) !important;
    color: #ffffff !important;
}

.btn-outline-success {
    background: transparent !important;
    color: var(--cf-success) !important;
    border: 1.5px solid var(--cf-success) !important;
}

.btn-outline-success:hover {
    background: var(--cf-success) !important;
    color: #ffffff !important;
}

.btn-outline-danger {
    background: transparent !important;
    color: var(--cf-danger) !important;
    border: 1.5px solid var(--cf-danger) !important;
}

.btn-outline-danger:hover {
    background: var(--cf-danger) !important;
    color: #ffffff !important;
}

.btn-outline-warning {
    background: transparent !important;
    color: var(--cf-warning) !important;
    border: 1.5px solid var(--cf-warning) !important;
}

.btn-outline-warning:hover {
    background: var(--cf-warning) !important;
    color: #ffffff !important;
}

.btn-gradient {
    background: var(--gradient-primary) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: var(--shadow-primary);
}

.btn-gradient:hover {
    background: var(--gradient-primary-hover) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-primary-lg);
    color: #ffffff !important;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(79, 70, 229, 0.4) !important;
}

.btn-success {
    background: var(--cf-success) !important;
    color: #ffffff !important;
    border: none !important;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.35);
}

.btn-success:hover {
    background: #059669 !important;
    transform: translateY(-2px);
    color: #ffffff !important;
}

.btn-danger {
    background: var(--cf-danger) !important;
    color: #ffffff !important;
    border: none !important;
}

.btn-danger:hover {
    background: #dc2626 !important;
    color: #ffffff !important;
}

.btn-warning {
    background: var(--cf-warning) !important;
    color: #ffffff !important;
    border: none !important;
}

.btn-warning:hover {
    background: #d97706 !important;
    color: #ffffff !important;
}

.btn-link {
    background: transparent !important;
    border: none !important;
    color: var(--cf-primary) !important;
    padding: 0 !important;
}

.btn-link:hover {
    color: var(--cf-primary-hover) !important;
    text-decoration: underline !important;
}

.btn-pill { border-radius: 50px !important; }
.btn-rounded { border-radius: 14px !important; }
.btn-sm { padding: 6px 14px !important; font-size: 0.82rem !important; }
.btn-lg { padding: 14px 32px !important; font-size: 1.05rem !important; }

/* --------------------------------------------------------------------------
   6. ALL BADGES, TAGS & STATUS PILLS
   -------------------------------------------------------------------------- */
.badge {
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.76rem;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.badge-primary, .bg-primary { background-color: var(--cf-primary) !important; color: #ffffff !important; }
.badge-secondary, .bg-secondary { background-color: var(--cf-secondary) !important; color: #ffffff !important; }
.badge-success, .bg-success { background-color: var(--cf-success) !important; color: #ffffff !important; }
.badge-warning, .bg-warning { background-color: var(--cf-warning) !important; color: #ffffff !important; }
.badge-danger, .bg-danger { background-color: var(--cf-danger) !important; color: #ffffff !important; }
.badge-info, .bg-info { background-color: var(--cf-info) !important; color: #ffffff !important; }
.badge-light, .bg-light { background-color: #f1f5f9 !important; color: #0f172a !important; border: 1px solid #e2e8f0; }
.badge-dark, .bg-dark { background-color: #0f172a !important; color: #ffffff !important; }

.badge-soft-primary { background: var(--cf-primary-soft) !important; color: var(--cf-primary) !important; }
.badge-soft-success { background: var(--cf-success-soft) !important; color: #059669 !important; }
.badge-soft-warning { background: var(--cf-warning-soft) !important; color: #d97706 !important; }
.badge-soft-danger { background: var(--cf-danger-soft) !important; color: #dc2626 !important; }
.badge-soft-info { background: var(--cf-info-soft) !important; color: #0284c7 !important; }

.discount-badge {
    position: absolute !important;
    top: 18px !important;
    left: 18px !important;
    z-index: 10 !important;
    background: #ef4444;
    color: #ffffff;
    padding: 5px 12px;
    font-weight: 800;
    font-size: 0.72rem;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35);
}

.service_level {
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    z-index: 10 !important;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    padding: 5px 12px;
    font-weight: 700;
    font-size: 0.7rem;
    text-transform: uppercase;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    color: var(--cf-primary);
}

.id-badge {
    font-size: 0.78rem;
    font-weight: 800;
    color: var(--cf-primary);
    background: var(--cf-primary-soft);
    padding: 4px 12px;
    border-radius: 50px;
}

.tech-category-badge {
    background: #f1f5f9;
    color: #475569;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
}

.active-filter-pill {
    background: var(--cf-primary-soft);
    color: var(--cf-primary);
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.82rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    display: inline-block;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.6); }
    70% { box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

/* --------------------------------------------------------------------------
   7. COMPLETE CARDS ECOSYSTEM
   -------------------------------------------------------------------------- */
.card, .card-v6, .card-custom {
    background-color: var(--cf-surface);
    border: 1px solid var(--cf-border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    overflow: hidden;
    height: 100%;
}

.card:hover, .card-v6:hover, .card-custom:hover {
    transform: translateY(-6px);
    border-color: rgba(79, 70, 229, 0.35) !important;
    box-shadow: 0 20px 45px -10px rgba(79, 70, 229, 0.14) !important;
}

.card-header {
    background-color: transparent;
    border-bottom: 1px solid var(--cf-border);
    padding: 18px 24px;
    font-weight: 700;
    color: var(--cf-text-main);
}

.card-body {
    padding: 24px;
}

.card-footer {
    background-color: var(--cf-surface-secondary);
    border-top: 1px solid var(--cf-border);
    padding: 16px 24px;
}

.card-title {
    font-weight: 800;
    color: var(--cf-text-main);
    margin-bottom: 10px;
    line-height: 1.35;
}

.card-subtitle {
    font-weight: 600;
    color: var(--cf-text-muted);
    font-size: 0.85rem;
}

.card-text {
    color: var(--cf-text-body);
    font-size: 0.95rem;
    line-height: 1.6;
}

.glass-card {
    background: #ffffff !important;
    border: 1px solid var(--cf-border) !important;
    border-radius: var(--radius-xl) !important;
    box-shadow: var(--shadow-md) !important;
}

/* Category Cards */
.category-card-v6 {
    text-decoration: none;
    display: block;
    height: 100%;
}

.category-card-inner {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 22px !important;
    box-shadow: var(--shadow-sm) !important;
    transition: var(--transition-smooth);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.category-card-v6:hover .category-card-inner {
    transform: translateY(-6px);
    border-color: rgba(79, 70, 229, 0.35) !important;
    box-shadow: 0 20px 45px -10px rgba(79, 70, 229, 0.14) !important;
}

.category-image {
    height: 160px;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #f1f5f9;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.category-card-v6:hover .category-image img {
    transform: scale(1.06);
}

.category-placeholder {
    height: 160px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cf-primary-soft);
    color: var(--cf-primary);
    font-size: 2.5rem;
}

.category-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.category-icon-bg {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--cf-primary-soft);
    color: var(--cf-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

/* Service Cards */
.service-card-wrapper {
    height: 100%;
}

.service-card {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 22px !important;
    box-shadow: var(--shadow-sm) !important;
    transition: var(--transition-smooth);
    overflow: hidden;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-media {
    height: 190px !important;
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    background: #f1f5f9 !important;
}

.service-media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    transition: transform 0.4s ease;
}

.card-v6:hover .service-media img,
.service-card:hover .service-media img {
    transform: scale(1.06);
}

.service-title {
    color: #0f172a !important;
    font-weight: 800;
}

.service-description {
    color: #64748b !important;
}

.btn-explore {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 10px 16px;
    background: var(--cf-primary-soft);
    color: var(--cf-primary);
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.86rem;
    transition: var(--transition-fast);
}

.card-v6:hover .btn-explore,
.service-card:hover .btn-explore {
    background: var(--cf-primary);
    color: #ffffff;
}

/* Product Cards */
.p-card-v6, .product-card-v6 {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 22px !important;
    box-shadow: var(--shadow-sm) !important;
    transition: var(--transition-smooth);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.p-card-v6:hover, .product-card-v6:hover {
    transform: translateY(-7px);
    border-color: rgba(79, 70, 229, 0.35) !important;
    box-shadow: 0 20px 45px -10px rgba(79, 70, 229, 0.14) !important;
}

.p-media {
    position: relative;
    height: 200px;
    background: #f1f5f9;
    overflow: hidden;
}

.p-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.p-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.p-cat {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--cf-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}

.p-title {
    font-size: 1.1rem;
    font-weight: 800;
    color: #0f172a !important;
    margin-bottom: 8px;
    line-height: 1.35;
}

.p-desc {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: 14px;
    flex-grow: 1;
}

.p-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

.p-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
}

.p-discount {
    font-size: 0.85rem;
    color: #94a3b8;
    text-decoration: line-through;
    margin-left: 6px;
}

.p-btn-circle {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--cf-primary-soft);
    color: var(--cf-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.p-card-v6:hover .p-btn-circle {
    background: var(--cf-primary);
    color: #ffffff;
    transform: translateX(3px);
}

/* Portfolio & Case Study Cards */
.proj-hero-card, .proj-small-card, .proj-secondary-card, .portfolio-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.proj-hero-card:hover .proj-hero-img,
.proj-small-card:hover .proj-hero-img,
.proj-secondary-card:hover .proj-hero-img,
.portfolio-card:hover .portfolio-image {
    transform: scale(1.05);
}

.proj-hero-card:hover, .proj-small-card:hover {
    box-shadow: 0 30px 70px rgba(15, 23, 42, 0.2) !important;
}

.proj-secondary-card:hover, .portfolio-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px -10px rgba(15, 23, 42, 0.12) !important;
    border-color: rgba(79, 70, 229, 0.3) !important;
}

.portfolio-img-frame {
    height: 240px;
    overflow: hidden;
    position: relative;
    background: #f1f5f9;
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* Advantage & Feature Cards */
.features-dynamic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-item {
    height: 100%;
}

.benefit-card-v6, .expertise-card, .stat-card-v6 {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 24px !important;
    padding: 32px 28px !important;
    box-shadow: var(--shadow-sm) !important;
    transition: var(--transition-smooth) !important;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.benefit-card-v6:hover, .expertise-card:hover, .stat-card-v6:hover {
    transform: translateY(-6px);
    border-color: rgba(79, 70, 229, 0.35) !important;
    box-shadow: 0 20px 45px -10px rgba(79, 70, 229, 0.14) !important;
}

.feature-icon-v6, .expertise-icon, .stat-icon-v6 {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: var(--cf-primary-soft);
    color: var(--cf-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: var(--transition-fast);
}

.benefit-card-v6:hover .feature-icon-v6,
.expertise-card:hover .expertise-icon,
.stat-card-v6:hover .stat-icon-v6 {
    background: var(--cf-primary);
    color: #ffffff;
    transform: scale(1.08);
}

/* Process & Step Cards */
.process-step, .step-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 22px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    height: 100%;
}

.process-step:hover, .step-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md) !important;
    border-color: rgba(79, 70, 229, 0.3) !important;
}

.p-num, .step-number {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: var(--cf-primary);
    color: #ffffff;
    font-weight: 800;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

/* Careers & Jobs */
.career-modern-page {
    position: relative;
    overflow: hidden;
}

.career-bg-blobs .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
}

.career-bg-blobs .blob-1 {
    width: 400px;
    height: 400px;
    background: #4f46e5;
    top: 50px;
    left: -100px;
}

.career-bg-blobs .blob-2 {
    width: 500px;
    height: 500px;
    background: #06b6d4;
    top: 300px;
    right: -150px;
}

.career-glass-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.career-glass-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(79, 70, 229, 0.35);
}

.career-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

.career-list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    font-size: 0.88rem;
    color: #475569;
    line-height: 1.5;
}

.career-list li::before {
    content: '•';
    position: absolute;
    left: 4px;
    color: var(--cf-primary);
    font-weight: bold;
    font-size: 1.2rem;
    line-height: 1;
}

.career-list.list-arrow li::before {
    content: '→';
    font-size: 0.9rem;
    left: 0;
}

.apply-sidebar {
    background: linear-gradient(135deg, #0f172a, #1e1b4b);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --------------------------------------------------------------------------
   8. BRAND MARQUEE RIBBON
   -------------------------------------------------------------------------- */
.tech-ribbon {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 12px 0;
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.tech-ribbon-track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: scrollRibbon 28s linear infinite;
}

.tech-ribbon:hover .tech-ribbon-track {
    animation-play-state: paused;
}

@keyframes scrollRibbon {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.tech-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 10px 22px;
    border-radius: 50px;
    box-shadow: var(--shadow-xs);
    white-space: nowrap;
    transition: var(--transition-fast);
}

.tech-pill:hover {
    border-color: var(--cf-primary);
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.12);
    transform: translateY(-2px);
}

.tech-pill-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--cf-primary);
}

.tech-pill-icon img {
    height: 22px;
    width: auto;
    object-fit: contain;
}

.tech-pill-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
}

/* --------------------------------------------------------------------------
   9. SWIPER & CAROUSELS
   -------------------------------------------------------------------------- */
.service-carousel-wrapper {
    position: relative;
    padding: 0 4px;
}

.logo-nav-btn {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.08);
    transition: var(--transition-fast);
    z-index: 10;
}

.logo-nav-prev { left: -22px; }
.logo-nav-next { right: -22px; }

.logo-nav-btn:hover {
    background: var(--cf-primary);
    border-color: var(--cf-primary);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(79, 70, 229, 0.35);
    transform: translateY(-50%) scale(1.08);
}

.service-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.service-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #cbd5e1;
    opacity: 1;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.service-pagination .swiper-pagination-bullet-active {
    width: 28px;
    background: var(--gradient-primary);
    box-shadow: 0 2px 8px rgba(79, 70, 229, 0.35);
}

/* --------------------------------------------------------------------------
   10. TESTIMONIALS SLIDER
   -------------------------------------------------------------------------- */
.testimonial-section-v6 {
    background: #090b1a;
    position: relative;
    overflow: hidden;
    border-radius: 60px 60px 0 0;
}

.nav-btn-v6 {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.nav-btn-v6:hover {
    background: var(--cf-primary);
    border-color: var(--cf-primary);
    transform: scale(1.08);
    box-shadow: 0 4px 18px rgba(79, 70, 229, 0.5);
}

.premium-tcard {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: clamp(16px, 3vw, 24px) !important;
    padding: clamp(20px, 4vw, 32px) !important;
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.05) !important;
}

.quote-icon-v6 {
    font-size: 1.5rem;
    color: rgba(79, 70, 229, 0.25);
    margin-bottom: 12px;
}

.tcard-stars .bi-star-fill, .tcard-stars .fa-star {
    color: #f59e0b;
    margin-right: 2px;
}

.tcard-text {
    color: #334155 !important;
    font-size: clamp(0.92rem, 2vw, 1.05rem);
    line-height: 1.65;
}

.tcard-avatar-v6 {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.tcard-avatar-v6 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.avatar-letter-v6 {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

/* --------------------------------------------------------------------------
   11. CERTIFICATIONS & RATINGS
   -------------------------------------------------------------------------- */
.cert-rating-section {
    background-color: var(--cf-bg);
}

.cert-rating-box {
    border: 1px solid #e2e8f0;
    transition: var(--transition-smooth);
}

.cert-rating-box:hover {
    transform: translateY(-6px);
    border-color: rgba(79, 70, 229, 0.35);
    box-shadow: 0 20px 45px -10px rgba(79, 70, 229, 0.12) !important;
}

.icon-shape {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-shape.bg-gradient-primary {
    background: var(--gradient-primary);
}

.icon-shape.bg-gradient-danger {
    background: linear-gradient(135deg, #ef4444, #f97316);
}

.certification-logo {
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

.line-bar {
    width: 60px;
    height: 4px;
    border-radius: 4px;
    background: var(--gradient-primary);
    margin-top: 14px;
}

/* --------------------------------------------------------------------------
   12. CALL TO ACTION SUITE
   -------------------------------------------------------------------------- */
.cta-v6 {
    background: var(--gradient-dark);
    border-radius: clamp(24px, 4vw, 44px);
    padding: clamp(28px, 5vw, 60px);
    color: #ffffff;
    box-shadow: 0 25px 60px -12px rgba(15, 23, 42, 0.35);
    position: relative;
    overflow: hidden;
}

.cta-v6-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    z-index: 2;
}

.cta-v6-title {
    font-size: clamp(1.8rem, 4.5vw, 3.2rem);
    font-weight: 800;
    color: #ffffff !important;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.cta-v6-desc {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: clamp(0.92rem, 2vw, 1.1rem);
    max-width: 540px;
    margin-bottom: 24px;
}

.cta-v6-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cta-v6-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    min-width: 260px;
}

.cta-stat-item {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.cta-stat-number {
    font-size: 1.5rem;
    color: #38bdf8;
    margin-bottom: 4px;
}

.cta-stat-label {
    font-size: 0.78rem;
    font-weight: 700;
    color: #ffffff;
}

.cta-v6-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    padding-top: 24px;
    margin-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    position: relative;
    z-index: 2;
}

/* --------------------------------------------------------------------------
   13. FORMS, INPUTS & FILTER SIDEBARS
   -------------------------------------------------------------------------- */
.form-control, .form-select, 
input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="number"], textarea {
    background-color: #ffffff !important;
    border: 1.5px solid #cbd5e1 !important;
    color: #0f172a !important;
    border-radius: 12px !important;
    padding: 11px 16px !important;
    font-size: clamp(0.88rem, 2vw, 0.95rem) !important;
    transition: var(--transition-fast) !important;
}

.form-control:focus, .form-select:focus, input:focus, textarea:focus {
    border-color: #6366f1 !important;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15) !important;
    outline: none !important;
}

.form-label {
    color: #1e293b !important;
    font-weight: 700 !important;
    font-size: 0.86rem !important;
    margin-bottom: 6px !important;
}

.form-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: 0.15em;
    border-radius: 6px;
    border: 1.5px solid #cbd5e1;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--cf-primary);
    border-color: var(--cf-primary);
}

.form-switch .form-check-input {
    width: 2.2em;
    border-radius: 2em;
}

.input-group {
    border-radius: 12px;
    overflow: hidden;
}

.input-group-text {
    background-color: #f1f5f9;
    border: 1.5px solid #cbd5e1;
    color: #64748b;
    font-weight: 600;
}

.filter-section {
    margin-bottom: 24px;
}

.filter-option {
    margin-bottom: 8px;
}

.filter-btn {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #475569;
    transition: var(--transition-fast);
}

.filter-btn:hover, .filter-btn.active {
    background: var(--cf-primary);
    color: #ffffff;
    border-color: var(--cf-primary);
}

.glass-filter-sidebar, .services-filters {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 22px;
    box-shadow: var(--shadow-sm);
}

/* Captcha Widget */
.captcha-container {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f1f5f9;
    padding: 8px 12px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    flex-wrap: wrap;
}

.captcha-container img.captcha {
    border-radius: 8px;
    border: 1px solid #cbd5e1;
    background: #ffffff;
    max-width: 100%;
    height: auto;
}

.js-captcha-refresh {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: var(--cf-primary);
    padding: 7px 11px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.82rem;
    transition: var(--transition-fast);
}

.js-captcha-refresh:hover {
    background: var(--cf-primary);
    color: #ffffff;
}

/* --------------------------------------------------------------------------
   14. MODALS & DIALOGS
   -------------------------------------------------------------------------- */
.modal-backdrop {
    background-color: rgba(15, 23, 42, 0.65) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

.modal-content {
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 24px !important;
    box-shadow: 0 30px 70px -15px rgba(15, 23, 42, 0.25) !important;
    overflow: hidden;
}

.modal-header {
    border-bottom: 1px solid #f1f5f9 !important;
    padding: 20px 26px !important;
    background: #ffffff;
}

.modal-title {
    font-weight: 800;
    color: #0f172a;
    font-size: 1.25rem;
    letter-spacing: -0.02em;
}

.modal-body {
    padding: 26px !important;
    color: #334155;
    line-height: 1.65;
}

.modal-footer {
    border-top: 1px solid #f1f5f9 !important;
    padding: 16px 26px !important;
    background: #f8fafc;
}

.btn-close {
    background-color: #f1f5f9;
    border-radius: 50%;
    padding: 8px;
    opacity: 0.7;
    transition: var(--transition-fast);
}

.btn-close:hover {
    opacity: 1;
    background-color: #e2e8f0;
    transform: rotate(90deg);
}

.offcanvas {
    background: #ffffff !important;
    border-left: 1px solid #e2e8f0 !important;
    box-shadow: -10px 0 30px rgba(15, 23, 42, 0.12) !important;
}

/* --------------------------------------------------------------------------
   15. TABLES & DATA LISTS
   -------------------------------------------------------------------------- */
.table-responsive {
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: var(--shadow-xs);
    overflow: hidden;
}

.table, .table-v6 {
    margin-bottom: 0;
    color: #334155;
    vertical-align: middle;
}

.table th, .table-v6 th {
    background: #f8fafc;
    color: #475569;
    font-weight: 800;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 14px 18px;
    border-bottom: 1px solid #e2e8f0;
}

.table td, .table-v6 td {
    padding: 14px 18px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.92rem;
}

.table tr:last-child td, .table-v6 tr:last-child td {
    border-bottom: none;
}

.table-hover tbody tr:hover {
    background-color: #f8fafc;
}

.list-group {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
}

.list-group-item {
    background-color: #ffffff;
    border: 1px solid #f1f5f9;
    color: #334155;
    padding: 14px 18px;
    font-weight: 500;
}

.list-group-item-action:hover {
    background-color: #f8fafc;
    color: var(--cf-primary);
}

.breadcrumb-custom, .breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 18px;
    padding: 0;
    list-style: none;
}

.breadcrumb-custom a, .breadcrumb-item a {
    color: #64748b;
    text-decoration: none;
}

.breadcrumb-custom a:hover, .breadcrumb-item a:hover {
    color: var(--cf-primary);
}

.breadcrumb-item.active {
    color: #0f172a;
    font-weight: 700;
}

.pagination {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 30px;
}

.page-item .page-link {
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    color: #334155;
    font-weight: 700;
    padding: 8px 16px;
    transition: var(--transition-fast);
}

.page-item.active .page-link {
    background: var(--cf-primary);
    border-color: var(--cf-primary);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.3);
}

.page-item .page-link:hover {
    background: #f1f5f9;
    color: var(--cf-primary);
}

/* --------------------------------------------------------------------------
   16. ACCORDIONS, TABS & ALERTS
   -------------------------------------------------------------------------- */
.accordion-item {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px !important;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xs);
}

.accordion-button {
    background-color: #ffffff;
    color: #0f172a;
    font-weight: 700;
    font-size: 1rem;
    padding: 18px 22px;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background-color: #f8fafc;
    color: var(--cf-primary);
}

.accordion-body {
    padding: 20px 22px;
    color: #475569;
    line-height: 1.7;
    background-color: #ffffff;
}

.nav-tabs {
    border-bottom: 2px solid #e2e8f0;
    gap: 8px;
}

.nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    color: #64748b;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 0;
    transition: var(--transition-fast);
}

.nav-tabs .nav-link.active, .nav-tabs .nav-link:hover {
    color: var(--cf-primary);
    border-bottom-color: var(--cf-primary);
    background: transparent;
}

.nav-pills .nav-link {
    border-radius: 50px;
    padding: 8px 18px;
    font-weight: 700;
    color: #475569;
    transition: var(--transition-fast);
}

.nav-pills .nav-link.active {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: var(--shadow-primary);
}

.alert {
    border-radius: 16px;
    padding: 16px 20px;
    border: 1px solid transparent;
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.alert-primary { background-color: var(--cf-primary-soft); border-color: rgba(79, 70, 229, 0.2); color: #4338ca; }
.alert-success { background-color: var(--cf-success-soft); border-color: rgba(16, 185, 129, 0.25); color: #065f46; }
.alert-warning { background-color: var(--cf-warning-soft); border-color: rgba(245, 158, 11, 0.25); color: #92400e; }
.alert-danger { background-color: var(--cf-danger-soft); border-color: rgba(239, 68, 68, 0.25); color: #991b1b; }
.alert-info { background-color: var(--cf-info-soft); border-color: rgba(6, 182, 212, 0.25); color: #0e7490; }

/* --------------------------------------------------------------------------
   17. LEGAL, POLICY & DETAIL VIEWS
   -------------------------------------------------------------------------- */
.legal-section {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-xs);
    margin-bottom: 24px;
}

.section-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--cf-primary-soft);
    color: var(--cf-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.85rem;
}

.legal-check-list {
    list-style: none;
    padding-left: 0;
}

.legal-check-list li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
    color: #475569;
}

.legal-check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.detail-content-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: clamp(18px, 3vw, 26px);
    padding: clamp(20px, 4vw, 36px);
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.04);
}

.icon-bubble {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.detail-long-text {
    font-size: 1.02rem;
    line-height: 1.8;
    color: #334155;
}

.sidebar-quote-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.05);
}

/* --------------------------------------------------------------------------
   18. FOOTER DESIGN SYSTEM
   -------------------------------------------------------------------------- */
.footer-v6, footer {
    background: #090d1a !important;
    color: #cbd5e1 !important;
    padding-top: 85px;
    padding-bottom: 45px;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-v6 a, footer a {
    color: #94a3b8 !important;
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-v6 a:hover, footer a:hover {
    color: #ffffff !important;
}

.v6-social-btn {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-size: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: middle;
}

.v6-social-btn i {
    display: inline-block;
    line-height: normal;
    margin: 0;
    padding: 0;
}

.v6-social-btn:hover {
    background: #4c51bf !important;
    border-color: #4c51bf !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    color: #ffffff !important;
}

.footer-v6-links h4, .footer-v6 h4 {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.footer-v6-links a {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
    font-weight: 500;
}

.footer-v6-links a:hover {
    color: #ffffff !important;
    transform: translateX(4px);
}

.footer-v6 .btn-v6-primary {
    background: linear-gradient(135deg, #4f46e5, #2563eb) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.35);
}

.footer-v6 .btn-v6-primary:hover {
    background: linear-gradient(135deg, #4338ca, #1d4ed8) !important;
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
    transform: translateY(-2px);
}

.footer-newsletter-input {
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
    border-radius: 50px !important;
    padding: 12px 22px !important;
    font-size: 0.92rem !important;
    flex-grow: 1;
}

.footer-newsletter-input::placeholder {
    color: #64748b;
}

.footer-newsletter-input:focus {
    border-color: #6366f1 !important;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.25) !important;
    outline: none !important;
}

.footer-newsletter-btn {
    background: linear-gradient(135deg, #4f46e5, #2563eb);
    color: #ffffff !important;
    border: none;
    border-radius: 50px;
    padding: 12px 28px;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(79, 70, 229, 0.35);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.footer-newsletter-btn:hover {
    background: linear-gradient(135deg, #4338ca, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(79, 70, 229, 0.5);
}

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

/* --------------------------------------------------------------------------
   19. FLOATING MULTI-ACTION BUTTON (FAB)
   -------------------------------------------------------------------------- */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1050;
    display: flex;
    flex-direction: column-reverse;
    align-items: flex-end;
    gap: 14px;
}

.fab-main-btn {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #12142e, #1e1b4b);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 25px rgba(18, 20, 46, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 1051;
}

.fab-main-btn:hover {
    transform: scale(1.08) rotate(45deg);
    box-shadow: 0 14px 30px rgba(79, 70, 229, 0.45);
}

.fab-menu {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

.fab-container.fab-active .fab-menu,
.fab-container.fab-active-clicked .fab-menu,
.fab-container:hover .fab-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.fab-item {
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 0.9rem;
    color: #ffffff !important;
    transition: var(--transition-fast);
}

.fab-item:hover {
    transform: translateY(-2px) scale(1.04);
}

/* --------------------------------------------------------------------------
   20. SCROLLBAR & RESPONSIVE BREAKPOINTS
   -------------------------------------------------------------------------- */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

@media (max-width: 991px) {
    .mega-grid {
        grid-template-columns: 1fr;
    }
    .service-media {
        height: 170px !important;
    }
}

@media (max-width: 576px) {
    .fab-container {
        bottom: 20px;
        right: 20px;
    }
    .logo-nav-prev {
        left: -10px;
    }
    .logo-nav-next {
        right: -10px;
    }
}

/* --------------------------------------------------------------------------
   21. COMPREHENSIVE SUBPAGE & WIDGET COMPONENTS SUITE
   -------------------------------------------------------------------------- */

/* Product Gallery, Detail & Specs Suite */
.gallery-container {
    position: relative;
    border-radius: var(--cf-radius-lg);
    background: #ffffff;
    border: 1px solid var(--cf-border-color);
    padding: 1.25rem;
    box-shadow: var(--cf-shadow-sm);
}

.thumb-grid, .thumbnail-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.thumb-item, .thumbnail-item {
    cursor: pointer;
    border-radius: var(--cf-radius-sm);
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    background: #f8fafc;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-item:hover, .thumbnail-item:hover, .thumb-item.active, .thumbnail-item.active {
    border-color: var(--cf-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.2);
}

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

.product-glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: var(--cf-radius-lg);
    padding: 2rem;
    box-shadow: var(--cf-shadow-md);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
}

.spec-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: var(--cf-radius-md);
    padding: 1rem;
    transition: var(--cf-transition);
}

.spec-card:hover {
    background: #ffffff;
    border-color: var(--cf-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--cf-shadow-sm);
}

.spec-label {
    font-size: 0.8rem;
    color: var(--cf-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.spec-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--cf-dark-bg);
}

.product-main-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.product-tabs {
    display: flex;
    gap: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
    margin-bottom: 1.5rem;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    color: var(--cf-text-muted);
    border: none;
    background: none;
    cursor: pointer;
    position: relative;
    transition: color 0.2s ease;
}

.tab-btn:hover, .tab-btn.active {
    color: var(--cf-primary);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--cf-primary);
    border-radius: 2px 2px 0 0;
}

.tab-pane {
    animation: fadeIn 0.3s ease-in-out;
}

.product-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px dashed #e2e8f0;
    color: #334155;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li i {
    color: #10b981;
    font-size: 1.1rem;
}

.updates-timeline {
    position: relative;
    padding-left: 2rem;
}

.updates-timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.timeline-badge {
    position: absolute;
    left: -2rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--cf-primary);
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px var(--cf-primary-light);
}

.timeline-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--cf-radius-md);
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--cf-shadow-sm);
}

.glass-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.85rem;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 50rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    color: var(--cf-dark-bg);
}

.search-input-group {
    position: relative;
    display: flex;
    align-items: center;
}

.search-input-group i {
    position: absolute;
    left: 1rem;
    color: var(--cf-text-muted);
}

.search-input-group input {
    padding-left: 2.75rem;
    border-radius: var(--cf-radius-md);
}

.update-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--cf-radius-md);
    transition: var(--cf-transition);
}

.update-card:hover {
    border-color: var(--cf-primary);
    transform: translateY(-2px);
    box-shadow: var(--cf-shadow-md);
}

.update-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--cf-radius-md);
    background: rgba(79, 70, 229, 0.1);
    color: var(--cf-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Filters & Selectors Suite */
.filter-select {
    padding: 0.6rem 1.2rem;
    border-radius: var(--cf-radius-md);
    border: 1px solid #cbd5e1;
    background-color: #ffffff;
    color: #334155;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--cf-transition);
    cursor: pointer;
}

.filter-select:focus {
    border-color: var(--cf-primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
    outline: none;
}

.quick-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
}

.filter-chip, .filter-chip-mobile {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    border-radius: 50rem;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.filter-chip:hover, .filter-chip-mobile:hover, .filter-chip.active, .filter-chip-mobile.active {
    background: var(--cf-primary);
    color: #ffffff;
    border-color: var(--cf-primary);
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.25);
}

.filter-sections {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.filter-section-header, .filter-section-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: var(--cf-radius-md);
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    font-weight: 600;
    cursor: pointer;
    transition: var(--cf-transition);
}

.filter-toggle-btn:hover {
    border-color: var(--cf-primary);
    color: var(--cf-primary);
}

.filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 1.25rem;
}

.hover-primary:hover {
    color: var(--cf-primary) !important;
}

.filter-search-input {
    width: 100%;
    padding: 0.6rem 1rem;
    border-radius: var(--cf-radius-md);
    border: 1px solid #cbd5e1;
    font-size: 0.9rem;
    transition: var(--cf-transition);
}

.filter-search-input:focus {
    border-color: var(--cf-primary);
    box-shadow: 0 0 0 3px rgba(79, 70, 229, 0.15);
    outline: none;
}

.filter-options-v6 {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.modern-filter-radio {
    display: none;
}

.radio-card {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: var(--cf-radius-md);
    border: 1px solid #e2e8f0;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
}

.radio-card:hover {
    border-color: var(--cf-primary-light);
    background: #f8fafc;
}

.modern-filter-radio:checked + .radio-card {
    border-color: var(--cf-primary);
    background: rgba(79, 70, 229, 0.05);
}

.radio-indicator {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #cbd5e1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.modern-filter-radio:checked + .radio-card .radio-indicator {
    border-color: var(--cf-primary);
    background: var(--cf-primary);
}

.modern-filter-radio:checked + .radio-card .radio-indicator::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
}

.no-results-icon {
    font-size: 3.5rem;
    color: #94a3b8;
    margin-bottom: 1rem;
}

/* Services & Categories Suite */
.v6-service-hero, .service-detail-hero {
    position: relative;
    padding: 4.5rem 0 3.5rem 0;
    background: linear-gradient(135deg, #090d1a 0%, #111827 50%, #1e1b4b 100%);
    color: #ffffff;
}

.category-icon-large {
    width: 72px;
    height: 72px;
    border-radius: var(--cf-radius-lg);
    background: linear-gradient(135deg, var(--cf-primary), var(--cf-secondary));
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.35);
}

.hover-up {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-up:hover {
    transform: translateY(-6px);
    box-shadow: var(--cf-shadow-xl);
}

.v6-icon-box {
    width: 52px;
    height: 52px;
    border-radius: var(--cf-radius-md);
    background: rgba(79, 70, 229, 0.1);
    color: var(--cf-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.service-hero-media-card {
    position: relative;
    border-radius: var(--cf-radius-xl);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-media-placeholder {
    height: 320px;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

.service-media-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(9, 13, 26, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.service-media-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    padding: 0.4rem 0.9rem;
    border-radius: 50rem;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hover-bg-light:hover {
    background-color: #f8fafc !important;
}

.transition-transform {
    transition-property: transform;
}

.duration-500 {
    transition-duration: 500ms;
}

/* Subscriptions & Pricing Details */
.subscription-section, .subscription-detail-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.lead-sm {
    font-size: 1.05rem;
    font-weight: 400;
    color: #64748b;
}

.planfeatured {
    position: relative;
    border-color: var(--cf-primary) !important;
    box-shadow: 0 12px 30px rgba(79, 70, 229, 0.15) !important;
    transform: scale(1.02);
}

.subscription-header {
    margin-bottom: 2rem;
}

.subscription-description {
    font-size: 1rem;
    line-height: 1.7;
    color: #475569;
}

.subscription-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.backdrop-blur {
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.subscription-sidebar {
    background: #ffffff;
    border-radius: var(--cf-radius-lg);
    border: 1px solid var(--cf-border-color);
    padding: 2rem;
    box-shadow: var(--cf-shadow-md);
}

.price-amount {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--cf-dark-bg);
    line-height: 1;
}

.highlights-card {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.05), rgba(124, 58, 237, 0.05));
    border: 1px solid rgba(79, 70, 229, 0.15);
    border-radius: var(--cf-radius-lg);
    padding: 1.5rem;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--cf-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.printable-area {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: var(--cf-radius-lg);
    border: 1px solid #e2e8f0;
}

.info-cell {
    padding: 0.75rem;
    border-bottom: 1px solid #e2e8f0;
}

.bold {
    font-weight: 700;
}

.no-border {
    border: none !important;
}

.info-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--cf-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.detail-label {
    font-size: 0.85rem;
    color: var(--cf-text-muted);
    font-weight: 600;
}

.detail-value {
    font-size: 0.95rem;
    color: var(--cf-dark-bg);
    font-weight: 600;
}

/* Contact, Inquiries, Counters & Legal */
.contact-info-icon-box {
    width: 48px;
    height: 48px;
    border-radius: var(--cf-radius-md);
    background: rgba(79, 70, 229, 0.1);
    color: var(--cf-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-card, .contact-method-card {
    background: #ffffff;
    border: 1px solid var(--cf-border-color);
    border-radius: var(--cf-radius-lg);
    padding: 1.75rem;
    transition: var(--cf-transition);
}

.contact-card:hover, .contact-method-card:hover {
    border-color: var(--cf-primary-light);
    transform: translateY(-4px);
    box-shadow: var(--cf-shadow-lg);
}

.content-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #475569;
}

.legal-section {
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-check-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.legal-check-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.5rem;
}

.legal-check-list li::before {
    content: '\F26E';
    font-family: 'bootstrap-icons';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--cf-primary);
    font-weight: 700;
}

.counter-box {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--cf-radius-lg);
    background: #ffffff;
    border: 1px solid var(--cf-border-color);
    box-shadow: var(--cf-shadow-sm);
    transition: var(--cf-transition);
}

.counter-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--cf-shadow-md);
    border-color: var(--cf-primary-light);
}

.counter {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cf-primary);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.tech-category-card {
    background: #ffffff;
    border: 1px solid var(--cf-border-color);
    border-radius: var(--cf-radius-lg);
    padding: 1.5rem;
    transition: var(--cf-transition);
    height: 100%;
}

.tech-category-card:hover {
    border-color: var(--cf-primary-light);
    transform: translateY(-4px);
    box-shadow: var(--cf-shadow-md);
}

.icon-sm {
    width: 32px;
    height: 32px;
    font-size: 1.1rem;
}

.smaller {
    font-size: 0.75rem;
}

.x-small {
    font-size: 0.7rem;
}

.transition-all {
    transition: all 0.3s ease;
}

.object-fit-cover {
    object-fit: cover;
}

.pointer-events-none {
    pointer-events: none;
}

/* Dashboard, Admin Hub & Timeline */
.dashboard-card {
    background: #ffffff;
    border: 1px solid var(--cf-border-color);
    border-radius: var(--cf-radius-lg);
    padding: 1.5rem;
    box-shadow: var(--cf-shadow-sm);
    transition: var(--cf-transition);
}

.dashboard-card:hover {
    box-shadow: var(--cf-shadow-md);
    border-color: #cbd5e1;
}

.user-avatar-v6 {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.timeline-item {
    position: relative;
    padding-left: 2rem;
    padding-bottom: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 0;
    width: 2px;
    background: #e2e8f0;
}

.timeline-item:last-child::before {
    display: none;
}

.timeline-marker {
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--cf-primary);
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px rgba(79, 70, 229, 0.2);
}

.timeline-content {
    background: #f8fafc;
    border-radius: var(--cf-radius-md);
    padding: 1rem;
    border: 1px solid #e2e8f0;
}

/* --------------------------------------------------------------------------
   22. PAYMENTS, PORTFOLIO BROWSER MOCKUP & COMPACT CARDS
   -------------------------------------------------------------------------- */

/* Payments & Checkout */
.checkout-section {
    padding: 4rem 0;
    background: #f8fafc;
}

.loading-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(4px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 50;
    border-radius: var(--cf-radius-lg);
}

.security-badge, .payment-security {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    border-radius: var(--cf-radius-md);
    color: #166534;
    font-size: 0.9rem;
}

.amount-breakdown {
    background: #ffffff;
    border-radius: var(--cf-radius-md);
    padding: 1.25rem;
    border: 1px solid #e2e8f0;
}

.item-table {
    width: 100%;
    border-collapse: collapse;
}

.item-table th, .item-table td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.item-table th {
    background: #f8fafc;
    font-weight: 700;
    color: #334155;
}

.page-number-footer {
    text-align: center;
    font-size: 0.8rem;
    color: var(--cf-text-muted);
    padding-top: 2rem;
}

.payment-details, .service-details {
    background: #ffffff;
    border-radius: var(--cf-radius-md);
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
}

.success-animation {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #10b981;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
    animation: scaleUp 0.4s ease-out;
}

@keyframes scaleUp {
    0% { transform: scale(0.6); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

.action-button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.primary-bg-light {
    background: rgba(79, 70, 229, 0.08) !important;
}

/* Portfolio Showcase & Browser Mockup */
.website-showcase-wrapper {
    position: relative;
    border-radius: var(--cf-radius-xl);
    overflow: hidden;
    box-shadow: var(--cf-shadow-xl);
    border: 1px solid #cbd5e1;
    background: #0f172a;
}

.browser-frame {
    background: #1e293b;
    border-radius: var(--cf-radius-xl) var(--cf-radius-xl) 0 0;
}

.browser-header {
    display: flex;
    align-items: center;
    padding: 0.75rem 1.25rem;
    background: #0f172a;
    border-bottom: 1px solid #334155;
}

.browser-controls {
    display: flex;
    gap: 6px;
}

.browser-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
}

.browser-dot.dot-red { background: #ef4444; }
.browser-dot.dot-yellow { background: #f59e0b; }
.browser-dot.dot-green { background: #10b981; }

.browser-content {
    position: relative;
    background: #ffffff;
}

.website-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.website-showcase-wrapper:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-thumbnail {
    position: relative;
    border-radius: var(--cf-radius-md);
    overflow: hidden;
    cursor: pointer;
}

.thumbnail-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.screenshot-thumbnail:hover .thumbnail-overlay {
    opacity: 1;
}

.thumbnail-caption {
    font-size: 0.85rem;
    color: var(--cf-text-muted);
    text-align: center;
    margin-top: 0.5rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.6rem 1rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--cf-radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    color: #334155;
    transition: var(--cf-transition);
}

.tech-item:hover {
    border-color: var(--cf-primary);
    transform: translateY(-2px);
    box-shadow: var(--cf-shadow-sm);
}

.tech-icon {
    font-size: 1.25rem;
    color: var(--cf-primary);
}

.tech-name {
    font-size: 0.9rem;
}

.sticky-sidebar {
    position: sticky;
    top: 90px;
}

.zoom-container {
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
}

.gallery-zoom-control {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.v6-pagination {
    display: flex;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
    justify-content: center;
}

.page-item-v6 {
    margin: 0;
}

.page-link-v6 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: var(--cf-radius-md);
    background: #ffffff;
    border: 1px solid #cbd5e1;
    color: #334155;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.page-link-v6:hover, .page-item-v6.active .page-link-v6 {
    background: var(--cf-primary);
    border-color: var(--cf-primary);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.25);
}

.tech-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.75rem;
    border-radius: 50rem;
    background: #f1f5f9;
    border: 1px solid #e2e8f0;
    font-size: 0.75rem;
    font-weight: 600;
    color: #475569;
}

/* Portfolio Compact Card */
.portfolio-compact-card {
    background: #ffffff;
    border: 1px solid var(--cf-border-color);
    border-radius: var(--cf-radius-lg);
    overflow: hidden;
    transition: var(--cf-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.portfolio-compact-card:hover {
    border-color: var(--cf-primary-light);
    transform: translateY(-6px);
    box-shadow: var(--cf-shadow-xl);
}

.compact-card-media {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: #0f172a;
}

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

.portfolio-compact-card:hover .compact-img {
    transform: scale(1.05);
}

.compact-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: #94a3b8;
    font-size: 2rem;
}

.compact-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 50rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.compact-card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.compact-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.compact-tag {
    font-size: 0.75rem;
    color: var(--cf-text-muted);
}

/* Product Detail & Demos */
.demo-container {
    background: #0f172a;
    border-radius: var(--cf-radius-xl);
    padding: 2.5rem;
    border: 1px solid #334155;
    color: #ffffff;
    text-align: center;
}

.demo-icon {
    font-size: 3rem;
    color: var(--cf-accent);
    margin-bottom: 1rem;
}

.product-hero {
    padding: 4rem 0 3rem 0;
    background: linear-gradient(135deg, #090d1a 0%, #1e1b4b 100%);
    color: #ffffff;
}

.hero-product-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 50rem;
    background: rgba(79, 70, 229, 0.2);
    border: 1px solid rgba(79, 70, 229, 0.4);
    color: #a5b4fc;
    font-weight: 600;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.hero-product-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

.hero-product-subtitle {
    font-size: 1.15rem;
    color: #cbd5e1;
    max-width: 650px;
    line-height: 1.6;
}

/* Hero Action Glow & Ghost Buttons for Subpages */
.btn-hero-glow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4f46e5, #2563eb);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 32px;
    border-radius: 60px;
    text-decoration: none !important;
    border: none;
    box-shadow: 0 10px 25px rgba(79, 70, 229, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-hero-glow:hover {
    background: linear-gradient(135deg, #4338ca, #1d4ed8);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(79, 70, 229, 0.55);
    color: #ffffff !important;
}

.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 13px 30px;
    border-radius: 60px;
    text-decoration: none !important;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    color: #ffffff !important;
}

/* Modern Tab Pill Buttons */
.tab-pill-btn {
    padding: 9px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.88rem;
    color: #64748b;
    border: 1px solid #e2e8f0;
    background: #f8fafc;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.tab-pill-btn:hover {
    color: #0f172a;
    background: #ffffff;
    border-color: #cbd5e1;
}

.tab-pill-btn.active {
    background: #4f46e5;
    color: #ffffff !important;
    border-color: #4f46e5;
    box-shadow: 0 4px 14px rgba(79, 70, 229, 0.3);
}

.hover-lift {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08) !important;
}

.author-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--cf-dark-bg);
}

.author-title {
    font-size: 0.85rem;
    color: var(--cf-text-muted);
}

/* --------------------------------------------------------------------------
   23. MOBILE-FIRST NATIVE APP BOTTOM BAR & ADVANCED RESPONSIVENESS
   -------------------------------------------------------------------------- */

/* Native Mobile Bottom Navigation Bar */
.v6-mobile-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);
    border-top: 1px solid rgba(226, 232, 240, 0.85);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 0.5rem;
    z-index: 1040;
    box-shadow: 0 -4px 20px rgba(15, 23, 42, 0.08);
}

.v6-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    color: #64748b;
    text-decoration: none;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 12px;
    transition: all 0.2s ease;
    min-width: 58px;
    -webkit-tap-highlight-color: transparent;
}

.v6-bottom-item i {
    font-size: 1.25rem;
    transition: transform 0.2s ease;
}

.v6-bottom-item:hover, .v6-bottom-item.active {
    color: var(--cf-primary);
}

.v6-bottom-item.active i {
    transform: translateY(-2px);
}

/* Center Action Button: Elevated Home Jewel */
.v6-bottom-center-home {
    position: relative;
    top: -14px;
    z-index: 10;
    min-width: 62px;
}

.v6-home-circle {
    position: relative;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563eb 0%, #4f46e5 50%, #7c3aed 100%);
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px -2px rgba(37, 99, 235, 0.45), 0 0 0 4px #ffffff;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.v6-home-circle i {
    font-size: 1.35rem;
    color: #ffffff !important;
    transition: transform 0.3s ease;
}

.v6-bottom-center-home span {
    font-weight: 700;
    color: #1e293b;
    margin-top: 3px;
    font-size: 0.72rem;
    letter-spacing: 0.01em;
    transition: color 0.2s ease;
}

.v6-bottom-center-home.active .v6-home-circle {
    background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 50%, #6366f1 100%);
    box-shadow: 0 12px 28px -2px rgba(37, 99, 235, 0.6), 0 0 0 4px #ffffff, 0 0 0 7px rgba(37, 99, 235, 0.22);
    transform: translateY(-2px);
}

.v6-bottom-center-home.active span {
    color: #2563eb;
    font-weight: 800;
}

.v6-bottom-center-home:hover .v6-home-circle,
.v6-bottom-center-home:active .v6-home-circle {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 14px 30px rgba(37, 99, 235, 0.55), 0 0 0 4px #ffffff;
}

.v6-bottom-center-home:hover .v6-home-circle i {
    transform: scale(1.1);
}

/* Touch & Gesture Engine */
html, body {
    overflow-x: hidden;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

@media (max-width: 991.98px) {
    body {
        padding-top: 76px !important;
        padding-bottom: 68px !important;
    }
    main[role="main"] {
        padding-top: 12px;
    }
    .fab-container {
        bottom: 80px !important;
        right: 18px !important;
    }
}

@media (max-width: 575.98px) {
    body {
        padding-top: 72px !important;
    }
    main[role="main"] {
        padding-top: 14px;
    }
}

/* Global Responsive Optimization Suite */
@media (max-width: 1200px) {
    .mega-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .hero-section-v6, .hero-v6, .hero-v7 {
        text-align: center;
        padding: 2.5rem 0;
    }
    .hero-stats {
        justify-content: center;
    }
    .hero-action-group {
        justify-content: center;
    }
    .footer-v6 {
        padding: 3.5rem 0 2rem 0;
    }
    .sticky-sidebar {
        position: static !important;
        margin-top: 2rem;
    }
    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1, .h1 {
        font-size: 2.1rem !important;
        line-height: 1.25;
    }
    h2, .h2 {
        font-size: 1.7rem !important;
    }
    h3, .h3 {
        font-size: 1.35rem !important;
    }
    .category-card-v6 .category-img-box {
        height: 140px !important;
    }
    .card-v6 .service-media-v6 {
        height: 160px !important;
    }
    .product-card-v6 .product-img-box-v6 {
        height: 170px !important;
    }
    .benefit-card-v6 {
        padding: 1.25rem !important;
    }
    .process-step {
        margin-bottom: 1.25rem;
    }
    .quick-filters {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.5rem;
        -webkit-overflow-scrolling: touch;
    }
    .filter-chip {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

@media (max-width: 576px) {
    .btn-v6-primary, .btn-v6-outline, .btn-v6-white {
        width: 100%;
        padding: 0.75rem 1.25rem !important;
        justify-content: center;
    }
    .hero-action-group {
        flex-direction: column;
        width: 100%;
    }
    .stat-badge-v6 {
        width: 100%;
        justify-content: center;
    }
    .product-glass-card {
        padding: 1.25rem !important;
    }
    .specs-grid {
        grid-template-columns: 1fr !important;
    }
    .v6-mobile-bottom-bar {
        height: 60px;
    }
    .v6-bottom-item {
        font-size: 0.68rem;
        min-width: 50px;
    }
    .v6-bottom-circle {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 380px) {
    .v6-bottom-item span {
        display: none;
    }
    .v6-bottom-item i {
        font-size: 1.35rem;
    }
    .v6-bottom-highlight {
        top: -8px;
    }
}

/* Accessibility & SEO Focus Styles */
:focus-visible {
    outline: 2px solid var(--cf-primary) !important;
    outline-offset: 2px !important;
}

/* Print Friendly Rules */
@media print {
    .v6-navbar, .v6-mobile-bottom-bar, .fab-container, #cf-preloader {
        display: none !important;
    }
    body {
        padding: 0 !important;
        background: #ffffff !important;
        color: #000000 !important;
    }
}

/* ==========================================================================
   24. POLISHED SUBPAGE SUITES (CONTACT, PORTFOLIO, FAQ, LEGAL & POLICIES)
   ========================================================================== */

/* --- Contact Us Page Suite --- */
.contact-modern-page {
    position: relative;
    overflow: hidden;
    background: #f8fafc;
}

.contact-hero-section {
    padding: 5.5rem 0 4.5rem 0;
    background: linear-gradient(135deg, #090d1a 0%, #111827 50%, #1e1b4b 100%);
    color: #ffffff;
    position: relative;
}

.contact-glass-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: clamp(24px, 4vw, 44px);
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.05);
    transition: all 0.3s ease;
}

.contact-glass-card:hover {
    box-shadow: 0 20px 40px -10px rgba(15, 23, 42, 0.08);
}

.contact-info-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-item {
    padding: 18px;
    border-radius: 20px;
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    transition: all 0.25s ease;
}

.contact-info-item:hover {
    background: #ffffff;
    border-color: #cbd5e1;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.05);
}

.map-glass-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    padding: 12px;
    box-shadow: 0 15px 35px -5px rgba(15, 23, 42, 0.06);
    overflow: hidden;
}

.map-glass-card .ratio {
    border-radius: 20px;
    overflow: hidden;
}

/* --- Portfolio Page Suite --- */
.portfolio-section {
    padding: 5rem 0 6rem 0 !important;
    background: #f8fafc;
}

.glass-filter {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* --- FAQ Page Suite --- */
.faq-header {
    background: linear-gradient(135deg, #090d1a 0%, #1e1b4b 100%);
    border-radius: 32px;
    padding: clamp(36px, 5vw, 65px) 24px;
    color: #ffffff;
    margin-bottom: 3.5rem;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
}

.search-bar-wrapper {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.search-bar-wrapper .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    font-size: 1.1rem;
    z-index: 2;
}

.search-bar-wrapper input {
    padding: 14px 24px 14px 50px !important;
    border-radius: 50px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #ffffff !important;
    font-size: 1rem !important;
    backdrop-filter: blur(10px);
}

.search-bar-wrapper input::placeholder {
    color: #94a3b8 !important;
}

.search-bar-wrapper input:focus {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: #6366f1 !important;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.25) !important;
    outline: none !important;
}

.faq-nav-pills .nav-link {
    padding: 12px 20px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.92rem;
    color: #475569;
    margin-bottom: 8px;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.faq-nav-pills .nav-link:hover {
    background: #f1f5f9;
    color: #0f172a;
}

.faq-nav-pills .nav-link.active {
    background: #4f46e5 !important;
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.35);
}

.faq-accordion .accordion-item {
    border-radius: 18px !important;
    margin-bottom: 14px;
    border: 1px solid #e2e8f0 !important;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
    padding: 18px 24px;
    background: #ffffff;
    box-shadow: none !important;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #f8fafc;
    color: #4f46e5;
    border-bottom: 1px solid #f1f5f9;
}

.faq-accordion .accordion-body {
    padding: 20px 24px;
    color: #475569;
    line-height: 1.8;
    font-size: 0.98rem;
}

/* --- Legal, Terms & Policy Pages Suite --- */
.legal-modern-page {
    background: #f8fafc;
    min-height: 100vh;
}

.legal-toc-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.04);
}

.legal-toc-card .nav-link {
    color: #64748b;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 8px 14px;
    border-radius: 10px;
    transition: all 0.2s ease;
}

.legal-toc-card .nav-link:hover, .legal-toc-card .nav-link.active {
    color: #4f46e5;
    background: rgba(79, 70, 229, 0.08);
}

.legal-content-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 32px;
    padding: clamp(28px, 5vw, 56px);
    box-shadow: 0 10px 35px -5px rgba(15, 23, 42, 0.05);
}

.legal-section {
    padding-bottom: 1.5rem;
}

.section-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(79, 70, 229, 0.1);
    color: #4f46e5;
    font-size: 0.9rem;
    font-weight: 800;
}

/* ==========================================
   QUOTATION / INQUIRY FORM PAGE
   ========================================== */
.quotation-modern-page {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(165deg, #f0f2f8 0%, #e8ecf6 40%, #f5f3ff 100%);
    overflow: hidden;
}

/* Background Blobs */
.quotation-bg-blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.quotation-bg-blobs .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.35;
}

.quotation-bg-blobs .blob-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.3), transparent 70%);
    top: -10%;
    right: -5%;
}

.quotation-bg-blobs .blob-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.2), transparent 70%);
    bottom: -10%;
    left: -5%;
}

/* Glass Card Container */
.quotation-glass-card {
    position: relative;
    z-index: 1;
    border-radius: 28px;
    overflow: hidden;
    box-shadow:
        0 30px 80px -20px rgba(15, 23, 42, 0.12),
        0 0 0 1px rgba(255, 255, 255, 0.6) inset;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Sidebar (Left Panel) */
.quotation-sidebar {
    background: linear-gradient(165deg, #0f172a 0%, #1e1b4b 45%, #312e81 80%, #4338ca 100%);
    position: relative;
    overflow: hidden;
    flex-direction: column;
}

.quotation-sidebar::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -25%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.quotation-sidebar::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.quotation-sidebar .sidebar-content {
    position: relative;
    z-index: 2;
}

/* Step Numbers */
.quotation-sidebar .step-number {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    color: #a5b4fc;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}

.quotation-sidebar .step-item {
    transition: transform 0.2s ease;
}

.quotation-sidebar .step-item:hover {
    transform: translateX(4px);
}

/* Form Container (Right Panel) */
.quotation-glass-card .form-container {
    border-radius: 0 28px 28px 0;
}

/* Form Header */
.quotation-glass-card .form-header h2 {
    font-size: 1.75rem;
    letter-spacing: -0.03em;
    line-height: 1.3;
}

/* Modern Form Groups */
.quotation-modern-form .form-group-modern,
.quotation-modern-form .form-floating-modern {
    margin-bottom: 0;
}

.quotation-modern-form .form-label {
    font-size: 0.72rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.45rem;
}

/* Input Styling */
.quotation-modern-form .form-control,
.quotation-modern-form .form-select,
.quotation-modern-form input[type="text"],
.quotation-modern-form input[type="email"],
.quotation-modern-form input[type="tel"],
.quotation-modern-form select,
.quotation-modern-form textarea {
    height: 52px;
    border-radius: 16px;
    border: 1.5px solid #e2e8f0;
    padding: 0.7rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: #0f172a;
    background-color: #ffffff;
    transition: all 0.25s ease;
    width: 100%;
}

.quotation-modern-form textarea {
    height: auto;
    min-height: 130px;
    resize: vertical;
}

.quotation-modern-form .form-control:focus,
.quotation-modern-form .form-select:focus,
.quotation-modern-form input:focus,
.quotation-modern-form textarea:focus,
.quotation-modern-form select:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.08);
    outline: none;
    background-color: #ffffff;
}

.quotation-modern-form .form-control::placeholder,
.quotation-modern-form input::placeholder,
.quotation-modern-form textarea::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

/* Select Styling */
.quotation-modern-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2364748b' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
    background-size: 14px 10px;
    padding-right: 2.5rem;
    appearance: none;
    -webkit-appearance: none;
}

/* Captcha Section */
.captcha-container-modern {
    margin-top: 0.5rem;
}

.captcha-card-modern {
    background: linear-gradient(135deg, #f8fafc 0%, #f0f2f8 100%) !important;
    border: 1.5px solid rgba(79, 70, 229, 0.12) !important;
    border-radius: 20px !important;
    padding: 1.75rem !important;
}

.captcha-card-modern .captcha-render-box {
    border-radius: 16px !important;
    border: 1.5px solid #e2e8f0 !important;
    padding: 1rem !important;
    background: #ffffff !important;
}

.captcha-card-modern .captcha-render-box img {
    border-radius: 10px;
    width: 100%;
    max-height: 80px;
    object-fit: contain;
    display: block;
    margin-bottom: 0.75rem;
}

.captcha-card-modern .captcha-render-box input[type="text"] {
    height: 48px;
    border-radius: 14px;
    border: 1.5px solid #e2e8f0;
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    width: 100%;
    transition: all 0.2s ease;
    background: #f8fafc;
}

.captcha-card-modern .captcha-render-box input[type="text"]:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.08);
    outline: none;
    background: #ffffff;
}

/* Privacy checkbox */
.form-check-modern {
    border: 1.5px solid #e2e8f0;
    border-radius: 16px;
    transition: border-color 0.2s ease;
}

.form-check-modern:hover {
    border-color: #cbd5e1;
}

.form-check-modern .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0.15rem;
    border-radius: 6px;
    border: 2px solid #cbd5e1;
    cursor: pointer;
}

.form-check-modern .form-check-input:checked {
    background-color: #4f46e5;
    border-color: #4f46e5;
}

/* Submit Button */
.btn-submit-modern {
    height: 58px;
    border-radius: 18px !important;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #4f46e5 0%, #3730a3 100%) !important;
    border: none !important;
    box-shadow: 0 6px 20px rgba(79, 70, 229, 0.35);
    transition: all 0.3s ease;
}

.btn-submit-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(79, 70, 229, 0.45);
}

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

/* Utility */
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }
.letter-spacing-1 { letter-spacing: 0.06em; }
.shadow-primary { box-shadow: 0 6px 20px rgba(79, 70, 229, 0.3); }

/* Responsive */
@media (max-width: 991.98px) {
    .quotation-glass-card {
        border-radius: 24px;
    }

    .quotation-glass-card .form-container {
        border-radius: 24px;
    }

    .quotation-modern-form .form-control,
    .quotation-modern-form .form-select,
    .quotation-modern-form input[type="text"],
    .quotation-modern-form input[type="email"],
    .quotation-modern-form input[type="tel"],
    .quotation-modern-form select {
        height: 48px;
        border-radius: 14px;
    }

    .btn-submit-modern {
        height: 54px;
        border-radius: 16px !important;
    }
}

@media (max-width: 575.98px) {
    .quotation-glass-card {
        border-radius: 20px;
    }

    .quotation-glass-card .form-container {
        border-radius: 20px;
    }

    .quotation-glass-card .form-header h2 {
        font-size: 1.35rem;
    }

    .captcha-card-modern {
        padding: 1.25rem !important;
    }
}

/* ==========================================
   MODERN ABOUT US SECTION
   ========================================== */
.about-modern-section {
    position: relative;
    padding: 30px 0;
}

.about-modern-wrapper {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92));
    border: 1px solid rgba(226, 232, 240, 0.85);
    border-radius: 36px;
    padding: 60px 52px;
    box-shadow: 0 25px 70px -15px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(255, 255, 255, 0.9) inset;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.about-badge-group {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
}

.about-badge-item {
    display: inline-flex;
    align-items: center;
    padding: 7px 16px;
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
}

.about-badge-item.mission {
    background: rgba(37, 99, 235, 0.08);
    color: #1d4ed8;
    border: 1px solid rgba(37, 99, 235, 0.2);
}

.about-badge-item.inclusive {
    background: rgba(16, 185, 129, 0.08);
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.22);
}

.about-badge-item.location {
    background: rgba(245, 158, 11, 0.08);
    color: #b45309;
    border: 1px solid rgba(245, 158, 11, 0.22);
}

.about-modern-title {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
    letter-spacing: -0.03em;
    margin-bottom: 22px;
}

.about-modern-paragraph {
    font-size: 1.08rem;
    line-height: 1.88;
    color: #334155;
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    margin-bottom: 32px;
    word-spacing: -0.4px;
    letter-spacing: -0.01em;
}

.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.about-pillar-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-pillar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(37, 99, 235, 0.08);
    border-color: rgba(37, 99, 235, 0.3);
}

.about-pillar-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
}

.about-pillar-icon.blue {
    background: #eff6ff;
    color: #2563eb;
}

.about-pillar-icon.green {
    background: #ecfdf5;
    color: #059669;
}

.about-pillar-icon.purple {
    background: #f5f3ff;
    color: #7c3aed;
}

.about-pillar-icon.amber {
    background: #fffbeb;
    color: #d97706;
}

.about-pillar-content h5 {
    font-size: 0.94rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.about-pillar-content p {
    font-size: 0.82rem;
    color: #64748b;
    line-height: 1.48;
    margin-bottom: 0;
}

/* Visual side */
.about-visual-wrapper {
    position: relative;
    padding: 10px;
}

.about-image-card {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.2);
    border: 5px solid #ffffff;
    background: #f8fafc;
}

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

.about-image-card:hover img {
    transform: scale(1.03);
}

.about-floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.14);
    border-radius: 20px;
    z-index: 5;
    transition: all 0.3s ease;
}

.about-floating-badge.bottom-left {
    bottom: -15px;
    left: 20px;
    padding: 16px 20px;
    max-width: 310px;
}

.about-floating-badge.top-right {
    top: 25px;
    right: -10px;
    padding: 12px 18px;
}

.about-floating-badge:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 45px rgba(15, 23, 42, 0.18);
}

/* ==========================================
   FOOTER ABOUT TEXT & ENHANCEMENTS
   ========================================== */
.footer-about-text {
    color: #94a3b8 !important;
    font-size: 0.94rem !important;
    line-height: 1.78 !important;
    margin-bottom: 26px !important;
    text-align: justify !important;
    text-justify: inter-word !important;
    hyphens: auto !important;
    word-spacing: -0.3px;
    letter-spacing: -0.01em;
}

.footer-mission-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.28);
    border-radius: 9999px;
    color: #93c5fd;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-mission-chip .pulse-dot {
    width: 7px;
    height: 7px;
    background: #38bdf8;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
    animation: pulse-dot-anim 2s infinite;
}

@keyframes pulse-dot-anim {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(56, 189, 248, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(56, 189, 248, 0);
    }
}

/* Responsive adjustments for About Us */
@media (max-width: 991.98px) {
    .about-modern-wrapper {
        padding: 40px 24px;
        border-radius: 28px;
    }

    .about-modern-title {
        font-size: 2rem;
    }

    .about-pillars-grid {
        grid-template-columns: 1fr;
    }

    .about-image-card img {
        height: 380px;
    }

    .about-floating-badge.bottom-left {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: -30px;
        margin-left: auto;
        margin-right: auto;
        width: calc(100% - 20px);
        max-width: 100%;
    }

    .about-floating-badge.top-right {
        right: 10px;
        top: 15px;
    }
}

@media (max-width: 575.98px) {
    .about-modern-wrapper {
        padding: 28px 18px;
        border-radius: 22px;
    }

    .about-modern-title {
        font-size: 1.65rem;
    }

    .about-modern-paragraph {
        font-size: 0.98rem;
        line-height: 1.75;
    }

    .about-badge-item {
        font-size: 0.75rem;
        padding: 5px 12px;
    }

    .about-image-card img {
        height: 280px;
    }
}
