/**
 * CheckTicket.pk - Corporate B2B Theme Stylesheet
 * Enterprise aesthetic: Deep Executive Navy, Brand Violet, Amber Gold, and Slate White.
 * Fully responsive across all devices down to 320px mobile screens.
 */

:root {
    --b2b-primary: #055858;
    --b2b-primary-dark: #033636;
    --b2b-primary-light: #0a7373;
    --b2b-navy: #0f172a;
    --b2b-navy-surface: #1e293b;
    --b2b-gold: #055858;
    --b2b-gold-light: #0d9488;
    --b2b-teal: #0d9488;
    --b2b-emerald: #10b981;
    --b2b-bg: #f8fafc;
    --b2b-card-bg: #ffffff;
    --b2b-border: #e2e8f0;
    --b2b-border-subtle: #f1f5f9;
    --b2b-text-dark: #0f172a;
    --b2b-text-body: #334155;
    --b2b-text-muted: #64748b;
    --b2b-font-head: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    --b2b-font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --b2b-radius: 12px;
    --b2b-radius-lg: 18px;
    --b2b-shadow: 0 4px 24px rgba(15, 23, 42, 0.05);
    --b2b-shadow-hover: 0 16px 36px rgba(5, 88, 88, 0.12);
}

/* Reset & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
html {
    min-height: 100%;
    background-color: #0b0f19;
}
html, body {
    overflow-x: hidden;
    width: 100%;
}
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: var(--b2b-bg);
    color: var(--b2b-text-body);
    font-family: var(--b2b-font-body);
    line-height: 1.6;
    font-size: 15px;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--b2b-font-head);
    color: var(--b2b-text-dark);
    font-weight: 700;
    line-height: 1.25;
}

a {
    color: var(--b2b-primary);
    text-decoration: none;
    transition: all 0.2s ease;
}
a:hover {
    color: var(--b2b-primary-light);
}

.container-b2b {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Buttons */
.btn-b2b-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--b2b-primary) 0%, var(--b2b-primary-dark) 100%);
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(5, 88, 88, 0.25);
    transition: all 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
}
.btn-b2b-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(5, 88, 88, 0.35);
    background: linear-gradient(135deg, #076d6d 0%, #033636 100%);
    color: #ffffff !important;
}

.btn-b2b-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(135deg, #055858 0%, #033c3c 100%);
    color: #ffffff !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(5, 88, 88, 0.25);
    transition: all 0.25s ease;
    text-decoration: none;
    white-space: nowrap;
}
.btn-b2b-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(5, 88, 88, 0.35);
    background: linear-gradient(135deg, #076d6d 0%, #033636 100%);
    color: #ffffff !important;
}

.btn-b2b-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: transparent;
    color: var(--b2b-primary) !important;
    border: 1.5px solid var(--b2b-primary);
    padding: 11px 22px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}
.btn-b2b-outline:hover {
    background: var(--b2b-primary);
    color: #ffffff !important;
}

.btn-b2b-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #ffffff;
    color: var(--b2b-primary) !important;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 800;
    font-size: 14px;
    border: 1px solid var(--b2b-border);
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}
.btn-b2b-light:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

/* Header & Trust Bar */
.b2b-top-bar {
    background: #0b0f19;
    color: #94a3b8;
    font-size: 12.5px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.b2b-top-bar-desktop {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.b2b-top-bar-mobile {
    display: none;
}
.b2b-top-left, .b2b-top-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.b2b-top-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 12.5px;
}
.b2b-top-item:hover {
    color: #f8fafc;
}
.b2b-top-item i {
    color: var(--b2b-gold);
}
.b2b-badge-verified {
    background: rgba(16, 185, 129, 0.15);
    color: #34d399;
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Navbar */
.b2b-navbar {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--b2b-border);
}
.b2b-navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}
.b2b-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.b2b-logo img {
    height: 48px;
    max-width: 210px;
    object-fit: contain;
}

