/* ============================================
   NATINDO CARGO - STANDARDIZED DESIGN SYSTEM
   Base Reference: home_v2 (home_new.css)
   ============================================ */

:root {
    /* Primary Colors */
    --primary-blue: #0690d1;
    --primary-blue-hover: #0578b8;
    --primary-blue-gradient: linear-gradient(135deg, #00A4E4, #0066CC);
    --primary-blue-light: rgba(6, 144, 209, 0.1);
    --primary-blue-service: #009fe3;
    --primary-green: #107548;
    --primary-green-light: rgba(16, 117, 72, 0.1);

    /* Text Colors */
    --text-dark: #1e1e1e;
    --text-medium-gray: #666666;
    --text-dark-gray: #333333;
    --text-light-gray: #f5f5f5;
    --text-white: #ffffff;
    --text-muted: #888888;

    /* Background Colors */
    --background-gray: #f4f5fb;
    --background-white: #ffffff;
    --background-light: #f8f9fa;
    --background-blue-light: #d3eefc;

    /* Borders & Radii */
    --border-color: #e0e0e0;
    --border-color-light: #e5e5e5;
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    --border-radius-button: 44px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-button: 0 4px 14px rgba(0, 164, 228, 0.3);
    --shadow-button-hover: 0 6px 20px rgba(0, 102, 204, 0.4);

    /* Typography Settings */
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
}

/* 1. GLOBAL TYPOGRAPHY STANDARDIZATION */
html, body, p, div, span, a, button, input, select, textarea {
    font-family: var(--font-family) !important;
}

body {
    color: var(--text-dark);
    line-height: 1.65;
    font-size: 1rem;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
}

/* Base Headings - Typography sizes & weights (without forcing dark color on dark backgrounds) */
h1, .h1 {
    font-family: var(--font-family) !important;
    font-weight: 700 !important;
    font-size: 2.5rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h2, .h2 {
    font-family: var(--font-family) !important;
    font-weight: 700 !important;
    font-size: 2rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

h3, .h3 {
    font-family: var(--font-family) !important;
    font-weight: 600 !important;
    font-size: 1.5rem;
    line-height: 1.35;
}

h4, .h4 {
    font-family: var(--font-family) !important;
    font-weight: 600 !important;
    font-size: 1.25rem;
    line-height: 1.4;
}

h5, .h5 {
    font-family: var(--font-family) !important;
    font-weight: 600 !important;
    font-size: 1.1rem;
    line-height: 1.4;
}

h6, .h6 {
    font-family: var(--font-family) !important;
    font-weight: 600 !important;
    font-size: 1rem;
    line-height: 1.4;
}

p {
    font-family: var(--font-family) !important;
    font-size: 1rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

/* Contrast Control: Light vs Dark Backgrounds */
/* Dark Background Containers & White Text Modifiers -> ALWAYS WHITE TEXT */
.text-white,
.text-white h1, .text-white h2, .text-white h3, .text-white h4, .text-white h5, .text-white h6,
.text-white p, .text-white span, .text-white a:not(.btn),
.banner h1, .banner h2, .banner h3, .banner p,
.hero-section h1, .hero-section h2, .hero-section h3, .hero-section p,
.pricelist-container h1, .pricelist-container h2, .pricelist-container h3, .pricelist-container h4, .pricelist-container p,
.background-overlay-blue h1, .background-overlay-blue h2, .background-overlay-blue h3, .background-overlay-blue h4, .background-overlay-blue p,
.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4, .bg-dark p,
.bg-primary h1, .bg-primary h2, .bg-primary h3, .bg-primary h4, .bg-primary p {
    color: #ffffff !important;
}

/* Light Background Containers -> DARK TEXT */
body:not(.dark-mode) h1:not(.text-white),
body:not(.dark-mode) h2:not(.text-white),
body:not(.dark-mode) h3:not(.text-white),
body:not(.dark-mode) h4:not(.text-white),
body:not(.dark-mode) h5:not(.text-white),
body:not(.dark-mode) h6:not(.text-white) {
    color: var(--text-dark);
}

.custom-text-4 {
    color: var(--text-medium-gray);
}

/* 2. BUTTON STANDARDIZATION */
.custom-btn,
.btn-primary-custom,
.btn-outline-custom,
.btn-price-custom,
.btn-cta-primary,
.btn-cta-outline {
    font-family: var(--font-family) !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    border-radius: var(--border-radius-button) !important;
    height: 48px !important;
    min-height: 48px !important;
    padding: 0 1.75rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    box-sizing: border-box !important;
    line-height: 1 !important;
    transition: all var(--transition-normal) !important;
    text-decoration: none !important;
    cursor: pointer;
}

.custom-btn,
.btn-primary-custom,
.btn-price-custom,
.btn-cta-primary {
    background: var(--primary-blue-gradient) !important;
    color: var(--text-white) !important;
    border: 2px solid transparent !important;
    box-shadow: var(--shadow-button) !important;
}

.custom-btn:hover,
.btn-primary-custom:hover,
.btn-price-custom:hover,
.btn-cta-primary:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-button-hover) !important;
    color: var(--text-white) !important;
    text-decoration: none !important;
    opacity: 0.95;
}

.btn-outline-custom,
.btn-cta-outline {
    background: transparent !important;
    color: var(--primary-blue) !important;
    border: 2px solid var(--primary-blue) !important;
}

.btn-outline-custom:hover,
.btn-cta-outline:hover {
    background: var(--primary-blue) !important;
    color: var(--text-white) !important;
    transform: translateY(-2px) !important;
    text-decoration: none !important;
}

/* 3. CARD & CONTAINER STANDARDIZATION */
.service-card,
.country-card,
.feature-card {
    border-radius: var(--border-radius-lg) !important;
    transition: all var(--transition-normal) !important;
}

/* 4. RESPONSIVE TYPOGRAPHY & HERO BANNERS (MOBILE) */
@media (max-width: 768px) {
    h1, .h1, .banner .container h1, #text-service-header {
        font-size: 1.75rem !important;
        line-height: 1.3 !important;
    }
    h2, .h2 {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
    }
    h3, .h3 {
        font-size: 1.25rem !important;
    }
    p, .custom-text-4 {
        font-size: 0.95rem !important;
    }

    /* Mobile Hero Banner Container & Background */
    .banner {
        min-height: 320px;
    }

    .banner .background {
        min-height: 360px !important;
        max-height: none !important;
        object-fit: cover !important;
    }

    .banner .container {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
        width: 100% !important;
    }

    /* Mobile Buttons */
    .hero-cta,
    .custom-btn,
    .btn-primary-custom,
    .btn-outline-custom,
    .btn-price-custom,
    .btn-cta-primary,
    .btn-cta-outline {
        height: 44px !important;
        min-height: 44px !important;
        padding: 0 1.25rem !important;
        font-size: 0.86rem !important;
        box-sizing: border-box !important;
        line-height: 1 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-right: 0.35rem !important;
        margin-bottom: 0.5rem !important;
    }
}

/* 5. SEO CATEGORY CARD COMPONENT (ULTRA-MODERN home_v2 DESIGN SYSTEM) */
.category-card-box {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.category-card-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00A4E4, #0066CC);
    opacity: 0.85;
    transition: opacity 0.3s ease, height 0.3s ease;
}

.category-card-box:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(0, 164, 228, 0.6);
    box-shadow: 0 20px 40px rgba(0, 102, 204, 0.28);
}

