/* ----------------------------------------------------------------------
   GLOBAL TOKENS & SYSTEM BASE RESET
---------------------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-deep: #092c74;
    --blue-bright: #0066ff;
    --dark-slate: #0f172a;
    --text-muted: #475569;
    --bg-light: #fafbfe;
    --card-border: rgba(9, 44, 116, 0.06);
    --radius-main: 24px;
    --transition-smooth: all 0.36s cubic-bezier(0.16, 1, 0.3, 1);
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-light);
    color: var(--dark-slate);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}

/* --- BRAND LOGO GLOBAL STRUCTURES --- */
.brand-logo {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.navbar-logo img {
    height: 38px;
    width: auto;
    object-fit: contain;
}
.drawer-logo img, .footer-logo-wrap img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* ----------------------------------------------------------------------
   STICKY HEADER & MAIN NAVIGATION
---------------------------------------------------------------------- */
.site-header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(9, 44, 116, 0.05);
    z-index: 1000;
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Crucial: Allows the mega-menu panel to calculate center space against the entire header bar */
    position: relative; 
}

.desktop-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.menu-item {
    /* Kept relative only for standard simple dropdowns if needed */
    position: initial; 
}

.menu-link {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark-slate);
    text-decoration: none;
    padding: 8px 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.menu-link:hover, 
.menu-item:hover .menu-link {
    color: var(--blue-bright);
}

.menu-link svg {
    transition: var(--transition-smooth);
}

.menu-item:hover .menu-link svg {
    transform: rotate(180deg);
}

/* --- MEGA DROPDOWN SYSTEM (Perfectly Centered & Smooth) --- */
.dropdown-panel {
    position: absolute;
    top: 100%;
    left: 50%;
    /* REDUCED: Brought closer from 15px to 8px so it doesn't gap out on slow movements */
    transform: translateX(-50%) translateY(8px);
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-main);
    box-shadow: 0 30px 60px rgba(9, 44, 116, 0.08);
    padding: 32px;
    display: grid;
    gap: 28px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.3s;
    z-index: 1010;
}

/*
   We make the invisible trigger area taller and pull it upward with a negative top value.
   This catches your slow-moving cursor even if your header link has extra bottom spacing.
*/
.dropdown-panel::before {
    content: '';
    position: absolute;
    top: -35px; /* Reaches up deep into the nav link box */
    left: 0;
    width: 100%;
    height: 40px; /* Generous height to make a flawless hover zone */
    background: transparent; /* Remains entirely invisible */
    pointer-events: auto; /* Ensures it intercepts mouse coordinates */
}

/* Refactored Mega Panel Configuration */
.mega-panel {
    width: calc(100% - 48px);
    max-width: 1200px;
    grid-template-columns: repeat(4, 1fr);
}

/* Unified hovering reveal states */
.menu-item:hover .dropdown-panel {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.dropdown-column h4 {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--navy-deep);
    margin: 0 0 14px 0;
    border-bottom: 1px solid rgba(9, 44, 116, 0.06);
    padding-bottom: 8px;
}

.dropdown-column ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dropdown-column a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: block;
}

.dropdown-column a:hover {
    color: var(--blue-bright);
    transform: translateX(4px);
}

/* =====================================================
   HEADER ACTIONS & MITRA BUTTON STYLING
===================================================== */
.header-actions-group {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-login-link {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-slate);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-smooth);
}

.nav-login-link:hover {
    color: var(--blue-bright);
}

.nav-mitra-btn {
    font-size: 0.9rem;
    font-weight: 600;
    background-color: var(--blue-bright);
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition-smooth);
}

/* =====================================================
   MOBILE USER INTERACTION VIEWS & BREAKPOINTS
===================================================== */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    color: var(--dark-slate);
}

@media (max-width: 991px) {
    .desktop-menu,
    .header-actions-group .nav-login-link, 
    .header-actions-group .nav-mitra-btn {
        display: none !important; 
    }
    .mobile-toggle {
        display: block;
    }
}