.b2b-nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: clamp(10px, 1.3vw, 22px);
    flex-wrap: nowrap;
}
.b2b-nav-link {
    font-size: clamp(12.5px, 0.92vw, 14.5px);
    font-weight: 600;
    color: #334155;
    padding: 6px 0;
    position: relative;
    transition: color 0.2s ease;
    white-space: nowrap;
}
.b2b-nav-link:hover, .b2b-nav-link.active {
    color: var(--b2b-primary);
}
.b2b-nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--b2b-primary);
    border-radius: 2px;
}

.b2b-nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.b2b-nav-actions .btn-b2b-primary,
.b2b-nav-actions .btn-b2b-gold,
.b2b-nav-actions .btn-b2b-outline {
    padding: 9px 15px;
    font-size: 13px;
    white-space: nowrap;
}
.b2b-portal-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    background: #f1f5f9;
    color: var(--b2b-primary);
    border: 1px solid #cbd5e1;
    border-radius: 7px;
    font-weight: 700;
    font-size: 13.5px;
}
.b2b-portal-btn:hover {
    background: #e2e8f0;
    color: var(--b2b-primary);
}

.b2b-mobile-actions {
    display: none;
}
.btn-b2b-mobile-login {
    display: none;
}
.b2b-mobile-toggle {
    display: none;
}

/* Mobile Nav Drawer */
.b2b-mobile-drawer {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(4px);
    z-index: 99999;
}
.b2b-mobile-drawer.open {
    display: block;
}
.b2b-mobile-drawer-content {
    background: #ffffff;
    width: 310px;
    max-width: 85vw;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(0,0,0,0.25);
}
.b2b-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 14px;
}
.b2b-drawer-close {
    background: none;
    border: none;
    font-size: 26px;
    color: #64748b;
    cursor: pointer;
    line-height: 1;
}
.b2b-drawer-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f1f5f9;
}
.b2b-drawer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}
.b2b-drawer-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 8px;
    color: #334155;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
}
.b2b-drawer-links a i {
    width: 18px;
    color: #64748b;
    font-size: 13.5px;
}
.b2b-drawer-links a:hover, .b2b-drawer-links a.active {
    background: #f1f5f9;
    color: var(--b2b-primary);
}
.b2b-drawer-links a.active i {
    color: var(--b2b-gold);
}
.b2b-drawer-footer {
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid #e2e8f0;
}
.b2b-drawer-support-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 7px;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #0f172a;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    margin-bottom: 8px;
}
.b2b-drawer-support-btn.whatsapp {
    background: #ecfdf5;
    border-color: #86efac;
    color: #15803d;
}

/* Hero Section with REAL Travel Photography Background */
.b2b-hero {
    background: linear-gradient(135deg, rgba(11, 20, 28, 0.92) 0%, rgba(5, 88, 88, 0.88) 100%),
                url('../images/hero/b2b_hero_banner.webp') center/cover no-repeat;
    color: #ffffff;
    padding: 70px 0 65px;
    position: relative;
    overflow: hidden;
}
.b2b-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(167, 243, 208, 0.35);
    color: #a7f3d0;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 12.5px;
    font-weight: 700;
    margin-bottom: 18px;
}
.b2b-hero-badge i {
    color: #5eead4;
}
.b2b-hero h1 {
    color: #ffffff;
    font-size: clamp(1.65rem, 4vw, 2.75rem);
    font-weight: 800;
    line-height: 1.22;
    margin-bottom: 16px;
    max-width: 800px;
}
.b2b-hero p {
    color: #cbd5e1;
    font-size: 15.5px;
    line-height: 1.6;
    max-width: 680px;
    margin-bottom: 28px;
}
.b2b-hero-ctas {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 35px;
}
.b2b-hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 24px;
}
.b2b-stat-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 16px;
    border-radius: 10px;
}
.b2b-stat-item h3 {
    color: #ffffff;
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 3px;
    line-height: 1;
}
.b2b-stat-item p {
    color: #94a3b8;
    font-size: 12.5px;
    margin: 0;
    line-height: 1.3;
}