.category-card-box:hover::before {
    height: 6px;
    opacity: 1;
}

.category-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, #00A4E4 0%, #0056B3 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    color: #ffffff;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 20px rgba(0, 164, 228, 0.35);
    transition: transform 0.35s ease;
}

.category-card-box:hover .category-card-icon {
    transform: scale(1.1) rotate(3deg);
}

.category-card-title {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin-bottom: 0.6rem !important;
    line-height: 1.35 !important;
    letter-spacing: -0.01em;
}

.category-card-desc {
    font-size: 0.88rem !important;
    color: rgba(255, 255, 255, 0.85) !important;
    line-height: 1.55 !important;
    margin: 0 !important;
    font-weight: 400 !important;
}

/* Mobile 2-column Category Card Optimization */
@media (max-width: 767.98px) {
    .category-card-box {
        padding: 1.15rem 0.95rem;
        border-radius: 16px;
    }
    .category-card-icon {
        width: 42px;
        height: 44px;
        font-size: 1.15rem;
        border-radius: 12px;
        margin-bottom: 0.75rem;
    }
    .category-card-title {
        font-size: 0.98rem !important;
        margin-bottom: 0.35rem !important;
    }
    .category-card-desc {
        font-size: 0.78rem !important;
        line-height: 1.45 !important;
    }
}

