﻿/* Please see documentation at https://docs.microsoft.com/aspnet/core/client-side/bundling-and-minification
for details on configuring this project to bundle and minify static web assets. */

/* ==============================
GLOBAL HTML SETTINGS
============================== */
html, body {
    font-family: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.55;
    color: #212529;
    background-color: #ffffff;
    /*background-color: #f8f9fa;*/
    -webkit-font-smoothing: antialiased;
}


/* ==============================
HEADINGS
============================== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #1f2937;
    letter-spacing: -0.01em;
}

/* ==============================
FONTS
============================== */
/* MUTED / HELPER TEXT */
.text-muted {                       
    font-size: 0.8rem;
}
.fs-7
{
    font-size:0.7em;
}

/* ==============================
PARAGRAPHS & LISTS
============================== */
p {
    margin-bottom: 0.75rem;
    color: #495057;
}
ul, ol {
    padding-left: 1.2rem;
}

li {
    margin-bottom: 0.4rem;
    color: #495057;
}
h4 {
    font-size: 1.2rem;
}
h5, h6 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #495057;
}

/* hr */

hr {
    height: 2px;
    background-color: red; /* Use background-color for thickness in some versions */
    border: none;
    opacity: 1; /* Overrides default transparency */
}


/* ==============================
FORM LABELS & INPUT TEXT
============================== */
label,
.form-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}
.form-control,
.form-select {
    font-size: 0.9rem;
    color: #212529;
}
.form-control::placeholder {
    color: #adb5bd;
    font-size: 0.85rem;
}


/* ==============================
BUTTON TEXT
============================== */
.btn {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  /*   border-radius: 0 !important; removes the default rounding */
}

.btn-primary {
    color: #fff;
    background-color: #1b6ec2;
    border-color: #1861ac;
}


/* ==============================
CARD HEADERS & FOOTERS
============================== */
.card-header {
    font-size: 1.1rem;
    font-weight: 600;
    background-color: #ffffff;
    /*color: #1f2937;*/
    color: #006db9;
}
.card-footer {
    background-color: #ffffff;
}

/* ==============================
TABLE TEXT
============================== */
.table th {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6c757d;
}


.table td {
    font-size: 0.85rem;
    color: #212529;
}

/* ==============================
IMAGE
============================== */
.img-shadow {
    /*border-radius: 12px;*/
    box-shadow: 0 15px 40px rgba(0,0,0,.2);
}

/* ==============================
ALERT TEXT
============================== */
.alert {
    font-size: 0.85rem;
    line-height: 1.45;
}



/* ==========================
MAIN MENU NAVIGATION 
========================== */

.navbar-toggler {
    border: none;
}
.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}
/* DEFAULT hamburger (white) */
.navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
/* HAMBURGER hover → orange */
.navbar-toggler:hover .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23ff3507' stroke-width='2' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
/* X icon (menu open) */
.navbar-toggler:not(.collapsed)[aria-expanded="true"] .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,1)' stroke-width='2' stroke-linecap='round' d='M6 6l18 18M24 6L6 24'/%3E%3C/svg%3E");
}
/* X hover → orange */
.navbar-toggler:not(.collapsed)[aria-expanded="true"]:hover .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='%23ff3507' stroke-width='2' stroke-linecap='round' d='M6 6l18 18M24 6L6 24'/%3E%3C/svg%3E");
}

/* Navbar links default */
.navbar-dark .navbar-nav .nav-link {
    color: #ffffff;
}

    /* Navbar links hover & active */
    .navbar-dark .navbar-nav .nav-link:hover,
    .navbar-dark .navbar-nav .nav-link:focus {
        color: #ff3507;
    }
    


/* ==============================
STICKY FOOTER 
============================== */

.footer {
    /*position: absolute;*/
    /*bottom: 0;*/
    width: 100%;
    white-space: nowrap;
    line-height: 40px; /* Vertically center the text there  width="200" height="60" */
    text-align: center;
    background-color: #151515;
    color: #f6f6f6;
}
.footer img {
    width: 240px;
    height: 80px;
}
.footer a {
    color: #ffffff; /* white text */
    text-decoration: none; /* remove underline */
}
.footer p {
    color: #ffffff; /* white text */
    font-size: 1em;
}
/* hover/focus state */
.footer a:hover,
.footer a:focus {
    color: #e9ecef; /* slightly softer white */
    text-decoration: none;
}

