
/* ============================================
   CSS VARIABLES - Design Tokens
   ============================================ */
:root {
    /* Colors - Primary */
    --primary-blue: #0690d1;
    --primary-blue-hover: #0578b8;
    --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);
    --primary-green-border: #1C8C4C;

    /* Colors - Text */
    --text-dark: #1e1e1e;
    --text-gray: #afafaf;
    --text-light-gray: #f5f5f5;
    --text-medium-gray: #666666;
    --text-dark-gray: #333;
    --text-light: #555;
    --text-lighter: #999;
    --text-white: #ffffff;

    /* Colors - Background */
    --background-gray: #f4f5fb;
    --background-overlay: rgba(243, 243, 243, 0.74);
    --background-white: #ffffff;
    --background-light: #f8f9fa;
    --background-lighter: #fcfcfc;
    --background-blue-light: #d3eefc;
    --background-faq: #ECF0FB;
    --background-faq-icon: #eff3ff;

    /* Colors - Border */
    --border-color: #e0e0e0;
    --border-color-light: #e5e5e5;

    /* Colors - Status/Tracking */
    --tracking-blue: #00a4e4;
    --tracking-blue-past: #008fd3;
    --tracking-green: #00a463;
    --tracking-green-dark: #00994a;
    --tracking-red: #c0392b;
    --tracking-red-light: rgba(255, 99, 71, 0.35);

    /* Colors - FAQ */
    --faq-blue: #0690D1;
    --faq-blue-dark: #0457a4;

    /* Colors - Alert */
    --alert-bg: #f8d7da;
    --alert-border: #f5c6cb;
    --alert-text: #721c24;

    /* Colors - Pagination/UI */
    --pagination-gray: #d7d7d7;
    --text-medium: #4b4b4b;

    /* Shadows */
    --shadow-light: rgba(0,0,0,0.08);
    --shadow-medium: rgba(0,0,0,0.15);
    --shadow-strong: rgba(0,0,0,0.25);
    --shadow-card: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-button: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.15);
    --shadow-testimonial: 0px 12px 32px rgba(0, 0, 0, 0.15);
    --shadow-testimonial-nav: 0 4px 12px rgba(0,0,0,0.18);
    --shadow-testimonial-nav-hover: 0 6px 16px rgba(0,0,0,0.22);
    --shadow-step: 6px 6px 15px 7px rgba(0,0,0,0.25);
    --shadow-process-nav: 0 2px 10px rgba(0,0,0,0.15);

    /* Border Radius */
    --border-radius-small: 8px;
    --border-radius-medium: 12px;
    --border-radius-large: 16px;
    --border-radius-xl: 18px;
    --border-radius-2xl: 20px;
    --border-radius-3xl: 22px;
    --border-radius-4xl: 29px;
    --border-radius-5xl: 37px;
    --border-radius-6xl: 44px;
    --border-radius-7xl: 50px;
    --border-radius-8xl: 60.5px;
    --border-radius-full: 50%;
    --border-radius-form: 50px;
    --border-radius-button: 44px;

    /* Typography */
    --font-family: 'Poppins', sans-serif;
    --font-size-xs: 11px;
    --font-size-sm: 13px;
    --font-size-base: 14px;
    --font-size-md: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 22px;
    --font-size-3xl: 24px;
    --font-size-4xl: 26px;
    --font-size-5xl: 32px;
    --font-size-6xl: 35px;
    --font-size-7xl: 38px;
    --font-size-8xl: 42px;
    --font-size-9xl: 50px;
    --font-size-10xl: 64px;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --padding-content: 5rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.4s ease;
    --transition-step: 0.15s ease;
}

/* ============================================
   BASE STYLES
   ============================================ */
* {
    font-family: var(--font-family);
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px var(--shadow-light);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1030;
    transition: transform var(--transition-slow), padding var(--transition-medium), background var(--transition-medium), box-shadow var(--transition-medium);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transform: translateY(0);
}

.navbar-custom.scrolled {
    padding: 0.5rem 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 25px var(--shadow-medium);
}

.navbar-custom.navbar-hidden {
    transform: translateY(-100%);
}

.navbar-nav {
    align-items: center !important;
}

.navbar-custom .navbar-brand {
    transition: transform var(--transition-medium);
}

.navbar-custom .navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-custom .navbar-brand img,
.navbar-custom.scrolled .navbar-brand img {
    height: 50px;
    width: auto;
    transition: height var(--transition-medium);
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.navbar-custom .nav-link {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 400;
    margin: 0 0.35rem;
    padding: 0.75rem 0;
    border-bottom: 3px solid transparent;
    transition: all var(--transition-medium);
    position: relative;
}

.navbar-custom .nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--text-dark);
    transition: all var(--transition-medium);
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-custom .nav-link:hover::before,
.navbar-custom .active a::before {
    width: 100%;
}