.hero-service-section {
    background-size: cover !important;
    background-position: center right !important;
    background-repeat: no-repeat !important;
    margin-top: 67px;
    position: relative;
    overflow: hidden;
}

.hero-main-content-wrap {
    padding: 1rem 0 2.5rem 0;
}

@media (min-width: 992px) {
    .hero-service-section {
        min-height: 640px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    .hero-main-content-wrap {
        flex: 1;
        display: flex;
        align-items: center;
        padding: 6rem 0 5rem 0;
    }
}

/* Desktop View (>= 1200px): 0-40% soft white, 40-60% fading, 60-100% murni clear */
@media (min-width: 1200px) {
    .hero-service-section {
        background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 40%, rgba(255, 255, 255, 0) 60%), var(--hero-bg-img);
    }
}

/* Tablet View (992px - 1199.98px): 0-50% soft white, 50-70% fading, 70-100% murni clear */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero-service-section {
        background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 50%, rgba(255, 255, 255, 0) 70%), var(--hero-bg-img);
    }
}

.service-badge-pill {
    background: rgba(6, 144, 209, 0.08);
    border: 1px solid rgba(6, 144, 209, 0.25);
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    padding: 0.35rem 1.1rem;
    border-radius: 50px;
    display: inline-block;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.hero-service-title {
    font-size: 3.35rem !important;
    font-weight: 800 !important;
    color: #1a1a2e !important;
    line-height: 1.2 !important;
    margin-bottom: 1.25rem !important;
    letter-spacing: -0.02em;
}

.hero-service-title .text-highlight-yellow,
.hero-service-title .text-highlight-blue {
    color: var(--primary-blue) !important;
}

.hero-service-desc {
    font-size: 1.05rem !important;
    color: #4b5563 !important;
    line-height: 1.65 !important;
    margin-bottom: 2rem !important;
    max-width: 600px;
}

.hero-feature-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.85rem;
    margin-top: 1.5rem;
    margin-bottom: 0;
}

.hero-feature-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.35rem 0.95rem;
    background: rgba(241, 245, 249, 0.75);
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    font-size: 0.83rem;
    font-weight: 500;
    color: #475569;
    box-shadow: none;
    transition: all 0.2s ease;
    cursor: default;
}

.hero-feature-item:hover {
    background: #ffffff;
    border-color: rgba(6, 144, 209, 0.3);
    color: #1e293b;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.hero-feature-item i {
    width: auto;
    height: auto;
    border-radius: 0;
    background: transparent;
    color: var(--primary-blue);
    display: inline-block;
    font-size: 0.88rem;
    flex-shrink: 0;
    transition: none;
}

.hero-feature-item:hover i {
    transform: none;
    background: transparent;
    color: var(--primary-blue);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.hero-service-img-wrap {
    position: relative;
    text-align: right;
}

.hero-service-img-wrap img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Hero Stats Bar (Clean Translucent Light Blend) */
.hero-stats-bar {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #1a1a2e;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(6, 144, 209, 0.12);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.03);
}

.hero-stat-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.hero-stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(6, 144, 209, 0.12) 0%, rgba(0, 102, 204, 0.08) 100%);
    border: 1px solid rgba(6, 144, 209, 0.2);
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.hero-stat-number {
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-blue);
}

.hero-stat-label {
    font-size: 0.84rem;
    color: #4b5563;
    font-weight: 500;
}