/* ----------------------------------------------------------------------
   PREMIUM MOBILE OFFCANVAS MASTER SYSTEM (FLAT ARCHITECTURE)
---------------------------------------------------------------------- */
.offcanvas-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: #ffffff;
    /* Box-shadow removed completely. Replaced with a sharp, premium minimal border line */
    border-left: 1px solid var(--card-border); 
    z-index: 2000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.offcanvas-menu.active {
    right: 0;
}

/* Header Area styling */
.offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 24px 20px 24px;
    border-bottom: 1px solid var(--card-border);
    background: #ffffff;
}

.logo-mobile {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.close-btn {
    background: var(--bg-light);
    border: none;
    cursor: pointer;
    color: var(--dark-slate);
    padding: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.close-btn:hover {
    background: rgba(9, 44, 116, 0.05);
    color: var(--blue-bright);
}

/* Scrollable Container Content */
.offcanvas-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    -webkit-overflow-scrolling: touch;
}

/* Action Portal Badges (Integrated Layout Fix) */
.mobile-actions-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    width: 100%;
}

.mobile-action-login, 
.mobile-action-mitra {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 14px;
    transition: var(--transition-smooth);
}

.mobile-action-login {
    flex: 1;
    color: var(--dark-slate);
    border: 1px solid var(--card-border);
    background-color: #ffffff;
}

.mobile-action-login:hover {
    background-color: var(--bg-light);
    border-color: rgba(9, 44, 116, 0.15);
}

.mobile-action-mitra {
    flex: 1.4;
    color: var(--blue-bright);
    background-color: rgba(0, 102, 255, 0.06);
    border: 1px solid rgba(0, 102, 255, 0.08);
}

.mobile-action-mitra:hover {
    background-color: var(--blue-bright);
    color: #ffffff;
}

/* Navigation Links & Accordion Elements */
.offcanvas-nav {
    display: flex;
    flex-direction: column;
}

.mobile-menu-item {
    border-bottom: 1px solid rgba(9, 44, 116, 0.04);
}

.mobile-menu-link {
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--dark-slate);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    padding: 16px 0;
    transition: var(--transition-smooth);
}

.mobile-menu-link:hover {
    color: var(--blue-bright);
}

