/* ============================================
   Our Process Section
   ============================================ */
.process-section {
    background-image: url('/lib/images/body-final.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(1, 14, 42, 0.82);
    z-index: 0;
}

.process-inner {
    position: relative;
    z-index: 1;
}

/* ---- Process Header ---- */
.process-badge {
    display: inline-block;
    padding: 5px 18px;
    background: linear-gradient(135deg, var(--primary-color), #ff7b3d);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.process-heading {
    font-size: 2.4rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.process-heading span {
    color: var(--primary-color);
}

.process-divider {
    width: 60px;
    height: 4px;
    background: var(--orange-gradient);
    margin: 0.75rem auto 1.5rem;
    border-radius: 999px;
}

.process-subtext {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

/* ---- Steps Grid ---- */
.process-steps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
}

.process-step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 24px 20px;
    position: relative;
    flex: 1;
    min-width: 130px;
    max-width: 175px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    margin: 6px;
}

.process-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(255, 94, 20, 0.35);
    border-color: rgba(255, 94, 20, 0.6);
    background: rgba(255, 94, 20, 0.18);
}

/* Arrow connector */
.process-step-card:not(:last-child)::after {
    content: '\F285';
    font-family: "bootstrap-icons";
    position: absolute;
    right: -22px;
    top: 38px;
    font-size: 1.2rem;
    color: rgba(255, 94, 20, 0.4);
    z-index: 2;
}

.process-step-num-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 50px;
    white-space: nowrap;
}

.process-step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fff5f0, #ffe8dd);
    border: 2px solid rgba(255, 94, 20, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    margin-top: 8px;
}

.process-step-card:hover .process-step-icon {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
}

.process-step-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    line-height: 1.35;
}

/* ============================================
   CTA Banner Section
   ============================================ */
.cta-banner-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    background: var(--secondary-color);
}

.cta-banner-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/buses/bus_a.png');
    background-size: cover;
    background-position: center 40%;
    opacity: 0.08;
    z-index: 0;
}

.cta-banner-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
        rgba(1, 14, 42, 0.97) 0%,
        rgba(1, 14, 42, 0.80) 55%,
        rgba(255, 94, 20, 0.25) 100%);
    z-index: 0;
}

/* Animated decorative ring */
.cta-deco-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(255, 94, 20, 0.12);
    z-index: 0;
}
.cta-deco-ring.ring-1 {
    width: 400px; height: 400px;
    top: -120px; right: -80px;
    animation: rotateSlow 25s linear infinite;
}
.cta-deco-ring.ring-2 {
    width: 250px; height: 250px;
    bottom: -80px; left: -60px;
    animation: rotateSlow 18s linear infinite reverse;
}
@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.cta-banner-inner {
    position: relative;
    z-index: 2;
}

/* ---- Process Strip ---- */
.cta-process-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
}

.cta-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 28px;
    position: relative;
    flex: 1;
    min-width: 140px;
    max-width: 180px;
}

/* Arrow connector between steps */
.cta-process-step:not(:last-child)::after {
    content: '\F285';
    font-family: "bootstrap-icons";
    position: absolute;
    right: -14px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: rgba(255, 94, 20, 0.5);
    z-index: 1;
}

.cta-step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 94, 20, 0.15);
    border: 2px solid rgba(255, 94, 20, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.cta-process-step:hover .cta-step-icon {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.cta-step-num {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.cta-step-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    text-align: center;
    line-height: 1.3;
}

/* ---- Divider ---- */
.cta-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 94, 20, 0.4) 30%,
        rgba(255, 94, 20, 0.4) 70%,
        transparent 100%);
    margin-bottom: 3rem;
}

/* ---- Main CTA Content ---- */
.cta-badge {
    display: inline-block;
    padding: 5px 18px;
    background: rgba(255, 94, 20, 0.15);
    border: 1px solid rgba(255, 94, 20, 0.4);
    color: var(--primary-color);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    border-radius: 50px;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.cta-main-heading {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.cta-main-heading span {
    color: var(--primary-color);
}

.cta-main-subtext {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 560px;
    margin: 0 auto 2rem;
}

/* ---- CTA Buttons ---- */
.cta-btn-group {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 2.5rem;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #ff5e14 0%, #ff7b3d 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 15px 38px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 94, 20, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(255, 94, 20, 0.55);
    color: #fff;
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    padding: 13px 36px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.btn-cta-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
    transform: translateY(-3px);
}

/* ---- Trust Strip ---- */
.cta-trust-strip {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 500;
}

.cta-trust-item i {
    color: var(--primary-color);
    font-size: 1rem;
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .process-heading { font-size: 2rem; }
    .cta-main-heading { font-size: 2.2rem; }
    .process-step-card:not(:last-child)::after { display: none; }
    .process-step-card { min-width: 110px; padding: 20px 14px; }
}

@media (max-width: 576px) {
    .process-section { padding: 60px 0; }
    .cta-banner-section { padding: 65px 0; }
    .process-heading { font-size: 1.7rem; }
    .cta-main-heading { font-size: 1.7rem; }
    .btn-cta-primary, .btn-cta-outline { width: 100%; justify-content: center; }
    .cta-trust-strip { flex-direction: column; align-items: center; }
}