/* Official Accreditation & Trust Strip */
.b2b-accreditation-strip {
    background: #ffffff;
    border-bottom: 1px solid var(--b2b-border);
    padding: 20px 0;
}
.b2b-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    align-items: stretch;
}
.b2b-trust-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: #f8fafc;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.03);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.b2b-trust-card:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}
.b2b-trust-card img {
    height: 42px;
    width: auto;
    max-width: 52px;
    object-fit: contain;
    flex-shrink: 0;
}
.b2b-trust-card-text {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.b2b-trust-card-text h5 {
    font-size: 15px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 3px;
    letter-spacing: -0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.b2b-trust-card-text p {
    font-size: 13px;
    color: #475569;
    font-weight: 600;
    margin: 0;
    line-height: 1.35;
}

/* Airline Partners Strip */
.b2b-partners-strip {
    background: #0c1322;
    padding: 28px 0 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.b2b-partners-title {
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #cbd5e1;
    margin-bottom: 20px;
}
.b2b-carriers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
    align-items: stretch;
}
.b2b-carrier-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 14px 12px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}
.b2b-carrier-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(217, 119, 6, 0.6);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}
.b2b-carrier-logo-box {
    background: #ffffff;
    border-radius: 8px;
    width: 100%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.b2b-carrier-logo-box img {
    max-height: 38px;
    max-width: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}
.b2b-carrier-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    width: 100%;
}
.b2b-carrier-name {
    font-size: 14.5px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.2px;
    line-height: 1.2;
}
.b2b-carrier-badge {
    font-size: 11px;
    font-weight: 700;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Sections */
.b2b-section {
    padding: 60px 0;
}
.b2b-section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}
.b2b-section-tag {
    display: inline-block;
    color: var(--b2b-gold);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}
.b2b-section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.2rem);
    color: var(--b2b-navy);
    margin-bottom: 12px;
}
.b2b-section-subtitle {
    color: var(--b2b-text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Grids */
.b2b-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.b2b-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.b2b-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
    align-items: center;
}

/* REAL PHOTO DESTINATION & GROUP CARDS */
.b2b-photo-card {
    background: #ffffff;
    border-radius: var(--b2b-radius-lg);
    border: 1px solid var(--b2b-border);
    overflow: hidden;
    box-shadow: var(--b2b-shadow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: flex;
    flex-direction: column;
}
.b2b-photo-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--b2b-shadow-hover);
    border-color: #cbd5e1;
}
.b2b-photo-thumb {
    position: relative;
    width: 100%;
    height: 175px;
    overflow: hidden;
    background: #0f172a;
}
.b2b-photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.b2b-photo-card:hover .b2b-photo-thumb img {
    transform: scale(1.04);
}
.b2b-photo-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    color: #fde68a;
    padding: 3px 9px;
    border-radius: 5px;
    font-size: 11px;
    font-weight: 700;
    border: 1px solid rgba(255,255,255,0.2);
}
.b2b-photo-tag {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #059669;
    color: #ffffff;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.b2b-photo-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.b2b-photo-title {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 4px;
    color: #0f172a;
}
.b2b-photo-route {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--b2b-gold);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.b2b-photo-specs {
    list-style: none;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex-grow: 1;
}
.b2b-photo-specs li {
    font-size: 13px;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.35;
}
.b2b-photo-specs li i {
    color: #10b981;
    margin-top: 3px;
    flex-shrink: 0;
}