/* Interactive Caret Rotation Animation */
.accordion-caret {
    color: var(--text-muted);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-item.active .accordion-caret {
    transform: rotate(180deg);
    color: var(--blue-bright);
}

/* Inner Accordion Multi-Level Area */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-submenu.open {
    max-height: 1200px; /* High threshold cap to fit variable contents */
}

.submenu-inner-block {
    padding: 4px 0 20px 14px;
    border-left: 2px solid rgba(0, 102, 255, 0.08);
    margin-left: 4px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-submenu h5 {
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    color: var(--navy-deep);
    margin: 18px 0 6px 0;
}

.mobile-submenu h5:first-of-type {
    margin-top: 8px;
}

.mobile-submenu a {
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    padding: 6px 0;
    display: block;
    transition: var(--transition-smooth);
}

.mobile-submenu a:hover {
    color: var(--blue-bright);
    transform: translateX(2px);
}

/* Dark Background Blur Overlay mask */
.offcanvas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(15, 23, 42, 0.25);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s;
}

.offcanvas-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ----------------------------------------------------------------------
   PREMIUM FULL BACKGROUND HERO SECTION
---------------------------------------------------------------------- */

.hero-wrapper {
    position: relative;
    overflow: hidden;

    min-height: 92vh;

    padding: 120px 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    /* HERO BACKGROUND IMAGE */
    background:
        linear-gradient(
            135deg,
            rgba(5, 18, 52, 0.92) 0%,
            rgba(5, 18, 52, 0.82) 35%,
            rgba(5, 18, 52, 0.65) 65%,
            rgba(5, 18, 52, 0.55) 100%
        ),
        url('../img/hero-bg.png');

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* SOFT BLUE RADIAL GLOW */
.hero-wrapper::before {
    content: '';

    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at top center,
            rgba(37, 99, 235, 0.18),
            transparent 40%
        );

    pointer-events: none;
}
/* ----------------------------------------------------------------------
   MAIN CONTAINER
---------------------------------------------------------------------- */

.hero-container {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1100px;

    margin: 0 auto;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* REMOVE IMAGE SIDE */
.hero-visual-side {
    display: none;
}

/* ----------------------------------------------------------------------
   CONTENT SIDE
---------------------------------------------------------------------- */

.hero-content-side {
    width: 100%;
    max-width: 900px;

    display: flex;
    flex-direction: column;

    align-items: center;
    text-align: center;

    opacity: 0;
    transform: translateY(30px);

    animation: heroFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* ----------------------------------------------------------------------
   HERO BADGE
---------------------------------------------------------------------- */

.hero-content-side .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 12px 20px;

    background: rgba(255,255,255,0.08);

    border: 1px solid rgba(255,255,255,0.12);

    backdrop-filter: blur(14px);

    color: #ffffff;

    border-radius: 999px;

    font-size: 13px;
    font-weight: 700;

    letter-spacing: 0.4px;

    margin-bottom: 30px;

    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.hero-content-side .hero-badge i {
    color: #3b82f6;
}

/* ----------------------------------------------------------------------
   HERO HEADING
---------------------------------------------------------------------- */

.hero-content-side h1 {
    font-size: 68px;
    font-weight: 800;

    line-height: 1.08;
    letter-spacing: -3px;

    color: #ffffff;

    margin-bottom: 28px;

    max-width: 980px;
}

.hero-content-side h1 span {
    color: #3b82f6;
}

/* ----------------------------------------------------------------------
   HERO DESCRIPTION
---------------------------------------------------------------------- */

.hero-content-side p {
    font-size: 18px;
    line-height: 1.9;

    color: rgba(255,255,255,0.78);

    max-width: 760px;

    margin-bottom: 46px;
}

/* ----------------------------------------------------------------------
   ACTION BUTTONS
---------------------------------------------------------------------- */

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    flex-wrap: wrap;
}

/* PRIMARY CTA */

.hero-actions .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 32px;

    background: linear-gradient(
        135deg,
        #2563eb,
        #1d4ed8
    );

    color: #ffffff;
    text-decoration: none;

    border-radius: 14px;

    font-size: 15px;
    font-weight: 700;

    transition: all 0.35s ease;

    box-shadow: 0 14px 34px rgba(37, 99, 235, 0.28);
}

.hero-actions .nav-cta:hover {
    transform: translateY(-3px);

    box-shadow: 0 20px 45px rgba(37, 99, 235, 0.38);
}

/* SECONDARY BUTTON */

/* ----------------------------------------------------------------------
   SECONDARY HERO BUTTON
---------------------------------------------------------------------- */

.hero-secondary-btn {
    position: relative;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 16px 28px;

    background: rgba(255, 255, 255, 0.08);

    border: 1px solid rgba(255, 255, 255, 0.14);

    backdrop-filter: blur(14px);

    color: #ffffff;

    text-decoration: none;

    border-radius: 14px;

    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.2px;

    transition:
        background 0.35s ease,
        border-color 0.35s ease,
        transform 0.35s ease,
        box-shadow 0.35s ease,
        color 0.35s ease;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.10);

    overflow: hidden;
}

/* ICON */
.hero-secondary-btn i {
    font-size: 18px;
    transition: transform 0.35s ease;
}

/* HOVER EFFECT */
.hero-secondary-btn:hover {
    background: rgba(255, 255, 255, 0.14);

    border-color: rgba(255, 255, 255, 0.24);

    color: #ffffff;

    transform: translateY(-3px);

    box-shadow:
        0 18px 40px rgba(0, 0, 0, 0.16);
}

/* ICON ANIMATION */
.hero-secondary-btn:hover i {
    transform: translateX(3px);
}

/* ACTIVE STATE */
.hero-secondary-btn:active {
    transform: translateY(0);
}

/* FOCUS ACCESSIBILITY */
.hero-secondary-btn:focus-visible {
    outline: 2px solid rgba(96, 165, 250, 0.8);
    outline-offset: 3px;
}

/* ----------------------------------------------------------------------
   ANIMATION
---------------------------------------------------------------------- */