.navbar-custom .nav-link:hover,
.navbar-custom .active a {
    color: var(--text-dark);
    font-weight: 700;
    transform: translateY(-2px);
}

.navbar-custom .btn-login {
    background-color: var(--primary-blue);
    color: var(--text-white);
    border-radius: var(--border-radius-5xl);
    padding: 0.25rem 2rem;
    font-size: var(--font-size-xl);
}

.nav-custom-img {
    height: 3rem !important;
    width: auto !important;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    color: var(--text-white);
    display: flex;
    align-items: center;
    overflow: hidden;
    background: url('/images/cms_v2/home_v2/bg-header.webp') center center / cover no-repeat;
}

.hero-content {
    position: relative;
    z-index: 3;
    padding-top: 10rem;
    padding-bottom: 5rem;
    animation: fadeInUp 1.2s ease-out;
}

.hero-title {
    color: var(--text-white);
    font-family: var(--font-family);
    font-size: var(--font-size-10xl);
    font-weight: 600;
    line-height: normal;
}

.hero-subtitle {
    color: var(--text-white);
    font-family: var(--font-family);
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.5;
    width: 625px;
}

.hero-description {
    font-size: 1.5rem;
    line-height: 1.5;
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-top: 3rem;
}

#hero-alert {
    background: var(--alert-bg);
    border: 1px solid var(--alert-border);
    color: var(--alert-text);
    padding: 0.75rem 1.25rem;
    border-radius: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    width: fit-content;
}

/* ============================================
   TRACKING FORM
   ============================================ */
.tracking-form-wrapper {
    background: rgba(255,255,255,0.95);
    border-radius: var(--border-radius-form);
    padding: 6px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-card);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    max-width: 650px;
    margin-bottom: 1.5rem;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.tracking-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--primary-blue-light), transparent);
    transition: left 0.6s ease;
}

.tracking-form-wrapper:hover::before {
    left: 100%;
}

.tracking-form-wrapper:focus-within {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(6,144,209,0.15);
}

.tracking-input {
    border: none;
    outline: none;
    background: transparent;
    padding: 12px 20px;
    font-size: 1rem;
    color: var(--text-dark);
    flex: 1;
    font-weight: 400;
    transition: all var(--transition-fast);
}

.tracking-input:focus {
    color: var(--text-dark);
    font-weight: 500;
}

.tracking-input::placeholder {
    color: var(--text-gray);
    font-size: 1rem;
    font-weight: 400;
}

.form-separator {
    width: 1px;
    height: 40px;
    background-color: var(--text-gray);
    margin: 0 auto;
}

.tracking-button {
    border-radius: var(--border-radius-8xl);
    background: var(--primary-blue);
    box-shadow: var(--shadow-button);
    color: var(--text-white);
    font-family: var(--font-family);
    font-size: 1.25rem;
    font-weight: 400;
    width: 180px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 18px;
}

.tracking-button svg {
    transition: transform var(--transition-medium);
    width: 35px;
    height: 20px;
}

/* ============================================
   RESI / TRACKING SECTION
   ============================================ */
.resi-section {
    padding: 40px 0 60px;
    font-family: var(--font-family);
}

.resi-title {
    font-size: var(--font-size-4xl);
    font-weight: 600;
    color: var(--tracking-green-dark);
}

.resi-code {
    font-size: var(--font-size-xl);
    font-weight: 500;
    color: var(--tracking-green-dark);
}

.resi-section table {
    font-size: 1.25rem;
    text-align: center !important;
}

.tracking-steps-wrapper {
    overflow-x: auto;
    padding-bottom: 10px;
}

.tracking-steps {
    display: flex;
    justify-content: space-between;
    min-width: 900px;
    margin-bottom: 30px;
}

.step-item {
    position: relative;
    text-align: center;
    padding: 0 10px;
    flex: 1;
    transition: transform var(--transition-step);
}

.step-item:hover {
    transform: translateY(-2px);
}

.step-item::after {
    content: "";
    position: absolute;
    top: 25px;
    width: calc(100% - 75px);
    left: calc(50% + 40px);
    border-top: 2px dotted rgba(0, 164, 228, 0.3);
}

.step-item:last-child::after {
    display: none;
}

/* Step Circle - Default (Future) */
.step-circle {
    width: 52px;
    height: 52px;
    border-radius: var(--border-radius-full);
    background: var(--background-white);
    border: 2px solid var(--tracking-blue);
    color: var(--tracking-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    transition: all var(--transition-fast);
}

.step-label {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark-gray);
    line-height: 1.3;
    max-width: 140px;
    margin: 0 auto 4px;
}