/* PHOTO SERVICE CARDS */
.b2b-service-photo-card {
    background: #ffffff;
    border-radius: var(--b2b-radius-lg);
    border: 1px solid var(--b2b-border);
    overflow: hidden;
    box-shadow: var(--b2b-shadow);
    transition: transform 0.25s ease;
    display: flex;
    flex-direction: column;
}
.b2b-service-photo-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--b2b-shadow-hover);
}
.b2b-service-photo-thumb {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: #0f172a;
}
.b2b-service-photo-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.b2b-service-photo-card:hover .b2b-service-photo-thumb img {
    transform: scale(1.05);
}
.b2b-service-photo-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.b2b-service-photo-body h3 {
    font-size: 16.5px;
    font-weight: 800;
    margin-bottom: 6px;
    color: #0f172a;
}
.b2b-service-photo-body p {
    font-size: 13px;
    color: #64748b;
    line-height: 1.45;
    margin-bottom: 12px;
    flex-grow: 1;
}
.b2b-service-photo-link {
    font-size: 13px;
    font-weight: 700;
    color: var(--b2b-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Generic Cards & Utilities */
.b2b-card {
    background: #ffffff;
    border: 1px solid var(--b2b-border);
    border-radius: var(--b2b-radius);
    padding: 24px;
    box-shadow: var(--b2b-shadow);
    transition: all 0.25s ease;
}
.b2b-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--b2b-shadow-hover);
}

/* CTA Banner */
.b2b-cta-banner {
    background: linear-gradient(135deg, #0b151f 0%, #055858 100%),
                url('../images/hero/b2b_cta_banner.webp') center/cover no-repeat;
    border-radius: var(--b2b-radius-lg);
    padding: 50px 36px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}
.b2b-cta-banner h2 {
    color: #ffffff;
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    margin-bottom: 12px;
}
.b2b-cta-banner p {
    color: #cbd5e1;
    font-size: 15px;
    max-width: 640px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

/* Partner Agencies Showcase */
.b2b-partners-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 24px;
}
.b2b-partner-logo {
    height: 55px;
    padding: 6px 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    object-fit: contain;
}

/* Footer */
.b2b-footer {
    background: #0b0f19;
    color: #cbd5e1;
    padding: 50px 0 calc(36px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14.5px;
    margin-top: auto;
    position: relative;
    z-index: 10;
}
.b2b-footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 2.2fr 1.6fr;
    gap: 40px;
    margin-bottom: 34px;
}
.b2b-footer-brand {
    display: flex;
    flex-direction: column;
}
.b2b-footer-logo {
    display: inline-block;
    margin-bottom: 14px;
}
.b2b-footer-desc {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 16px;
    max-width: 360px;
}
.b2b-footer-badges {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.b2b-footer-links-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.b2b-footer-col h4,
.b2b-footer-contact-col h4 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 16px;
    font-weight: 800;
    letter-spacing: -0.2px;
}
.b2b-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.b2b-footer-col ul li {
    margin-bottom: 9px;
}
.b2b-footer-col ul li a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease, padding-left 0.2s ease;
}
.b2b-footer-col ul li a:hover {
    color: #ffffff;
    padding-left: 3px;
}
.b2b-footer-quick-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}
.b2b-footer-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    color: #fde68a !important;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.b2b-footer-action-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    transform: translateY(-1px);
    color: #ffffff !important;
}
.b2b-footer-action-btn.whatsapp {
    color: #4ade80 !important;
    border-color: rgba(74, 222, 128, 0.35);
    background: rgba(16, 185, 129, 0.1);
}
.b2b-footer-action-btn.whatsapp:hover {
    background: rgba(16, 185, 129, 0.18);
}
.b2b-footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.b2b-footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #e2e8f0;
    margin-bottom: 11px;
    line-height: 1.5;
    font-size: 13.5px;
}
.b2b-footer-contact li i {
    color: var(--b2b-gold);
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Footer Channels & Payment Methods */
.b2b-footer-channels {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 14px;
    padding: 20px 0;
    margin-bottom: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
@media (min-width: 769px) {
    .b2b-footer-channels {
        padding-right: 210px;
    }
}
.b2b-channels-label {
    color: #e2e8f0;
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.2px;
}
.b2b-channels-list {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.b2b-channel-chip {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 7px 16px;
    font-size: 13px;
    color: #f1f5f9;
    font-weight: 600;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.b2b-channel-chip:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}
.b2b-channel-chip i {
    color: var(--b2b-gold);
    font-size: 14px;
}

/* Footer Bottom Strip */
.b2b-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 13.5px;
    color: #94a3b8;
}
@media (min-width: 769px) {
    .b2b-footer-bottom {
        padding-right: 210px;
    }
}
.b2b-footer-copyright {
    color: #94a3b8;
    line-height: 1.6;
}
.b2b-footer-copyright strong {
    color: #f1f5f9;
}

/* Powered by TMZ Badge */
.b2b-tmz-power {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    backdrop-filter: blur(6px);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.b2b-tmz-power:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(74, 222, 128, 0.45);
    box-shadow: 0 4px 18px rgba(74, 222, 128, 0.12);
    transform: translateY(-1px);
}
.b2b-tmz-label {
    font-size: 11.5px;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}
.b2b-tmz-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: inherit;
}
.b2b-tmz-link img {
    height: 24px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}
.b2b-tmz-brand {
    color: #4ade80;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.8px;
}
.b2b-tmz-url {
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 600;
    border-left: 1px solid rgba(255, 255, 255, 0.22);
    padding-left: 8px;
    transition: color 0.2s ease;
}
.b2b-tmz-link:hover .b2b-tmz-url {
    color: #ffffff;
    text-decoration: underline;
}
.b2b-tmz-link i {
    font-size: 10px;
    color: #94a3b8;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
    .b2b-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .b2b-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
    .b2b-trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    .b2b-carriers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }
    /* Tablet Footer Layout */
    .b2b-footer {
        padding: 40px 0 calc(28px + env(safe-area-inset-bottom, 0px));
    }
    .b2b-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .b2b-footer-brand {
        grid-column: span 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        margin-bottom: 4px;
    }
    .b2b-footer-brand .b2b-footer-desc {
        max-width: 460px;
        margin-bottom: 0;
    }
    .b2b-footer-links-group {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .b2b-footer-channels {
        padding: 16px 0;
        margin-bottom: 18px;
        justify-content: center;
        gap: 12px;
    }
    .b2b-channels-list {
        justify-content: center;
    }
    .b2b-footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 14px;
    }
    .b2b-tmz-power {
        order: 2;
    }
    .b2b-footer-copyright {
        order: 1;
    }
}