@keyframes heroFadeUp {

    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ----------------------------------------------------------------------
   RESPONSIVE
---------------------------------------------------------------------- */

@media (max-width: 992px) {

    .hero-wrapper {
        padding: 100px 20px;
        min-height: auto;
    }

    .hero-content-side h1 {
        font-size: 52px;
        letter-spacing: -2px;
    }

    .hero-content-side p {
        font-size: 17px;
    }
}

@media (max-width: 768px) {

    .hero-wrapper {
        padding: 90px 16px;
    }

    .hero-content-side h1 {
        font-size: 38px;
        line-height: 1.15;
        letter-spacing: -1.5px;
    }

    .hero-content-side p {
        font-size: 16px;
        line-height: 1.8;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
        gap: 16px;
    }

    .hero-actions .nav-cta {
        width: 100%;
    }
}

/* =====================================================
   AUTHORITY METRICS & WORKFLOW SECTION
===================================================== */
.authority-section {
    background-color: var(--bg-light);
    padding: 80px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.authority-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* =====================================================
   PREMIUM TRUST METRICS ROW STYLING
===================================================== */
.metrics-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-main);
    padding: 40px 32px;
    box-shadow: 0 20px 50px -25px rgba(9, 44, 116, 0.05);
    margin-bottom: 80px;
    align-items: center;
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 0 24px;
    position: relative;
}

/* Elegant vertical line dividers between information steps */
.metric-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--card-border), transparent);
}

/* Left side icon indicator */
.metric-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background-color: rgba(0, 102, 255, 0.05);
    color: var(--blue-bright);
    border-radius: 14px;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.metric-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.metric-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-slate);
    line-height: 1;
    letter-spacing: -0.03em;
}

.metric-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    line-height: 1.3;
    white-space: nowrap;
}

/* =====================================================
   RESPONSIVE METRIC ADJUSTMENTS
===================================================== */
@media (max-width: 1100px) {
    .metrics-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
        padding: 40px 24px;
    }
    
    /* Re-map dividers into a clean 2x2 layout matrix boundary */
    .metric-item:nth-child(2)::after {
        display: none;
    }
    .metric-item:padding {
        padding: 0 16px;
    }
}

@media (max-width: 640px) {
    .metrics-bar {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 20px;
    }
    
    .metric-item {
        padding: 0 8px;
    }
    
    .metric-item::after {
        display: none !important;
    }
    
    .metric-label {
        white-space: normal;
    }
}

/* --- Section Divider --- */
.section-divider-light {
    border: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--card-border), transparent);
    margin: 0 0 60px 0;
}

/* --- Section Typography Header --- */
.workflow-wrapper {
    width: 100%;
}

.workflow-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px auto;
}

.workflow-subtitle {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--blue-bright);
    margin-bottom: 12px;
}

.workflow-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark-slate);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.workflow-header p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* --- Steps Activation Grid --- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.step-card {
    position: relative;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-main);
    padding: 40px 32px;
    transition: var(--transition-smooth);
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px -24px rgba(9, 44, 116, 0.12);
    border-color: rgba(0, 102, 255, 0.2);
}

.step-number {
    position: absolute;
    top: 24px;
    right: 32px;
    font-size: 2.75rem;
    font-weight: 900;
    color: rgba(9, 44, 116, 0.05);
    line-height: 1;
    user-select: none;
    transition: var(--transition-smooth);
}

.step-card:hover .step-number {
    color: rgba(0, 102, 255, 0.08);
}

.step-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background-color: rgba(0, 102, 255, 0.06);
    border-radius: 16px;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.step-icon i {
    font-size: 1.5rem;
    color: var(--blue-bright);
}

.step-card:hover .step-icon {
    background-color: var(--blue-bright);
}

.step-card:hover .step-icon i {
    color: #ffffff;
}

.step-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-slate);
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =====================================================
   RESPONSIVE DESIGN BREAKPOINTS
===================================================== */
@media (max-width: 1024px) {
    
    .steps-grid {
        gap: 24px;
    }
}