.step-date {
    font-size: 0.875rem;
    color: var(--text-lighter);
}

/* Step - Past */
.step-item.is-past .step-circle {
    background: var(--tracking-blue-past);
    border-color: var(--tracking-blue-past);
    color: var(--text-white);
}

.step-item.is-past::after {
    border-top-color: rgba(0, 164, 228, 0.8);
}

.step-item.is-past .step-date {
    color: var(--tracking-green);
}

/* Step - Current */
.step-item.is-current .step-circle {
    background: var(--background-blue-light);
    border-color: var(--tracking-blue);
    color: var(--tracking-blue);
}

.step-item.is-current::after {
    border-top-color: rgba(0, 164, 228, 0.5);
}

.step-item.is-current .step-date {
    color: var(--tracking-green);
}

/* Step - Late */
.step-item.is-late .step-circle {
    box-shadow: 0 0 0 3px var(--tracking-red-light);
}

.step-item.is-late .step-label {
    color: var(--tracking-red);
}

/* Resi Table */
.resi-table-wrapper {
    position: relative;
}

.resi-loading {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
    z-index: 5;
}

.resi-table {
    border: 1px solid var(--border-color-light);
}

.resi-table thead th {
    background: var(--background-light);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-bottom: 1px solid var(--border-color-light);
    padding: 10px;
    white-space: nowrap;
}

.resi-table tbody td {
    font-size: var(--font-size-sm);
    padding: 8px 10px;
    vertical-align: top;
}

.resi-table tbody tr:nth-child(even) {
    background: var(--background-lighter);
}

/* ============================================
   TYPOGRAPHY & SECTION STYLES
   ============================================ */
.section-title {
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.section-description {
    color: var(--text-dark);
    font-family: var(--font-family);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: normal;
}

.title-with-line {
    border-left: 5px solid var(--primary-green-border);
    padding-left: 15px;
}

.title-with-line h2 {
    margin: 0;
    padding: 0;
    line-height: 1.4;
    color: var(--primary-green);
    font-size: 2rem;
    font-weight: 600;
}

.padding-content {
    padding-left: var(--padding-content);
    padding-right: var(--padding-content);
}

/* ============================================
   FEATURE CARDS (Why Choose Us)
   ============================================ */
.feature-card {
    background: var(--background-white);
    border-radius: var(--border-radius-2xl);
    overflow: hidden;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
    max-width: 418px !important;
}

.feature-card .card-content {
    padding: 25px;
    flex: 1;
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.feature-img {
    position: relative;
    height: 150px;
    overflow: hidden;
    border-bottom-left-radius: var(--border-radius-2xl);
    border-bottom-right-radius: var(--border-radius-2xl);
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 1) 0%,
        rgba(255, 255, 255, 0) 50%
    );
    pointer-events: none;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-card {
    position: relative;
    overflow: hidden;
    background-color: var(--background-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12);
    height: 22rem;
}

.service-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center;
}

.service-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 48px;
    padding: 16px 20px 40px;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.0) 100%
    );
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

.service-title {
    margin: 0;
    color: var(--text-white);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.service-readmore,
.service-footer {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 48px;
    background-color: var(--primary-blue-service);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 10px 1rem;
}

.service-readmore svg {
    width: 23px;
    height: 15px;
}

.service-description {
    margin-top: 14px;
    font-size: 1.1rem;
    line-height: 1.5;
    text-align: center;
    margin-left: 1rem;
    margin-right: 1rem;
    font-weight: 400;
}

/* ============================================
   BANNER SECTIONS
   ============================================ */
#services-banner {
    height: 400px;
    background: url('/images/cms_v2/home_v2/bg-service.webp') center center / cover no-repeat;
    position: relative;
    padding: 0;
}

#price {
    height: 350px;
    background: url('/images/cms_v2/home_v2/bg-price.webp') center center / cover no-repeat;
    position: relative;
    padding: 0;
}

/* Shared styles for banner sections */
#services-banner h2,
#price h2 {
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 400;
    line-height: normal;
}

#services-banner p,
#price p {
    color: var(--text-dark);
    font-size: 1.25rem;
    font-weight: 400;
    line-height: normal;
}

#services-banner button,
#price button {
    border-radius: var(--border-radius-button);
    background: var(--primary-blue);
    box-shadow: var(--shadow-button);
    color: var(--text-white);
    font-size: 1.25rem;
    font-weight: 400;
    width: fit-content;
    padding: 0.5rem 2rem;
}

#services-banner button svg,
#price button svg {
    width: 30px !important;
}