@media (max-width: 991.98px) {
    .hero-service-section {
        background-image: none !important;
        background-color: #f8fafc !important;
        padding: 1rem 0 2rem 0 !important;
        text-align: left;
    }
    .hero-service-desc {
        margin-left: 0;
        margin-right: 0;
    }
    .hero-feature-highlights {
        justify-content: flex-start;
        gap: 0.6rem 0.75rem;
    }
    .hero-feature-item {
        padding: 0.45rem 0.95rem 0.45rem 0.5rem;
        font-size: 0.82rem;
    }
    .hero-feature-item i {
        width: 26px;
        height: 26px;
        font-size: 0.78rem;
    }
    .hero-cta-group {
        justify-content: flex-start;
    }
    .hero-service-title {
        font-size: 1.85rem !important;
    }
    .hero-mobile-img-card {
        position: relative;
        text-align: center;
        margin-bottom: 1.5rem;
        margin-top: 0;
    }
    .hero-mobile-img-card img {
        width: 100%;
        max-width: 100%;
        max-height: 250px;
        object-fit: cover;
        border-radius: 16px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
        border: 1px solid #cbd5e1;
        display: block;
    }
    .hero-mobile-badge {
        position: absolute;
        bottom: -12px;
        left: 16px;
        margin-bottom: 0 !important;
        background: linear-gradient(135deg, #00A4E4 0%, #0056B3 100%) !important;
        color: #ffffff !important;
        border: 2px solid #ffffff !important;
        box-shadow: 0 6px 18px rgba(0, 164, 228, 0.4) !important;
        font-weight: 800 !important;
        font-size: 0.76rem !important;
        letter-spacing: 0.06em !important;
        padding: 0.4rem 1.25rem !important;
        z-index: 10;
    }
}

/* 7. WHY CHOOSE US & IMPORT PROCESS SECTIONS */
.service-why-section {
    padding: 5rem 0;
    background: #ffffff;
}

.service-why-card {
    background: #ffffff;
    border: 1px solid #eef2f6;
    border-radius: 20px;
    padding: 2.25rem 1.75rem;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.service-why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0, 164, 228, 0.15);
    border-color: rgba(6, 144, 209, 0.3);
}

.service-why-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, #00A4E4 0%, #0066CC 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    box-shadow: 0 8px 20px rgba(0, 164, 228, 0.3);
}

.service-why-card-title {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #1a1a2e !important;
    margin-bottom: 0.75rem !important;
}

.service-why-card-desc {
    font-size: 0.92rem !important;
    color: #6b7280 !important;
    line-height: 1.6 !important;
    margin: 0 !important;
}

.service-process-section {
    padding: 3.25rem 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Premium Process Steps (from home_v2) */
.premium-grid-container {
    padding: 1rem 0;
    position: relative;
}

.premium-step-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .premium-step-row::after {
        content: '';
        position: absolute;
        top: 0;
        bottom: -2.5rem;
        left: 50px;
        transform: translateX(-50%);
        width: 2px;
        background-image: linear-gradient(to bottom, #cbd5e1 50%, transparent 50%);
        background-size: 2px 14px;
        background-repeat: repeat-y;
        z-index: -1;
        opacity: 0.6;
    }
    .premium-step-row:first-child::after {
        top: 50%;
    }
    .premium-step-row:last-child::after {
        bottom: 50%;
    }
}

.ps-number-indicator {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    background: linear-gradient(135deg, #00a4e4 0%, #0077c8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    width: 100px;
    flex-shrink: 0;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f8fafc;
    padding: 10px 0;
}

.ps-number-indicator.text-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    background-clip: text;
    background-color: #f8fafc;
}

.premium-step-card {
    flex: 1;
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
    position: relative;
    transition: all 0.3s ease;
    gap: 3rem;
    overflow: hidden;
}

.premium-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 164, 228, 0.08);
    border-color: #e2e8f0;
}

.ps-content {
    flex: 0 0 65%;
    max-width: 650px;
    position: relative;
    z-index: 3;
}