@media (max-width: 768px) {
    .authority-section {
        padding: 60px 0;
    }

    .workflow-header h2 {
        font-size: 1.85rem;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===================================================
   SERVICES SHOWCASE
=================================================== */

.services-showcase {
    position: relative;
    padding: 110px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f7faff 100%);
    overflow: hidden;
}

.services-showcase::before {
    content: '';
    position: absolute;
    top: -220px;
    right: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.08), transparent 70%);
    pointer-events: none;
}

.services-showcase::after {
    content: '';
    position: absolute;
    bottom: -220px;
    left: -120px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(9, 44, 116, 0.08), transparent 70%);
    pointer-events: none;
}

/* ===================================================
   SECTION HEADER
=================================================== */

.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(9, 44, 116, 0.08);
    color: var(--navy-deep);
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 18px;
    border: 1px solid rgba(9, 44, 116, 0.08);
}

.section-heading {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--dark-slate);
    margin-bottom: 18px;
    letter-spacing: -1px;
}

.section-heading span {
    color: var(--navy-deep);
}

.section-subtitle {
    max-width: 760px;
    margin: auto;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-muted);
}

/* ===================================================
   SERVICE CARD (Centered Alignment)
=================================================== */

.service-card {
    position: relative;
    height: 100%;
    /* Generous padding for an airy, premium look */
    padding: 40px 28px; 
    /* Smoother, high-end rounded corners matching your image mockup */
    border-radius: 32px; 
    background: #fff;
    border: 1px solid rgba(9, 44, 116, 0.06);
    overflow: hidden;
    
    /* Premium transition curve for an ultra-smooth lifting feel */
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    
    /* Keeps your perfect centered structural layout intact */
    display: flex;
    flex-direction: column;
    align-items: center; 
}

.service-card:hover {
    /* Smooth, controlled premium vertical lift */
    transform: translateY(-8px);
    border-color: rgba(0, 102, 255, 0.15);
    
    /* Immersive, modern, multi-layered premium shadow on hover */
    box-shadow: 
        0 30px 60px -12px rgba(9, 44, 116, 0.12),
        0 12px 24px -6px rgba(9, 44, 116, 0.04);
}

/* ===================================================
   SERVICE ICON COVER BOX (Updated to match wrapper class)
=================================================== */

.service-icon-wrapper {
    width: 92px;
    height: 92px;
    border-radius: 24px;
    background: #081b4c; /* The deep dark navy background from your image */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    overflow: hidden;
    
    /* Centers it horizontally when inside the centered card layout */
    margin-left: auto;
    margin-right: auto;
}

/* Inside white icon constraint */
.service-icon-wrapper img {
    width: 100px;  /* Adjusted so it stays properly visible inside the box */
    height: 100px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

/* Pop-out scaling animation on card hover */
.service-card:hover .service-icon-wrapper img {
    transform: scale(1.08);
}

/* ===================================================
   CARD TITLE (Centered)
=================================================== */

.service-card h4 {
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark-slate);
    margin-bottom: 24px;
    text-align: center; /* Centered title text */
}

/* ===================================================
   DETAILS LIST (Left Aligned inside centered wrapper)
=================================================== */

.service-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%; /* Forces list bounding box to expand to card margins */
    align-self: flex-start; /* Aligns textual rows nicely to the left */
}

.service-card ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 14px;
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
}

.service-card ul li:last-child {
    margin-bottom: 0;
}

/* Custom indicator dot bullet styles matching the UI snippet */
.service-card ul li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #2563eb;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
}

/* ===================================================
   RESPONSIVE MEDIA QUERIES
=================================================== */

@media (max-width: 1199px) {
    .section-heading {
        font-size: 46px;
    }
    .service-card {
        padding: 30px 22px;
    }
}

