/* =====================================================
   TASHEEL HEALTHCARE — THEME.CSS
   New Design System: Navy + Red
   Version: 2.0
===================================================== */

/* ═══════════════════════════════════════════════════
   1. DESIGN TOKENS (CSS VARIABLES)
═══════════════════════════════════════════════════ */
:root {
    /* Brand Colors */
    --navy:        #1B3A6B;
    --navy-dark:   #0F2447;
    --navy-deeper: #060F1E;
    --navy-mid:    #2456A4;
    --navy-light:  #E8EDF5;
    --red:         #C8102E;
    --red-dark:    #A00D24;
    --red-light:   #FFF0F3;

    /* Neutrals */
    --white:       #FFFFFF;
    --bg:          #F8FAFC;
    --bg2:         #F0F4F8;
    --text:        #0F172A;
    --text-mid:    #334155;
    --muted:       #64748B;
    --border:      #E2E8F0;

    /* Status Colors */
    --green:       #059669;
    --green-light: #D1FAE5;
    --amber:       #D97706;
    --amber-light: #FEF3C7;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.09), 0 2px 6px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.07);

    /* Typography */
    --font-display: 'Outfit', sans-serif;
    --font-body:    'Manrope', sans-serif;

    /* Border Radius */
    --r:    12px;
    --r-lg: 18px;
    --r-xl: 24px;

    /* Easing */
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ═══════════════════════════════════════════════════
   2. GLOBAL RESET & BASE
═══════════════════════════════════════════════════ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body) !important;
    background: var(--white) !important;
    color: var(--text) !important;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    padding-top: 0 !important;
    margin: 0 !important;
}

a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--navy-dark);
}

img {
    max-width: 100%;
}

/* ═══════════════════════════════════════════════════
   3. LAYOUT UTILITIES
═══════════════════════════════════════════════════ */
.th-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.th-section    { padding: 72px 0; }
.th-section-sm { padding: 48px 0; }

/* ═══════════════════════════════════════════════════
   4. TYPOGRAPHY
═══════════════════════════════════════════════════ */
.th-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--navy);
    margin-bottom: 10px;
}
.th-eyebrow::before {
    content: '';
    width: 16px;
    height: 2px;
    background: var(--navy);
}

.th-heading {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.5vw, 40px);
    font-weight: 800;
    color: var(--text);
    letter-spacing: -1px;
    line-height: 1.1;
}

.th-subhead {
    font-size: 15px;
    color: var(--muted);
    margin-top: 8px;
}

.th-section-head { margin-bottom: 40px; }

/* ═══════════════════════════════════════════════════
   5. BUTTONS
═══════════════════════════════════════════════════ */

/* Override Bootstrap */
.btn-primary,
.btn-danger {
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
    border-radius: 8px !important;
}
.btn-primary {
    background-color: var(--navy) !important;
    border-color: var(--navy) !important;
}
.btn-primary:hover, .btn-primary:focus {
    background-color: var(--navy-dark) !important;
    border-color: var(--navy-dark) !important;
}
.btn-danger {
    background-color: var(--red) !important;
    border-color: var(--red) !important;
}
.btn-danger:hover, .btn-danger:focus {
    background-color: var(--red-dark) !important;
    border-color: var(--red-dark) !important;
}
.btn-outline-danger {
    color: var(--red) !important;
    border-color: var(--red) !important;
}
.btn-outline-danger:hover {
    background-color: var(--red) !important;
    color: white !important;
}

/* Utility overrides */
.text-danger  { color: var(--red) !important; }
.text-primary { color: var(--navy) !important; }
.bg-danger    { background-color: var(--red) !important; }
.bg-primary   { background-color: var(--navy) !important; }

/* ═══════════════════════════════════════════════════
   6. NAVBAR
═══════════════════════════════════════════════════ */
.th-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: linear-gradient(135deg, #060F1E 0%, #0F2447 60%, #1B3A6B 100%) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 2px 12px rgba(0,0,0,0.25);
    padding: 0 !important;
    transition: box-shadow 0.3s;
}
.th-navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
.th-navbar .container-fluid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px !important;
    height: 62px;
}

/* Logo */
.logo-img {
    height: 40px;
    width: auto;
    display: block;
    transition: transform 0.2s;
}
.navbar-brand:hover .logo-img { transform: scale(1.03); }

/* Nav links */
.th-navbar .nav-link {
    font-family: var(--font-display) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: rgba(255,255,255,0.75) !important;
    padding: 6px 10px !important;
    border-radius: 7px;
    transition: all 0.18s !important;
    white-space: nowrap;
}
.th-navbar .nav-link:hover {
    color: white !important;
    background: rgba(255,255,255,0.1) !important;
}
.th-navbar .nav-link.text-danger {
    color: #FF8A9A !important;
}
.th-navbar .nav-link.text-danger:hover {
    background: rgba(200,16,46,0.2) !important;
}

/* Book Test button */
.th-navbar .book-btn {
    background: var(--red) !important;
    color: white !important;
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    padding: 9px 20px !important;
    border-radius: 8px !important;
    border: none !important;
    transition: all 0.2s !important;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
}
.th-navbar .book-btn:hover {
    background: var(--red-dark) !important;
    color: white !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(200,16,46,0.3) !important;
}

/* Cart */
.th-cart-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 9px;
    color: white !important;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.18s;
}
.th-cart-wrap:hover {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.4);
    color: white !important;
}
.th-cart-badge {
    position: absolute;
    top: -5px; right: -5px;
    background: var(--red);
    color: white;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 10px;
    min-width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    padding: 0 3px;
    line-height: 1;
}

/* User dropdown */
.th-user-toggle {
    font-family: var(--font-display) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: rgba(255,255,255,0.75) !important;
    padding: 6px 10px !important;
    border-radius: 7px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.18s;
}
.th-user-toggle:hover { color: white !important; background: rgba(255,255,255,0.1) !important; }
.th-user-toggle::after { display: none; }
.th-dropdown-menu {
    background: #0F2447;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    padding: 6px;
    min-width: 170px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    margin-top: 6px !important;
}
.th-dropdown-menu .dropdown-item {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    border-radius: 7px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.th-dropdown-menu .dropdown-item:hover { background: rgba(255,255,255,0.1); color: white; }
.th-dropdown-menu .dropdown-item.text-danger-item { color: #FF8A9A; }
.th-dropdown-menu .dropdown-item.text-danger-item:hover { background: rgba(200,16,46,0.2); }
.th-dropdown-divider { border-color: rgba(255,255,255,0.1); margin: 4px 0; }

/* Phone in header */
.th-header-phone {
    color: rgba(255,255,255,0.85) !important;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}
.th-header-phone:hover { color: white !important; }

/* Mobile toggler */
.th-navbar .navbar-toggler {
    border: 1px solid rgba(255,255,255,0.3) !important;
    border-radius: 8px !important;
    padding: 6px 10px !important;
    filter: invert(1);
}
.th-navbar .navbar-toggler:focus { box-shadow: none !important; }

/* ═══════════════════════════════════════════════════
   7. LOGIN OFFCANVAS
═══════════════════════════════════════════════════ */
.offcanvas-header {
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
}
.offcanvas-title {
    font-family: var(--font-display) !important;
    font-weight: 800 !important;
    font-size: 18px !important;
    color: var(--text) !important;
}
.offcanvas-body { padding: 24px; }
.offcanvas-body label {
    font-family: var(--font-display);
    font-weight: 600;
    color: var(--text-mid);
    font-size: 14px;
}
.country-select {
    max-width: 155px;
    border: none !important;
    background: var(--bg) !important;
    border-right: 1px solid var(--border) !important;
    font-size: 13px;
}
.modern-input {
    border-radius: 10px !important;
    overflow: hidden;
    border: 1.5px solid var(--border) !important;
    transition: border-color 0.2s;
}
.modern-input:focus-within {
    border-color: var(--navy) !important;
    box-shadow: 0 0 0 3px rgba(27,58,107,0.1);
}
.modern-textbox {
    border: none !important;
    padding: 13px 16px !important;
    font-size: 14px !important;
    font-family: var(--font-body) !important;
    background: white !important;
}
.modern-textbox:focus { box-shadow: none !important; }
.otp-box {
    width: 48px; height: 54px;
    text-align: center;
    font-size: 20px; font-weight: 700;
    border-radius: 10px !important;
    border: 1.5px solid var(--border) !important;
    font-family: var(--font-display);
    transition: all 0.2s;
}
.otp-box:focus {
    border-color: var(--navy) !important;
    box-shadow: 0 0 0 3px rgba(27,58,107,0.12) !important;
}
.modern-btn { height: 50px !important; }
.offcanvas-body .btn-primary {
    background: var(--navy) !important;
    border-color: var(--navy) !important;
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
    border-radius: 9px !important;
    padding: 12px !important;
}
.offcanvas-body .btn-primary:hover { background: var(--navy-dark) !important; }
.offcanvas-body .btn-success {
    background: var(--red) !important;
    border-color: var(--red) !important;
    font-family: var(--font-display) !important;
    font-weight: 700 !important;
    border-radius: 9px !important;
    padding: 12px !important;
}
.offcanvas-body .btn-success:hover { background: var(--red-dark) !important; }
.policy-text { font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.policy-text a { color: var(--navy); font-weight: 600; text-decoration: none; }
.policy-text a:hover { text-decoration: underline; }

/* ═══════════════════════════════════════════════════
   8. HERO SECTION (index.php)
═══════════════════════════════════════════════════ */
.th-hero {
    background: linear-gradient(135deg, #060F1E 0%, #0F2447 40%, #1B3A6B 75%, #2456A4 100%);
    padding: 72px 0 64px;
    position: relative;
    overflow: hidden;
}
.th-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.th-hero-inner {
    position: relative; z-index: 1;
    text-align: center; max-width: 740px; margin: 0 auto;
}
.th-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(34px, 5.5vw, 58px);
    font-weight: 900; color: white;
    line-height: 1.08; letter-spacing: -1.5px; margin-bottom: 16px;
}
.th-hero-sub {
    font-size: clamp(15px, 2vw, 17px);
    color: rgba(255,255,255,0.85);
    line-height: 1.65; margin-bottom: 36px;
    max-width: 560px; margin-left: auto; margin-right: auto;
}

/* Search box */
.th-search-box {
    background: white; border-radius: 12px;
    padding: 6px 6px 6px 16px;
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    max-width: 620px; margin: 0 auto 20px;
    position: relative;
}
.th-search-box input {
    flex: 1; border: none; outline: none;
    font-family: var(--font-body);
    font-size: 14.5px; color: var(--text);
    background: transparent; padding: 8px 0;
}
.th-search-box input::placeholder { color: var(--muted); }
.th-search-btn {
    background: var(--red); color: white; border: none; cursor: pointer;
    font-family: var(--font-display); font-weight: 700; font-size: 13.5px;
    padding: 11px 24px; border-radius: 8px; white-space: nowrap; transition: all 0.18s;
}
.th-search-btn:hover { background: var(--red-dark); }

/* Suggestions */
.th-suggestions {
    display: none; position: absolute; top: calc(100% + 6px); left: 0; right: 0;
    background: white; border-radius: var(--r); border: 1px solid var(--border);
    box-shadow: var(--shadow-lg); z-index: 100; max-height: 320px; overflow-y: auto;
}
.th-suggest-item {
    display: flex; justify-content: space-between; align-items: center;
    padding: 13px 16px; border-bottom: 1px solid var(--border);
    cursor: pointer; transition: background 0.15s;
}
.th-suggest-item:hover { background: var(--bg); }
.th-suggest-item:last-child { border-bottom: none; }
.th-suggest-name { font-weight: 600; font-size: 14px; color: var(--text); }
.th-suggest-type { font-size: 12px; color: var(--muted); margin-top: 2px; }
.th-suggest-price { font-family: var(--font-display); font-weight: 700; color: var(--navy); font-size: 14px; }

/* Hero CTAs */
.th-hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn-hero-primary {
    background: var(--red); color: white;
    font-family: var(--font-display); font-weight: 700; font-size: 14px;
    padding: 12px 26px; border-radius: 9px; text-decoration: none;
    transition: all 0.2s; box-shadow: 0 6px 20px rgba(200,16,46,0.35);
}
.btn-hero-primary:hover { background: var(--red-dark); transform: translateY(-2px); color: white; }
.btn-hero-ghost {
    background: rgba(255,255,255,0.15); color: white;
    border: 1px solid rgba(255,255,255,0.4);
    font-family: var(--font-display); font-weight: 700; font-size: 14px;
    padding: 12px 26px; border-radius: 9px; text-decoration: none; transition: all 0.2s;
}
.btn-hero-ghost:hover { background: rgba(255,255,255,0.25); color: white; }

/* ═══════════════════════════════════════════════════
   9. TRUST BADGES
═══════════════════════════════════════════════════ */
.th-trust { background: white; border-top: 1px solid var(--border); padding: 20px 0; }
.th-trust-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; }
.th-trust-item { display: flex; align-items: center; gap: 10px; padding: 12px 36px; border-right: 1px solid var(--border); }
.th-trust-item:last-child { border-right: none; }
.th-trust-icon { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.trust-green { background: var(--green-light); }
.trust-amber { background: var(--amber-light); }
.trust-teal  { background: var(--navy-light); }
.th-trust-label { font-weight: 700; font-family: var(--font-display); font-size: 14px; color: var(--text); display: block; }
.th-trust-sub   { font-size: 12px; color: var(--muted); }

/* ═══════════════════════════════════════════════════
   10. ORGAN CARDS
═══════════════════════════════════════════════════ */
.th-organs { background: var(--bg); }
.th-organs-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.th-organ-card {
    background: white; border: 1px solid var(--border); border-radius: var(--r-lg);
    padding: 22px 12px 18px; text-align: center; text-decoration: none; color: var(--text);
    transition: all 0.25s var(--ease); display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.th-organ-card:hover {
    border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,58,107,0.1), var(--shadow-md);
    transform: translateY(-5px); color: var(--text);
}
.th-organ-img-wrap {
    width: 90px; height: 90px; border-radius: 50%; background: #F4E7E7;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s var(--ease); overflow: hidden; box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.th-organ-card:hover .th-organ-img-wrap { background: white; box-shadow: 0 8px 24px rgba(27,58,107,0.18); transform: scale(1.06); }
.th-organ-img-wrap img { width: 70px; height: 70px; object-fit: contain; transition: transform 0.3s var(--ease); }
.th-organ-card:hover .th-organ-img-wrap img { transform: scale(1.1); }
.th-organ-name { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--text-mid); }

/* ═══════════════════════════════════════════════════
   11. TEST & PACKAGE CARDS
═══════════════════════════════════════════════════ */
.th-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.th-card {
    background: white; border: 1px solid var(--border); border-radius: var(--r-lg);
    overflow: hidden; display: flex; flex-direction: column; transition: all 0.25s var(--ease);
}
.th-card:hover {
    border-color: rgba(27,58,107,0.35); box-shadow: var(--shadow-lg); transform: translateY(-4px);
}
.th-card-accent { height: 4px; }
.th-card-accent.teal { background: linear-gradient(90deg, var(--navy), var(--navy-mid)); }
.th-card-accent.red  { background: linear-gradient(90deg, var(--red), #E53935); }
.th-card-head { padding: 20px 22px 16px; }
.th-card-cat { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.cat-teal { color: var(--navy); }
.cat-red  { color: var(--red); }
.th-card-title { font-family: var(--font-display); font-size: 16.5px; font-weight: 800; color: var(--text); margin-bottom: 6px; line-height: 1.25; }
.th-card-sub { font-size: 12.5px; color: var(--muted); margin-bottom: 14px; }
.th-card-meta { display: flex; align-items: center; justify-content: space-between; }
.th-card-badge { font-family: var(--font-display); font-size: 12px; font-weight: 700; padding: 5px 12px; border-radius: 20px; }
.badge-teal { background: var(--navy-light); color: var(--navy-dark); }
.badge-red  { background: var(--red-light); color: var(--red); }
.badge-gray { background: var(--bg2); color: var(--text-mid); }
.th-card-price { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--text); }
.th-card-price small { font-size: 13px; font-weight: 500; color: var(--muted); }
.th-card-body { padding: 14px 22px; flex: 1; border-top: 1px solid var(--border); }
.th-card-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.th-card-list li { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-mid); }
.th-card-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--navy); flex-shrink: 0; }
.th-perks { display: flex; gap: 6px; flex-wrap: wrap; }
.th-perk { background: var(--bg); border: 1px solid var(--border); font-size: 11.5px; color: var(--muted); padding: 4px 10px; border-radius: 20px; }
.th-card-foot { padding: 14px 22px; border-top: 1px solid var(--border); display: flex; gap: 8px; background: var(--bg); }
.btn-book-now { flex: 1; background: var(--red); color: white; font-family: var(--font-display); font-weight: 700; font-size: 13px; padding: 10px 16px; border-radius: 8px; text-decoration: none; text-align: center; transition: all 0.18s; display: block; }
.btn-book-now:hover { background: var(--red-dark); color: white; }
.btn-cart { width: 40px; height: 40px; background: var(--bg2); border: 1px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 16px; transition: all 0.18s; flex-shrink: 0; }
.btn-cart:hover { background: var(--navy-light); border-color: var(--navy); }

/* ═══════════════════════════════════════════════════
   12. HOW IT WORKS
═══════════════════════════════════════════════════ */
.th-how { background: var(--bg); }
.th-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.th-step { background: white; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 30px 24px; text-decoration: none; color: var(--text); transition: all 0.22s var(--ease); display: block; position: relative; }
.th-step:hover { border-color: var(--navy); box-shadow: var(--shadow-md); transform: translateY(-4px); color: var(--text); }
.th-step-num { font-family: var(--font-display); font-size: 11px; font-weight: 800; color: var(--navy); letter-spacing: 2px; margin-bottom: 14px; }
.th-step-icon { width: 50px; height: 50px; background: var(--navy-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 24px; margin-bottom: 14px; }
.th-step h3 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 6px; }
.th-step p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.th-step-arrow { position: absolute; top: 50%; right: -11px; transform: translateY(-50%); width: 22px; height: 22px; background: var(--navy); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 11px; z-index: 1; font-weight: 700; }
.th-steps .th-step:last-child .th-step-arrow { display: none; }

/* ═══════════════════════════════════════════════════
   13. WHY TASHEEL
═══════════════════════════════════════════════════ */
.th-why { background: white; }
.th-why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.th-features { display: flex; flex-direction: column; gap: 6px; }
.th-feature { display: flex; gap: 14px; align-items: flex-start; padding: 16px 18px; border-radius: var(--r); border: 1px solid transparent; transition: all 0.2s; }
.th-feature:hover { background: var(--bg); border-color: var(--border); }
.th-feat-icon { width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0; background: var(--navy-light); display: flex; align-items: center; justify-content: center; font-size: 20px; }
.th-feat-body h4 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
.th-feat-body p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.th-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.th-stat { background: white; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 20px; text-align: center; transition: transform 0.25s; position: relative; overflow: hidden; }
.th-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.th-stat-accent { position: absolute; bottom: 0; left: 0; right: 0; height: 3px; }
.th-stat-num { font-family: var(--font-display); font-size: 38px; font-weight: 900; line-height: 1; margin-bottom: 6px; }
.th-stat-lbl { font-size: 13px; color: var(--muted); font-weight: 500; }
.stat-teal  .th-stat-num { color: var(--navy); } .stat-teal  .th-stat-accent { background: var(--navy); }
.stat-red   .th-stat-num { color: var(--red); }  .stat-red   .th-stat-accent { background: var(--red); }
.stat-green .th-stat-num { color: var(--green); } .stat-green .th-stat-accent { background: var(--green); }
.stat-amber .th-stat-num { color: var(--amber); } .stat-amber .th-stat-accent { background: var(--amber); }

/* ═══════════════════════════════════════════════════
   14. CORPORATE SECTION
═══════════════════════════════════════════════════ */
.th-corporate { background: var(--bg); }
.th-corp-inner {
    background: linear-gradient(135deg, #060F1E 0%, #0D1F3C 40%, #1B3A6B 80%, #1E4580 100%);
    border-radius: var(--r-xl); padding: 52px 56px;
    display: grid; grid-template-columns: 1fr auto; gap: 56px; align-items: center;
    position: relative; overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 60px rgba(0,0,0,0.25);
}
.th-corp-inner::after { content: ''; position: absolute; right: -80px; top: -80px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(200,16,46,0.12) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.th-corp-inner::before { content: ''; position: absolute; left: 30%; bottom: -100px; width: 220px; height: 220px; background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%); border-radius: 50%; pointer-events: none; }
.th-corp-content { position: relative; z-index: 1; }
.th-corp-content .th-heading { color: white; font-size: clamp(22px, 2.5vw, 30px); }
.th-corp-content > p { color: rgba(255,255,255,0.75); font-size: 14.5px; margin-top: 10px; max-width: 500px; line-height: 1.75; }
.th-corp-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 24px; }
.th-corp-feat { display: flex; align-items: center; gap: 9px; font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 600; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); padding: 9px 14px; border-radius: 8px; }
.th-corp-feat-icon { width: 22px; height: 22px; background: rgba(110,231,183,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; color: #6EE7B7; }
.th-corp-btns { display: flex; flex-direction: column; gap: 12px; align-items: stretch; position: relative; z-index: 1; flex-shrink: 0; min-width: 200px; }
.btn-corp-primary { background: var(--red); color: white !important; font-family: var(--font-display); font-weight: 700; font-size: 14px; padding: 14px 28px; border-radius: 9px; text-decoration: none; text-align: center; white-space: nowrap; transition: all 0.2s; box-shadow: 0 6px 20px rgba(200,16,46,0.4); display: block; }
.btn-corp-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(200,16,46,0.5); color: white !important; }
.btn-corp-ghost { background: transparent; color: white !important; border: 1.5px solid rgba(255,255,255,0.35); font-family: var(--font-display); font-weight: 600; font-size: 13.5px; padding: 13px 28px; border-radius: 9px; text-decoration: none; text-align: center; white-space: nowrap; transition: all 0.2s; display: block; }
.btn-corp-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.6); color: white !important; }