.ps-number-mobile {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    color: transparent;
    background: linear-gradient(135deg, #00a4e4 0%, #0077c8 100%);
    -webkit-background-clip: text;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.ps-number-mobile.text-success {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.ps-phase {
    display: inline-block;
    color: #00a4e4;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.5rem;
}

.ps-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.ps-desc {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.ps-touchpoints {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.ps-tp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    background: #ffffff;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.ps-tp i {
    font-size: 1.1rem;
}

.ps-image-bg {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
    border-top-right-radius: 24px;
    border-bottom-right-radius: 24px;
}

.ps-image-overlay {
    position: absolute;
    left: -1px;
    top: 0;
    width: 70%;
    height: 100%;
    background: linear-gradient(to right, 
        rgba(255,255,255,1) 0%, 
        rgba(255,255,255,1) 15%, 
        rgba(255,255,255,0.95) 30%, 
        rgba(255,255,255,0.8) 50%, 
        rgba(255,255,255,0.5) 75%, 
        rgba(255,255,255,0) 100%);
    z-index: 2;
}

.ps-image-overlay.ps-overlay-success {
    background: linear-gradient(to right, 
        rgba(255,255,255,1) 0%, 
        rgba(255,255,255,1) 15%, 
        rgba(255,255,255,0.95) 30%, 
        rgba(255,255,255,0.8) 50%, 
        rgba(255,255,255,0.5) 75%, 
        rgba(255,255,255,0) 100%);
}

.ps-img-full {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center right;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.premium-step-card:hover .ps-img-full {
    transform: scale(1.05) translateX(0);
}

@media (max-width: 767.98px) {
    .premium-step-row {
        margin-bottom: 2rem;
    }
    .ps-number-indicator {
        display: none !important;
    }
    .premium-step-card {
        padding: 0;
        flex-direction: column;
        gap: 0;
    }
    .ps-image-bg {
        position: relative;
        width: 100%;
        height: 180px;
    }
    .ps-image-overlay {
        width: 100%;
        height: 40%;
        top: auto;
        bottom: 0;
        background: linear-gradient(to top, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
    }
    .ps-content {
        flex: 1;
        width: 100%;
        padding: 0 1.5rem 1.75rem 1.5rem;
        margin-top: -10px;
    }
    .ps-number-mobile {
        font-size: 3rem;
        margin-top: -1rem; 
        margin-bottom: 0.25rem;
        position: relative;
        z-index: 5;
    }
    .ps-title {
        font-size: 1.3rem;
    }
    .ps-tp {
        font-size: 0.8rem;
    }
}

/* Service Overview Section */
.service-overview-section {
    background: #ffffff;
}


.rounded-20 {
    border-radius: 20px !important;
}

.overview-image-wrap img {
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.overview-image-wrap img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 164, 228, 0.15);
}

/* ============================================
   8. MODERN CALCULATOR DESIGN SYSTEM
   ============================================ */
.ntd-calculator-wrapper {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 50px rgba(0, 50, 100, 0.07);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
}

.ntd-calculator-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.ntd-calculator-header h2 {
    font-size: 2.1rem;
    font-weight: 800;
    color: #0d1b3e;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.ntd-calculator-header p {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

.ntd-calc-form-group {
    margin-bottom: 1.35rem;
}

.ntd-calc-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.45rem;
    display: block;
}

.ntd-calc-label i {
    color: #00A4E4;
    margin-right: 4px;
}

.ntd-calc-input {
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 12px !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.95rem !important;
    color: #0f172a !important;
    background-color: #f8fafc !important;
    transition: all 0.25s ease !important;
    height: auto !important;
}

.ntd-calc-input:focus {
    border-color: #00A4E4 !important;
    background-color: #ffffff !important;
    box-shadow: 0 0 0 4px rgba(0, 164, 228, 0.15) !important;
    outline: none !important;
}

.ntd-calc-input[readonly] {
    background-color: #f1f5f9 !important;
    color: #475569 !important;
    font-weight: 600 !important;
}

/* Select2 Custom Styling within Modern Calculator */
.select2-container--default .select2-selection--single {
    border: 1.5px solid #cbd5e1 !important;
    border-radius: 12px !important;
    height: 48px !important;
    padding: 8px 12px !important;
    background-color: #f8fafc !important;
    transition: all 0.25s ease !important;
}

.select2-container--default.select2-container--open .select2-selection--single,
.select2-container--default .select2-selection--single:focus {
    border-color: #00A4E4 !important;
    box-shadow: 0 0 0 4px rgba(0, 164, 228, 0.15) !important;
    background-color: #ffffff !important;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #0f172a !important;
    line-height: 28px !important;
    font-size: 0.95rem !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px !important;
    right: 10px !important;
}

/* Submit & Recalculate Buttons */
.ntd-calc-btn-submit {
    background: linear-gradient(135deg, #00A4E4 0%, #0056B3 100%) !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    padding: 0.85rem 2.5rem !important;
    border-radius: 50px !important;
    border: none !important;
    box-shadow: 0 8px 24px rgba(0, 164, 228, 0.3) !important;
    transition: all 0.25s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px;
    cursor: pointer;
}

.ntd-calc-btn-submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 30px rgba(0, 86, 179, 0.4) !important;
    color: #ffffff !important;
}

/* Result Box Card */
.ntd-calc-result-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 2rem;
}

.ntd-calc-result-header {
    border-bottom: 2px dashed #cbd5e1;
    padding-bottom: 1.25rem;
    margin-bottom: 1.5rem;
}

.ntd-calc-total-banner {
    background: linear-gradient(135deg, #0d2a5e 0%, #1a4a9e 100%);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(13, 42, 94, 0.25);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.ntd-calc-total-label {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
}

.ntd-calc-total-value {
    font-size: 2rem;
    font-weight: 900;
    color: #ffffff !important;
    margin: 0;
    letter-spacing: -0.02em;
}

@media (max-width: 767px) {
    .ntd-calculator-wrapper {
        padding: 2rem 1.25rem;
        border-radius: 18px;
    }
    .ntd-calc-total-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1rem;
    }
    .ntd-calc-total-value {
        font-size: 1.65rem;
    }
}

/* Compact Result Grid System */
.ntd-result-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.02);
    height: 100%;
}

.ntd-result-box-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #00A4E4;
    margin-bottom: 0.85rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.ntd-result-field-group {
    margin-bottom: 0.65rem;
}

.ntd-result-field-group label {
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    color: #64748b !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
    margin-bottom: 2px !important;
    display: block !important;
}

.ntd-result-field-group input {
    background-color: #f8fafc !important;
    border: 1px solid #cbd5e1 !important;
    border-radius: 8px !important;
    padding: 4px 10px !important;
    font-size: 0.88rem !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    height: 34px !important;
    line-height: 1.2 !important;
}

.ntd-result-field-group input:focus {
    background-color: #ffffff !important;
    border-color: #00A4E4 !important;
    box-shadow: 0 0 0 3px rgba(0, 164, 228, 0.12) !important;
}

/* Modern Vertical Timeline Process */
.ntd-timeline-container {
    position: relative;
    max-width: 920px;
    margin: 0 auto;
    padding: 1rem 0;
}

/* Vertical line */
.ntd-timeline-container::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    bottom: 2.5rem;
    left: 28px;
    width: 3px;
    background: linear-gradient(180deg, #00A4E4 0%, #0056B3 100%);
    border-radius: 3px;
}

.ntd-timeline-item {
    position: relative;
    display: flex;
    gap: 1.75rem;
    margin-bottom: 2.25rem;
}

.ntd-timeline-item:last-child {
    margin-bottom: 0;
}

/* Node indicator circle */
.ntd-timeline-node {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00A4E4 0%, #0056B3 100%);
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px #f8fafc, 0 8px 20px rgba(0, 164, 228, 0.35);
    flex-shrink: 0;
    z-index: 2;
    transition: transform 0.3s ease;
}

.ntd-timeline-item:hover .ntd-timeline-node {
    transform: scale(1.1);
}

/* Content card */
.ntd-timeline-card {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 18px;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    position: relative;
}

.ntd-timeline-card::before {
    content: '';
    position: absolute;
    top: 22px;
    left: -8px;
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-left: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    transform: rotate(45deg);
}

.ntd-timeline-item:hover .ntd-timeline-card {
    border-color: rgba(0, 164, 228, 0.4);
    box-shadow: 0 12px 32px rgba(0, 102, 204, 0.12);
    transform: translateX(4px);
}

.ntd-timeline-phase {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #00A4E4;
    margin-bottom: 0.35rem;
    display: block;
}

.ntd-timeline-title {
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    color: #0d1b3e !important;
    margin-bottom: 0.5rem !important;
}

.ntd-timeline-desc {
    font-size: 0.92rem;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.ntd-timeline-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ntd-timeline-chip {
    font-size: 0.78rem;
    font-weight: 600;
    color: #0056B3;
    background: #f0f7ff;
    border: 1px solid #c8e0f8;
    border-radius: 50px;
    padding: 4px 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

@media (max-width: 767px) {
    .ntd-timeline-container::before {
        left: 20px;
    }
    .ntd-timeline-node {
        width: 42px;
        height: 42px;
        font-size: 0.9rem;
        box-shadow: 0 0 0 4px #f8fafc, 0 6px 16px rgba(0, 164, 228, 0.3);
    }
    .ntd-timeline-item {
        gap: 1rem;
    }
    .ntd-timeline-card {
        padding: 1.15rem 1.25rem;
    }
    .ntd-timeline-card::before {
        display: none;
    }
    .ntd-timeline-title {
        font-size: 1.05rem !important;
    }
}