#services-banner .banner-image-col,
#price .banner-image-col {
    position: relative;
}

#services-banner .banner-image,
#price .banner-image {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 100%;
    height: auto;
    display: block;
}

#services-banner .col-md-8,
#price .col-md-8 {
    height: 100%;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary-custom,
.btn-price-custom {
    border-radius: var(--border-radius-button);
    background: var(--primary-blue);
    box-shadow: var(--shadow-button);
    color: var(--text-white);
    font-family: var(--font-family);
    font-size: var(--font-size-md);
    font-weight: 400;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    transition: all var(--transition-medium);
}

.btn-primary-custom {
    padding: var(--spacing-sm) 3rem;
}

.btn-price-custom {
    height: 75px;
    width: 273px;
    padding: 0;
}

.btn-primary-custom:hover,
.btn-price-custom:hover {
    background: var(--primary-blue-hover);
    color: var(--text-white);
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0px 6px 6px 0px rgba(0, 0, 0, 0.3);
}

.price-illustration {
    position: relative;
    bottom: -120px;
    max-width: 688px;
    height: auto;
}

/* ============================================
   IMPORT PROCESS SECTION - SWIPER
   ============================================ */
#import-process {
    background: var(--background-white);
}

.swiper {
    cursor: pointer;
}

.process-swiper {
    padding: 2rem 0 4rem;
    position: relative;
}

.process-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    padding: 0 15px;
    box-sizing: border-box;
}

.process-step {
    position: relative;
    width: 100%;
    max-width: 485px;
    margin: 0 auto;
}

.step-number {
    background: var(--background-white);
    border-radius: var(--border-radius-medium);
    box-shadow: var(--shadow-step);
    width: 122px;
    height: 122px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.step-number::after {
    content: '';
    position: absolute;
    top: 15px;
    right: -35px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 35px 17px 0;
    border-color: var(--primary-blue);
}

.step-text {
    color: var(--primary-green);
    font-size: var(--font-size-xl);
    font-weight: 600;
    font-family: var(--font-family);
    margin-bottom: 0.25rem;
}

.step-num {
    color: var(--primary-green);
    font-size: var(--font-size-9xl);
    font-weight: 600;
    font-family: var(--font-family);
    line-height: 1;
}

.step-image {
    height: 406px;
    overflow: hidden;
    margin-top: 31px;
    position: relative;
}

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

.step-footer {
    background: var(--primary-blue);
    color: var(--text-white);
    padding: 1.5rem;
    margin-top: -138px;
    position: relative;
    z-index: 1;
    min-height: 138px;
    display: flex;
    align-items: center;
}

.step-footer p {
    margin: 0;
    font-size: var(--font-size-xl);
    font-weight: 400;
    font-family: var(--font-family);
    line-height: 1.5;
}

/* Swiper Navigation */
.process-nav-next,
.process-nav-prev {
    width: 54px;
    height: 54px;
    border-radius: var(--border-radius-full);
    box-shadow: var(--shadow-process-nav);
    color: var(--text-dark);
    background: var(--background-white);
}

.process-nav-next::after,
.process-nav-prev::after {
    font-size: var(--font-size-xl);
    font-weight: bold;
}

.process-nav-next:hover,
.process-nav-prev:hover {
    background: var(--primary-blue);
    color: var(--text-white);
}

.process-swiper .process-nav-next {
    z-index: 1;
    right: 30px;
}

.process-swiper .process-nav-prev {
    z-index: 1;
    left: 30px;
}

/* Swiper Pagination */
.process-pagination {
    bottom: 0 !important;
    display: none;
}

.process-pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: var(--primary-blue);
    opacity: 0.3;
}

.process-pagination .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-blue);
}

/* ============================================
   CTA SERVICES
   ============================================ */
#cta-services {
    position: relative;
    background: url('/images/cms_v2/home_v2/bg-cta.webp') center center / cover no-repeat;
    height: 500px;
    overflow: hidden;
}

.cta-services-title {
    color: var(--text-white);
    font-size: 2rem;
    margin-bottom: 0rem;
}