/* ═══════════════════════════════════════════════════
   15. TESTIMONIALS
═══════════════════════════════════════════════════ */
.th-testi { background: white; }
.th-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.th-testi-card { background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px; transition: all 0.22s; display: flex; flex-direction: column; gap: 14px; }
.th-testi-card:hover { border-color: rgba(27,58,107,0.3); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.th-stars { color: #F59E0B; font-size: 14px; letter-spacing: 2px; }
.th-testi-text { font-size: 14px; color: var(--text-mid); line-height: 1.7; font-style: italic; flex: 1; }
.th-testi-author { display: flex; align-items: center; gap: 12px; padding-top: 14px; border-top: 1px solid var(--border); }
.th-testi-avatar { width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, var(--navy), var(--navy-dark)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 800; font-size: 14px; color: white; }
.th-testi-name { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--text); }
.th-testi-meta { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ═══════════════════════════════════════════════════
   16. FAQ
═══════════════════════════════════════════════════ */
.th-faq { background: var(--bg); }
.th-faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; }
.th-faq-list { display: flex; flex-direction: column; gap: 6px; }
.th-faq-item { border-radius: var(--r); overflow: hidden; }
.th-faq-q { width: 100%; background: white; border: 1px solid var(--border); border-radius: var(--r); padding: 16px 20px; text-align: left; cursor: pointer; font-family: var(--font-display); font-weight: 600; font-size: 14px; color: var(--text); display: flex; justify-content: space-between; align-items: center; gap: 12px; transition: all 0.2s; }
.th-faq-q:hover { background: var(--navy-light); border-color: var(--navy); }
.th-faq-q.open { background: var(--navy); border-color: var(--navy); color: white; border-radius: var(--r) var(--r) 0 0; }
.th-faq-icon { flex-shrink: 0; font-size: 20px; transition: transform 0.3s; font-weight: 400; }
.th-faq-q.open .th-faq-icon { transform: rotate(45deg); }
.th-faq-a { background: white; border: 1px solid var(--border); border-top: none; border-radius: 0 0 var(--r) var(--r); padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease), padding 0.3s; font-size: 13.5px; color: var(--muted); line-height: 1.7; }
.th-faq-a.open { max-height: 200px; padding: 16px 20px; }
.th-faq-contact { background: white; border: 1px solid var(--border); border-radius: var(--r-lg); padding: 36px; display: flex; flex-direction: column; gap: 20px; }
.th-contact-item { display: flex; align-items: center; gap: 14px; }
.th-contact-icon { width: 46px; height: 46px; border-radius: 11px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.th-contact-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.th-contact-value { font-family: var(--font-display); font-weight: 700; font-size: 17px; color: var(--text); text-decoration: none; }
.th-contact-value:hover { color: var(--navy); }
.btn-wa { display: flex; align-items: center; justify-content: center; gap: 8px; background: #25D366; color: white; font-family: var(--font-display); font-weight: 700; font-size: 14px; padding: 13px 20px; border-radius: var(--r); text-decoration: none; transition: all 0.2s; margin-top: 6px; }
.btn-wa:hover { background: #1EB958; color: white; transform: translateY(-2px); }

/* ═══════════════════════════════════════════════════
   17. TESTS PAGE
═══════════════════════════════════════════════════ */
.tests-page { background: var(--bg); min-height: 100vh; padding-bottom: 80px; }
.tests-hero { background: linear-gradient(135deg, #060F1E 0%, #0F2447 45%, #1B3A6B 100%); padding: 52px 0 44px; position: relative; overflow: hidden; }
.tests-hero::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.tests-hero-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.tests-hero h1 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); font-weight: 900; color: white; letter-spacing: -1px; margin-bottom: 8px; }
.tests-hero p { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 28px; }
.tests-search-wrap { max-width: 640px; }
.tests-search-inner { background: white; border-radius: 12px; display: flex; align-items: center; padding: 6px 6px 6px 18px; box-shadow: 0 8px 32px rgba(0,0,0,0.2); gap: 10px; }
.tests-search-inner input { flex: 1; border: none; outline: none; font-family: var(--font-body); font-size: 14.5px; color: var(--text); background: transparent; padding: 8px 0; }
.tests-search-inner input::placeholder { color: #94A3B8; }
.tests-search-btn { background: var(--red); color: white; border: none; font-family: var(--font-display); font-weight: 700; font-size: 13.5px; padding: 11px 26px; border-radius: 8px; cursor: pointer; white-space: nowrap; transition: background 0.18s; }
.tests-search-btn:hover { background: var(--red-dark); }
.tests-count-strip { background: white; border-bottom: 1px solid var(--border); padding: 14px 0; }
.tests-count-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.tests-count-text { font-family: var(--font-display); font-size: 14px; font-weight: 600; color: var(--text-mid); }
.tests-count-text span { color: var(--red); font-weight: 800; }
.tests-main { max-width: 1240px; margin: 0 auto; padding: 40px 24px 0; }
.test-card { background: white; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; transition: all 0.25s var(--ease); height: 100%; position: relative; }
.test-card:hover { border-color: rgba(27,58,107,0.35); box-shadow: 0 16px 48px rgba(0,0,0,0.12); transform: translateY(-5px); }
.test-card-top { height: 4px; background: linear-gradient(90deg, var(--navy), var(--navy-mid)); }
.test-card-top.has-discount { background: linear-gradient(90deg, var(--red), #E53935); }
.test-price-badge { position: absolute; top: 14px; right: 14px; background: var(--navy); color: white; font-family: var(--font-display); font-weight: 800; font-size: 13px; padding: 6px 12px; border-radius: 20px; line-height: 1.2; text-align: center; }
.test-price-badge.discounted { background: var(--red); }
.test-price-badge .off-text { display: block; font-size: 9px; font-weight: 600; letter-spacing: 0.5px; opacity: 0.85; margin-top: 1px; }
.test-card-body { padding: 20px 20px 16px; flex: 1; display: flex; flex-direction: column; }
.test-name { font-family: var(--font-display); font-size: 15.5px; font-weight: 800; color: var(--text); margin-bottom: 12px; line-height: 1.3; padding-right: 70px; }
.test-meta { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.test-meta-item { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); }
.test-meta-icon { width: 24px; height: 24px; border-radius: 6px; background: var(--navy-light); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 12px; }
.test-price-row { display: flex; align-items: center; gap: 8px; padding: 12px 0; border-top: 1px solid #F1F5F9; margin-top: auto; }
.test-price-main { font-family: var(--font-display); font-size: 20px; font-weight: 900; color: var(--red); }
.test-price-original { font-size: 13px; color: #94A3B8; text-decoration: line-through; }
.test-discount-pill { background: var(--red-light); color: var(--red); font-family: var(--font-display); font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 20px; margin-left: auto; }
.test-card-foot { display: flex; gap: 8px; padding: 14px 20px; background: var(--bg); border-top: 1px solid #F1F5F9; }
.btn-test-book { flex: 1; background: var(--red); color: white; font-family: var(--font-display); font-weight: 700; font-size: 13px; padding: 10px 14px; border-radius: 8px; text-decoration: none; text-align: center; transition: background 0.18s; display: block; border: none; cursor: pointer; }
.btn-test-book:hover { background: var(--red-dark); color: white; }
.btn-test-cart { width: 40px; height: 40px; flex-shrink: 0; background: white; border: 1.5px solid var(--border); border-radius: 8px; display: flex; align-items: center; justify-content: center; text-decoration: none; font-size: 16px; transition: all 0.18s; color: var(--text-mid); }
.btn-test-cart:hover { background: var(--navy-light); border-color: var(--navy); color: var(--navy); }
.tests-empty { text-align: center; padding: 72px 24px; background: white; border-radius: 18px; border: 1px solid var(--border); }
.tests-empty-icon { font-size: 52px; margin-bottom: 16px; display: block; }
.tests-empty h3 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.tests-empty p { font-size: 14px; color: var(--muted); }
.tests-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 48px; flex-wrap: wrap; }
.tests-page-btn { width: 40px; height: 40px; border-radius: 9px; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-size: 14px; font-weight: 700; text-decoration: none; transition: all 0.18s; border: 1.5px solid var(--border); background: white; color: var(--text-mid); }
.tests-page-btn:hover { background: var(--navy-light); border-color: var(--navy); color: var(--navy); }
.tests-page-btn.active { background: var(--navy); border-color: var(--navy); color: white; box-shadow: 0 4px 12px rgba(27,58,107,0.3); }

/* ═══════════════════════════════════════════════════
   18. CART PAGE
═══════════════════════════════════════════════════ */
.cart-item { background: white; transition: 0.2s ease; border-radius: var(--r); }
.cart-item:hover { box-shadow: var(--shadow-sm); }
.qty-box { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.qty-btn { width: 35px; height: 35px; font-weight: bold; }
.qty-input { width: 50px; border: none; text-align: center; font-weight: 600; }

/* ═══════════════════════════════════════════════════
   19. WHATSAPP FLOAT
═══════════════════════════════════════════════════ */
.th-wa-float {
    position: fixed; bottom: 24px; right: 24px; z-index: 9999;
    width: 54px; height: 54px; background: #25D366; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px rgba(37,211,102,0.45);
    text-decoration: none; transition: transform 0.2s;
}
.th-wa-float:hover { transform: scale(1.1); }

/* ═══════════════════════════════════════════════════
   20. RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .th-cards-grid        { grid-template-columns: repeat(2, 1fr); }
    .th-organs-grid       { grid-template-columns: repeat(3, 1fr); }
    .th-steps             { grid-template-columns: repeat(2, 1fr); }
    .th-step-arrow        { display: none; }
    .th-why-grid          { grid-template-columns: 1fr; }
    .th-testi-grid        { grid-template-columns: 1fr 1fr; }
    .th-faq-grid          { grid-template-columns: 1fr; }
    .th-corp-inner        { gap: 36px; padding: 40px; }
}

@media (max-width: 768px) {
    .th-cards-grid        { grid-template-columns: 1fr; }
    .th-testi-grid        { grid-template-columns: 1fr; }
    .th-organs-grid       { grid-template-columns: repeat(3, 1fr); }
    .th-trust-inner       { flex-direction: column; }
    .th-trust-item        { border-right: none; border-bottom: 1px solid var(--border); width: 100%; justify-content: center; }
    .th-corp-inner        { grid-template-columns: 1fr; padding: 32px 24px; }
    .th-corp-btns         { align-items: flex-start; }
    .th-steps             { grid-template-columns: 1fr; }
    .th-hero h1           { font-size: 32px; }
    .tests-hero h1        { font-size: 26px; }
    .th-navbar .nav-link  { display: none; }
}


/* ═══════════════════════════════════════════════════
   21. PACKAGES PAGE
═══════════════════════════════════════════════════ */
/* ══════════════════════════════════════════
   PACKAGES PAGE — NAVY/RED THEME
══════════════════════════════════════════ */
.pkg-page {
    background: var(--bg, #F8FAFC);
    min-height: 100vh;
    padding-bottom: 80px;
}

/* ── HERO ── */
.pkg-hero {
    background: linear-gradient(135deg, #060F1E 0%, #0F2447 45%, #1B3A6B 100%);
    padding: 52px 0 44px;
    position: relative;
    overflow: hidden;
}
.pkg-hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.pkg-hero-inner {
    max-width: 1240px; margin: 0 auto; padding: 0 24px;
    position: relative; z-index: 1;
}
.pkg-hero h1 {
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900; color: white;
    letter-spacing: -1px; margin-bottom: 10px;
}
.pkg-hero p {
    font-size: 15px; color: rgba(255,255,255,0.7); margin: 0;
}

/* ── COUNT STRIP ── */
.pkg-count-strip {
    background: white;
    border-bottom: 1px solid var(--border, #E2E8F0);
    padding: 14px 0;
}
.pkg-count-inner {
    max-width: 1240px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.pkg-count-text {
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-size: 14px; font-weight: 600; color: #334155;
}
.pkg-count-text span {
    color: var(--red, #C8102E); font-weight: 800;
}

/* ── MAIN ── */
.pkg-main {
    max-width: 1240px; margin: 0 auto; padding: 40px 24px 0;
}

/* ── CARD ── */
.pkg-card {
    background: white;
    border: 1px solid var(--border, #E2E8F0);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.25s cubic-bezier(0.16,1,0.3,1);
}
.pkg-card:hover {
    border-color: rgba(27,58,107,0.35);
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

/* Top accent bar */
.pkg-card-top {
    height: 4px;
    background: linear-gradient(90deg, var(--navy, #1B3A6B), #2456A4);
}

/* Card body */
.pkg-card-body {
    padding: 22px 22px 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Category label */
.pkg-cat-label {
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-size: 11px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--navy, #1B3A6B);
    margin-bottom: 8px;
}

/* Package name */
.pkg-name {
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-size: 17px; font-weight: 800;
    color: var(--text, #0F172A);
    line-height: 1.25; margin-bottom: 16px;
}

/* Meta rows */
.pkg-meta {
    display: flex; flex-direction: column; gap: 7px;
    margin-bottom: 18px; flex: 1;
}
.pkg-meta-item {
    display: flex; align-items: center; gap: 9px;
    font-size: 13px; color: var(--muted, #64748B);
}
.pkg-meta-icon {
    width: 26px; height: 26px; border-radius: 7px;
    background: var(--navy-light, #E8EDF5);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; flex-shrink: 0;
}

/* Price row */
.pkg-price-row {
    display: flex; align-items: center;
    justify-content: space-between;
    padding-top: 14px;
    border-top: 1px solid var(--border, #E2E8F0);
    margin-top: auto;
}
.pkg-test-badge {
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-size: 12px; font-weight: 700;
    background: var(--navy-light, #E8EDF5);
    color: var(--navy, #1B3A6B);
    padding: 5px 12px; border-radius: 20px;
}
.pkg-price {
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-size: 24px; font-weight: 900;
    color: var(--text, #0F172A);
}
.pkg-price small {
    font-size: 13px; font-weight: 500;
    color: var(--muted, #64748B);
    margin-right: 2px;
}

/* Footer */
.pkg-card-foot {
    display: flex; gap: 8px;
    padding: 14px 22px;
    background: var(--bg, #F8FAFC);
    border-top: 1px solid var(--border, #E2E8F0);
}
.btn-pkg-details {
    flex: 1; background: transparent;
    color: var(--navy, #1B3A6B);
    border: 1.5px solid var(--navy, #1B3A6B);
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-weight: 700; font-size: 13px;
    padding: 10px 14px; border-radius: 8px;
    text-decoration: none; text-align: center;
    transition: all 0.18s; display: block;
}
.btn-pkg-details:hover {
    background: var(--navy, #1B3A6B);
    color: white;
}
.btn-pkg-book {
    flex: 1; background: var(--red, #C8102E); color: white;
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-weight: 700; font-size: 13px;
    padding: 10px 14px; border-radius: 8px;
    text-decoration: none; text-align: center;
    transition: all 0.18s; display: flex;
    align-items: center; justify-content: center; gap: 6px;
}
.btn-pkg-book:hover { background: #a80d25; color: white; }

/* ── EMPTY STATE ── */
.pkg-empty {
    text-align: center; padding: 72px 24px;
    background: white; border-radius: 18px;
    border: 1px solid var(--border, #E2E8F0);
}
.pkg-empty-icon { font-size: 52px; margin-bottom: 16px; display: block; }
.pkg-empty h3 {
    font-family: var(--font-display, 'Outfit', sans-serif);
    font-size: 20px; font-weight: 700;
    color: var(--text, #0F172A); margin-bottom: 8px;
}
.pkg-empty p { font-size: 14px; color: var(--muted, #64748B); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .pkg-hero { padding: 36px 0 30px; }
    .pkg-hero h1 { font-size: 26px; }
    .pkg-card-foot { flex-direction: column; }
    .btn-pkg-details, .btn-pkg-book { width: 100%; }
}

/* ═══════════════════════════════════════════════════
   22. PACKAGE DETAILS PAGE
═══════════════════════════════════════════════════ */
/* ══════════════════════════════════════════
   PACKAGE DETAILS PAGE — NAVY/RED THEME
══════════════════════════════════════════ */

/* ── HERO ── */
.pkgd-hero {
    background: linear-gradient(135deg, #060F1E 0%, #0F2447 45%, #1B3A6B 100%);
    padding: 40px 0 44px;
    position: relative; overflow: hidden;
}
.pkgd-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.pkgd-hero-inner {
    max-width: 1240px; margin: 0 auto; padding: 0 24px;
    position: relative; z-index: 1;
}
.pkgd-back {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-display); font-size: 13px; font-weight: 600;
    color: rgba(255,255,255,0.65); text-decoration: none;
    margin-bottom: 20px; transition: color 0.18s;
}
.pkgd-back:hover { color: white; }
.pkgd-hero-badge {
    display: inline-block;
    background: rgba(200,16,46,0.2); border: 1px solid rgba(200,16,46,0.35);
    color: #FF8A9A; font-family: var(--font-display); font-size: 11px;
    font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
    padding: 5px 14px; border-radius: 20px; margin-bottom: 12px;
}
.pkgd-hero-title {
    font-family: var(--font-display); font-size: clamp(26px, 4vw, 42px);
    font-weight: 900; color: white; letter-spacing: -1px;
    line-height: 1.1; margin-bottom: 10px;
}
.pkgd-hero-sub {
    font-size: 15px; color: rgba(255,255,255,0.65); margin: 0;
}

/* ── PAGE LAYOUT ── */
.pkgd-page { background: var(--bg, #F8FAFC); padding: 40px 0 80px; }
.pkgd-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.pkgd-grid {
    display: grid; grid-template-columns: 1fr 360px;
    gap: 28px; align-items: start;
}

/* ── STATS ROW ── */
.pkgd-stats-row {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 12px; margin-bottom: 28px;
}
.pkgd-stat-item {
    background: white; border: 1px solid var(--border, #E2E8F0);
    border-radius: 14px; padding: 16px 14px;
    display: flex; align-items: center; gap: 10px;
}
.pkgd-stat-icon {
    font-size: 22px; flex-shrink: 0;
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--navy-light, #E8EDF5);
    display: flex; align-items: center; justify-content: center;
}
.pkgd-stat-num {
    font-family: var(--font-display); font-size: 16px;
    font-weight: 800; color: var(--text, #0F172A); line-height: 1;
}
.pkgd-stat-lbl {
    font-size: 11px; color: var(--muted, #64748B);
    margin-top: 3px;
}

/* ── SECTION ── */
.pkgd-section {
    background: white; border: 1px solid var(--border, #E2E8F0);
    border-radius: 18px; overflow: hidden;
}
.pkgd-section-title {
    font-family: var(--font-display); font-size: 17px; font-weight: 800;
    color: var(--text, #0F172A); padding: 20px 24px;
    border-bottom: 1px solid var(--border, #E2E8F0);
    display: flex; align-items: center; gap: 10px; margin: 0;
}
.pkgd-section-title i { color: var(--navy, #1B3A6B); }

/* ── TESTS GRID ── */
.pkgd-tests-grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 0;
}
.pkgd-test-item {
    display: flex; align-items: center; gap: 12px;
    padding: 13px 20px; border-bottom: 1px solid var(--border, #E2E8F0);
    border-right: 1px solid var(--border, #E2E8F0);
    transition: background 0.15s;
}
.pkgd-test-item:hover { background: var(--bg, #F8FAFC); }
.pkgd-test-item:nth-child(even) { border-right: none; }
.pkgd-test-item:nth-last-child(-n+2) { border-bottom: none; }
.pkgd-test-num {
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--navy-light, #E8EDF5);
    color: var(--navy, #1B3A6B); font-family: var(--font-display);
    font-size: 10px; font-weight: 800;
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.pkgd-test-name {
    font-size: 13.5px; color: var(--text-mid, #334155);
    font-weight: 500; flex: 1; line-height: 1.4;
}
.pkgd-test-check {
    color: var(--green, #059669); font-size: 15px; flex-shrink: 0;
}
.pkgd-empty {
    padding: 40px; text-align: center;
    font-size: 14px; color: var(--muted, #64748B);
    display: flex; align-items: center; justify-content: center; gap: 8px;
}

/* ── BOOKING CARD ── */
.pkgd-book-card {
    background: white; border: 1px solid var(--border, #E2E8F0);
    border-radius: 18px; overflow: hidden;
    position: sticky; top: 80px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.pkgd-book-accent { height: 4px; background: linear-gradient(90deg, var(--navy, #1B3A6B), #2456A4); }
.pkgd-book-body { padding: 24px; }
.pkgd-book-label {
    font-family: var(--font-display); font-size: 11px; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--muted, #64748B); margin-bottom: 6px;
}
.pkgd-book-price {
    font-family: var(--font-display); font-size: 38px; font-weight: 900;
    color: var(--text, #0F172A); line-height: 1; margin-bottom: 6px;
}
.pkgd-book-price small {
    font-size: 16px; font-weight: 500; color: var(--muted, #64748B); margin-right: 3px;
}
.pkgd-book-sub { font-size: 13px; color: var(--muted, #64748B); margin-bottom: 18px; }
.pkgd-book-divider { height: 1px; background: var(--border, #E2E8F0); margin: 16px 0; }
.pkgd-book-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.pkgd-book-feat {
    display: flex; align-items: center; gap: 8px;
    font-size: 13px; color: var(--text-mid, #334155); font-weight: 500;
}
.pkgd-book-feat i { color: var(--green, #059669); font-size: 14px; flex-shrink: 0; }
.pkgd-book-btn {
    width: 100%; background: var(--red, #C8102E); color: white;
    font-family: var(--font-display); font-weight: 700; font-size: 15px;
    padding: 14px; border-radius: 10px; border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: all 0.2s; margin-bottom: 10px;
}
.pkgd-book-btn:hover { background: #a80d25; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(200,16,46,0.35); }
.pkgd-cart-btn {
    width: 100%; background: transparent; color: var(--navy, #1B3A6B);
    border: 1.5px solid var(--navy, #1B3A6B);
    font-family: var(--font-display); font-weight: 700; font-size: 14px;
    padding: 12px; border-radius: 10px; text-decoration: none;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: all 0.2s; margin-bottom: 14px;
}
.pkgd-cart-btn:hover { background: var(--navy, #1B3A6B); color: white; }
.pkgd-book-note {
    font-size: 12px; color: var(--muted, #64748B);
    text-align: center; margin: 0;
}

/* ── HELP CARD ── */
.pkgd-help-card {
    background: white; border: 1px solid var(--border, #E2E8F0);
    border-radius: 16px; padding: 20px; margin-top: 16px;
}
.pkgd-help-title {
    font-family: var(--font-display); font-size: 15px; font-weight: 700;
    color: var(--text, #0F172A); margin-bottom: 6px;
}
.pkgd-help-text { font-size: 13px; color: var(--muted, #64748B); margin-bottom: 14px; }
.pkgd-help-wa {
    display: flex; align-items: center; justify-content: center; gap: 7px;
    background: #25D366; color: white;
    font-family: var(--font-display); font-weight: 700; font-size: 13.5px;
    padding: 11px; border-radius: 9px; text-decoration: none;
    transition: all 0.2s; margin-bottom: 8px;
}
.pkgd-help-wa:hover { background: #1EB958; color: white; }
.pkgd-help-call {
    display: flex; align-items: center; justify-content: center; gap: 7px;
    background: var(--navy-light, #E8EDF5); color: var(--navy, #1B3A6B);
    font-family: var(--font-display); font-weight: 700; font-size: 13.5px;
    padding: 11px; border-radius: 9px; text-decoration: none; transition: all 0.2s;
}
.pkgd-help-call:hover { background: var(--navy, #1B3A6B); color: white; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .pkgd-grid { grid-template-columns: 1fr; }
    .pkgd-book-card { position: static; }
    .pkgd-stats-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .pkgd-stats-row { grid-template-columns: repeat(2, 1fr); }
    .pkgd-tests-grid { grid-template-columns: 1fr; }
    .pkgd-test-item { border-right: none; }
    .pkgd-test-item:last-child { border-bottom: none; }
}

/* ═══════════════════════════════════════════════════
   23. CART PAGE
═══════════════════════════════════════════════════ */
/* ══════════════════════════════════════════
   CART PAGE — NAVY/RED THEME
══════════════════════════════════════════ */
.cart-hero {
    background: linear-gradient(135deg, #060F1E 0%, #0F2447 45%, #1B3A6B 100%);
    padding: 44px 0 38px; position: relative; overflow: hidden;
}
.cart-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cart-hero-inner { max-width:1240px; margin:0 auto; padding:0 24px; position:relative; z-index:1; }
.cart-hero h1 { font-family:var(--font-display); font-size:clamp(26px,4vw,40px); font-weight:900; color:white; letter-spacing:-1px; margin-bottom:8px; display:flex; align-items:center; gap:12px; }
.cart-hero p  { font-size:15px; color:rgba(255,255,255,0.65); margin:0; }

.cart-page      { background:var(--bg); padding:36px 0 80px; min-height:60vh; }
.cart-container { max-width:1240px; margin:0 auto; padding:0 24px; }

/* ── EMPTY STATE ── */
.cart-empty { background:white; border:1px solid var(--border); border-radius:20px; text-align:center; padding:72px 24px; }
.cart-empty-icon { font-size:56px; margin-bottom:16px; display:block; }
.cart-empty h3 { font-family:var(--font-display); font-size:22px; font-weight:800; color:var(--text); margin-bottom:8px; }
.cart-empty p  { font-size:14px; color:var(--muted); margin-bottom:28px; }
.cart-empty-actions { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; }

/* ── LAYOUT ── */
.cart-layout { display:grid; grid-template-columns:1fr 360px; gap:24px; align-items:start; }

/* ── ITEMS COLUMN ── */
.cart-items-header {
    display:flex; align-items:center; justify-content:space-between;
    margin-bottom:16px;
}
.cart-items-title { font-family:var(--font-display); font-size:16px; font-weight:800; color:var(--text); }
.cart-add-more {
    font-family:var(--font-display); font-size:13px; font-weight:700;
    color:var(--navy); text-decoration:none; display:flex; align-items:center; gap:5px;
    transition:color 0.18s;
}
.cart-add-more:hover { color:var(--navy-dark); }

/* Cart item card */
.cart-item-card {
    background:white; border:1px solid var(--border); border-radius:14px;
    padding:18px 20px; margin-bottom:10px;
    display:flex; align-items:center; gap:14px;
    transition:all 0.2s;
}
.cart-item-card:hover { border-color:rgba(27,58,107,0.25); box-shadow:0 4px 16px rgba(0,0,0,0.07); }

.cart-item-icon {
    width:48px; height:48px; border-radius:12px; flex-shrink:0;
    display:flex; align-items:center; justify-content:center; font-size:22px;
}
.icon-pkg  { background:#E8EDF5; }
.icon-test { background:#FFF0F3; }

.cart-item-info { flex:1; min-width:0; }
.cart-item-name {
    font-family:var(--font-display); font-size:14.5px; font-weight:700;
    color:var(--text); margin-bottom:5px; line-height:1.3;
    white-space:nowrap; overflow:hidden; text-overflow:ellipsis;
}
.cart-item-meta { display:flex; align-items:center; gap:8px; }
.cart-item-type-badge {
    font-family:var(--font-display); font-size:10px; font-weight:700;
    padding:3px 9px; border-radius:20px;
}
.badge-pkg  { background:var(--navy-light); color:var(--navy); }
.badge-test { background:var(--red-light); color:var(--red); }
.cart-item-unit { font-size:12px; color:var(--muted); }

/* Qty controls */
.cart-item-qty { display:flex; align-items:center; gap:0; flex-shrink:0; }
.qty-btn {
    width:32px; height:32px; background:var(--bg2); border:1px solid var(--border);
    border-radius:8px; display:flex; align-items:center; justify-content:center;
    text-decoration:none; color:var(--text); font-size:16px; font-weight:700;
    transition:all 0.18s; line-height:1;
}
.qty-btn:hover { background:var(--navy-light); border-color:var(--navy); color:var(--navy); }
.qty-val {
    font-family:var(--font-display); font-size:14px; font-weight:700;
    color:var(--text); width:36px; text-align:center;
}

.cart-item-subtotal {
    font-family:var(--font-display); font-size:15px; font-weight:800;
    color:var(--text); flex-shrink:0; min-width:80px; text-align:right;
}
.cart-item-remove {
    width:34px; height:34px; border-radius:8px; flex-shrink:0;
    background:var(--red-light); color:var(--red);
    display:flex; align-items:center; justify-content:center;
    text-decoration:none; font-size:15px; transition:all 0.18s;
}
.cart-item-remove:hover { background:var(--red); color:white; }

/* Continue shopping */
.cart-continue { display:flex; gap:10px; margin-top:20px; flex-wrap:wrap; }

/* ── BUTTONS ── */
.btn-cart-primary {
    display:inline-flex; align-items:center; gap:8px;
    background:var(--red); color:white;
    font-family:var(--font-display); font-weight:700; font-size:14px;
    padding:12px 24px; border-radius:9px; text-decoration:none; transition:all 0.2s;
}
.btn-cart-primary:hover { background:var(--red-dark); color:white; transform:translateY(-2px); }
.btn-cart-outline {
    display:inline-flex; align-items:center; gap:7px;
    background:white; color:var(--navy);
    border:1.5px solid var(--border);
    font-family:var(--font-display); font-weight:700; font-size:13px;
    padding:10px 18px; border-radius:9px; text-decoration:none; transition:all 0.2s;
}
.btn-cart-outline:hover { border-color:var(--navy); background:var(--navy-light); color:var(--navy); }

/* ── SUMMARY CARD ── */
.cart-summary-card {
    background:white; border:1px solid var(--border); border-radius:18px;
    overflow:hidden; position:sticky; top:80px;
    box-shadow:0 8px 32px rgba(0,0,0,0.08);
}
.cart-summary-top { height:4px; background:linear-gradient(90deg, var(--navy), #2456A4); }
.cart-summary-body { padding:24px; }
.cart-summary-title {
    font-family:var(--font-display); font-size:17px; font-weight:800;
    color:var(--text); margin-bottom:18px;
}
.cart-summary-line {
    display:flex; justify-content:space-between; align-items:center;
    margin-bottom:10px;
}
.cart-summary-line-name { font-size:13px; color:var(--text-mid); flex:1; padding-right:10px; }
.cart-summary-line-price { font-family:var(--font-display); font-size:13px; font-weight:700; color:var(--text); flex-shrink:0; }
.cart-summary-divider { height:1px; background:var(--border); margin:14px 0; }
.cart-summary-total {
    display:flex; justify-content:space-between; align-items:center;
    font-family:var(--font-display); font-size:18px; font-weight:900;
    color:var(--text); margin-bottom:20px;
}

/* Checkout button */
.btn-checkout {
    display:flex; align-items:center; justify-content:center; gap:8px;
    width:100%; background:var(--red); color:white;
    font-family:var(--font-display); font-weight:700; font-size:15px;
    padding:14px; border-radius:10px; text-decoration:none;
    transition:all 0.2s; margin-bottom:16px;
}
.btn-checkout:hover { background:var(--red-dark); color:white; transform:translateY(-2px); box-shadow:0 6px 20px rgba(200,16,46,0.35); }

/* Trust */
.cart-trust { display:flex; flex-direction:column; gap:8px; }
.cart-trust-item {
    display:flex; align-items:center; gap:8px;
    font-size:12.5px; color:var(--muted);
}
.cart-trust-item i { color:var(--green); font-size:14px; }

/* Help card */
.cart-help {
    background:white; border:1px solid var(--border); border-radius:14px;
    padding:16px; margin-top:14px; text-align:center;
}
.cart-help-wa {
    display:inline-flex; align-items:center; justify-content:center; gap:7px;
    background:#25D366; color:white;
    font-family:var(--font-display); font-weight:700; font-size:13.5px;
    padding:10px 20px; border-radius:9px; text-decoration:none;
    transition:all 0.2s; margin-top:8px; width:100%;
}
.cart-help-wa:hover { background:#1EB958; color:white; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .cart-layout { grid-template-columns:1fr; }
    .cart-summary-card { position:static; }
}
@media (max-width: 640px) {
    .cart-item-card { flex-wrap:wrap; }
    .cart-item-subtotal { min-width:auto; }
    .cart-continue { flex-direction:column; }
    .btn-cart-outline { width:100%; justify-content:center; }
}

/* ═══════════════════════════════════════════════════
   24. CHECKOUT PAGE
═══════════════════════════════════════════════════ */
/* ══════════════════════════════════════════
   CHECKOUT PAGE — NAVY/RED THEME
══════════════════════════════════════════ */
.chk-hero {
    background: linear-gradient(135deg, #060F1E 0%, #0F2447 45%, #1B3A6B 100%);
    padding: 40px 0 38px; position: relative; overflow: hidden;
}
.chk-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.chk-hero-inner { max-width:1240px; margin:0 auto; padding:0 24px; position:relative; z-index:1; }
.chk-back {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-display); font-size: 13px; font-weight: 600;
    color: rgba(255,255,255,0.65); text-decoration: none; margin-bottom: 16px; transition: color 0.18s;
}
.chk-back:hover { color: white; }
.chk-hero h1 { font-family:var(--font-display); font-size:clamp(26px,4vw,40px); font-weight:900; color:white; letter-spacing:-1px; margin-bottom:8px; display:flex; align-items:center; gap:12px; }
.chk-hero p  { font-size:15px; color:rgba(255,255,255,0.65); margin:0; }

.chk-page      { background:var(--bg); padding:36px 0 80px; min-height:60vh; }
.chk-container { max-width:1240px; margin:0 auto; padding:0 24px; }

/* ── STEPS ── */
.chk-steps {
    display: flex; align-items: center; justify-content: center;
    gap: 0; margin-bottom: 36px; flex-wrap: wrap;
}
.chk-step {
    display: flex; align-items: center; gap: 8px;
    font-family: var(--font-display); font-size: 13px; font-weight: 700;
    color: var(--muted);
}
.chk-step span {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--bg2); border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 800; transition: all 0.2s;
}
.chk-step.done  { color: var(--green); }
.chk-step.done span  { background: var(--green-light); border-color: var(--green); color: var(--green); }
.chk-step.active { color: var(--navy); }
.chk-step.active span { background: var(--navy); border-color: var(--navy); color: white; }
.chk-step-line { width: 48px; height: 2px; background: var(--border); margin: 0 8px; }
.chk-step-line.done { background: var(--green); }

/* ── LAYOUT ── */
.chk-layout { display: grid; grid-template-columns: 1fr 380px; gap: 24px; align-items: start; }

/* ── FORM CARD ── */
.chk-card { background: white; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.chk-card-top { height: 4px; background: linear-gradient(90deg, var(--navy), #2456A4); }
.chk-card-body { padding: 28px; }
.chk-card-title {
    font-family: var(--font-display); font-size: 18px; font-weight: 800;
    color: var(--text); margin-bottom: 24px;
    display: flex; align-items: center; gap: 10px;
}
.chk-card-title i { color: var(--navy); }

/* Fields */
.chk-field { margin-bottom: 20px; }
.chk-label {
    display: block; font-family: var(--font-display); font-size: 13px;
    font-weight: 700; color: var(--text-mid); margin-bottom: 7px;
}
.chk-required { color: var(--red); }
.chk-input-wrap { position: relative; }
.chk-input-icon {
    position: absolute; left: 14px; top: 50%; transform: translateY(-50%);
    color: var(--muted); font-size: 15px; pointer-events: none;
}
.chk-input {
    width: 100%; padding: 12px 14px 12px 40px;
    border: 1.5px solid var(--border); border-radius: 10px;
    font-family: var(--font-body); font-size: 14px; color: var(--text);
    background: white; outline: none; transition: border-color 0.2s, box-shadow 0.2s;
}
.chk-input:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(27,58,107,0.1);
}
.chk-input::placeholder { color: #94A3B8; }
.chk-textarea { resize: vertical; min-height: 90px; padding-top: 12px; }
.chk-textarea-wrap .chk-input-icon { top: 14px; transform: none; }

/* Payment options */
.chk-payment-options { display: flex; flex-direction: column; gap: 10px; }
.chk-payment-opt { cursor: pointer; }
.chk-payment-opt input { display: none; }
.chk-payment-box {
    display: flex; align-items: center; gap: 14px;
    padding: 14px 16px; border: 1.5px solid var(--border);
    border-radius: 10px; transition: all 0.2s; background: white;
}
.chk-payment-box:hover { border-color: var(--navy); background: var(--navy-light); }
.chk-payment-box.selected { border-color: var(--navy); background: var(--navy-light); box-shadow: 0 0 0 3px rgba(27,58,107,0.1); }
.chk-payment-opt input:checked + .chk-payment-box { border-color: var(--navy); background: var(--navy-light); box-shadow: 0 0 0 3px rgba(27,58,107,0.1); }
.chk-payment-icon { font-size: 24px; flex-shrink: 0; }
.chk-payment-name { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text); }
.chk-payment-desc { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* Place order button */
.btn-place-order {
    width: 100%; background: var(--red); color: white; border: none; cursor: pointer;
    font-family: var(--font-display); font-weight: 700; font-size: 16px;
    padding: 16px; border-radius: 11px; margin-top: 8px;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    transition: all 0.2s;
}
.btn-place-order:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,16,46,0.35); }
.btn-place-order:disabled { background: #94A3B8; cursor: not-allowed; transform: none; box-shadow: none; }
.chk-secure-note {
    text-align: center; font-size: 12px; color: var(--muted);
    margin-top: 12px; display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* ── SUMMARY CARD ── */
.chk-summary-card {
    background: white; border: 1px solid var(--border); border-radius: 18px;
    overflow: hidden; position: sticky; top: 80px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.chk-summary-top { height: 4px; background: linear-gradient(90deg, var(--navy), #2456A4); }
.chk-summary-body { padding: 24px; }
.chk-summary-title {
    font-family: var(--font-display); font-size: 17px; font-weight: 800;
    color: var(--text); margin-bottom: 18px;
}

/* Summary items */
.chk-summary-item {
    display: flex; align-items: center; justify-content: space-between;
    gap: 10px; padding: 10px 0;
    border-bottom: 1px solid var(--border);
}
.chk-summary-item:last-of-type { border-bottom: none; }
.chk-summary-item-left { display: flex; align-items: flex-start; gap: 10px; flex: 1; min-width: 0; }
.chk-summary-item-icon { font-size: 20px; flex-shrink: 0; margin-top: 1px; }
.chk-summary-item-name {
    font-family: var(--font-display); font-size: 13.5px; font-weight: 700;
    color: var(--text); line-height: 1.3;
}
.chk-summary-item-meta { display: flex; align-items: center; gap: 6px; margin-top: 3px; }
.chk-mini-badge {
    font-family: var(--font-display); font-size: 10px; font-weight: 700;
    padding: 2px 8px; border-radius: 20px;
}
.chk-summary-item-price {
    font-family: var(--font-display); font-size: 14px; font-weight: 800;
    color: var(--text); flex-shrink: 0;
}
.chk-summary-divider { height: 1px; background: var(--border); margin: 12px 0; }
.chk-summary-row {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 13.5px; color: var(--text-mid); font-weight: 600; margin-bottom: 8px;
}
.chk-summary-total {
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--font-display); font-size: 19px; font-weight: 900;
    color: var(--text); margin: 4px 0 18px;
}

/* Trust */
.chk-trust { display: flex; flex-direction: column; gap: 7px; }
.chk-trust-item { display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--muted); }
.chk-trust-item i { color: var(--green); font-size: 13px; }

/* Help */
.chk-help { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 16px; margin-top: 14px; text-align: center; }
.chk-help-title { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--text); margin-bottom: 10px; }
.chk-help-wa {
    display: inline-flex; align-items: center; justify-content: center; gap: 7px;
    background: #25D366; color: white;
    font-family: var(--font-display); font-weight: 700; font-size: 13.5px;
    padding: 10px 20px; border-radius: 9px; text-decoration: none; width: 100%; transition: all 0.2s;
}
.chk-help-wa:hover { background: #1EB958; color: white; }

/* Empty state */
.chk-empty { background: white; border: 1px solid var(--border); border-radius: 20px; text-align: center; padding: 64px 24px; }
.chk-empty-icon { font-size: 52px; margin-bottom: 16px; display: block; }
.chk-empty h3 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.chk-empty p  { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
.btn-chk-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red); color: white;
    font-family: var(--font-display); font-weight: 700; font-size: 14px;
    padding: 12px 28px; border-radius: 9px; text-decoration: none; transition: all 0.2s;
}
.btn-chk-primary:hover { background: var(--red-dark); color: white; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .chk-layout { grid-template-columns: 1fr; }
    .chk-summary-card { position: static; }
}
@media (max-width: 640px) {
    .chk-steps { gap: 4px; }
    .chk-step-line { width: 24px; }
    .chk-payment-options { gap: 8px; }
}
/* ── CHECKOUT: Login required notice ── */
.chk-login-notice {
    background: white; border: 1px solid var(--border);
    border-radius: 20px; text-align: center; padding: 64px 32px;
    max-width: 480px; margin: 0 auto;
}
.chk-login-icon { font-size: 52px; margin-bottom: 16px; display: block; }
.chk-login-notice h3 {
    font-family: var(--font-display); font-size: 22px; font-weight: 800;
    color: var(--text); margin-bottom: 10px;
}
.chk-login-notice p { font-size: 14px; color: var(--muted); margin-bottom: 24px; line-height: 1.6; }
.btn-chk-login {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--navy); color: white; border: none; cursor: pointer;
    font-family: var(--font-display); font-weight: 700; font-size: 15px;
    padding: 14px 32px; border-radius: 10px; transition: all 0.2s;
}
.btn-chk-login:hover { background: var(--navy-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,58,107,0.3); }


/* ═══════════════════════════════════════════════════
   25. MY ORDERS PAGE
═══════════════════════════════════════════════════ */
/* ══════════════════════════════════════════
   MY ORDERS PAGE — NAVY/RED THEME
══════════════════════════════════════════ */
.ord-hero {
    background: linear-gradient(135deg, #060F1E 0%, #0F2447 45%, #1B3A6B 100%);
    padding: 44px 0 38px; position: relative; overflow: hidden;
}
.ord-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.ord-hero-inner { max-width:1240px; margin:0 auto; padding:0 24px; position:relative; z-index:1; }
.ord-hero h1 { font-family:var(--font-display); font-size:clamp(26px,4vw,40px); font-weight:900; color:white; letter-spacing:-1px; margin-bottom:8px; display:flex; align-items:center; gap:12px; }
.ord-hero p  { font-size:15px; color:rgba(255,255,255,0.65); margin:0; }

.ord-page      { background:var(--bg); padding:36px 0 80px; min-height:60vh; }
.ord-container { max-width:1000px; margin:0 auto; padding:0 24px; }

/* ── EMPTY ── */
.ord-empty { background:white; border:1px solid var(--border); border-radius:20px; text-align:center; padding:64px 24px; }
.ord-empty-icon { font-size:56px; margin-bottom:16px; display:block; }
.ord-empty h3 { font-family:var(--font-display); font-size:22px; font-weight:800; color:var(--text); margin-bottom:8px; }
.ord-empty p  { font-size:14px; color:var(--muted); margin-bottom:28px; }

/* ── STATS ── */
.ord-stats {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 14px; margin-bottom: 28px;
}
.ord-stat {
    background: white; border: 1px solid var(--border); border-radius: 14px;
    padding: 18px 16px; text-align: center; transition: all 0.2s;
}
.ord-stat:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.ord-stat-icon { width:44px; height:44px; border-radius:11px; display:flex; align-items:center; justify-content:center; font-size:20px; margin:0 auto 10px; }
.ord-stat-num  { font-family:var(--font-display); font-size:20px; font-weight:900; color:var(--text); line-height:1; margin-bottom:4px; }
.ord-stat-lbl  { font-size:12px; color:var(--muted); font-weight:500; }

/* ── ORDER CARDS ── */
.ord-list { display: flex; flex-direction: column; gap: 10px; }
.ord-card {
    background: white; border: 1px solid var(--border); border-radius: 14px;
    padding: 18px 22px; display: flex; align-items: center; gap: 20px;
    transition: all 0.2s;
}
.ord-card:hover { border-color: rgba(27,58,107,0.3); box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* Left */
.ord-card-left { display:flex; align-items:center; gap:14px; flex:1; min-width:0; }
.ord-card-icon { width:46px; height:46px; border-radius:12px; background:var(--navy-light); display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.ord-card-id   { font-family:var(--font-display); font-size:15px; font-weight:800; color:var(--text); margin-bottom:3px; }
.ord-card-date { font-size:12.5px; color:var(--muted); display:flex; align-items:center; gap:5px; }

/* Amount */
.ord-card-amount { flex-shrink:0; text-align:center; min-width:110px; }
.ord-amount-label { font-size:11px; color:var(--muted); text-transform:uppercase; letter-spacing:0.5px; margin-bottom:3px; }
.ord-amount-value { font-family:var(--font-display); font-size:16px; font-weight:800; color:var(--text); }

/* Status badges */
.ord-status-badge {
    display: inline-flex; align-items: center; gap: 5px;
    font-family: var(--font-display); font-size: 12px; font-weight: 700;
    padding: 6px 14px; border-radius: 20px; white-space: nowrap;
}
.status-pending    { background:#FEF3C7; color:#92400E; }
.status-processing { background:#E0F2FE; color:#075985; }
.status-completed  { background:#D1FAE5; color:#065F46; }
.status-cancelled  { background:#FEE2E2; color:#991B1B; }

/* Action */
.btn-ord-view {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--navy-light); color: var(--navy);
    font-family: var(--font-display); font-weight: 700; font-size: 13px;
    padding: 9px 18px; border-radius: 8px; text-decoration: none;
    transition: all 0.18s; white-space: nowrap;
}
.btn-ord-view:hover { background: var(--navy); color: white; }

/* ── BUTTONS ── */
.btn-ord-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red); color: white;
    font-family: var(--font-display); font-weight: 700; font-size: 14px;
    padding: 12px 24px; border-radius: 9px; text-decoration: none; transition: all 0.2s;
}
.btn-ord-primary:hover { background: var(--red-dark); color: white; transform: translateY(-2px); }
.btn-ord-outline {
    display: inline-flex; align-items: center; gap: 7px;
    background: white; color: var(--navy); border: 1.5px solid var(--border);
    font-family: var(--font-display); font-weight: 700; font-size: 13px;
    padding: 10px 20px; border-radius: 9px; text-decoration: none; transition: all 0.2s;
}
.btn-ord-outline:hover { border-color: var(--navy); background: var(--navy-light); color: var(--navy); }

/* Footer CTA */
.ord-footer-cta { text-align: center; margin-top: 28px; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .ord-stats { grid-template-columns: repeat(2, 1fr); }
    .ord-card  { flex-wrap: wrap; gap: 12px; }
    .ord-card-amount { min-width: auto; text-align: left; }
    .ord-card-action { width: 100%; }
    .btn-ord-view { width: 100%; justify-content: center; }
}
@media (max-width: 480px) {
    .ord-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ═══════════════════════════════════════════════════
   26. ORDER DETAILS PAGE
═══════════════════════════════════════════════════ */
/* ══════════════════════════════════════════
   ORDER DETAILS PAGE — NAVY/RED THEME
══════════════════════════════════════════ */
.od-hero {
    background: linear-gradient(135deg, #060F1E 0%, #0F2447 45%, #1B3A6B 100%);
    padding: 40px 0 38px; position: relative; overflow: hidden;
}
.od-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.od-hero-inner { max-width:1200px; margin:0 auto; padding:0 24px; position:relative; z-index:1; }
.od-back {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-display); font-size: 13px; font-weight: 600;
    color: rgba(255,255,255,0.65); text-decoration: none; margin-bottom: 16px; transition: color 0.18s;
}
.od-back:hover { color: white; }
.od-hero h1 { font-family:var(--font-display); font-size:clamp(24px,4vw,36px); font-weight:900; color:white; letter-spacing:-1px; margin-bottom:6px; }
.od-hero p  { font-size:14px; color:rgba(255,255,255,0.6); margin:0; display:flex; align-items:center; gap:7px; }
.od-hero-badge {
    font-family: var(--font-display); font-size: 13px; font-weight: 700;
    padding: 8px 18px; border-radius: 20px; flex-shrink: 0;
}

.od-page      { background:var(--bg); padding:32px 0 80px; }
.od-container { max-width:1200px; margin:0 auto; padding:0 24px; }
.od-layout    { display:grid; grid-template-columns:1fr 340px; gap:20px; align-items:start; }

/* ── CARD ── */
.od-card { background:white; border:1px solid var(--border); border-radius:16px; overflow:hidden; }
.od-card-top { height:4px; background:linear-gradient(90deg, var(--navy), #2456A4); }
.od-card-body { padding:22px; }
.od-card-title {
    font-family:var(--font-display); font-size:16px; font-weight:800;
    color:var(--text); margin-bottom:18px;
    display:flex; align-items:center; gap:9px;
}
.od-card-title i { color:var(--navy); }

/* ── ORDER ITEMS ── */
.od-item {
    display:flex; align-items:center; gap:14px;
    padding:13px 0; border-bottom:1px solid var(--border);
}
.od-item:last-of-type { border-bottom:none; }
.od-item-icon { width:44px; height:44px; border-radius:11px; display:flex; align-items:center; justify-content:center; font-size:20px; flex-shrink:0; }
.icon-pkg  { background:var(--navy-light); }
.icon-test { background:var(--red-light); }
.od-item-info  { flex:1; min-width:0; }
.od-item-name  { font-family:var(--font-display); font-size:14px; font-weight:700; color:var(--text); margin-bottom:4px; }
.od-item-meta  { display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.od-mini-badge { font-family:var(--font-display); font-size:10px; font-weight:700; padding:2px 8px; border-radius:20px; }
.badge-pkg     { background:var(--navy-light); color:var(--navy); }
.badge-test    { background:var(--red-light); color:var(--red); }
.od-item-unit  { font-size:12px; color:var(--muted); }
.od-item-qty   { font-size:12px; color:var(--muted); background:var(--bg2); padding:2px 8px; border-radius:5px; }
.od-item-subtotal { font-family:var(--font-display); font-size:15px; font-weight:800; color:var(--text); flex-shrink:0; }

/* Total row */
.od-total-row { display:flex; align-items:flex-end; justify-content:space-between; padding-top:14px; margin-top:4px; }
.od-total-extras { font-size:13px; color:var(--muted); }
.od-total-label  { font-size:12px; color:var(--muted); text-align:right; margin-bottom:4px; }
.od-total-value  { font-family:var(--font-display); font-size:22px; font-weight:900; color:var(--text); }

/* Info rows (payment) */
.od-info-row {
    display:flex; align-items:center; justify-content:space-between;
    padding:10px 0; border-bottom:1px solid var(--border);
}
.od-info-label { font-size:13px; color:var(--muted); }
.od-info-value { font-size:13.5px; font-weight:600; color:var(--text); }

/* Status badges (reuse from my-orders) */
.ord-status-badge { display:inline-flex; align-items:center; gap:5px; font-family:var(--font-display); font-size:12px; font-weight:700; padding:6px 14px; border-radius:20px; white-space:nowrap; }
.status-pending    { background:#FEF3C7; color:#92400E; }
.status-processing { background:#E0F2FE; color:#075985; }
.status-completed  { background:#D1FAE5; color:#065F46; }
.status-cancelled  { background:#FEE2E2; color:#991B1B; }

/* ── CUSTOMER DETAILS ── */
.od-detail-item {
    display:flex; align-items:flex-start; gap:14px;
    padding:13px 0; border-bottom:1px solid var(--border);
}
.od-detail-icon {
    width:36px; height:36px; border-radius:9px; flex-shrink:0;
    background:var(--navy-light); color:var(--navy);
    display:flex; align-items:center; justify-content:center; font-size:16px; margin-top:2px;
}
.od-detail-label { font-size:11px; color:var(--muted); text-transform:uppercase; letter-spacing:0.5px; margin-bottom:3px; }
.od-detail-value { font-size:14px; font-weight:600; color:var(--text); line-height:1.5; }

/* ── TIMELINE ── */
.od-timeline { display:flex; flex-direction:column; gap:0; }
.od-tl-item {
    display:flex; gap:14px; align-items:flex-start;
    padding-bottom:18px; position:relative;
}
.od-tl-item:last-child { padding-bottom:0; }
.od-tl-item::before {
    content:''; position:absolute; left:10px; top:22px;
    width:2px; height:calc(100% - 4px);
    background:var(--border);
}
.od-tl-item:last-child::before { display:none; }
.od-tl-dot {
    width:22px; height:22px; border-radius:50%; flex-shrink:0;
    background:var(--bg2); border:2px solid var(--border);
    z-index:1; margin-top:2px; transition:all 0.2s;
}
.od-tl-item.done .od-tl-dot { background:var(--navy); border-color:var(--navy); }
.od-tl-item.done::before { background:var(--navy-light); }
.od-tl-title { font-family:var(--font-display); font-size:13.5px; font-weight:700; color:var(--text-mid); }
.od-tl-item.done .od-tl-title { color:var(--navy); }
.od-tl-date  { font-size:12px; color:var(--muted); margin-top:2px; }

/* ── HELP CARD ── */
.od-help { background:white; border:1px solid var(--border); border-radius:14px; padding:18px; margin-top:16px; text-align:center; }
.od-help-title { font-family:var(--font-display); font-weight:700; font-size:14px; color:var(--text); margin-bottom:12px; }
.od-help-wa {
    display:flex; align-items:center; justify-content:center; gap:7px;
    background:#25D366; color:white; font-family:var(--font-display); font-weight:700; font-size:13px;
    padding:10px; border-radius:9px; text-decoration:none; margin-bottom:8px; transition:all 0.2s;
}
.od-help-wa:hover { background:#1EB958; color:white; }
.od-help-call {
    display:flex; align-items:center; justify-content:center; gap:7px;
    background:var(--navy-light); color:var(--navy); font-family:var(--font-display); font-weight:700; font-size:13px;
    padding:10px; border-radius:9px; text-decoration:none; transition:all 0.2s;
}
.od-help-call:hover { background:var(--navy); color:white; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .od-layout { grid-template-columns:1fr; }
}
@media (max-width: 640px) {
    .od-total-row { flex-direction:column; gap:10px; align-items:flex-start; }
    .od-total-label { text-align:left; }
}
/* ── User dropdown custom items ── */
.th-dd-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}
.th-dd-item:hover {
    background: rgba(255,255,255,0.1);
    color: white;
    text-decoration: none;
}
.th-user-toggle {
    transition: all 0.2s;
}
#userChevron {
    transition: transform 0.25s ease;
}

/* ── Multi-patient checkout ── */
.patient-block {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 18px 18px 4px;
    margin-bottom: 16px;
    transition: all 0.25s;
}
.patient-block:first-child {
    border-color: var(--navy);
    background: var(--navy-light);
}
.patient-block-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}
.patient-block-title {
    display: flex;
    align-items: center;
    gap: 8px;
}
.patient-num {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    color: var(--navy);
}
.patient-primary-badge {
    background: var(--navy);
    color: white;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}
.btn-add-patient {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--navy-light);
    color: var(--navy);
    border: 1.5px solid var(--navy);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.18s;
}
.btn-add-patient:hover {
    background: var(--navy);
    color: white;
}
.btn-remove-patient {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--red-light);
    color: var(--red);
    border: 1px solid rgba(200,16,46,0.2);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 12px;
    padding: 5px 12px;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.18s;
}
.btn-remove-patient:hover {
    background: var(--red);
    color: white;
}


/* ═══════════════════════════════════════════════════
   27. ABOUT PAGE
═══════════════════════════════════════════════════ */
/* ══════════════════════════════════════════
   ABOUT PAGE — NAVY/RED THEME
══════════════════════════════════════════ */
.abt-hero {
    background: linear-gradient(135deg, #060F1E 0%, #0F2447 45%, #1B3A6B 100%);
    padding: 72px 0 64px; position: relative; overflow: hidden; text-align: center;
}
.abt-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.abt-hero::after {
    content: ''; position: absolute; left: 50%; bottom: -60px;
    transform: translateX(-50%); width: 500px; height: 500px;
    background: radial-gradient(circle, rgba(200,16,46,0.1) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
}
.abt-hero-inner { max-width:900px; margin:0 auto; padding:0 24px; position:relative; z-index:1; }
.abt-hero-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.85); font-family: var(--font-display);
    font-size: 12px; font-weight: 700; letter-spacing: 1px;
    padding: 6px 16px; border-radius: 20px; margin-bottom: 20px; display: inline-block;
}
.abt-hero-title {
    font-family: var(--font-display); font-size: clamp(34px,6vw,60px);
    font-weight: 900; color: white; letter-spacing: -2px; margin-bottom: 16px; line-height: 1.05;
}
.abt-hero-sub {
    font-size: clamp(15px,2vw,18px); color: rgba(255,255,255,0.72);
    max-width: 600px; margin: 0 auto 40px; line-height: 1.7;
}
.abt-hero-stats {
    display: inline-flex; align-items: center; gap: 0;
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px; padding: 16px 32px; flex-wrap: wrap; justify-content: center;
}
.abt-hero-stat { text-align: center; padding: 0 24px; }
.abt-hero-stat span { display: block; font-family: var(--font-display); font-size: 22px; font-weight: 900; color: white; }
.abt-hero-stat small { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; display: block; }
.abt-hero-divider { width: 1px; height: 36px; background: rgba(255,255,255,0.15); }

.abt-page { background: var(--bg); }
.abt-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* ── FEATURE CARDS ── */
.abt-features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; padding: 56px 0 48px;
}
.abt-feat-card {
    background: white; border: 1px solid var(--border); border-radius: 18px;
    padding: 28px 24px; transition: all 0.25s;
}
.abt-feat-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); border-color: rgba(27,58,107,0.3); }
.abt-feat-icon { width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center; font-size:24px; margin-bottom:16px; }
.abt-feat-card h3 { font-family:var(--font-display); font-size:16px; font-weight:800; color:var(--text); margin-bottom:8px; }
.abt-feat-card p  { font-size:13.5px; color:var(--muted); line-height:1.7; margin:0; }

/* ── STORY SECTION ── */
.abt-story-section { background: white; padding: 72px 0; }
.abt-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.abt-eyebrow {
    display: inline-flex; align-items: center; gap: 7px;
    font-family: var(--font-display); font-size: 12px; font-weight: 700;
    letter-spacing: 2.5px; text-transform: uppercase; color: var(--navy); margin-bottom: 12px;
}
.abt-eyebrow::before { content: ''; width: 16px; height: 2px; background: var(--navy); }
.abt-heading { font-family:var(--font-display); font-size:clamp(26px,3vw,38px); font-weight:900; color:var(--text); letter-spacing:-1px; line-height:1.1; margin-bottom:20px; }
.abt-story-content p { font-size:15px; color:var(--muted); line-height:1.8; margin-bottom:16px; }
.abt-story-content p:last-of-type { margin-bottom:28px; }
.abt-story-content strong { color: var(--navy); }
.abt-story-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* Values */
.abt-values { display: flex; flex-direction: column; gap: 4px; }
.abt-value-item {
    display: flex; gap: 16px; align-items: flex-start;
    padding: 18px 20px; border-radius: 14px; border: 1px solid var(--border);
    background: var(--bg); transition: all 0.2s;
}
.abt-value-item:hover { background: white; border-color: var(--navy); box-shadow: var(--shadow-md); }
.abt-value-icon { font-size: 24px; flex-shrink: 0; margin-top: 2px; }
.abt-value-title { font-family:var(--font-display); font-size:14px; font-weight:800; color:var(--text); margin-bottom:4px; }
.abt-value-text  { font-size:13px; color:var(--muted); line-height:1.6; }

/* ── TEAM PHOTO ── */
.abt-team-section { padding: 56px 0 48px; }
.abt-team-photo-wrap { position: relative; border-radius: 20px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.abt-team-photo { width: 100%; max-height: 480px; object-fit: cover; display: block; }
.abt-team-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    background: linear-gradient(0deg, rgba(6,15,30,0.85) 0%, transparent 100%);
    padding: 32px 32px 28px;
}
.abt-team-caption { }

/* ── CTA BANNER ── */
.abt-cta-banner {
    background: linear-gradient(135deg, #060F1E 0%, #0F2447 45%, #1B3A6B 100%);
    border-radius: 24px; padding: 48px 52px;
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; flex-wrap: wrap;
    position: relative; overflow: hidden;
    box-shadow: 0 24px 60px rgba(0,0,0,0.2);
}
.abt-cta-banner::after {
    content: ''; position: absolute; right: -60px; top: -60px;
    width: 260px; height: 260px;
    background: radial-gradient(circle, rgba(200,16,46,0.15) 0%, transparent 70%);
    border-radius: 50%; pointer-events: none;
}
.abt-cta-content { position: relative; z-index: 1; }
.abt-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── BUTTONS ── */
.btn-abt-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--red); color: white;
    font-family: var(--font-display); font-weight: 700; font-size: 14px;
    padding: 12px 26px; border-radius: 9px; text-decoration: none; transition: all 0.2s;
}
.btn-abt-primary:hover { background: var(--red-dark); color: white; transform: translateY(-2px); }
.btn-abt-outline {
    display: inline-flex; align-items: center; gap: 8px;
    background: transparent; color: var(--navy);
    border: 1.5px solid var(--navy);
    font-family: var(--font-display); font-weight: 700; font-size: 14px;
    padding: 12px 26px; border-radius: 9px; text-decoration: none; transition: all 0.2s;
}
.btn-abt-outline:hover { background: var(--navy); color: white; }
.btn-abt-white {
    display: inline-flex; align-items: center; gap: 8px;
    background: white; color: var(--navy);
    font-family: var(--font-display); font-weight: 700; font-size: 14px;
    padding: 13px 28px; border-radius: 9px; text-decoration: none; transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.btn-abt-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); color: var(--navy); }
.btn-abt-ghost {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15); color: white;
    border: 1px solid rgba(255,255,255,0.35);
    font-family: var(--font-display); font-weight: 700; font-size: 14px;
    padding: 13px 28px; border-radius: 9px; text-decoration: none; transition: all 0.2s;
}
.btn-abt-ghost:hover { background: rgba(255,255,255,0.25); color: white; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
    .abt-features-grid { grid-template-columns: repeat(2, 1fr); }
    .abt-story-grid    { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 640px) {
    .abt-features-grid { grid-template-columns: 1fr; }
    .abt-hero-stats    { padding: 14px 16px; }
    .abt-hero-stat     { padding: 0 14px; }
    .abt-cta-banner    { padding: 32px 24px; flex-direction: column; }
}

/* ═══════════════════════════════════════════════════
   28. ORDER SUCCESS PAGE
═══════════════════════════════════════════════════ */
/* ══════════════════════════════════════════
   ORDER SUCCESS PAGE
══════════════════════════════════════════ */
.success-page { background: var(--bg); min-height: 80vh; padding-bottom: 80px; }

/* Hero */
.success-hero {
    background: linear-gradient(135deg, #060F1E 0%, #0F2447 45%, #1B3A6B 100%);
    padding: 56px 24px 52px; text-align: center; position: relative; overflow: hidden;
}
.success-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.success-hero-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }

/* Animated checkmark */
.success-circle {
    width: 80px; height: 80px; margin: 0 auto 24px;
}
.success-checkmark { width: 80px; height: 80px; }
.success-circle-bg {
    stroke: rgba(255,255,255,0.2); stroke-width: 2;
    animation: circle-fill 0.6s ease forwards;
}
.success-check {
    stroke: #6EE7B7; stroke-width: 3.5;
    stroke-linecap: round; stroke-linejoin: round;
    stroke-dasharray: 48; stroke-dashoffset: 48;
    animation: check-draw 0.5s 0.4s ease forwards;
}
@keyframes circle-fill {
    0%   { stroke: rgba(255,255,255,0.1); }
    100% { stroke: rgba(110,231,183,0.5); }
}
@keyframes check-draw {
    to { stroke-dashoffset: 0; }
}

.success-title {
    font-family: var(--font-display); font-size: clamp(24px,4vw,36px);
    font-weight: 900; color: white; margin-bottom: 12px; letter-spacing: -0.5px;
}
.success-sub { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.6; }
.success-sub strong { color: white; }

/* Container */
.success-container { max-width: 640px; margin: 0 auto; padding: 32px 24px 0; }

/* Cards */
.success-steps-card, .success-summary-card {
    background: white; border: 1px solid var(--border);
    border-radius: 18px; padding: 26px; margin-bottom: 16px;
}
.success-card-title {
    font-family: var(--font-display); font-size: 16px; font-weight: 800;
    color: var(--text); margin-bottom: 20px;
    padding-bottom: 12px; border-bottom: 2px solid var(--navy-light);
    display: flex; align-items: center; gap: 8px;
}

/* Steps */
.success-steps { display: flex; flex-direction: column; gap: 0; }
.success-step {
    display: flex; align-items: flex-start; gap: 14px; padding: 4px 0;
}
.success-step-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.success-step-title { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: var(--text); }
.success-step-desc  { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.success-step-line  { width: 2px; height: 16px; background: var(--border); margin-left: 21px; }

/* Summary items */
.success-item {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 0; border-bottom: 1px solid var(--border);
}
.success-item:last-of-type { border-bottom: none; }
.success-item-icon { font-size: 18px; flex-shrink: 0; }
.success-item-name  { flex: 1; font-size: 14px; color: var(--text-mid); font-weight: 500; }
.success-item-price { font-family: var(--font-display); font-size: 14px; font-weight: 800; color: var(--text); flex-shrink: 0; }
.success-total {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 14px; margin-top: 4px;
    font-family: var(--font-display); font-size: 17px; font-weight: 900; color: var(--text);
}

/* Action buttons */
.success-actions { display: flex; flex-direction: column; gap: 10px; }
.btn-success-primary {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: var(--red); color: white;
    font-family: var(--font-display); font-weight: 700; font-size: 15px;
    padding: 14px; border-radius: 12px; text-decoration: none; transition: all 0.2s;
    box-shadow: 0 4px 16px rgba(200,16,46,0.3);
}
.btn-success-primary:hover { background: var(--red-dark); color: white; transform: translateY(-2px); }
.btn-success-outline {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: white; color: var(--navy);
    border: 1.5px solid var(--navy);
    font-family: var(--font-display); font-weight: 700; font-size: 15px;
    padding: 14px; border-radius: 12px; text-decoration: none; transition: all 0.2s;
}
.btn-success-outline:hover { background: var(--navy); color: white; }
.btn-success-wa {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: #25D366; color: white;
    font-family: var(--font-display); font-weight: 700; font-size: 15px;
    padding: 14px; border-radius: 12px; text-decoration: none; transition: all 0.2s;
}
.btn-success-wa:hover { background: #1EB958; color: white; }

@media (max-width: 480px) {
    .success-hero { padding: 40px 16px 36px; }
}

/* ═══════════════════════════════════════════════════
   29. CONTACT PAGE
═══════════════════════════════════════════════════ */
/* ══════════════════════════════════════════
   CONTACT PAGE — NAVY/RED THEME
══════════════════════════════════════════ */
.ct-hero {
    background: linear-gradient(135deg, #060F1E 0%, #0F2447 45%, #1B3A6B 100%);
    padding: 52px 0 44px; position: relative; overflow: hidden; text-align: center;
}
.ct-hero::before {
    content: ''; position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.ct-hero-inner { max-width: 1240px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 1; }
.ct-hero h1 { font-family: var(--font-display); font-size: clamp(28px,4vw,44px); font-weight: 900; color: white; letter-spacing: -1px; margin-bottom: 10px; }
.ct-hero p  { font-size: 15px; color: rgba(255,255,255,0.68); margin: 0; }

.ct-page      { background: var(--bg); padding: 40px 0 80px; }
.ct-container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.ct-grid      { display: grid; grid-template-columns: 1fr 1.4fr; gap: 24px; align-items: start; }

/* ── INFO COLUMN ── */
.ct-info-card { background: white; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; margin-bottom: 14px; }
.ct-info-card-top { height: 4px; background: linear-gradient(90deg, var(--navy), #2456A4); }
.ct-info-body  { padding: 24px; }
.ct-info-title { font-family: var(--font-display); font-size: 17px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.ct-info-desc  { font-size: 13.5px; color: var(--muted); margin-bottom: 20px; line-height: 1.6; }
.ct-contact-item { display: flex; align-items: center; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--border); }
.ct-contact-icon { width: 44px; height: 44px; border-radius: 11px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 20px; }
.ct-contact-label { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
.ct-contact-value { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--text); text-decoration: none; display: block; }
.ct-contact-value:hover { color: var(--navy); }
.ct-wa-btn {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    background: #25D366; color: white; font-family: var(--font-display);
    font-weight: 700; font-size: 14px; padding: 13px; border-radius: 12px;
    text-decoration: none; transition: all 0.2s; margin-bottom: 14px;
}
.ct-wa-btn:hover { background: #1EB958; color: white; transform: translateY(-2px); }
.ct-hours { background: white; border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.ct-hours-title { font-family: var(--font-display); font-size: 13px; font-weight: 800; color: var(--text); margin-bottom: 12px; }
.ct-hours-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--muted); padding: 6px 0; border-bottom: 1px solid var(--border); }
.ct-hours-row:last-child { border-bottom: none; }

/* ── FORM COLUMN ── */
.ct-form-card { background: white; border: 1px solid var(--border); border-radius: 18px; overflow: hidden; }
.ct-form-card-top { height: 4px; background: linear-gradient(90deg, var(--red), #E53935); }
.ct-form-body  { padding: 28px; }
.ct-form-title {
    font-family: var(--font-display); font-size: 17px; font-weight: 800;
    color: var(--text); margin-bottom: 22px; display: flex; align-items: center; gap: 9px;
}
.ct-form-title i { color: var(--navy); }
.ct-field { margin-bottom: 18px; }
.ct-label { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--text-mid); margin-bottom: 7px; display: block; }
.ct-req { color: var(--red); }
.ct-input-wrap { position: relative; }
.ct-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: #94A3B8; font-size: 15px; pointer-events: none; }
.ct-input {
    width: 100%; height: 48px; padding: 0 14px 0 42px;
    border: 1.5px solid var(--border); border-radius: 10px;
    font-family: var(--font-body); font-size: 14px; color: var(--text);
    background: #F8FAFC; outline: none; transition: all 0.2s;
}
.ct-input:focus { border-color: var(--navy); background: white; box-shadow: 0 0 0 3px rgba(27,58,107,0.1); }
.ct-input::placeholder { color: #94A3B8; }
.ct-textarea {
    width: 100%; padding: 12px 14px 12px 42px;
    border: 1.5px solid var(--border); border-radius: 10px;
    font-family: var(--font-body); font-size: 14px; color: var(--text);
    background: #F8FAFC; outline: none; transition: all 0.2s; resize: vertical; min-height: 110px;
}
.ct-textarea:focus { border-color: var(--navy); background: white; box-shadow: 0 0 0 3px rgba(27,58,107,0.1); }
.ct-submit-btn {
    width: 100%; height: 52px; background: var(--red); color: white; border: none; cursor: pointer;
    font-family: var(--font-display); font-weight: 700; font-size: 15px; border-radius: 11px;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    transition: all 0.2s; box-shadow: 0 6px 20px rgba(200,16,46,0.3); margin-bottom: 12px;
}
.ct-submit-btn:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(200,16,46,0.4); }
.ct-submit-btn:disabled { background: #94A3B8; cursor: not-allowed; transform: none; box-shadow: none; }
.ct-privacy-note { text-align: center; font-size: 12px; color: var(--muted); display: flex; align-items: center; justify-content: center; gap: 5px; margin: 0; }
.ct-error-box { background: #FFF0F3; border: 1px solid rgba(200,16,46,0.2); color: var(--red); border-radius: 10px; padding: 12px 14px; font-size: 13.5px; display: flex; align-items: center; gap: 8px; margin-bottom: 18px; }

/* Success state */
.ct-success-state { text-align: center; padding: 32px 16px; }
.ct-success-icon { font-size: 52px; margin-bottom: 14px; display: block; }
.ct-success-state h4 { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.ct-success-state p  { font-size: 14px; color: var(--muted); margin-bottom: 20px; }
.ct-try-again { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--navy); text-decoration: none; }
.ct-try-again:hover { text-decoration: underline; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) { .ct-grid { grid-template-columns: 1fr; } }
/* ═══════════════════════════════════════════════════
   29. CONTACT PAGE
═══════════════════════════════════════════════════ */
.ctc-hero { background:linear-gradient(135deg,#060F1E 0%,#0F2447 45%,#1B3A6B 100%); padding:52px 0 44px; position:relative; overflow:hidden; }
.ctc-hero::before { content:''; position:absolute; inset:0; background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.ctc-hero-inner { max-width:1240px; margin:0 auto; padding:0 24px; position:relative; z-index:1; }
.ctc-hero h1 { font-family:var(--font-display); font-size:clamp(28px,4vw,42px); font-weight:900; color:white; letter-spacing:-1px; margin-bottom:8px; display:flex; align-items:center; gap:12px; }
.ctc-hero p  { font-size:15px; color:rgba(255,255,255,0.65); margin:0; }
.ctc-page      { background:var(--bg); padding:40px 0 80px; }
.ctc-container { max-width:1100px; margin:0 auto; padding:0 24px; }
.ctc-layout    { display:grid; grid-template-columns:1fr 1.4fr; gap:24px; align-items:start; }
.ctc-info-card { background:white; border:1px solid var(--border); border-radius:18px; overflow:hidden; position:sticky; top:80px; }
.ctc-info-card-top { height:4px; background:linear-gradient(90deg,var(--navy),#2456A4); }
.ctc-info-body { padding:28px; }
.ctc-info-title { font-family:var(--font-display); font-size:20px; font-weight:800; color:var(--text); margin-bottom:10px; }
.ctc-info-desc  { font-size:14px; color:var(--muted); line-height:1.7; margin-bottom:24px; }
.ctc-contact-items { display:flex; flex-direction:column; gap:4px; margin-bottom:24px; }
.ctc-contact-item { display:flex; align-items:center; gap:14px; padding:12px 14px; border-radius:12px; text-decoration:none; color:var(--text); transition:all 0.18s; }
.ctc-contact-item:hover { background:var(--bg); color:var(--text); }
.ctc-contact-icon { width:42px; height:42px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.ctc-contact-label { font-size:11px; color:var(--muted); text-transform:uppercase; letter-spacing:0.5px; margin-bottom:2px; }
.ctc-contact-value { font-family:var(--font-display); font-size:14px; font-weight:700; color:var(--text); }
.ctc-hours { background:var(--bg); border-radius:12px; padding:14px 16px; }
.ctc-hours-title { font-family:var(--font-display); font-size:13px; font-weight:700; color:var(--navy); margin-bottom:10px; display:flex; align-items:center; gap:6px; }
.ctc-hours-row { display:flex; justify-content:space-between; font-size:13px; color:var(--text-mid); padding:4px 0; }
.ctc-form-card { background:white; border:1px solid var(--border); border-radius:18px; overflow:hidden; }
.ctc-form-card-top { height:4px; background:linear-gradient(90deg,var(--red),#E53935); }
.ctc-form-body { padding:28px; }
.ctc-form-title { font-family:var(--font-display); font-size:18px; font-weight:800; color:var(--text); margin-bottom:22px; display:flex; align-items:center; gap:9px; }
.ctc-form-title i { color:var(--navy); }
.ctc-error { background:#FFF0F3; border:1px solid rgba(200,16,46,0.2); color:var(--red); border-radius:10px; padding:12px 14px; font-size:13.5px; margin-bottom:20px; display:flex; align-items:center; gap:8px; }
.ctc-field { margin-bottom:18px; }
.ctc-label { font-family:var(--font-display); font-size:13px; font-weight:700; color:#334155; margin-bottom:7px; display:block; }
.ctc-req { color:var(--red); }
.ctc-input-wrap { position:relative; }
.ctc-input-icon { position:absolute; left:14px; top:50%; transform:translateY(-50%); color:#94A3B8; font-size:15px; pointer-events:none; }
.ctc-input { width:100%; height:48px; padding:0 14px 0 42px; border:1.5px solid var(--border); border-radius:10px; font-family:var(--font-body); font-size:14px; color:var(--text); background:#F8FAFC; outline:none; transition:all 0.2s; }
.ctc-input:focus { border-color:var(--navy); background:white; box-shadow:0 0 0 3px rgba(27,58,107,0.1); }
.ctc-input::placeholder { color:#94A3B8; }
.ctc-textarea { height:auto !important; padding-top:12px; resize:vertical; min-height:110px; }
.ctc-textarea-wrap .ctc-input-icon { top:14px; transform:none; }
.btn-ctc-submit { width:100%; height:52px; background:var(--red); color:white; border:none; cursor:pointer; font-family:var(--font-display); font-weight:700; font-size:15px; border-radius:11px; display:flex; align-items:center; justify-content:center; gap:8px; transition:all 0.2s; box-shadow:0 6px 20px rgba(200,16,46,0.3); }
.btn-ctc-submit:hover { background:var(--red-dark); transform:translateY(-2px); }
.ctc-success { text-align:center; padding:32px 16px; }
.ctc-success-icon { font-size:56px; margin-bottom:16px; display:block; }
.ctc-success h3 { font-family:var(--font-display); font-size:22px; font-weight:800; color:var(--text); margin-bottom:8px; }
.ctc-success p  { font-size:14px; color:var(--muted); margin-bottom:24px; line-height:1.7; }
.btn-ctc-primary { display:inline-flex; align-items:center; gap:8px; background:var(--navy); color:white; font-family:var(--font-display); font-weight:700; font-size:14px; padding:12px 28px; border-radius:9px; text-decoration:none; transition:all 0.2s; }
.btn-ctc-primary:hover { background:var(--navy-dark); color:white; }
@media (max-width:900px) { .ctc-layout { grid-template-columns:1fr; } .ctc-info-card { position:static; } }


/* ═══════════════════════════════════════════════════
   30. BECOME A PARTNER PAGE
═══════════════════════════════════════════════════ */
/* ══════════════════════════════════════════
   BECOME A PARTNER PAGE
══════════════════════════════════════════ */
.prt-hero { background:linear-gradient(135deg,#060F1E 0%,#0F2447 45%,#1B3A6B 100%); padding:52px 0 44px; position:relative; overflow:hidden; text-align:center; }
.prt-hero::before { content:''; position:absolute; inset:0; background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.prt-hero-inner { max-width:640px; margin:0 auto; padding:0 24px; position:relative; z-index:1; }
.prt-hero-badge { display:inline-block; background:rgba(255,255,255,0.1); border:1px solid rgba(255,255,255,0.2); color:rgba(255,255,255,0.85); font-family:var(--font-display); font-size:12px; font-weight:700; letter-spacing:1px; padding:6px 16px; border-radius:20px; margin-bottom:16px; }
.prt-hero h1 { font-family:var(--font-display); font-size:clamp(28px,4vw,44px); font-weight:900; color:white; letter-spacing:-1px; margin-bottom:10px; }
.prt-hero p  { font-size:15px; color:rgba(255,255,255,0.65); margin:0; }
.prt-page { background:var(--bg); padding:40px 0 80px; }
.prt-container { max-width:1100px; margin:0 auto; padding:0 24px; }
.prt-layout { display:grid; grid-template-columns:1fr 1.3fr; gap:24px; align-items:start; }

/* Benefits */
.prt-benefits-card { background:white; border:1px solid var(--border); border-radius:18px; overflow:hidden; position:sticky; top:80px; }
.prt-benefits-top { height:4px; background:linear-gradient(90deg,var(--navy),#2456A4); }
.prt-benefits-body { padding:28px; }
.prt-benefits-title { font-family:var(--font-display); font-size:19px; font-weight:800; color:var(--text); margin-bottom:8px; }
.prt-benefits-desc  { font-size:13.5px; color:var(--muted); line-height:1.6; margin-bottom:22px; }
.prt-benefit-items  { display:flex; flex-direction:column; gap:4px; margin-bottom:22px; }
.prt-benefit-item   { display:flex; align-items:flex-start; gap:12px; padding:10px; border-radius:10px; transition:all 0.18s; }
.prt-benefit-item:hover { background:var(--bg); }
.prt-benefit-icon   { width:40px; height:40px; border-radius:10px; display:flex; align-items:center; justify-content:center; font-size:18px; flex-shrink:0; }
.prt-benefit-name   { font-family:var(--font-display); font-size:13.5px; font-weight:700; color:var(--text); margin-bottom:2px; }
.prt-benefit-text   { font-size:12px; color:var(--muted); line-height:1.5; }
.prt-types { background:var(--bg); border-radius:12px; padding:14px 16px; }
.prt-types-title { font-family:var(--font-display); font-size:12px; font-weight:700; color:var(--muted); text-transform:uppercase; letter-spacing:1px; margin-bottom:10px; }
.prt-type-tags { display:flex; flex-wrap:wrap; gap:7px; }
.prt-tag { background:var(--navy-light); color:var(--navy); font-family:var(--font-display); font-size:12px; font-weight:700; padding:5px 12px; border-radius:20px; }

/* Form card */
.prt-form-card { background:white; border:1px solid var(--border); border-radius:18px; overflow:hidden; }
.prt-form-card-top { height:4px; background:linear-gradient(90deg,var(--red),#E53935); }
.prt-form-body { padding:28px; }
.prt-form-title { font-family:var(--font-display); font-size:18px; font-weight:800; color:var(--text); margin-bottom:22px; display:flex; align-items:center; gap:9px; }
.prt-form-title i { color:var(--navy); }
.prt-error { background:#FFF0F3; border:1px solid rgba(200,16,46,0.2); color:var(--red); border-radius:10px; padding:12px 14px; font-size:13.5px; margin-bottom:18px; display:flex; align-items:center; gap:8px; }
.prt-field { margin-bottom:0; }
.prt-label { font-family:var(--font-display); font-size:13px; font-weight:700; color:#334155; margin-bottom:8px; display:block; }
.prt-req { color:var(--red); }
.prt-input-wrap { position:relative; }
.prt-input-icon { position:absolute; left:14px; top:50%; transform:translateY(-50%); color:#94A3B8; font-size:15px; pointer-events:none; }
.prt-input { width:100%; height:48px; padding:0 14px 0 42px; border:1.5px solid var(--border); border-radius:10px; font-family:var(--font-body); font-size:14px; color:var(--text); background:#F8FAFC; outline:none; transition:all 0.2s; }
.prt-input:focus { border-color:var(--navy); background:white; box-shadow:0 0 0 3px rgba(27,58,107,0.1); }
.prt-input::placeholder { color:#94A3B8; }

/* Partner type radio cards */
.prt-type-options { display:grid; grid-template-columns:repeat(2,1fr); gap:8px; }
.prt-type-opt { cursor:pointer; }
.prt-type-opt input { display:none; }
.prt-type-box { display:flex; align-items:center; gap:8px; padding:10px 14px; border:1.5px solid var(--border); border-radius:10px; font-family:var(--font-display); font-size:13px; font-weight:700; color:var(--text-mid); background:#F8FAFC; transition:all 0.18s; }
.prt-type-box:hover { border-color:var(--navy); color:var(--navy); background:var(--navy-light); }
.prt-type-opt input:checked + .prt-type-box { border-color:var(--navy); background:var(--navy); color:white; }

/* Submit */
.btn-prt-submit { width:100%; height:52px; background:var(--red); color:white; border:none; cursor:pointer; font-family:var(--font-display); font-weight:700; font-size:15px; border-radius:11px; display:flex; align-items:center; justify-content:center; gap:8px; transition:all 0.2s; margin-top:22px; box-shadow:0 6px 20px rgba(200,16,46,0.3); }
.btn-prt-submit:hover { background:var(--red-dark); transform:translateY(-2px); }
.prt-note { text-align:center; font-size:12px; color:var(--muted); margin-top:12px; display:flex; align-items:center; justify-content:center; gap:5px; }

/* Success */
.prt-success { text-align:center; padding:32px 16px; }
.prt-success-icon { font-size:56px; margin-bottom:16px; display:block; }
.prt-success h3 { font-family:var(--font-display); font-size:22px; font-weight:800; color:var(--text); margin-bottom:8px; }
.prt-success p  { font-size:14px; color:var(--muted); margin-bottom:24px; line-height:1.7; }
.btn-prt-outline { display:inline-flex; align-items:center; gap:8px; background:transparent; color:var(--navy); border:1.5px solid var(--navy); font-family:var(--font-display); font-weight:700; font-size:14px; padding:12px 28px; border-radius:9px; text-decoration:none; transition:all 0.2s; }
.btn-prt-outline:hover { background:var(--navy); color:white; }

@media (max-width:900px) { .prt-layout { grid-template-columns:1fr; } .prt-benefits-card { position:static; } }
@media (max-width:480px) { .prt-type-options { grid-template-columns:1fr 1fr; } }
/* ═══════════════════════════════════════════════════
   31. TEST COMPARISON (MULTI-LAB)
═══════════════════════════════════════════════════ */

/* Lab filter bar */
.lab-filter-bar {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 0;
    overflow-x: auto;
}
.lab-filter-inner {
    max-width: 1240px; margin: 0 auto; padding: 0 24px;
    display: flex; gap: 4px; align-items: center;
}
.lab-filter-btn {
    display: inline-flex; align-items: center; gap: 6px;
    font-family: var(--font-display); font-size: 13px; font-weight: 700;
    color: var(--muted); text-decoration: none;
    padding: 13px 18px; border-bottom: 3px solid transparent;
    white-space: nowrap; transition: all 0.18s;
}
.lab-filter-btn:hover { color: var(--navy); }
.lab-filter-btn.active {
    color: var(--navy);
    border-bottom-color: var(--navy);
}

/* Comparison card grid */
.tcomp-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

/* Card */
.tcomp-card {
    background: white; border: 1px solid var(--border);
    border-radius: 16px; overflow: hidden;
    transition: all 0.22s;
}
.tcomp-card:hover {
    border-color: rgba(27,58,107,0.3);
    box-shadow: 0 8px 28px rgba(0,0,0,0.1);
    transform: translateY(-3px);
}

/* Card head */
.tcomp-card-head {
    padding: 16px 18px 12px;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}
.tcomp-test-name {
    font-family: var(--font-display); font-size: 15px;
    font-weight: 800; color: var(--text); margin-bottom: 6px;
}
.tcomp-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.tcomp-meta-item {
    font-size: 11.5px; color: var(--muted);
    background: white; border: 1px solid var(--border);
    padding: 3px 9px; border-radius: 20px;
}

/* Lab rows */
.tcomp-labs { padding: 8px 0; }
.tcomp-lab-row {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 18px;
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
}
.tcomp-lab-row:last-child { border-bottom: none; }
.tcomp-lab-row:hover { background: var(--bg); }
.tcomp-lab-row.cheapest { background: #F0FDF4; }
.tcomp-lab-row.cheapest:hover { background: #DCFCE7; }

/* Lab info */
.tcomp-lab-info { display: flex; align-items: center; gap: 8px; flex: 1; min-width: 0; }
.tcomp-lab-dot  { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.tcomp-lab-name { font-family: var(--font-display); font-size: 13px; font-weight: 700; color: var(--text-mid); }
.tcomp-cheapest-badge {
    font-family: var(--font-display); font-size: 9px; font-weight: 800;
    background: #16A34A; color: white; padding: 2px 7px;
    border-radius: 20px; letter-spacing: 0.5px; flex-shrink: 0;
}

/* Pricing */
.tcomp-price-wrap { display: flex; align-items: center; gap: 5px; flex-shrink: 0; }
.tcomp-price {
    font-family: var(--font-display); font-size: 15px;
    font-weight: 900; color: var(--text);
}
.tcomp-original {
    font-size: 11px; color: #94A3B8;
    text-decoration: line-through;
}
.tcomp-pct {
    font-family: var(--font-display); font-size: 10px; font-weight: 700;
    background: var(--red-light); color: var(--red);
    padding: 1px 5px; border-radius: 5px;
}

/* Book button */
.tcomp-book-btn {
    font-family: var(--font-display); font-size: 12px; font-weight: 700;
    color: white; text-decoration: none; padding: 7px 14px;
    border-radius: 7px; flex-shrink: 0; transition: all 0.18s;
    opacity: 0.9;
}
.tcomp-book-btn:hover { opacity: 1; transform: scale(1.05); color: white; }

/* Starting from footer */
.tcomp-starting {
    padding: 10px 18px;
    background: var(--navy-light);
    font-size: 12.5px; color: var(--text-mid);
    border-top: 1px solid var(--border);
}
.tcomp-starting strong { color: var(--navy); font-family: var(--font-display); }

/* Responsive */
@media (max-width: 900px) { .tcomp-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .lab-filter-btn { padding: 10px 12px; font-size: 12px; } }

/* ═══════════════════════════════════════════════════
   32. TESTS COMPARISON TABLE
═══════════════════════════════════════════════════ */

/* Lab filter bar */
.lab-filter-bar { background:white; border-bottom:1px solid var(--border); overflow-x:auto; }
.lab-filter-inner { max-width:1240px; margin:0 auto; padding:0 24px; display:flex; gap:0; align-items:center; }
.lab-filter-btn {
    display:inline-flex; align-items:center; gap:7px;
    font-family:var(--font-display); font-size:13px; font-weight:700;
    color:var(--muted); text-decoration:none;
    padding:14px 20px; border-bottom:3px solid transparent;
    white-space:nowrap; transition:all 0.18s;
}
.lab-filter-btn:hover { color:var(--navy); }
.lab-filter-btn.active { color:var(--navy); border-bottom-color:var(--navy); }

/* Table wrap */
.tbl-wrap {
    overflow-x: auto;
    border-radius: var(--r-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    background: white;
}

/* Main table */
.tbl-compare {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
}

/* Header */
.tbl-compare thead tr {
    background: linear-gradient(135deg, #060F1E, #1B3A6B);
}
.tbl-compare thead th {
    padding: 14px 16px;
    text-align: left;
    font-family: var(--font-display);
    font-size: 12px; font-weight: 700;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.5px;
    white-space: nowrap;
    border-bottom: none;
}
.tbl-th-test  { min-width: 260px; width: 35%; }
.tbl-th-tat   { min-width: 90px; text-align:center; }
.tbl-th-lab   { min-width: 130px; text-align: center; }
.tbl-th-action{ min-width: 140px; text-align: center; }

.tbl-lab-head {
    display: flex; align-items: center; gap: 7px; justify-content: center;
}
.tbl-lab-dot {
    width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}

/* Rows */
.tbl-row { border-bottom: 1px solid var(--border); transition: background 0.15s; }
.tbl-row:last-child { border-bottom: none; }
.tbl-row:hover { background: #F8FAFF; }
.tbl-row:nth-child(even) { background: #FAFBFC; }
.tbl-row:nth-child(even):hover { background: #F0F4FF; }

/* Test name cell */
.tbl-td-test { padding: 14px 16px; }
.tbl-test-name {
    font-family: var(--font-display); font-size: 14px;
    font-weight: 700; color: var(--text); line-height: 1.3;
    margin-bottom: 3px;
}
.tbl-test-meta { font-size: 11.5px; color: var(--muted); }

/* TAT cell */
.tbl-td-tat {
    padding: 14px 12px; text-align: center;
    font-size: 12.5px; color: var(--muted);
    white-space: nowrap;
}

/* Price cells */
.tbl-td-price {
    padding: 12px 16px; text-align: center;
    vertical-align: middle; position: relative;
}
.tbl-td-price.tbl-cheapest {
    background: #F0FDF4;
    border-left: 2px solid #16A34A;
    border-right: 2px solid #16A34A;
}
.tbl-best-badge {
    display: inline-block;
    background: #16A34A; color: white;
    font-family: var(--font-display); font-size: 9px; font-weight: 800;
    padding: 2px 7px; border-radius: 10px; letter-spacing: 0.5px;
    margin-bottom: 3px;
}
.tbl-price {
    font-family: var(--font-display); font-size: 15px;
    font-weight: 900;
}
.tbl-original {
    font-size: 11px; color: #94A3B8;
    text-decoration: line-through; margin-top: 1px;
}
.tbl-na { color: #CBD5E1; font-size: 18px; }

/* Action cell */
.tbl-td-action {
    padding: 12px 16px; text-align: center;
    white-space: nowrap;
}
.tbl-book-btn {
    display: inline-block;
    color: white; text-decoration: none;
    font-family: var(--font-display); font-size: 11px; font-weight: 700;
    padding: 6px 12px; border-radius: 6px;
    margin: 2px; transition: all 0.18s;
    letter-spacing: 0.3px;
}
.tbl-book-btn:hover {
    opacity: 0.85; transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    color: white;
}

/* Mobile */
@media (max-width: 768px) {
    .tbl-th-tat, .tbl-td-tat { display: none; }
    .tbl-th-test { min-width: 160px; }
    .tbl-th-lab  { min-width: 100px; }
    .tbl-price   { font-size: 13px; }
    .tbl-book-btn { font-size: 10px; padding: 5px 8px; }
}