/* RESPONSIVE TWEAKS */
/* TABLET SIZE */
@media (max-width: 992px) {
    .footer a {
        font-size: 0.9em;
        
    }

    .footer p {
        font-size: 0.9em;
    }
    .footer img {
        width: 200px;
        height: 60px;
    }
}
/* PHONE SIZE */
@media (max-width: 768px) {
    .footer img {
        width: 180px;
        height: 50px;
    }
    .footer a {
        font-size: 0.8em;
    }

    .footer p {
        font-size: 0.8em;
    }
}

/* ==============================
 CAROUSEL
============================== */
/*  Force consistent carousel height */
#carouselExampleCaptions .carousel-item {
    height: 520px; /* adjust as needed */
}
/* Make images fill the slide without distortion */
#carouselExampleCaptions .carousel-item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
#carouselExampleCaptions .carousel-item {
    height: 520px;
}
/* Transparent dark overlay behind text */
.carousel-caption.custom-caption {
    position: absolute;
    top: 50%;
    left: 12%;
    transform: translateY(-20%);
    text-align: left;
    background: rgba(0, 0, 0, 0.42);
    padding: 1.8rem 2rem;
    border-radius: 0.5rem;
    max-width: 60%;
}
.carousel-caption.custom-caption h2 {
    font-size: 2.4rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 0.6rem;
}
.carousel-caption.custom-caption p.lead {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #f8f9fa;
}
.carousel-caption.custom-caption a.btn {
    font-size: 1.05rem;
    padding: 0.40rem 1rem;
}

/* RESPONSIVE TWEAKS */
/* TABLET SIZE */
@media (max-width: 992px) {
    #carouselExampleCaptions .carousel-item {
        height: 480px;
    }
    .carousel-caption.custom-caption {
        max-width: 60%;
        left: 12%;
    }
    .carousel-caption.custom-caption h2 {
        font-size: 1.8rem;
    }
    .carousel-caption.custom-caption p.lead {
        font-size: 1.2rem;
    }
    .carousel-caption.custom-caption a.btn {
        font-size: 1rem;
        padding: 0.2rem 0.5rem;
    }
}
/* PHONE SIZE */
@media (max-width: 768px) {
    #carouselExampleCaptions .carousel-item {
        height: 400px;
    }
    .carousel-caption.custom-caption {
        max-width: 60%;
        top: 44%;
        left: 15%;
    }
    .carousel-caption.custom-caption h2 {
        font-size: 1rem;
        font-weight:600;
    }
    .carousel-caption.custom-caption p.lead {
        font-size: .8rem;
    }
    .carousel-caption.custom-caption a.btn {
        font-size: .8rem;
        padding: 0.2rem 0.4rem;
    }
}

/* ==============================
 PAGE BANNER
============================== */

.page-banner {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    display: flex;
    align-items: flex-end; /* move content to bottom */
    padding-bottom: 40px; /* optional spacing from bottom */
}
/* Background image behavior */
.page-banner__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}
/* Dark overlay */
.page-banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55); /* overlay */
    z-index: 1;
}
/* Content on top */
.page-banner__content {
    position: relative;
    z-index: 1;
}
.page-banner h1,
.page-banner p {
    color: #fdffff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* ==============================
 PROGRAM CARD
============================== */
/*.program-card {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
.program-card.selected {
    border: 2px solid #0d6efd;
    box-shadow: 0 0 0.5rem rgba(13, 110, 253, 0.4);
}
*/
.program-card {
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 28px 20px;
    background: #fff;
    transition: all 0.25s ease;
    cursor: pointer;
    position: relative;
}

.program-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

    .program-card.selected {
        border: 2px solid #0071e3;
        box-shadow: 0 0 0 4px rgba(0,113,227,0.15);
        transform: scale(1.03);
    }

.program-card .plan-title {
    font-size: 14px;
    letter-spacing: 1px;
    color: #6b7280;
    text-transform: uppercase;
}

.program-card .plan-price {
    font-size: 30px;
    font-weight: 600;
    margin: 10px 0;
}

.program-card .plan-term {
    font-size: 16px;
    color: #6b7280;
}

.program-card .plan-desc {
    font-size: 14px;
    color: #6b7280;
    margin-top: 10px;
    min-height: 40px;
}

.program-card .plan-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #0071e3;
    color: white;
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 999px;
}