.cta-services-subtitle {
    color: var(--text-white);
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.cta-services-line {
    display: block;
    width: 100%;
    border-bottom: 2px solid var(--text-white);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonial-swiper {
    padding-bottom: 40px;
}

.testimonial-swiper .swiper-wrapper {
    align-items: stretch;
}

.testimonial-swiper .swiper-slide {
    transition: transform var(--transition-medium), opacity var(--transition-medium);
    opacity: 0.5;
    display: flex;
    height: auto;
}

.testimonial-swiper .swiper-slide-active {
    opacity: 1;
    transform: translateY(-6px);
}

.testimonial-card {
    background: var(--background-white);
    border-radius: var(--border-radius-4xl);
    box-shadow: var(--shadow-testimonial);
    padding: 2.5rem 2.5rem 0;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.testimonial-quote svg {
    height: 35px !important;
}

.testimonial-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    flex: 1 1 auto;
}

.testimonial-author {
    background: var(--background-gray);
    padding: 1.2rem 2.5rem;
    border-radius: 0 0 var(--border-radius-4xl) var(--border-radius-4xl);
    margin: 0 -2.5rem -0.5rem;
}

.testimonial-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-role {
    font-size: 1.1rem;
    color: var(--text-medium);
}

/* Testimonial Navigation */
.testimonial-nav {
    width: 34px;
    height: 34px;
    border-radius: var(--border-radius-full);
    border: none;
    background: var(--background-white);
    box-shadow: var(--shadow-testimonial-nav);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    padding: 0;
    outline: none;
    transition: box-shadow var(--transition-fast), transform var(--transition-fast), background var(--transition-fast);
}

.testimonial-nav::before {
    content: "";
    display: inline-block;
    width: 7px;
    height: 7px;
    border-style: solid;
    border-width: 0 2px 2px 0;
    border-color: var(--primary-blue);
}

.testimonial-nav-prev::before {
    transform: rotate(135deg);
    margin-left: 2px;
}

.testimonial-nav-next::before {
    transform: rotate(-45deg);
    margin-right: 2px;
}

.testimonial-nav:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-testimonial-nav-hover);
}

.testimonial-nav.swiper-button-disabled {
    opacity: 0.35;
    cursor: default;
    box-shadow: none;
}

/* Testimonial Pagination */
.testimonial-pagination {
    align-items: center;
    display: contents !important;
    margin-left: 10px !important;
    margin-right: 10px !important;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    border-radius: var(--border-radius-full);
    background: var(--pagination-gray);
    opacity: 1;
    margin: 0 4px !important;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--primary-blue);
}

/* ============================================
   STATISTICS SECTION
   ============================================ */
.stats-section {
    background: url('/images/cms_v2/home_v2/bg-award.webp') center center / cover no-repeat;
    padding: 4rem 0;
    color: var(--text-white);
}

.stats-title-light {
    font-size: 2rem;
    font-weight: 300;
    margin: 0;
}

.stats-title-bold {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0;
}

.stat-col {
    text-align: center;
    position: relative;
    padding: 0 15px;
}

.stat-col:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 15%;
    right: 0;
    height: 70%;
    width: 1px;
    background: rgba(255,255,255,0.4);
}

.stat-icon {
    width: 55px;
    height: auto;
    margin-bottom: 0.8rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ============================================
   VIDEO CARD
   ============================================ */
.video-card {
    background: var(--background-white);
    padding: 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.16);
    overflow: hidden;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.accordion .card {
    border-radius: var(--border-radius-xl) !important;
    border: none;
    background: var(--background-white);
    box-shadow: 0 4px 16px var(--shadow-light);
    overflow: hidden;
}

.accordion .card-header {
    background: var(--background-white) !important;
    border: none;
    padding: 0;
}

.faq-toggle {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--faq-blue);
}

.faq-toggle.collapsed {
    background: var(--background-faq);
}

.faq-toggle:hover,
.faq-toggle:focus {
    text-decoration: none;
}

.faq-question {
    flex: 1;
    padding-right: 10px;
}

.faq-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--border-radius-full);
    background: var(--background-faq-icon);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.plus-icon,
.close-icon {
    font-size: var(--font-size-3xl);
    line-height: 1;
    color: var(--faq-blue-dark);
    position: absolute;
    transition: opacity var(--transition-fast);
}

.faq-toggle.collapsed .plus-icon {
    opacity: 1;
}

.faq-toggle.collapsed .close-icon {
    opacity: 0;
}

.faq-toggle:not(.collapsed) .plus-icon {
    opacity: 0;
}

.faq-toggle:not(.collapsed) .close-icon {
    opacity: 1;
}