@media (max-width: 768px) {
    /* Mobile Top Bar: Sleek 1-line */
    .b2b-top-bar {
        padding: 6px 0;
    }
    .b2b-top-bar-desktop {
        display: none;
    }
    .b2b-top-bar-mobile {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        font-size: 11.5px;
    }
    .b2b-top-mob-item {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        color: #f1f5f9;
        text-decoration: none;
        font-weight: 600;
    }
    .b2b-top-mob-item i {
        color: var(--b2b-gold);
    }
    .b2b-whatsapp-mob i {
        color: #4ade80 !important;
    }
    .b2b-whatsapp-mob span {
        color: #4ade80;
    }
    .b2b-top-mob-sep {
        color: #64748b;
    }

    /* Navbar on mobile */
    .b2b-navbar-inner {
        padding: 8px 0;
    }
    .b2b-logo img {
        height: 38px;
        max-width: 175px;
    }
    .b2b-nav-menu, .b2b-nav-actions {
        display: none;
    }
    .b2b-mobile-actions {
        display: flex;
        align-items: center;
        gap: 8px;
    }
    .btn-b2b-mobile-login {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 6px 12px;
        background: linear-gradient(135deg, #055858 0%, #033636 100%);
        color: #ffffff !important;
        border-radius: 6px;
        font-size: 12px;
        font-weight: 700;
        text-decoration: none;
    }
    .b2b-mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 6px;
        border: 1px solid #cbd5e1;
        background: #f8fafc;
        color: var(--b2b-navy);
        font-size: 17px;
        cursor: pointer;
    }

    /* Hero on mobile */
    .b2b-hero {
        padding: 36px 0 32px;
    }
    .b2b-hero-badge {
        font-size: 11px;
        padding: 4px 10px;
        margin-bottom: 12px;
    }
    .b2b-hero h1 {
        font-size: 22px;
        line-height: 1.25;
        margin-bottom: 10px;
    }
    .b2b-hero p {
        font-size: 13.5px;
        line-height: 1.5;
        margin-bottom: 18px;
    }
    .b2b-hero-ctas {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 10px;
        margin-bottom: 22px;
    }
    .b2b-hero-ctas .btn-b2b-gold,
    .b2b-hero-ctas .btn-b2b-light,
    .b2b-hero-ctas .btn-b2b-outline {
        width: 100%;
        justify-content: center;
        padding: 11px 16px;
        font-size: 13.5px;
    }
    .b2b-hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
        padding-top: 16px;
    }
    .b2b-stat-item {
        padding: 10px;
    }
    .b2b-stat-item h3 {
        font-size: 18px;
    }
    .b2b-stat-item p {
        font-size: 11px;
    }

    /* Sections & Grids on mobile */
    .b2b-section {
        padding: 40px 0;
    }
    .b2b-grid-4, .b2b-grid-3, .b2b-grid-2 {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .b2b-trust-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .b2b-carriers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .b2b-carrier-card {
        padding: 10px 8px 10px;
    }
    .b2b-carrier-logo-box {
        height: 46px;
    }
    .b2b-carrier-logo-box img {
        max-height: 32px;
    }
    .b2b-carrier-name {
        font-size: 13px;
    }
    .b2b-carrier-badge {
        font-size: 10px;
    }
    /* Mobile Footer Layout - Clean, Un-crowded & Compact */
    .b2b-footer {
        padding: 28px 0 calc(20px + env(safe-area-inset-bottom, 0px));
    }
    .b2b-footer-grid {
        display: flex;
        flex-direction: column;
        gap: 16px;
        text-align: center;
        margin-bottom: 20px;
    }
    .b2b-footer-brand {
        align-items: center;
        text-align: center;
    }
    .b2b-footer-logo img {
        height: 36px;
        margin-bottom: 6px;
    }
    .b2b-footer-desc {
        font-size: 12.5px;
        line-height: 1.5;
        color: #94a3b8;
        max-width: 360px;
        margin: 0 auto 10px;
    }
    .b2b-footer-badges {
        justify-content: center;
        gap: 6px;
        margin-bottom: 4px;
    }
    .b2b-footer-badges .b2b-badge-verified {
        font-size: 10px;
        padding: 2px 7px;
    }
    
    /* Mobile Quick Action Buttons (Call & WhatsApp) */
    .b2b-footer-quick-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        width: 100%;
        margin: 6px 0 10px;
    }
    .b2b-footer-action-btn {
        justify-content: center;
        padding: 9px 10px;
        font-size: 12px;
        border-radius: 6px;
    }
    
    /* 2-Column Links Group on Mobile (Slashes Vertical Height by Half!) */
    .b2b-footer-links-group {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
        text-align: left;
        padding: 14px 8px;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    .b2b-footer-col h4 {
        font-size: 13.5px;
        font-weight: 700;
        color: #ffffff;
        margin-bottom: 8px;
        letter-spacing: 0;
    }
    .b2b-footer-col ul li {
        margin-bottom: 6px;
    }
    .b2b-footer-col ul li a {
        font-size: 12.5px;
        color: #cbd5e1;
    }
    
    /* Compact Operations Desk on Mobile */
    .b2b-footer-contact-col {
        text-align: center;
    }
    .b2b-footer-contact-col h4 {
        display: none; /* Quick actions already present above */
    }
    .b2b-footer-contact {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 5px;
    }
    .b2b-footer-contact li {
        justify-content: center;
        text-align: center;
        font-size: 12px;
        color: #94a3b8;
        margin-bottom: 3px;
        gap: 6px;
        line-height: 1.4;
    }
    .b2b-footer-contact li i {
        font-size: 13px;
        margin-top: 1px;
    }
    
    /* Settlement Channels on Mobile */
    .b2b-footer-channels {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
        padding: 10px 0;
        margin-bottom: 12px;
        border: none;
    }
    .b2b-channels-label {
        font-size: 11px;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    .b2b-channels-list {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 6px;
    }
    .b2b-channel-chip {
        font-size: 11px;
        padding: 5px 12px;
        border-radius: 14px;
    }
    
    /* Bottom Strip on Mobile */
    .b2b-footer-bottom {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;
        padding-top: 10px;
    }
    .b2b-tmz-power {
        order: 1;
        margin: 0 auto;
        padding: 6px 14px;
        font-size: 12px;
    }
    .b2b-footer-copyright {
        order: 2;
        font-size: 11.5px;
        text-align: center;
        line-height: 1.5;
        color: #64748b;
    }
    .b2b-cta-banner {
        padding: 32px 18px;
    }
    .b2b-trust-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 400px) {
    .container-b2b {
        padding: 0 14px;
    }
    .b2b-hero h1 {
        font-size: 20px;
    }
    .b2b-hero-stats {
        grid-template-columns: 1fr 1fr;
    }
    .b2b-photo-thumb {
        height: 155px;
    }
    .b2b-stat-item h3 {
        font-size: 17px;
    }
    .b2b-channel-chip {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    .b2b-tmz-power {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Tablet & Laptop Navbar Fix: Switch to Drawer at 1180px to prevent wrapping */
@media (max-width: 1180px) {
    .b2b-nav-menu, .b2b-nav-actions {
        display: none !important;
    }
    .b2b-mobile-actions {
        display: flex !important;
        align-items: center;
        gap: 8px;
    }
    .btn-b2b-mobile-login {
        display: inline-flex !important;
    }
    .b2b-mobile-toggle {
        display: inline-flex !important;
    }
}

/* Footer Logo Styling (Enlarged) */
.b2b-footer-logo img {
    height: 60px !important;
    max-width: 260px !important;
    object-fit: contain;
    transition: transform 0.2s ease;
}
.b2b-footer-logo:hover img {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .b2b-footer-logo img {
        height: 48px !important;
        max-width: 210px !important;
    }
}

/* B2B Workflow Grid (Operating Protocol) */
.b2b-workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.b2b-workflow-card {
    background: #f8fafc;
    border: 1px solid var(--b2b-border);
    border-radius: 12px;
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.b2b-workflow-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(5, 88, 88, 0.08);
}
.b2b-workflow-step {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-weight: 800;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.b2b-workflow-step.step-1 { background: #055858; }
.b2b-workflow-step.step-2 { background: #086b6b; }
.b2b-workflow-step.step-3 { background: #0d9488; }
.b2b-workflow-step.step-4 { background: #10b981; }

.b2b-workflow-card h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: var(--b2b-text-dark);
}
.b2b-workflow-card p {
    font-size: 13px;
    color: var(--b2b-text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Responsive Form Rows & Container Cards */
.b2b-form-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.b2b-inquiry-card {
    background: #ffffff;
    border: 1px solid var(--b2b-border);
    border-radius: var(--b2b-radius-lg);
    padding: 32px;
    box-shadow: var(--b2b-shadow);
}
.b2b-onboarding-box {
    background: #f8fafc;
    border: 1.5px solid var(--b2b-border);
    border-radius: var(--b2b-radius-lg);
    padding: 36px;
    box-shadow: var(--b2b-shadow);
}

@media (max-width: 991px) {
    .b2b-workflow-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 640px) {
    .b2b-workflow-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .b2b-form-row-2 {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .b2b-inquiry-card {
        padding: 20px 16px;
    }
    .b2b-onboarding-box {
        padding: 22px 16px;
    }
}

/* Fullscreen Circular Airplane Preloader */
.ct-preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    background: #055858;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}
.ct-preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.ct-preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}
.ct-preloader-plane {
    width: 220px;
    height: 220px;
    max-width: 75vw;
    max-height: 75vw;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(5, 88, 88, 0.45));
}
.ct-preloader-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: #ffffff;
    font-family: var(--b2b-font-head);
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.ct-preloader-bar {
    width: 140px;
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 3px;
    margin-top: 14px;
    overflow: hidden;
    position: relative;
}
.ct-preloader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #055858, #0d9488, #5eead4);
    animation: ctBarSlide 1.2s infinite ease-in-out;
}
@keyframes ctBarSlide {
    0% { left: -100%; }
    50% { left: 30%; }
    100% { left: 100%; }
}

/* Floating WhatsApp Button */
.ct-float-whatsapp {
    position: fixed;
    bottom: 28px;
    right: 24px;
    z-index: 9990;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25d366;
    color: #ffffff !important;
    padding: 12px 18px 12px 16px;
    border-radius: 9999px;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    text-decoration: none;
    font-weight: 700;
    font-size: 13.5px;
    transition: all 0.25s ease;
}
.ct-float-whatsapp i {
    font-size: 22px;
}
.ct-float-whatsapp:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
    color: #ffffff !important;
}
.ct-float-whatsapp::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 9999px;
    background: rgba(37, 211, 102, 0.4);
    z-index: -1;
    animation: ctPulse 2s infinite cubic-bezier(0.4, 0, 0.6, 1);
}
@keyframes ctPulse {
    0%, 100% { transform: scale(1); opacity: 0.7; }
    50% { transform: scale(1.12); opacity: 0; }
}

/* Floating Scroll To Top Button */
.ct-scroll-top {
    position: fixed;
    bottom: 86px;
    right: 26px;
    z-index: 9989;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #055858;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(5, 88, 88, 0.3);
    cursor: pointer;
    border: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all 0.3s ease;
    font-size: 16px;
}
.ct-scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.ct-scroll-top:hover {
    background: #076d6d;
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(5, 88, 88, 0.4);
}

/* Sticky Mobile Bottom Navigation Bar */
.b2b-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9995;
    background: rgba(11, 15, 25, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 4px calc(6px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.25);
}
.b2b-bottom-bar-inner {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    max-width: 480px;
    margin: 0 auto;
    align-items: center;
}
.b2b-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 6px 2px;
    color: #94a3b8;
    text-decoration: none;
    font-size: 11px;
    font-weight: 600;
    transition: all 0.2s ease;
    position: relative;
}
.b2b-bottom-item i {
    font-size: 17px;
    transition: transform 0.2s ease;
}
.b2b-bottom-item:hover, .b2b-bottom-item.active {
    color: #5eead4;
}
.b2b-bottom-item.active i {
    transform: scale(1.12);
    color: #5eead4;
}
.b2b-bottom-item.highlight {
    color: #4ade80;
}
.b2b-bottom-item.highlight i {
    color: #4ade80;
}

@media (max-width: 768px) {
    .b2b-bottom-bar {
        display: block;
    }
    body {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }
    footer, .footer, .b2b-footer {
        padding-bottom: calc(75px + env(safe-area-inset-bottom, 0px)) !important;
    }
    /* Mobile bottom bar already includes a prominent WhatsApp action; hide redundant floating button */
    .ct-float-whatsapp {
        display: none !important;
    }
    /* Compact scroll to top sitting cleanly above the mobile bottom bar */
    .ct-scroll-top {
        bottom: 74px;
        right: 16px;
        width: 38px;
        height: 38px;
        font-size: 13px;
        z-index: 9990;
    }
}