/* ==============================
 FEATURE CARD - HOME PAGE
============================== */
.feature-card {
    border: none;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.feature-card .card-header {
    background: #000;
    color: #fff;
    text-align: center;
}
.feature-card .card-header h3 {
    color: #f8f9fa;
}
.feature-card .list-group-item {
    border: none;
    padding: .2rem 1rem;
}
    .feature-card .list-group-item:last-child {
        background: transparent;
        text-align: center;
    }
.feature-card .list-group-item:last-child a {
    color: #f8f9fa;
    font-weight: 600;
    text-decoration: none;
    padding: .6rem 1rem;
}
.fixed-card-img {
    width: 100%; /* Fill card width */
    height: 250px; /* Set fixed height for both cards */
    object-fit: cover; /* Crop image to fit without distortion */
}
.feature-card ul.list-group {
    display: flex;
    flex-direction: column;
    height: 100%; /* Take full card height */
}
.feature-card ul.list-group li.mt-auto {
    margin-top: auto; /* Push this item to bottom */
}



/* ==============================
CONTAINER
============================== */

.container-fluid {
    --bs-gutter-x: 0; /* Makes the section wide by removing the gutter */
    --bs-gutter-y: 0;
}


/* ==============================
SECTION
============================== */
.section {
    padding: 3rem 0;
}
.section-light {
    background: #f8f9fa;
}
.section-blue {
    background-color: #006baf;
    color: #ffffff;
    width: 100% !important;
}
.section-blue h2,
.section-blue h3,
.section-blue p,
.section-blue small {
    color: #ffffff;
}
.section-blue .btn-primary {
    background-color: #ffffff;
    color: #006baf;
    border: none;
}
.section-blue .btn-primary:hover {
    background-color: #e6f2fb;
    color: #005a93;
}
.section-title {
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}
.section-title::after {
    content: "";
    display: block;
    width: 100px; /* length of the line */
    height: 2px; /* thickness of the line */
    background: #006db9; /* line color (blue as example) */
    margin: 0.8rem auto 0; /* 👈 auto centers the line */
}
h3.section-title{
    font-weight: 700;
    position: relative;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}
h3.section-title::after {
    content: "";
    display: block;
    width: 100px; /* length of the line */
    height: 2px; /* thickness of the line */
    background: #006db9; /* line color (blue as example) */
    margin-top: 0.8rem;
    margin-left: 0;
}
.title-blue {
    color: #006db9 !important;
}


/* =========================================
DISPLAY MODAL POP UP 
========================================= */

/* Modal shell */
.message-modal {
    border-radius: 0.75rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    overflow: hidden;
}

/* Header icon */
.modal-icon {
    width: 36px;
    height: 36px;
    background-color: #e7f1ff;
    color: #0d6efd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* Title */
.modal-title {
    font-weight: 600;
    font-size: 1rem;
}

/* Message text */
#labModalMessage {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Footer button */
.modal-footer .btn {
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* Shared modal base */
.message-modal {
    border-radius: 0.75rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* */
/* Confirmation and Error Message  */
/*.modal-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}*/

/* Variants */
.modal-icon.confirm {
    background-color: #e7f1ff;
    color: #0d6efd;
}

.modal-icon.error {
    background-color: #fdecea;
    color: #dc3545;
}

/* Typography */
.modal-title {
    font-weight: 600;
    font-size: 1rem;
}

.modal-body p {
    font-size: 0.9rem;
    line-height: 1.4;
}

/* (RESPONSIVE) */

/* Mobile (default) */
.modal-dialog {
    max-width: 70%;
    margin: 1rem auto;
}
/* Tablets */
@media (min-width: 576px) {
    .modal-dialog {
        max-width: 400px;
    }
}
/* Small desktops */
@media (min-width: 768px) {
    .modal-dialog {
        max-width: 500px;
    }
}
/* Large desktops */
@media (min-width: 992px) {
    .modal-dialog {
        max-width: 550px;
    }
}
/* Extra-large screens */
@media (min-width: 1200px) {
    .modal-dialog {
        max-width: 600px;
    }
}

/* =========================================
CSS Fixes
========================================= */

/* Fix for the palceholder text on the textboxes */
.field-margin {
    margin-left: .9em !important;
}


/* =========================================
Brands SECTION
========================================= */
.brand-section {
    position: relative;
    background: #ffffff;
    padding: 30px 0;
    overflow: hidden;
}

/* Decorative shape (top-right modern blob) */
/* .brand-section::before {
    content: "";
    position: absolute;
    top: -80px;
    left: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at center, #f43d00 0%, #f43d00 100%, transparent 100%);
    opacity: 1;
    border-radius: 50%;
    z-index: 0;
}*/

/* Title */
.brand-section h2 {
    font-weight: 600;
    color: #111827;
    position: relative;
    z-index: 1;
}

/* Remove bullets + spacing */
.brand-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* List items */
.brand-list li {
    margin: 8px 0;
}

/* Links */
.brand-list a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.2s ease;
    display: inline-block;
}

/* Hover effect (clean underline + color shift) */
.brand-list a:hover {
    color: #4f46e5;
    transform: translateX(4px);
}

/* Optional subtle underline animation */
.brand-list a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background: #4f46e5;
    transition: width 0.25s ease;
    margin-top: 2px;
}

.brand-list a:hover::after {
    width: 100%;
}

/* Keep content above shape */
.brand-list,
.container {
    position: relative;
    z-index: 1;
}








/* MAIN PREMIUM HEADER STYLE */
li.premium-highlight {
    background-color: #e7f1ff !important; /* light bootstrap-like blue */
    border-left: 5px solid #0d6efd !important;
    color: #0a58ca !important;
    font-weight: 700;
}

/* Ensure list-group-item does NOT override background */
li.list-group-item.premium-highlight {
    background-color: #e7f1ff !important;
}

/* Keep inner text readable (DO NOT reset background) */
.premium-highlight * {
    background-color: transparent !important;
}

/* Optional stronger title style */
li.premium-highlight.section-title {
    background-color: #d6e7ff !important;
    border-left: 6px solid #0b5ed7 !important;
    color: #084298 !important;
}

#btnSubmitApplication:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}




/* TOGGLE */
/* Toggle */
.product-toggle {
    position: relative;
    display: inline-flex;
    background: #e9ecef;
    border-radius: 50px;
    padding: 4px;
}

.toggle-btn {
    border: none;
    background: transparent;
    padding: 8px 18px;
    font-weight: 600;
    cursor: pointer;
    z-index: 2;
}

.toggle-btn.active {
    color: #fff;
}

/* slider */
.toggle-slider {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 50%;
    height: calc(100% - 8px);
    background: #0d6efd;
    border-radius: 50px;
    transition: all 0.3s ease;
    z-index: 1;
}

.product-toggle.analog-active .toggle-slider {
    left: 50%;
}

/* sections */
.product-section {
    display: none;
}

.product-section.active {
    display: block;
}


/* Table base */
.plan-table {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

/* Header styling */
.plan-table thead th {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6c757d;
    padding: 1rem;
}

/* Cells */
.plan-table td {
    padding: 1rem;
    font-size: 0.95rem;
}

/* Premium column highlight (Apple-style soft blue) */
.plan-table th:nth-child(3),
.plan-table td:nth-child(3) {
    background-color: #f0f7ff;
}

/* Stronger separation line for Premium */
.plan-table th:nth-child(3),
.plan-table td:nth-child(3) {
    border-left: 2px solid #d0e7ff;
    border-right: 2px solid #d0e7ff;
}

/* Hover effect */
.plan-table tbody tr:hover td {
    background-color: #fafafa;
}

.plan-table tbody tr:hover td:nth-child(3) {
    background-color: #e6f2ff;
}

/* Premium header badge alignment */
.premium-header {
    background-color: #f0f7ff;
    border-left: 2px solid #d0e7ff;
}

/* CTA buttons spacing */
.plan-table .btn {
    border-radius: 8px;
    font-weight: 600;
}

/* Optional emphasis */
.text-primary {
    color: #0d6efd !important;
}

/* Accordian */
.plan-table .collapse {
    background: #f8f9fa;
    padding: 10px;
    border-radius: 8px;
}

.premium-col .collapse {
    background: #eef6ff;
}

/* =========================================
HOME PAGE - BRANDS PILLS
========================================= */
.brand-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    max-width: 100%;
}

.brand-pill {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background-color: #f1f5f9;
    color: #334155;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.25s ease;
    animation: fadeInUp 0.9s ease forwards;
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Hover effect */
.brand-pill:hover {
    background-color: #0d6efd;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(13, 110, 253, 0.25);
}

/* Comparision Analog Bicycle */

.analog-container {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #eee;
}

.analog-container .col-md-6 {
    padding: 10px 8px;
}




.section .lead {
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}


/* Subscribe */
.subscribe-section {
    background: linear-gradient(135deg, #f8fbff, #eef5ff);
}
.subscribe-box {
    max-width: 650px;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.subscribe-form input {
    border-radius: 8px;
    padding: 14px 20px;
    border: 1px solid #dee2e6;
}
.subscribe-form input:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.15rem rgba(13,110,253,.15);
}
.subscribe-form .btn {
    border-radius: 8px;
    font-weight: 600;
    white-space: nowrap;
}


/* ==============================
BUTTONS
============================== */
/* Primary Button */
.btn-primary-x {
    background: linear-gradient(135deg, #0d6efd, #0b5ed7);
    color: #ffffff;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 5px;
    box-shadow: 0 8px 20px rgba(13, 110, 253, 0.35);
    transition: all 0.25s ease;
    padding: 10px 30px;
}
/* Hover effect */
.btn-primary-x:hover {
    background: linear-gradient(135deg, #0b5ed7, #084298);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(13, 110, 253, 0.45);
    color: #ffffff;
}
/* Click (active) effect */
.btn-primary-x:active {
    transform: translateY(0);
    box-shadow: 0 6px 12px rgba(13, 110, 253, 0.3);
}
.btn-secondary-x {
    background: #f5f5f7;
    color: #1d1d1f;
    font-weight: 600;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    padding: 10px 28px;
    transition: all 0.25s ease;
    /* Optional subtle shadow for depth */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
/* Hover */
.btn-secondary-x:hover {
    background: #e9e9ed;
    color: #000;
    transform: translateY(-1px);
    border-color: rgba(0, 0, 0, 0.30); /* lighter border */
}
/* Active */
.btn-secondary-x:active {
    background: #dcdce0;
    transform: translateY(0);
}
.btn-spinner-border {
    width: 1rem;
    height: 1rem;
    border-width: 2px;
}
/* Disabled */
.btn:disabled {
    background: #d6d6d6;
    color: #8a8a8a;
    box-shadow: none;
    cursor: not-allowed;
}


/* ==============================
STEP INDICATOR
============================== */
.progress-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.step-main {
    text-align: center;
    flex: 1;
    position: relative;
}
.step-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e5e7eb;
    color: #6b7280;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin: 0 auto 8px;
}
.step-main.active .step-circle {
    background: #006db9;
    color: #fff;
}
.step-label {
    font-size: 0.85rem;
    color: #6b7280;
}
.step-main.active .step-label {
    color: #111827;
    font-weight: 600;
}
.step-line {
    height: 2px;
    background: #e5e7eb;
    flex: 1;
    margin: 0 8px;
}
.step {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.6s ease;
    position: absolute;
    width: 100%;
}
.step.active-step {
    opacity: 1;
    transform: translateX(0);
    position: relative;
}
.step.exit-left {
    transform: translateX(-40px);
    opacity: 0;
}

/* MODERN CARD */
.modern-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f1f1f1;
}



/* CHECKOUT SUMMARY */
.checkout-summary {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
    background: #fafafa;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 12px 0;
    font-size: 15px;
}

    .summary-item.total {
        font-size: 18px;
        font-weight: 600;
    }

.summary-divider {
    height: 1px;
    background: #e5e7eb;
    margin: 15px 0;
}

.checkout-summary {
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* VIDEO */
.video-thumbnail {
    cursor: pointer;
}