.accordion .card-body {
    background: var(--background-white);
    font-size: var(--font-size-lg);
    line-height: 1.7;
    padding: 0 1.5rem 1.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.footer-section {
    background: url('/images/cms_v2/home_v2/bg-footer.webp') center center / cover no-repeat;
    position: relative;
    padding: 0;
    color: var(--text-white);
}

.footer-content {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
}

.footer-logo {
    width: 18rem;
    max-width: 100%;
}

.footer-social-icons {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: flex-end;
}

.footer-social-icons a {
    opacity: 0.65;
    transition: opacity var(--transition-fast);
    display: inline-block;
}

.footer-social-icons a:hover {
    opacity: 1;
}

.footer-social-icons svg {
    width: 40px;
    height: 40px;
}

.footer-divider {
    border-top: 2px solid rgba(255, 255, 255, 0.6);
    margin: 0.75rem 0 1.25rem;
}

.footer-links a {
    display: block;
    color: var(--text-white);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 400;
    margin-bottom: 0.18rem;
    opacity: 0.55;
    transition: opacity var(--transition-fast);
}

.footer-links a.active {
    opacity: 1;
    font-weight: 600;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-company {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer-contact,
.footer-company {
    text-align: left;
}

.footer-contact {
    font-size: 1rem;
    opacity: 0.9;
}

.footer-contact p {
    margin-bottom: 0.25rem;
}

.footer-icon {
    display: inline-block;
    width: 1rem;
    text-align: left;
    margin-right: 0.125rem;
    vertical-align: middle;
}

.footer-icon svg {
    width: 1rem;
    height: 1rem;
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-fade {
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.45s ease-out, transform 0.45s ease-out;
    will-change: opacity, transform;
}

.text-fade-visible {
    opacity: 1;
    transform: translateY(0);
}

.why-swiper .swiper-slide {
    height: auto !important;
    padding: 0 15px;
    box-sizing: border-box;
}

.custom-row {
    margin-left: -2rem;
    margin-right: -2rem;
}

.custom-col {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.custom-col .service-card {
    margin-left: 2rem;
    margin-right: 2rem;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Tablet - 992px and below */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
        text-align: left;
    }

    .hero-subtitle {
        font-size: 1.25rem;
        max-width: 100%;
        text-align: left;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-top: 2rem;
        text-align: left;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    /* Navigation */
    .navbar-toggler-icon svg {
        height: 100%;
    }

    #loginWeb {
        display: none;
    }

    #loginMobile {
        display: block !important;
        margin-left: 2rem;
    }

    .btn-login {
        padding: 0.25rem 1rem !important;
        font-size: 0.75rem !important;
        margin-right: 0.25rem !important;
    }

    .nav-link {
        padding: 0.25rem 0.5rem !important;
        margin: 0 !important;
    }

    .nav-custom-img {
        height: 35px !important;
    }

    .navbar-brand img {
        height: 35px !important;
    }

    .navbar-custom .nav-link {
        font-size: var(--font-size-md);
    }

    .navbar-custom .nav-link::before {
        height: 2px !important;
    }

    .navbar-nav {
        padding-bottom: 0.75rem !important;
    }

    .navbar-toggler {
        padding: 0.25rem 0.5rem !important;
    }

    /* Hero Section */
    section {
        width: 100% !important;
        overflow: hidden !important;
    }

    .hero-section {
        min-height: 50vh;
        align-items: center !important;
    }

    .hero-content {
        text-align: left !important;
        padding-top: 7rem !important;
        padding-bottom: 4rem !important;
        margin-bottom: auto !important;
        margin-top: auto !important;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .hero-description {
        font-size: 1rem;
        margin-top: 1.5rem;
    }

    #hero-alert {
        border-radius: 10px;
    }

    /* Tracking Form */
    .tracking-input {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.875rem !important;
        line-height: 1.2 !important;
        width: 30% !important;
    }

    .tracking-button {
        padding: 0.5rem 0.75rem !important;
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
        width: 30% !important;
    }

    .tracking-input::placeholder {
        font-size: 0.875rem !important;
        line-height: 1.2 !important;
    }

    .tracking-button svg {
        width: 20px !important;
        height: 20px !important;
    }

    /* Sections */
    .section-title {
        font-size: 1.8rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .title-with-line h2 {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
    }

    /* Service Cards */
    .service-title {
        font-size: 1.75rem;
    }

    /* Banner Sections */
    #services-banner h2,
    #price h2 {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
    }

    #services-banner p,
    #price p {
        font-size: 1rem !important;
        line-height: 1.2 !important;
    }

    #services-banner button,
    #price button {
        font-size: 0.75rem !important;
        padding: 0.25rem 0.75rem !important;
    }

    #services-banner button svg,
    #price button svg {
        width: 20px !important;
        height: 20px !important;
    }

    #services-banner {
        height: 352px !important;
    }

    #price {
        height: 389px !important;
    }

    #services-banner .banner-image,
    #price .banner-image {
        height: 180px !important;
    }

    /* Import Process */
    .process-step {
        max-width: 100%;
    }

    .step-image {
        height: 300px;
    }

    .step-number {
        width: 100px;
        height: 100px;
    }

    .step-num {
        font-size: 35px;
    }

    .step-text {
        font-size: var(--font-size-md);
    }

    .step-footer p {
        font-size: var(--font-size-md);
    }

    .step-footer {
        padding: 1rem;
        min-height: 100px;
        margin-top: -100px;
    }

    .process-swiper {
        padding: 0 !important;
    }

    .process-swiper .swiper-slide {
        padding-top: 15px !important;
    }

    .process-nav-next,
    .process-nav-prev {
        width: 30px !important;
        height: 30px !important;
    }

    .process-nav-next::after,
    .process-nav-prev::after {
        font-size: var(--font-size-base) !important;
    }

    /* Process Swiper Navigation Positioning */
    .process-swiper .process-nav-next {
        right: 15px;
    }

    .process-swiper .process-nav-prev {
        left: 15px;
    }

    /* CTA Services */
    #cta-services {
        background-position: 85% center;
        background-size: cover;
        height: 400px !important;
    }

    .cta-services-title {
        font-size: 1.75rem !important;
        line-height: 1.2 !important;
    }

    .cta-services-subtitle {
        font-size: 1.5rem !important;
        line-height: 1.2 !important;
    }

    /* Statistics */
    .stats-title-light,
    .stats-title-bold {
        font-size: 1.5rem !important;
        text-align: center !important;
    }

    .stats-title-bold {
        line-height: 1.2 !important;
    }

    .stat-number {
        font-size: 1.5rem !important;
    }

    .stat-label {
        font-size: 1rem !important;
        line-height: 1.2 !important;
    }

    .stat-icon {
        width: 40px !important;
    }

    .stat-col {
        margin-bottom: 1.5rem !important;
    }

    .stat-col:not(:last-child)::after {
        height: 100% !important;
    }

    /* Testimonials */
    #testimonials .col-6 {
        padding-left: 0.3rem !important;
        padding-right: 0.3rem !important;
        margin-bottom: 0.6rem !important;
    }

    #testimonials .row {
        margin-left: 0.125rem !important;
        margin-right: 0.125rem !important;
    }

    .testimonial-swiper .swiper-slide {
        padding: 1rem !important;
    }

    .testimonial-swiper {
        padding-bottom: 0.25rem !important;
    }

    .testimonial-text {
        font-size: 1rem !important;
        margin-bottom: 0.5rem !important;
    }

    .testimonial-name {
        font-size: 1rem !important;
    }

    .testimonial-role {
        font-size: 0.875rem !important;
    }

    .testimonial-quote svg {
        height: 25px !important;
    }

    /* FAQ */
    .accordion .btn-link {
        font-size: 1rem !important;
        padding: 1rem !important;
    }

    .accordion .card-body {
        font-size: 0.9rem !important;
    }

    /* Footer */
    .footer-section svg {
        width: 30px !important;
    }

    .footer-icon svg {
        width: 15px !important;
        height: 15px !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .footer-company {
        font-size: 0.875rem !important;
        opacity: 1;
    }

    .footer-contact {
        font-size: 0.875rem !important;
        color: var(--text-white) !important;
        opacity: 0.65;
    }

    .footer-links a {
        font-size: 0.875rem !important;
    }

    /* Why Swiper */
    .why-swiper .swiper-slide {
        box-sizing: border-box;
        padding-bottom: 15px !important;
    }

    .custom-col .service-card {
        margin-left: 2.5rem !important;
        margin-right: 2.5rem !important;
    }

    .service-description {
        font-size: 1rem !important;
        line-height: 1.2 !important;
        margin-left: 2rem !important;
        margin-right: 2rem !important;
    }

    /* Tracking Steps - Vertical Timeline */
    .tracking-steps-wrapper {
        overflow-x: visible;
    }

    .tracking-steps {
        display: block;
        min-width: 0;
        margin-left: 24px;
    }

    .step-item {
        position: relative;
        display: flex;
        align-items: flex-start;
        text-align: left;
        padding: 14px 0;
    }

    .step-item::after {
        content: "";
        position: absolute;
        top: 50px;
        left: 17px;
        right: auto;
        width: 0;
        height: 100%;
        border-top: none;
        border-left: 2px dotted rgba(0, 164, 228, 0.3);
    }

    .step-item:last-child::after {
        height: 0;
    }

    .step-circle {
        margin-right: 12px;
        margin-bottom: 0;
        flex-shrink: 0;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .step-label,
    .step-date {
        display: block;
        text-align: left;
    }

    .step-label {
        margin: 0 0 2px;
        max-width: none;
        font-size: var(--font-size-sm);
    }

    .step-date {
        font-size: var(--font-size-xs);
        color: var(--tracking-green);
        margin: 0;
    }
}

/* Desktop - 992px and above */
@media (min-width: 992px) {
    .footer-company,
    .footer-contact {
        text-align: right;
    }

    .footer-contact p {
        margin-bottom: 0.2rem;
    }
}

/* Desktop - 1200px and above */
@media (min-width: 1200px) {
    .why-swiper {
        padding-left: calc((100% - 1140px) / 2 - 90px);
    }
}



/* ========================= Whatsapp Icon ========================= */
#contact-now .contact-whatsapp-container {
    display: inline-block;
    line-height: 0;
    border-radius: 50%;
    background-color: white;
    cursor: pointer;
    position: fixed;
    bottom: 15px;
    right: 15px;
    z-index: 10;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.25) !important;

    animation: shake_logo 1s;
    animation-iteration-count: infinite;
}
#contact-now .contact-whatsapp-container:hover {
    animation-play-state: paused;
}
#contact-now .contact-whatsapp-container i {
    font-size: 70px;
    color: #25d366;
}
#contact-now .contact-message {
    font-size: 18px;
    color: white;
    position: fixed;
    bottom: 45px;
    right: 85px;
    z-index: 10;

    animation: shake_text 5s;
    animation-iteration-count: infinite;
}
#contact-now .chat-bubble {
    white-space: nowrap;
    color: white;
    padding: 10px 30px !important;
    background: #25d366;
    margin-right: 30px !important;
    border-radius: 9px;
    position: relative;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.25) !important;
}
#contact-now .chat-bubble:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 20px solid transparent;
    border-bottom: 0;
    margin-top: -10px;
}
#contact-now .chat-bubble--right:after {
    content: "";
    right: 0;
    border-left-color: #25d366;
    border-right: 0;
    margin-right: -20px !important;
}