@media (max-width: 991px) {
    .services-showcase {
        padding: 90px 0;
    }
    .section-heading {
        font-size: 40px;
    }
    .service-card h4 {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .services-showcase {
        padding: 75px 0;
    }
    .section-heading {
        font-size: 32px;
    }
    .section-subtitle {
        font-size: 15px;
        line-height: 1.8;
    }
    .service-card {
        padding: 26px 20px;
        border-radius: 22px;
    }
    .service-icon {
        width: 80px;
        height: 80px;
        border-radius: 18px;
    }
    .service-icon img {
        width: 36px;
        height: 36px;
    }
    .service-card h4 {
        font-size: 19px;
    }
}

@media (max-width: 575px) {
    .services-showcase {
        padding: 65px 0;
    }
    .section-heading {
        font-size: 28px;
    }
    .service-card {
        padding: 24px 18px;
    }
    .service-card ul li {
        font-size: 13.5px;
    }
}

/* ======================================================================
   1. CONTACT DESK & ENQUIRY ARCHITECTURE (PREMIUM DARK VARIANT)
====================================================================== */
.contact-section {
    background: #051234; /* Transformed to align with your core dark platform color */
    padding: 80px 24px; 
    position: relative;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.contact-container {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 100px; 
    align-items: flex-start;
}

.contact-header-block {
    margin-bottom: 56px; 
}

.contact-subtitle {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: #38bdf8; /* High-visibility soft neon sky blue balanced for dark backdrops */
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 20px;
    background: rgba(56, 189, 248, 0.08); /* Clean, glowing badge base tint */
    padding: 6px 16px;
    border-radius: 50px;
}

.contact-info-panel h2 {
    font-size: 2.75rem;
    font-weight: 800;
    color: #ffffff; /* High contrast text pop */
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 20px;
}

.contact-info-panel p {
    color: #94a3b8; /* Calibrated mid-tone grey for smooth editorial reading */
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0;
}

.info-node-list {
    display: flex;
    flex-direction: column;
    gap: 40px; 
}

.info-node-item {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.info-node-icon {
    font-size: 1.35rem;
    color: #38bdf8; 
    background: rgba(255, 255, 255, 0.03);
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.info-node-details h5 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff; /* High contrast node titles */
    margin: 0 0 8px 0;
}

.info-node-details p {
    font-size: 0.98rem;
    color: #94a3b8; 
    line-height: 1.55;
    margin: 0;
}

.info-node-details a {
    color: #cbd5e1; /* White-slate link fallback */
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.info-node-details a:hover {
    color: #38bdf8;
}

/* Right Side Form Panel (Kept Clean Flat White Architecture) */
.contact-form-panel {
    background: #ffffff; /* Maintained for exceptional workspace scannability */
    border: 1px solid var(--card-border);
    padding: 56px;
    border-radius: 28px;
}

.enquiry-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-row-dual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: var(--dark-slate); /* Standard dark color over white panel background */
    letter-spacing: 0.25px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    font-family: inherit;
    font-size: 0.95rem;
    padding: 16px 20px;
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 14px;
    color: var(--dark-slate);
    outline: none;
    transition: all 0.2s ease-in-out;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #94a3b8;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--blue-bright);
    background: #ffffff;
}

.form-submit-btn {
    font-family: inherit;
    background: var(--blue-bright);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.98rem;
    padding: 18px 32px;
    border: 1px solid transparent;
    border-radius: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.25s ease-in-out;
    margin-top: 12px;
    align-self: flex-start;
}

.btn-arrow {
    transition: transform 0.25s ease-in-out;
}

.form-submit-btn:hover {
    background: #0052cc;
    transform: translateY(-1px);
}

.form-submit-btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* ======================================================================
   2. FLOATING PARTNERSHIP BRIDGE (TAX MITRA CTA)
====================================================================== */
.mitra-bridge-section {
    max-width: 1250px;
    margin: 0 auto -80px auto; 
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

.mitra-bridge-container {
    background: #ffffff;
    border: 1px solid var(--card-border);
    border-radius: 28px;
    padding: 64px;
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 48px;
    align-items: center;
}

.bridge-tag {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--blue-bright);
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 14px;
    background: rgba(0, 102, 255, 0.06);
    padding: 6px 14px;
    border-radius: 50px;
}

.mitra-bridge-content h2 {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--dark-slate);
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin: 0 0 14px 0;
}

.mitra-bridge-content p {
    color: var(--text-muted);
    font-size: 1.02rem;
    line-height: 1.6;
    margin: 0;
    max-width: 640px;
}

.mitra-bridge-action {
    display: flex;
    justify-content: flex-end;
}

.bridge-btn {
    background: var(--blue-bright);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.98rem;
    padding: 18px 36px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.25s ease-in-out;
    white-space: nowrap;
}

.bridge-arrow {
    transition: transform 0.25s ease-in-out;
}

.bridge-btn:hover {
    background: #0052cc;
    transform: translateY(-1px);
}

.bridge-btn:hover .bridge-arrow {
    transform: translateX(4px);
}

/* ======================================================================
   3. PRODUCTION CORE SITE FOOTER (PREMIUM DARK VARIANT)
====================================================================== */
footer {
    background: #051234; 
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    padding: 160px 24px 48px; /* Balanced height distribution */
}

.footer-grid {
    max-width: 1250px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 56px;
    padding-bottom: 64px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-brand p {
    font-size: 14px;
    color: #94a3b8; 
    margin-top: 20px;
    line-height: 1.65;
    max-width: 300px;
}

.drawer-logo img,
.footer-brand img {
    filter: brightness(0) invert(1);
}

.footer-col h4 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff; 
    margin-bottom: 28px;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-col a {
    font-size: 14.5px;
    color: #94a3b8; 
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-col a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

/* =====================================================
   PREMIUM SUBTLE FOOTER DIVIDER
===================================================== */
.footer-divider {
    height: 1px;
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
    border: none;
    /* Soft glowing gradient that fades out beautifully at the edges */
    background: linear-gradient(
        to right, 
        transparent, 
        rgba(255, 255, 255, 0.08) 20%, 
        rgba(255, 255, 255, 0.08) 80%, 
        transparent
    );
}

.footer-bottom {
    max-width: 1250px;
    margin: 0 auto;
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #64748b; 
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.copyright-group {
    display: flex;
    flex-wrap: wrap;
    gap: 4px 16px;
    align-items: center;
}

.developer-credit {
    font-size: 13px;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.dev-anchor {
    color: #cbd5e1; 
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.dev-anchor:hover {
    color: #ffffff;
}

.footer-socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

.footer-socials a {
    color: #94a3b8;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.03); 
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.footer-socials a:hover {
    color: #ffffff;
    background: var(--blue-bright);
    border-color: transparent;
    transform: translateY(-2px);
}

/* ======================================================================
   4. RESPONSIVE SITE MEDIA QUERIES
====================================================================== */
@media (max-width: 1100px) {
    .desktop-menu, 
    .nav-container .nav-cta {
        display: none !important;
    }
    .mobile-toggle {
        display: block;
    }
    .services-grid-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    .contact-container {
        grid-template-columns: 1fr;
        gap: 64px;
    }
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 48px;
    }
}

@media (max-width: 991px) {
    .contact-section {
        padding: 100px 20px;
    }
    .contact-form-panel {
        padding: 40px;
    }
    .mitra-bridge-container {
        padding: 56px 40px;
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }
    .mitra-bridge-content p {
        margin: 0 auto;
    }
    .mitra-bridge-action {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 42px;
    }
    .services-section {
        padding: 50px 16px;
    }
    .services-grid-wrapper {
        grid-template-columns: 1fr;
    }
    .category-block {
        padding: 32px 24px;
    }
    .contact-section {
        padding: 80px 16px;
    }
    .contact-form-panel {
        padding: 36px 24px;
    }
    .form-row-dual {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 680px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 28px;
        text-align: center;
    }
    .copyright-group,
    .footer-socials {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .mitra-bridge-section {
        margin-bottom: -100px; 
    }
    .mitra-bridge-container {
        padding: 40px 24px;
        border-radius: 24px;
    }
    .mitra-bridge-content h2 {
        font-size: 1.8rem;
    }
    .bridge-btn,
    .form-submit-btn {
        width: 100%;
        justify-content: center;
    }
    .contact-info-panel h2 {
        font-size: 2.2rem;
    }
}