@keyframes shake_logo {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -1px) rotate(-1deg); }
    20% { transform: translate(-2px, 0px) rotate(1deg); }
    30% { transform: translate(2px, 1px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 1px) rotate(-1deg); }
    60% { transform: translate(-2px, 1px) rotate(0deg); }
    70% { transform: translate(2px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 1px) rotate(0deg); }
    100% { transform: translate(1px, -1px) rotate(-1deg); }
}

@keyframes shake_text {
    0% { transform: translate(1px, 1px) rotate(0deg); }
    10% { transform: translate(-1px, -2px) rotate(-1deg); }
    20% { transform: translate(-3px, 0px) rotate(1deg); }
    30% { transform: translate(3px, 2px) rotate(0deg); }
    40% { transform: translate(1px, -1px) rotate(1deg); }
    50% { transform: translate(-1px, 2px) rotate(-1deg); }
    60% { transform: translate(-3px, 1px) rotate(0deg); }
    70% { transform: translate(3px, 1px) rotate(-1deg); }
    80% { transform: translate(-1px, -1px) rotate(1deg); }
    90% { transform: translate(1px, 2px) rotate(0deg); }
    100% { transform: translate(1px, -2px) rotate(-1deg); }
}

/* Extra small devices (phones, 600px and down) */
/*Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 440px) {
    #contact-now .contact-whatsapp-container {
        bottom: 10px;
        right: 10px !important;
    }
    #contact-now .contact-whatsapp-container i {
        font-size: 50px;
    }
    #contact-now .contact-message {
        font-size: 14px;
        bottom: 35px;
        right: 55px;
    }
    #contact-now .chat-bubble--right:after {
        margin-right: -16px !important;
        top: 1rem !important;
    }
    #contact-now .chat-bubble {
        padding: 10px 20px !important;
    }
    .form-group {
        margin-bottom: 0.5rem !important;
    }
    .box {
        padding: 1.5rem 1.25rem;
    }
}

@media (min-width: 441px) and (max-width: 575px) {
    #contact-now .contact-whatsapp-container {
        bottom: 15px;
        right: 15px;
    }
    #contact-now .contact-whatsapp-container i {
        font-size: 60px;
    }
    #contact-now .contact-message {
        font-size: 16px;
        bottom: 40px;
        right: 72px;
    }
    #contact-now .chat-bubble--right:after {
        margin-right: -18px !important;
    }
    .form-group {
        margin-bottom: 0.5rem !important;
    }
    .box {
        padding: 1.5rem 1.25rem;
    }
}
/*Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) and (max-width: 767px) {
    .form-group {
        margin-bottom: 0.75rem !important;
    }
    .box {
        padding: 1.25rem 1.75rem;
    }
}
/*Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) and (max-width: 991px) {

}
/*Large devices (desktops, 992px and up)*/
@media (min-width: 992px) and (max-width: 1199px) {

}
/*Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {

}

/* ========================= End of Whatsapp Icon ========================= */
