/* ============================================
   BSB (Bharat Supply Bridge) - Brand Guidelines CSS
   Industry: Polymer Trading, Supply Chain, Logistics & Financial Support
   ============================================ */

/* ===== CSS Variables - Updated Brand Colors ===== */
:root {
    /* Primary Brand Colors */
    --primary-blue: #064E8D;
    /* Primary Blue */
    --deep-blue: #00072B;
    /* Secondary Colour */

    /* Neutral Greys */
    --grey-light: #F3F3F5;
    /* Neutral Grey Light */
    --grey-medium: #B0B2BD;
    /* Neutral Grey Mid */
    --grey-dark: #545971;
    /* Neutral Grey Dark */

    /* Accent/Highlight Colors */
    --accent-orange: #F57F17;
    /* Accent Orange */
    --cta-yellow: #FBC02D;
    /* Supporting Yellow */

    /* Base Colors */
    --white: #FFFFFF;
    --black: #212121;

    /* Typography - Brand Fonts */
    --font-primary: 'Montserrat', sans-serif;
    /* Global Website/Headings/UI Body */
    --font-ui: 'Montserrat', sans-serif;
    /* Digital Platform UI/Web App */
    --font-logo: 'Montserrat', sans-serif;
    /* Logo + Tagline Only */

    /* Spacing System */
    --spacing-xs: 0.5rem;
    /* 8px */
    --spacing-sm: 1rem;
    /* 16px */
    --spacing-md: 1.5rem;
    /* 24px */
    --spacing-lg: 2rem;
    /* 32px */
    --spacing-xl: 3rem;
    /* 48px */
    --spacing-xxl: 4rem;
    /* 64px */

    /* Border Radius - Square Design */
    --radius: 3px;
    /* Border radius for consistent design */
    --radius-small: 2px;
    /* Minimal radius for small elements */

    /* Transitions */
    --transition: all 0.3s ease;
}

/* ===== Reset & Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    font-family: 'Lato', sans-serif;
}

/* Global typography defaults */
button,
input,
select,
textarea {
    font-family: 'Lato', sans-serif;
}

/* Let icon fonts use their own font-family so icons are visible */
.fa,
.fas,
.far,
.fal,
.fab,
.fa-solid,
.fa-regular,
.fa-brands {
    font-family: inherit;
}

/* Offset anchor scroll for sticky header */
section,
.modal,
.hero-section,
.services-section,
.tools-section,
.events-section,
.live-rates-section,
.registration-section,
.clients-section,
.news-section,
.about-section,
.contact-section {
    scroll-margin-top: 90px;
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.service-card,
.event-card,
.news-card,
.rate-card {
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

/* Live rates sizing and spacing just below navbar */
.live-rates-section {
    padding-top: var(--spacing-sm);
}

.live-rates-container {
    align-items: stretch;
}

.rate-card {
    max-width: 320px;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: var(--spacing-sm);
}

/* ===== Header & Navigation ===== */
.main-header {
    background-color: #0a3a71;
    box-shadow: 0 6px 18px rgba(5, 28, 63, 0.25);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.main-header+* {
    margin-top: 0;
}

body {
    padding-top: 90px;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 0;
    position: relative;
    width: 100%;
    min-width: 0; /* Allow flex items to shrink */
}

.logo {
    display: flex;
    align-items: center;
    margin-right: 24px;
    flex-shrink: 0;
    order: 1;
    min-width: 180px;
    max-width: 200px;
    overflow: hidden; /* Prevent logo from overflowing */
}

.logo a {
    display: flex;
    align-items: center;
    padding-left: 20px;
    padding-right: 16px;
    flex-shrink: 0;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
    max-width: 100%;
}

.nav-center {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1 1 0;
    margin-left: 0;
    margin-right: 16px;
    justify-content: flex-end;
    min-width: 0;
    padding-right: 0;
    order: 2;
}

.nav-center .button-group {
    flex-shrink: 0;
    margin-left: 10px;
}

.nav-center .nav-menu {
    flex-shrink: 0;
    margin-right: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 22px;
    margin: 0;
    padding: 0;
    flex-wrap: nowrap;
}

.nav-menu>li>a {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.92);
    text-decoration: none;
    font-size: 0.95rem;
    padding: 8px 4px;
    transition: color 0.25s ease;
    white-space: nowrap;
}

/* Responsive tightening for mid screens to keep navbar 100% width clean */
@media (max-width: 1400px) {
    body {
        padding-top: 88px;
    }

    .navbar {
        gap: 16px;
        padding: 10px 0;
    }

    .logo {
        margin-right: 20px;
        min-width: 160px;
        max-width: 180px;
        flex-shrink: 0 !important;
    }

    .logo a {
        padding-left: 16px;
        padding-right: 12px;
    }

    .logo-img {
        height: 42px;
    }

    .nav-center {
        gap: 12px;
        margin-right: 12px;
        margin-left: auto !important; /* Push to right side */
        justify-content: flex-end !important; /* Ensure items align to right */
        flex: 1 1 auto !important; /* Take remaining space */
        min-width: 0 !important;
    }

    .nav-menu {
        gap: 18px;
        flex-wrap: nowrap !important; /* Prevent wrapping */
    }

    .nav-menu>li>a {
        font-size: 0.92rem;
    }

    .button-group .nav-btn {
        padding: 10px 14px;
        font-size: 0.95rem;
    }

    .btn-call-nav {
        padding: 10px 14px;
    }
}

/* Specific fix for 1280x800 dimension - Prevent navbar overlap */
@media (min-width: 1025px) and (max-width: 1366px) {
    .navbar {
        justify-content: space-between !important;
        gap: 20px !important;
    }

    .logo {
        flex-shrink: 0 !important;
        min-width: 160px !important;
        max-width: 180px !important;
        margin-right: 24px !important;
        order: 1 !important;
    }

    .nav-center {
        display: flex !important;
        flex: 1 1 auto !important;
        justify-content: flex-end !important;
        align-items: center !important;
        margin-left: auto !important; /* Push to right */
        margin-right: 16px !important;
        min-width: 0 !important;
        order: 2 !important;
        gap: 16px !important;
    }

    .nav-center .nav-menu {
        flex-shrink: 0 !important;
        margin-right: 0 !important;
        flex-wrap: nowrap !important;
    }

    .nav-actions {
        display: flex !important;
        flex-shrink: 0 !important;
        order: 3 !important;
    }
}

@media (max-width: 1200px) {
    body {
        padding-top: 82px;
    }

    .navbar {
        gap: 12px;
        padding: 8px 0;
    }

    .logo {
        margin-right: 16px;
        min-width: 150px;
        max-width: 170px;
    }

    .logo a {
        padding-left: 14px;
        padding-right: 10px;
    }

    .logo-img {
        height: 38px;
    }

    .nav-center {
        gap: 10px;
        margin-right: 10px;
    }

    .nav-menu {
        gap: 14px;
    }

    .nav-menu>li>a {
        font-size: 0.9rem;
    }

    .button-group .nav-btn {
        padding: 9px 12px;
        font-size: 0.9rem;
    }

    .btn-call-nav {
        padding: 9px 12px;
    }
}

.nav-menu>li>a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    background: rgba(248, 195, 65, 0.85);
    border-radius: 999px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.nav-menu>li>a:hover,
.nav-menu>li>a:focus {
    color: #ffffff;
}

.nav-menu>li>a:hover::after,
.nav-menu>li>a:focus::after {
    transform: scaleX(1);
}

.nav-menu .chevron {
    font-size: 0.65rem;
    opacity: 0.7;
    margin-top: 2px;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    min-width: 220px;
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(5, 28, 63, 0.18);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: all 0.25s ease;
    border: 1px solid rgba(5, 28, 63, 0.06);
    z-index: 1200;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0 12px;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #0a3a71 !important;
    font-weight: 600;
    font-size: 0.92rem;
    transition: background 0.2s ease, color 0.2s ease;
}

.dropdown-menu a:hover {
    background: rgba(10, 58, 113, 0.08);
    color: #0a3a71 !important;
}

/* Download App Button Styling */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0;
    margin-right: 24px;
    margin-left: 0;
    flex-shrink: 0;
    order: 3;
}

.nav-actions .nav-btn {
    margin-left: 0;
}

.button-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.button-group .nav-btn {
    flex-shrink: 0;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 3px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
    min-height: 36px;
    height: 36px;
    line-height: 1;
    box-sizing: border-box;
}

.nav-btn i {
    font-size: 0.8rem;
    flex-shrink: 0;
}

.nav-btn .chevron {
    font-size: 0.7rem;
    opacity: 0.8;
    margin-left: 2px;
}

.nav-btn span {
    white-space: nowrap;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

.nav-btn:focus {
    outline: 2px solid rgba(255, 255, 255, 0.6);
    outline-offset: 2px;
}

.nav-actions .nav-btn {
    margin-left: 10px;
    padding: 8px 16px;
    min-height: 36px;
    height: 36px;
    border-radius: 3px;
}

.btn-download-app-nav {
    background: var(--cta-yellow);
    color: var(--deep-blue);
}

.btn-download-app-nav i {
    font-size: 0.8rem;
}

.btn-book-demo-nav,
.btn-elite-nav {
    background: var(--accent-orange);
    color: var(--white);
}

.btn-book-demo-nav {
    min-height: 36px;
    height: 36px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
}

.btn-elite-nav i {
    font-size: 0.85rem;
}

.btn-call-nav {
    background: var(--accent-orange);
    color: var(--white);
}

.btn-whatsapp-nav {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-whatsapp-nav .whatsapp-icon {
    width: 20px;
    height: 20px;
    fill: currentColor;
    color: var(--white);
    flex-shrink: 0;
}

.btn-call-nav:hover {
    background: var(--cta-yellow);
    color: var(--deep-blue);
    box-shadow: 0 18px 30px rgba(251, 192, 45, 0.3);
    transform: translateY(-2px);
}

.btn-whatsapp-nav:hover {
    box-shadow: 0 18px 30px rgba(37, 211, 102, 0.3);
    background: linear-gradient(135deg, #2FE576 0%, #20BA8F 100%);
}

.app-download-menu .dropdown-menu {
    min-width: 280px;
    padding: 12px 0;
    right: 0;
    left: auto;
}

.app-download-link {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 16px !important;
    font-weight: 600;
    color: #0a3a71;
}

.app-download-link i:first-child {
    width: 26px;
    text-align: center;
    font-size: 1.2rem;
}

.app-download-link i:last-child {
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.2s ease;
}

.app-download-link:hover i:last-child {
    opacity: 1;
    transform: translateX(0);
}

/* Book Demo Dropdown Menu */
.book-demo-menu .dropdown-menu {
    min-width: 280px;
    padding: 12px 0;
    right: 0;
    left: auto;
}

.demo-link {
    display: flex !important;
    align-items: center;
    gap: 12px;
    padding: 12px 16px !important;
    font-weight: 600;
    color: #0a3a71;
}

.demo-link i:first-child {
    width: 26px;
    text-align: center;
    font-size: 1.2rem;
}

.demo-link i:last-child {
    opacity: 0;
    transform: translateX(-6px);
    transition: all 0.2s ease;
}

.demo-link:hover i:last-child {
    opacity: 1;
    transform: translateX(0);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.3s ease;
    margin-left: auto;
    align-self: center;
}

.mobile-menu-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-cta a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-elite-club {
    background: linear-gradient(135deg, #fbc02d 0%, #f57f17 100%);
    color: var(--deep-blue) !important;
    box-shadow: 0 4px 12px rgba(245, 127, 23, 0.35);
}

.btn-elite-club:hover {
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--deep-blue) 100%);
    color: var(--white) !important;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white) !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    color: var(--white) !important;
    transform: translateY(-2px);
}

.btn-call {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--deep-blue) 100%);
    color: var(--white) !important;
    box-shadow: 0 4px 12px rgba(6, 78, 141, 0.35);
}

.btn-call:hover {
    background: var(--accent-orange);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 127, 23, 0.35);
}

.nav-cta i {
    font-size: 1rem;
}


/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:focus {
    outline: 3px solid var(--cta-yellow);
    outline-offset: 2px;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--deep-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 78, 189, 0.3) !important;
    /* Uniform hover shadow */
}

.btn-secondary {
    background-color: var(--accent-orange);
    color: var(--white);
    border-radius: 3px !important;
    /* Uniform border radius */
}

.btn-secondary:hover {
    background-color: #E6700F;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 127, 23, 0.3) !important;
    /* Uniform hover shadow */
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    border-radius: 3px !important;
    /* Uniform border radius */
}

.btn-outline:hover {
    background-color: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 78, 189, 0.3) !important;
    /* Uniform hover shadow */
}

/* ===== Hero Section ===== */
.hero-section {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--deep-blue) 100%);
    color: var(--white);
    padding: var(--spacing-xxl) 0;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(340px, 1fr);
    gap: var(--spacing-xl);
    align-items: start;
}

/* Left Side */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

/* Part 1: Text Content */
.hero-text-content {
    margin-bottom: var(--spacing-sm);
}

.hero-title {
    font-size: 3.5rem;
    font-family: var(--font-logo);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
}

.hero-tagline {
    font-size: 1.5rem;
    font-family: var(--font-primary);
    color: var(--cta-yellow);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.hero-description {
    font-size: 1.1rem;
    font-family: var(--font-primary);
    margin-bottom: 0;
    opacity: 0.95;
    line-height: 1.7;
    font-weight: 400;
}

/* Part 2 & 3: Horizontal Actions */
.hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.hero-cta-section,
.hero-apps-section {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-lg);
    border-radius: 0;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--spacing-md);
}

.hero-cta-section h3,
.hero-apps-section h3 {
    font-size: 1.1rem;
    color: #FBC02D;
    margin-bottom: var(--spacing-md);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.hero-cta .btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    width: 100%;
    transition: all 0.3s ease;
}

.hero-cta .btn i {
    transition: transform 0.3s ease;
}

.hero-cta .btn:hover i {
    transform: translateX(5px);
}

/* Buyer App Card */
.buyer-app-card {
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue));
    border-radius: 0;
    padding: var(--spacing-lg);
    box-shadow: 0 4px 15px rgba(6, 78, 189, 0.15);
    transition: all 0.3s ease;
    color: var(--white);
}

.buyer-app-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(6, 78, 189, 0.25);
}

.app-card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.app-card-header .app-icon {
    background: rgba(251, 192, 45, 0.2);
    width: 48px;
    height: 48px;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FBC02D;
    font-size: 1.5rem;
}

.app-card-header h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    line-height: 1.3;
}

.app-features {
    list-style: none;
    padding: 0;
    margin: var(--spacing-md) 0;
}

.app-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.app-features li:last-child {
    border-bottom: none;
}

.app-features li i {
    color: #FBC02D;
    font-size: 1rem;
    flex-shrink: 0;
}

.app-card-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: var(--spacing-md);
}

.btn-download-app {
    padding: 14px 24px !important;
    background: var(--cta-yellow);
    color: var(--deep-blue);
    border: none;
    border-radius: 3px !important;
    /* Uniform border radius */
    font-size: 0.95rem !important;
    font-weight: 700;
    min-height: 48px !important;
    /* Exact same as buyer app button */
    height: 48px !important;
    /* Exact same as buyer app button */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    line-height: 1;
    box-sizing: border-box;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
    /* No default shadow - only on hover */
    text-decoration: none;
}

.btn-download-app:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 192, 45, 0.3) !important;
    /* Uniform hover shadow */
}

.btn-download-app i {
    font-size: 1rem !important;
    /* Same as buyer app button icon */
    flex-shrink: 0;
}

.btn-get-started {
    padding: 14px 24px;
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    border-radius: 3px !important;
    /* Uniform border radius */
    font-size: 0.95rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
    /* No default shadow - only on hover */
    text-decoration: none;
}

.btn-get-started:hover {
    background: var(--cta-yellow);
    color: var(--deep-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 192, 45, 0.3) !important;
    /* Uniform hover shadow */
}

.btn-get-started i {
    font-size: 1rem;
}

/* Book Demo Button Styles */
.btn-book-demo,
.btn-get-quote {
    background: var(--accent-orange) !important;
    color: var(--white) !important;
    border: none !important;
    border-radius: 0 !important;
    transition: all 0.3s ease !important;
}

.btn-book-demo:hover,
.btn-get-quote:hover {
    background: var(--cta-yellow) !important;
    color: var(--deep-blue) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(245, 127, 23, 0.3) !important;
}

/* Right Side: Slider */
.hero-slider-section {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 400px;
    position: relative;
}

.hero-section+.elite-buyer-section {
    margin-top: 0;
}

/* ===== Elite Buyer Club Section ===== */
.elite-buyer-section {
    background: #f7f8fb;
    padding: var(--spacing-xxl) 0;
}

.elite-card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: var(--spacing-xl);
    background: linear-gradient(135deg, rgba(6, 78, 141, 0.95), rgba(0, 7, 43, 0.95));
    color: var(--white);
    border-radius: 0;
    padding: var(--spacing-xl);
    overflow: hidden;
    box-shadow: 0 40px 70px rgba(0, 7, 43, 0.35);
}

.elite-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 120% at 10% 10%, rgba(251, 192, 45, 0.25), transparent 60%);
    pointer-events: none;
}

.elite-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.elite-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 999px;
    background: rgba(251, 192, 45, 0.2);
    color: var(--cta-yellow);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
}

.elite-content h2 {
    font-size: 2.5rem;
    letter-spacing: 0.5px;
    margin: 0;
}

.elite-benefits {
    list-style: none;
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 0;
}

.elite-benefits li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.elite-benefits i {
    color: var(--cta-yellow);
    font-size: 1.1rem;
}

.elite-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: var(--spacing-sm);
}

.elite-actions .btn {
    min-width: 190px;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.elite-actions .btn-outline {
    border-color: rgba(255, 255, 255, 0.65);
    color: var(--white);
    background: transparent;
}

.elite-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.12);
}

.elite-stats {
    position: relative;
    z-index: 1;
    display: grid;
    gap: var(--spacing-md);
    align-self: center;
}

.elite-metric {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 0;
    padding: var(--spacing-md);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--cta-yellow);
}

.metric-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 4px;
}

/* Elite Buyer Club Page */
.elite-buyer-page {
    background: #f7f8fb;
}

.elite-hero {
    padding: var(--spacing-xl) 0;
}

.elite-hero .container {
    max-width: 1200px;
}

.elite-hero-card-wrapper {
    background: var(--white);
    border-radius: 12px;
    padding: var(--spacing-xxl);
    box-shadow: 0 25px 45px rgba(6, 78, 141, 0.12);
    border: 1px solid rgba(6, 78, 141, 0.08);
}

.elite-hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 100%;
}

.elite-hero-content h1 {
    font-size: 3rem;
    color: var(--deep-blue);
    margin: 0;
    line-height: 1.2;
}

.elite-subtitle {
    font-size: 1.4rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin: 0;
}

.elite-description {
    font-size: 1.1rem;
    color: var(--grey-dark);
    line-height: 1.7;
    margin: 0;
}

.elite-description strong {
    color: var(--deep-blue);
    font-weight: 600;
}

.elite-mission {
    background: linear-gradient(135deg, rgba(6, 78, 141, 0.08), rgba(6, 78, 141, 0.05));
    padding: 20px 25px;
    border-left: 4px solid var(--primary-blue);
    border-radius: 6px;
    margin: 10px 0;
}

.elite-mission p {
    font-size: 1.1rem;
    color: var(--deep-blue);
    margin: 0;
    line-height: 1.6;
}

.elite-mission strong {
    font-weight: 700;
    color: var(--deep-blue);
}

.elite-actions {
    display: flex;
    gap: 15px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.elite-hero-card {
    background: linear-gradient(135deg, rgba(6, 78, 141, 0.95), rgba(0, 7, 43, 0.95));
    color: var(--white);
    border-radius: 0;
    padding: var(--spacing-xl);
    display: grid;
    gap: var(--spacing-md);
    box-shadow: 0 35px 60px rgba(0, 7, 43, 0.3);
}

.elite-benefits-section {
    padding: var(--spacing-xxl) 0 var(--spacing-xl);
}

.elite-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.elite-benefit-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 8px;
    border: 1px solid rgba(6, 78, 141, 0.08);
    box-shadow: 0 25px 45px rgba(6, 78, 141, 0.12);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    transition: all 0.3s ease;
}

.elite-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 55px rgba(6, 78, 141, 0.18);
    border-color: var(--primary-blue);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(6, 78, 141, 0.1), rgba(6, 78, 141, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.benefit-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.elite-benefit-card h3 {
    margin: 0;
    color: var(--deep-blue);
    font-size: 1.4rem;
}

.elite-benefit-card p {
    color: var(--grey-dark);
    line-height: 1.7;
    margin: 0;
}

.elite-benefit-card p strong {
    color: var(--deep-blue);
    font-weight: 600;
}

.elite-steps {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(180deg, rgba(6, 78, 141, 0.06) 0%, rgba(6, 78, 141, 0.12) 100%);
}

.elite-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.elite-join-section {
    padding: var(--spacing-xxl) 0;
    background: linear-gradient(135deg, rgba(6, 78, 141, 0.95), rgba(0, 7, 43, 0.95));
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.elite-join-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(120% 120% at 10% 10%, rgba(251, 192, 45, 0.25), transparent 60%);
    pointer-events: none;
}

.elite-join-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.elite-join-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.elite-join-text .section-badge {
    background: rgba(251, 192, 45, 0.2);
    color: var(--cta-yellow);
    margin: 0 auto;
}

.elite-join-text h2 {
    font-size: 2.8rem;
    color: var(--white);
    margin: 0;
    font-weight: 700;
}

.join-tagline {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

.join-motto {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 20px 0;
}

.join-motto p {
    font-size: 1.4rem;
    color: var(--white);
    margin: 0;
    font-weight: 600;
}

.elite-join-section .elite-actions {
    justify-content: center;
    margin-top: 30px;
}

.step-card {
    background: var(--white);
    border-radius: 8px;
    border: 1px solid rgba(6, 78, 141, 0.08);
    padding: var(--spacing-xl);
    position: relative;
    overflow: hidden;
    box-shadow: 0 22px 40px rgba(6, 78, 141, 0.12);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 28px 50px rgba(6, 78, 141, 0.18);
    border-color: var(--primary-blue);
}

.step-number {
    position: absolute;
    top: 16px;
    right: 24px;
    font-size: 3rem;
    font-weight: 700;
    color: rgba(6, 78, 141, 0.12);
    line-height: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(6, 78, 141, 0.1), rgba(6, 78, 141, 0.05));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: var(--spacing-lg);
    margin-bottom: 15px;
}

.step-icon i {
    font-size: 2rem;
    color: var(--primary-blue);
}

.step-card h3 {
    margin: 0 0 15px 0;
    color: var(--deep-blue);
    font-size: 1.3rem;
}

.step-card p {
    color: var(--grey-dark);
    line-height: 1.7;
    margin: 0;
}

.step-card p strong {
    color: var(--deep-blue);
    font-weight: 600;
}

/* ===== Section Badge ===== */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px;
    border-radius: 3px;
    background: rgba(6, 78, 141, 0.08);
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.section-badge i {
    font-size: 0.95rem;
}

/* ===== Sustainable Future Section ===== */
.sustainable-recycle-section {
    background: var(--white);
    padding: var(--spacing-xxl) 0;
}

.sustainable-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.sustainable-header h2 {
    margin-bottom: 12px;
    color: var(--deep-blue);
}

.sustainable-header p {
    max-width: 640px;
    font-size: 1rem;
    color: var(--grey-dark);
}

.btn-sustainable {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-orange) 0%, var(--cta-yellow) 100%);
    color: var(--white) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    box-shadow: 0 18px 40px rgba(245, 127, 23, 0.35);
    transition: var(--transition);
}

.btn-sustainable:hover {
    transform: translateY(-3px);
}

.recycle-dual-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-xl);
}

.dual-slider-card {
    background: var(--white);
    border-radius: 0;
    padding: var(--spacing-xl);
    box-shadow: 0 30px 60px rgba(6, 78, 141, 0.12);
    border: 1px solid rgba(6, 78, 141, 0.08);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.dual-slider-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-md);
}

.dual-slider-header h3 {
    margin: 10px 0 0;
    font-size: 1.5rem;
    color: var(--deep-blue);
}

.dual-slider-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 999px;
    background: rgba(6, 78, 141, 0.12);
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.dual-slider-badge.badge-offer {
    background: rgba(251, 192, 45, 0.18);
    color: #b05a00;
}

.slider-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.slider-buttons.compact {
    justify-content: flex-end;
    margin-top: var(--spacing-md);
}

.slider-nav {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(6, 78, 141, 0.1);
    color: var(--deep-blue);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(6, 78, 141, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.slider-nav:hover:not(:disabled) {
    background: var(--primary-blue);
    color: var(--white);
    box-shadow: 0 15px 30px rgba(6, 78, 141, 0.3);
    transform: translateY(-2px) scale(1.05);
    border-color: var(--primary-blue);
}

.slider-nav:active:not(:disabled) {
    transform: translateY(0) scale(0.98);
}

.slider-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.dual-slider-viewport,
.app-slider-viewport {
    overflow: hidden;
    position: relative;
}

.dual-slider-track,
.app-slider-track {
    --slider-gap: 24px;
    display: flex;
    gap: var(--slider-gap);
    transition: transform 0.45s ease;
}

.dual-slider-item,
.app-slider-item {
    flex: 0 0 calc(50% - (var(--slider-gap) / 2));
}

.dual-slider-item {
    min-width: 0;
}

.loading-card {
    flex: 0 0 100%;
}

.loading-skeleton {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 220px;
    color: var(--grey-medium);
    background: var(--grey-light);
    border-radius: 0;
    border: 1px dashed rgba(6, 78, 141, 0.2);
}

.loading-skeleton i {
    font-size: 1.8rem;
    color: var(--primary-blue);
}

.recycle-card {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    background: var(--white);
    border-radius: 0;
    padding: var(--spacing-md);
    border: 1px solid rgba(6, 78, 141, 0.08);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recycle-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 35px rgba(6, 78, 141, 0.18);
}

.recycle-card-media {
    position: relative;
    border-radius: 0;
    min-height: 180px;
    background: linear-gradient(135deg, rgba(6, 78, 141, 0.65), rgba(0, 7, 43, 0.75));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.recycle-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recycle-card-media .media-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: var(--spacing-md);
    background: linear-gradient(180deg, transparent 0%, rgba(2, 12, 34, 0.85) 100%);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    color: var(--white);
}

.recycle-card.story-card {
    padding: 0;
    border: none;
    background: transparent;
    box-shadow: none;
}

.recycle-card.story-card:hover {
    box-shadow: none;
}

.story-card .recycle-card-media {
    border-radius: 0;
}

.story-card .media-overlay h4 {
    margin: 0;
    font-size: 1.2rem;
    letter-spacing: 0.4px;
}

.story-card .media-overlay span {
    font-size: 0.8rem;
    letter-spacing: 0.4px;
    font-weight: 600;
    opacity: 0.85;
    text-transform: uppercase;
}

.story-card .media-overlay small {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.85;
}

.recycle-card-media.gradient-green {
    background: linear-gradient(135deg, #66bb6a 0%, #2e7d32 100%);
}

.recycle-card-media.gradient-amber {
    background: linear-gradient(135deg, #fbc02d 0%, #f57f17 100%);
}

.recycle-card-media.gradient-blue {
    background: linear-gradient(135deg, #42a5f5 0%, #1565c0 100%);
}

.recycle-card-media.gradient-slate {
    background: linear-gradient(135deg, #546e7a 0%, #263238 100%);
}

.offer-card .recycle-card-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.offer-card .recycle-card-media span {
    font-size: 1rem;
}

.recycle-card-content {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.recycle-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 12px;
    border-radius: 999px;
    background: rgba(6, 78, 141, 0.12);
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.recycle-card h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--deep-blue);
}

.recycle-card p {
    margin: 0;
    color: var(--grey-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.recycle-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: auto;
    font-size: 0.85rem;
    color: var(--grey-dark);
}

.recycle-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.price-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(245, 127, 23, 0.18);
    color: var(--accent-orange);
    font-weight: 700;
    font-size: 0.9rem;
}

.quantity-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(6, 78, 141, 0.12);
    color: var(--primary-blue);
    font-weight: 600;
}

/* ===== Apps Hub Section ===== */
.apps-hub-section {
    background: #f3f4f9;
    padding: var(--spacing-xl) 0;
}

/* ===== Individual App Sections ===== */
.app-section {
    padding: var(--spacing-xl) 0;
    position: relative;
    background: #064E8D;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.app-section-buyer {
    position: relative;
    background: #064E8D;
    background-image: url('../images/recycle/bsb_app1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.app-section-buyer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(6, 78, 141, 0.75);
    /* Blue overlay - background image slightly visible */
    z-index: 0;
}

.app-section-buyer .container {
    position: relative;
    z-index: 1;
}

.app-section-supplier {
    position: relative;
    background: #064E8D;
    background-image: url('../images/recycle/bsbapp6.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.app-section-supplier::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(6, 78, 141, 0.75);
    /* Blue overlay - background image slightly visible */
    z-index: 0;
}

.app-section-supplier .container {
    position: relative;
    z-index: 1;
}

.app-section-logistics {
    position: relative;
    background: #064E8D;
    background-image: url('../images/Logistic/logistic.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.app-section-logistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(6, 78, 141, 0.75);
    /* Blue overlay - background image slightly visible */
    z-index: 0;
}

.app-section-logistics .container {
    position: relative;
    z-index: 1;
}

.app-section+.app-section {
    margin-top: 40px;
}

/* Ensure content is visible over background */
.app-section-buyer .bsb-app-content,
.app-section-supplier .bsb-app-content,
.app-section-logistics .bsb-app-content {
    position: relative;
    z-index: 2;
}

.app-section-buyer .bsb-app-slider,
.app-section-supplier .bsb-app-slider,
.app-section-logistics .bsb-app-slider {
    position: relative;
    z-index: 2;
}

/* Improve text readability on app sections with image backgrounds */
.app-section-buyer .bsb-app-content,
.app-section-supplier .bsb-app-content,
.app-section-logistics .bsb-app-content {
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

.app-section-buyer .bsb-app-content .app-highlights li i {
    color: #FBC02D !important;
    /* Buyer accent (yellow) */
}

.app-section-supplier .bsb-app-content .app-highlights li i {
    color: #64B5F6 !important;
    /* Supplier accent (light blue) */
}

.app-section-logistics .bsb-app-content .app-highlights li i {
    color: #F57C00 !important;
    /* Logistics accent (orange) */
}

.app-section-buyer .bsb-app-content .app-subtitle,
.app-section-supplier .bsb-app-content .app-subtitle,
.app-section-logistics .bsb-app-content .app-subtitle,
.app-section-buyer .bsb-app-content .app-highlights li,
.app-section-supplier .bsb-app-content .app-highlights li,
.app-section-logistics .bsb-app-content .app-highlights li,
.app-section-buyer .bsb-app-content .app-highlights li i,
.app-section-supplier .bsb-app-content .app-highlights li i,
.app-section-logistics .bsb-app-content .app-highlights li i {
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.35);
}

/* Responsive background adjustments */
@media (max-width: 1200px) {

    .app-section-buyer,
    .app-section-supplier,
    .app-section-logistics {
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
        /* Better performance on tablets */
    }
}

@media (max-width: 992px) {

    .app-section-buyer,
    .app-section-supplier,
    .app-section-logistics {
        background-size: cover;
        background-position: center center;
    }

    .app-section-buyer::before,
    .app-section-supplier::before,
    .app-section-logistics::before {
        background-color: rgba(6, 78, 141, 0.78);
        /* Slightly more opaque on tablets */
    }
}

@media (max-width: 768px) {

    .app-section-buyer,
    .app-section-supplier,
    .app-section-logistics {
        background-size: cover;
        background-position: center center;
        background-attachment: scroll;
        /* Better performance on mobile */
        min-height: 500px;
        /* Ensure minimum height for visibility */
    }

    .app-section-buyer::before,
    .app-section-supplier::before,
    .app-section-logistics::before {
        background-color: rgba(6, 78, 141, 0.8);
        /* Slightly more opaque on mobile - background image slightly visible */
    }
}

.events-section {
    position: relative;
    background: transparent;
}

/* Hide background images on tablet/mobile for performance and clarity */
@media (max-width: 1024px) {

    .app-section-buyer,
    .app-section-supplier,
    .app-section-logistics {
        background-image: none !important;
    }

    .app-section-buyer::before,
    .app-section-supplier::before,
    .app-section-logistics::before {
        background-color: #064E8D;
        /* solid brand color on mobile */
    }

    .events-section {
        background-image: none !important;
        background-color: transparent;
    }

    .events-section::before {
        background: transparent;
    }
}

@media (max-width: 768px) {
    .events-section {
        background-image: none !important;
    }

    .events-section::before {
        background: transparent;
    }
}

@media (max-width: 480px) {

    .app-section-buyer,
    .app-section-supplier,
    .app-section-logistics {
        background-size: cover;
        background-position: center center;
        min-height: 450px;
        /* Reduced minimum height for small screens */
    }

    .app-section-buyer::before,
    .app-section-supplier::before,
    .app-section-logistics::before {
        background-color: rgba(6, 78, 141, 0.85);
        /* More opaque on small mobile for better readability */
    }
}

.app-section .container {
    padding: var(--spacing-lg);
    position: relative;
    z-index: 1;
}

/* Responsive App Sections - Handled in comprehensive media queries below */


.app-media {
    flex: 1.5;
    max-width: 600px;
}

.app-slider-viewport {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    background: linear-gradient(135deg, rgba(6, 78, 141, 0.08), rgba(6, 78, 189, 0.12));
    padding: var(--spacing-xl);
    border: 1px solid rgba(6, 78, 141, 0.1);
    box-shadow: 0 10px 30px rgba(6, 78, 141, 0.1);
}

.app-slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.app-slider-item {
    flex: 0 0 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 650px;
    padding: var(--spacing-md);
}

/* Dual phone layout styling */
.app-slider-item.dual-phone-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-lg);
}

.dual-phone-layout .phone-mockup {
    flex: 1;
    max-width: 280px;
}

.apps-header {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.apps-header>div {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.apps-header-logo {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.apps-title-logo {
    max-width: 300px;
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.apps-header h2 {
    margin-top: 8px;
    margin-bottom: 6px;
    color: var(--deep-blue);
    text-align: center;
}

.apps-header p {
    color: var(--grey-dark);
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
}

.app-showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.8fr);
    gap: var(--spacing-xl);
    align-items: center;
    background: var(--white);
    border-radius: 0;
    padding: var(--spacing-xxl);
    margin-bottom: var(--spacing-xl);
    box-shadow: 0 35px 60px rgba(6, 78, 141, 0.12);
}

.app-showcase:last-of-type {
    margin-bottom: 0;
}

.app-showcase.reverse {
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 1fr);
}

.app-showcase.reverse .app-info {
    order: 2;
}

.app-showcase.reverse .app-media {
    order: 1;
}

.app-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.app-info h3 {
    font-size: 2rem;
    margin-bottom: 4px;
    color: var(--deep-blue);
}

.app-info p {
    color: var(--grey-dark);
    font-size: 1rem;
}

.app-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.app-badge i {
    font-size: 0.95rem;
}

.app-badge.buyer {
    background: rgba(251, 192, 45, 0.18);
    color: #b05a00;
}

.app-badge.supplier {
    background: rgba(6, 78, 141, 0.12);
    color: var(--primary-blue);
}

.app-badge.logistics {
    background: rgba(66, 165, 245, 0.16);
    color: #0d47a1;
}

.app-badge.admin {
    background: rgba(245, 87, 23, 0.16);
    color: #c2410c;
}

/* ===== BSB Apps Hub - New Layout ===== */
.bsb-app-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 0;
    padding: 40px 0;
    border-radius: 3px;
    position: relative;
    width: 100%;
    justify-content: space-between;
}

.bsb-app-row.reverse {
    flex-direction: row-reverse;
}

.bsb-app-row.reverse .bsb-app-slider {
    order: 1;
}

.bsb-app-row.reverse .bsb-app-content {
    order: 2;
}

/* Supplier App - Desktop Only: Image on left, content on right */
@media (min-width: 1367px) {
    .app-section-supplier .bsb-app-row.reverse {
        flex-direction: row;
    }
    
    .app-section-supplier .bsb-app-row.reverse .bsb-app-slider {
        order: 1;
    }
    
    .app-section-supplier .bsb-app-row.reverse .bsb-app-content {
        order: 2;
    }
}

.bsb-app-content {
    flex: 0 0 auto;
    max-width: 500px;
    min-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-top: 0;
    padding-top: 0;
    margin-left: 0;
    padding-left: 0;
}

/* App Logo Styles */
.app-logo {
    margin-bottom: 20px;
}

.app-logo-img {
    max-width: 300px;
    height: auto;
    border-radius: 3px;
    display: block;
    margin-left: 0;
    margin-right: auto;
}

/* Supplier App - Logo Right Aligned */
/* .app-section-supplier .app-logo-img {
    margin-left: auto;
    margin-right: -20px;
} */

.app-logo h3 {
    font-size: 2rem;
    color: #1F2937;
    margin: 0;
    font-weight: 700;
}

.bsb-app-content h3 {
    font-size: 2rem;
    color: #FFFFFF;
    margin: 15px 0 10px;
    font-weight: 700;
}

.app-subtitle {
    font-size: 1.25rem;
    color: #FFFFFF;
    margin: 10px 0 15px;
    font-weight: 600;
    text-transform: none;
}

.bsb-app-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.bsb-app-content .app-highlights {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.bsb-app-content .app-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #FFFFFF;
    font-size: 1rem;
}

.bsb-app-content .app-highlights i {
    color: #FBC02D;
    width: 16px;
}

/* App Actions */
.app-actions {
    display: flex;
    gap: 12px;
    margin-top: 5px;
    justify-content: flex-start;
    margin-right: 0;
    padding-right: 0;
}

.app-actions:has(.btn:only-child) {
    justify-content: flex-start;
}

/* Button alignment - clean and simple */
.bsb-app-content .app-actions {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    box-sizing: border-box;
}

/* Ensure buttons align perfectly with borders in all app sections */
.app-section-buyer .bsb-app-content .app-actions,
.app-section-supplier .bsb-app-content .app-actions,
.app-section-logistics .bsb-app-content .app-actions {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
}

.bsb-app-content .app-actions .btn-download-app,
.bsb-app-content .app-actions .btn-book-demo {
    width: 100%;
    max-width: 100%;
    margin-top: 18px;
}

.app-actions .btn-download-app,
.app-actions .btn-book-demo {
    background: var(--cta-yellow) !important;
    color: var(--deep-blue) !important;
    border: none !important;
    border-radius: 3px !important;
    padding: 14px 24px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    min-height: 48px !important;
    height: 48px !important;
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.app-actions .btn-download-app {
    background: var(--cta-yellow) !important;
    color: var(--deep-blue) !important;
}

.app-actions .btn-book-demo {
    background: var(--accent-orange) !important;
    color: var(--white) !important;
}

.app-actions .btn-download-app:hover {
    background: var(--accent-orange) !important;
    color: var(--white) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(251, 192, 45, 0.3) !important;
}

.app-actions .btn-book-demo:hover {
    background: var(--cta-yellow) !important;
    color: var(--deep-blue) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(245, 127, 23, 0.3) !important;
}

.app-actions .btn-download-app i,
.app-actions .btn-book-demo i {
    font-size: 1rem !important;
    flex-shrink: 0 !important;
}

.bsb-app-slider {
    flex: 1 1 auto;
    min-width: 0;
    position: relative;
    background: #F3F3F5;
    border-radius: 3px;
    padding: 30px 20px;
    overflow: visible !important;
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-right: 0;
    margin-left: 0;
    width: 100%;
    max-width: none;
}

.bsb-slider-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 450px;
    overflow: hidden;
    z-index: 1;
    pointer-events: auto;
}

.bsb-slider-track {
    display: flex;
    width: fit-content;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 0;
}

.bsb-slide-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(0);
    transition: opacity 0.3s ease, visibility 0.3s ease;
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 1;
}

/* Mobile/Tablet/iPad Pro: Ensure images are always visible - no slide groups */
@media (max-width: 1366px) {

    /* Hide slide groups - use direct track layout */
    .bsb-slide-group {
        display: none !important;
    }

    /* Direct children of track should always display */
    .bsb-slider-track>.bsb-img-card {
        display: flex !important;
        position: relative !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Ensure all images are visible on mobile/tablet/iPad */
    .bsb-img-card {
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .bsb-img-card img {
        opacity: 1 !important;
        visibility: visible !important;
        display: block !important;
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
}

.bsb-slide-group.active {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateX(0);
    pointer-events: auto;
    z-index: 2;
    display: grid !important;
}

.bsb-img-card {
    background: transparent;
    border-radius: 3px;
    overflow: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative !important;
    opacity: 1;
    visibility: visible;
    box-sizing: border-box;
    flex-shrink: 0;
    margin: 0;
    padding: 0;
}

/* Desktop: Add margin-right for gaps between 3 images */
@media (min-width: 1367px) {
    .bsb-img-card {
        margin-right: 20px;
    }
}

/* Desktop (1024px+): Show 3 images per view */
@media (min-width: 1024px) {
    .bsb-img-card {
        flex: 0 0 calc(33.333% - 13.33px);
        min-width: calc(33.333% - 13.33px);
        max-width: calc(33.333% - 13.33px);
    }
}

/* Tablet (768px - 1023px): Show 2 images per view */
@media (min-width: 768px) and (max-width: 1023px) {
    .bsb-slider-track {
        gap: 0 !important;
    }

    .bsb-img-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        padding: 0 !important;
        box-sizing: border-box;
    }

    .bsb-img-card:last-child,
    .bsb-img-card:nth-child(even),
    .bsb-img-card:nth-child(odd) {
        margin-right: 0 !important;
    }

    .bsb-slider-track {
        gap: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .bsb-img-card img {
        width: 100% !important;
        max-width: 100% !important;
        transform: scale(1) !important;
    }
}

/* Mobile (below 768px): Show 1 image per view - NO GAPS AT ALL */
@media (max-width: 767px) {
    .bsb-slider-track {
        gap: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .bsb-img-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
        gap: 0 !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .bsb-img-card img {
        width: 100% !important;
        max-width: 100% !important;
        transform: scale(1) !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}

.bsb-img-card img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: scale(1);
    display: block;
    opacity: 1;
    visibility: visible;
    margin: 0;
    padding: 0;
}

/* Desktop: Scale images slightly */
@media (min-width: 1024px) {
    .bsb-img-card img {
        width: 110%;
        transform: scale(1.1);
    }
}

/* Hover effect for ALL slide groups - active and inactive */
.bsb-img-card:hover {
    transform: translateY(-8px) scale(1.02);
    transition: all 1.0s ease;
    z-index: 10;
    position: relative;
}

/* Explicit hover for active slide group - ensure it works */
.bsb-slide-group.active .bsb-img-card {
    pointer-events: auto !important;
}

.bsb-slide-group.active .bsb-img-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    z-index: 10 !important;
    position: relative !important;
}

/* Hover effect on images for ALL groups - active and inactive */
.bsb-img-card:hover img {
    box-shadow: 0 20px 50px rgba(6, 78, 141, 0.25);
    transform: scale(1.15);
    transition: all 0.4s ease;
}

.bsb-slide-group.active .bsb-img-card:hover img {
    box-shadow: 0 20px 50px rgba(6, 78, 141, 0.25) !important;
    transform: scale(1.15) !important;
}

.bsb-slide-group:not(.active) .bsb-img-card:hover img {
    box-shadow: 0 20px 50px rgba(6, 78, 141, 0.25);
    transform: scale(1.15);
}

.bsb-nav-buttons {
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    padding: 10px 0;
    width: 100%;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative;
    z-index: 20;
}

.bsb-nav {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 3px;
    background: linear-gradient(135deg, #064E8D 0%, #1E3A8A 100%);
    color: white;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 78, 141, 0.25);
    font-size: 16px;
    pointer-events: auto !important;
    z-index: 20 !important;
    position: relative !important;
    touch-action: manipulation !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0;
}

.bsb-nav:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(6, 78, 141, 0.35);
}

.bsb-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ===== BSB Apps Hub Responsive - Tablet & Mobile Only ===== */
/* Desktop (≥992px) remains unchanged - all styles above apply */

/* Tablet - 768px to 1024px */
/* iPad Air (820px width) - Specific Tablet Styles */
@media (min-width: 768px) and (max-width: 834px) {
    .apps-hub-section {
        padding: 40px 0;
    }

    .app-section {
        padding: 40px 0;
    }

    .app-section .container {
        padding: 24px 32px;
        max-width: 100%;
        margin: 0 auto;
    }

    .bsb-app-row {
        flex-direction: column;
        gap: 40px;
        padding: 30px 0;
        margin-bottom: 0;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .bsb-app-content {
        max-width: 700px;
        width: 100%;
        margin: 0 auto;
        padding: 0;
        align-items: center;
        text-align: center;
    }

    .app-logo {
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .app-logo-img {
        max-width: 280px;
        margin: 0 auto;
    }

    .bsb-app-content h3.app-subtitle {
        text-align: center;
        margin: 15px auto 10px;
        font-size: 1.8rem;
    }

    .bsb-app-content .app-highlights {
        text-align: left;
        display: flex !important;
        flex-direction: column !important;
        max-width: 650px;
        width: 100%;
        margin: 20px auto 30px;
        padding: 0 24px;
        gap: 12px;
        list-style: none;
    }

    .bsb-app-content .app-highlights li {
        display: flex !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        text-align: left !important;
        font-size: 1rem !important;
        line-height: 1.5 !important;
        min-height: 24px !important;
        margin-bottom: 0 !important;
    }

    .bsb-app-content .app-highlights li i {
        flex-shrink: 0 !important;
        width: 16px !important;
        height: 16px !important;
        margin-top: 2px !important;
        color: #FBC02D !important;
    }

    .bsb-app-content .app-actions {
        max-width: 650px;
        width: 100%;
        margin: 0 auto !important;
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .bsb-app-slider {
        width: 100%;
        max-width: 750px;
        margin: 0 auto;
        padding: 28px 20px;
        box-sizing: border-box;
    }

    .bsb-slider-track {
        min-height: 420px;
        max-width: 100%;
    }

    .bsb-img-card {
        min-height: 400px;
        max-width: 100%;
    }

    .bsb-img-card img {
        max-height: 420px;
    }
}

/* Desktop - Full Layout (above 1367px) - Show 3 images */
@media (min-width: 1367px) {
    .bsb-app-row {
        gap: 60px;
        padding: 40px 0;
    }

    .bsb-app-content {
        flex: 0 0 auto;
        max-width: 500px;
        min-width: 400px;
    }

    .bsb-app-slider {
        flex: 1 1 auto;
        max-width: none !important;
        width: 100% !important;
    }

    .bsb-slider-wrapper {
        width: 100%;
        overflow: hidden;
    }

    .bsb-slider-track {
        display: flex !important;
        gap: 0 !important;
        width: 100% !important;
        justify-content: space-between;
    }

    .bsb-img-card {
        flex: 0 0 calc(33.333% - 13.33px) !important;
        min-width: calc(33.333% - 13.33px) !important;
        max-width: calc(33.333% - 13.33px) !important;
        margin-right: 20px !important;
    }

    .bsb-img-card:nth-child(3n) {
        margin-right: 0 !important;
    }

    .bsb-img-card img {
        width: 100% !important;
        height: auto !important;
        object-fit: contain !important;
    }
}

/* iPad Pro (1024px width) - Perfect Alignment */
@media (min-width: 1024px) and (max-width: 1366px) {
    .app-section .container {
        padding: 32px 40px;
        max-width: 1280px;
        margin: 0 auto;
    }

    .bsb-app-row {
        flex-direction: row;
        gap: 50px;
        padding: 40px 0;
        align-items: center;
        justify-content: space-between;
    }

    .bsb-app-row.reverse {
        flex-direction: row-reverse;
    }

    .bsb-app-content {
        max-width: 480px;
        flex: 0 0 480px;
        min-width: 450px;
        margin: 0;
        padding: 0;
        text-align: left;
        align-items: flex-start;
    }

    .bsb-app-slider {
        flex: 1 1 auto;
        max-width: calc(100% - 530px);
        overflow: visible;
    }

    .bsb-slider-wrapper {
        overflow: hidden;
        position: relative;
    }

    .bsb-slider-track {
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
        will-change: transform;
    }

    .app-logo {
        display: flex;
        justify-content: flex-start;
        margin-bottom: 20px;
    }

    .app-logo-img {
        max-width: 280px;
        margin: 0;
    }

    .bsb-app-content h3.app-subtitle {
        text-align: left;
        margin: 15px 0 10px;
        font-size: 1.9rem;
        line-height: 1.3;
    }

    .bsb-app-content .app-highlights {
        text-align: left !important;
        display: flex !important;
        flex-direction: column !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 20px 0 30px !important;
        padding: 0 !important;
        gap: 12px !important;
        list-style: none !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
    }

    .bsb-app-content .app-highlights li {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        margin-bottom: 0 !important;
        margin-top: 0 !important;
        padding: 4px 0 !important;
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        min-height: 32px !important;
        height: 32px !important;
        max-height: 32px !important;
        width: 100% !important;
        color: #FFFFFF !important;
        box-sizing: border-box !important;
    }

    .bsb-app-content .app-highlights li i {
        flex-shrink: 0 !important;
        width: 18px !important;
        height: 18px !important;
        min-width: 18px !important;
        min-height: 18px !important;
        max-width: 18px !important;
        max-height: 18px !important;
        margin: 0 !important;
        padding: 0 !important;
        color: #FBC02D !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 0.95rem !important;
        vertical-align: middle !important;
    }

    .bsb-app-content .app-highlights li span,
    .bsb-app-content .app-highlights li>*:not(i) {
        display: inline-block !important;
        margin: 0 !important;
        padding: 0 !important;
        line-height: 1.5 !important;
        vertical-align: middle !important;
        flex: 1 !important;
    }

    /* Ensure ALL list items are exactly the same - no variations */
    .bsb-app-content .app-highlights li:first-child,
    .bsb-app-content .app-highlights li:last-child,
    .bsb-app-content .app-highlights li:nth-child(1),
    .bsb-app-content .app-highlights li:nth-child(2),
    .bsb-app-content .app-highlights li:nth-child(3),
    .bsb-app-content .app-highlights li:nth-child(4),
    .bsb-app-content .app-highlights li:nth-child(5),
    .bsb-app-content .app-highlights li:nth-child(6),
    .bsb-app-content .app-highlights li:nth-child(7),
    .bsb-app-content .app-highlights li:nth-child(odd),
    .bsb-app-content .app-highlights li:nth-child(even) {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        min-height: 32px !important;
        height: 32px !important;
        max-height: 32px !important;
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        padding: 4px 0 !important;
        margin: 0 !important;
    }

    .bsb-app-content .app-actions {
        max-width: 100%;
        width: 100%;
        margin: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        justify-content: flex-start;
    }

    .bsb-app-slider {
        flex: 1 1 auto;
        max-width: none !important;
        width: 100% !important;
        margin: 0;
        padding: 30px 20px;
    }

    /* iPad Pro (1024-1366px): Show 1 image per view */
    .bsb-slider-wrapper {
        min-height: 450px;
        max-height: 500px;
        overflow: hidden;
        position: relative;
        width: 100%;
    }

    .bsb-slider-track {
        display: flex !important;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        align-items: center;
        width: 100% !important;
        justify-content: flex-start;
    }

    .bsb-img-card {
        min-height: 450px;
        max-height: 480px;
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        padding: 0 !important;
        gap: 0 !important;
        justify-content: center;
        align-items: center;
        position: relative !important;
        box-sizing: border-box !important;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
        overflow: hidden;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
    }

    .bsb-img-card:nth-child(even),
    .bsb-img-card:nth-child(odd) {
        margin-right: 0 !important;
    }

    .bsb-img-card img {
        width: 100% !important;
        max-width: 100% !important;
        max-height: 480px;
        height: auto;
        object-fit: contain !important;
        transform: scale(1) !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .bsb-nav {
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 10 !important;
        position: relative !important;
    }
}

/* Tablet - 835px to 1023px (between iPad Air and iPad Pro) - Show 2 images */
@media (min-width: 835px) and (max-width: 1023px) {
    .bsb-slider-wrapper {
        height: 450px;
    }

    .bsb-img-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        margin-right: 0 !important;
    }

    .app-section .container {
        padding: 28px 36px;
        max-width: 100%;
    }

    .bsb-app-row {
        flex-direction: column;
        gap: 40px;
        padding: 35px 0;
        align-items: center;
    }

    .bsb-app-content {
        max-width: 750px;
        width: 100%;
        margin: 0 auto;
        text-align: center;
        align-items: center;
    }

    .bsb-app-content .app-highlights {
        display: flex !important;
        flex-direction: column !important;
        text-align: left !important;
        max-width: 650px;
        width: 100%;
        margin: 20px auto 30px;
        padding: 0 24px;
        gap: 12px !important;
        list-style: none !important;
    }

    .bsb-app-content .app-highlights li {
        display: flex !important;
        align-items: flex-start !important;
        justify-content: flex-start !important;
        gap: 12px !important;
        text-align: left !important;
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        min-height: 24px !important;
        margin-bottom: 0 !important;
    }

    .bsb-app-content .app-highlights li i {
        flex-shrink: 0 !important;
        width: 16px !important;
        height: 16px !important;
        margin-top: 2px !important;
        color: #FBC02D !important;
    }

    .bsb-app-slider {
        max-width: 800px;
        margin: 0 auto;
        padding: 30px 24px;
    }
}

/* Mobile & Tablet - Below 1024px */
@media (max-width: 1023px) {

    /* Container padding for tablet & mobile */
    .app-section .container {
        padding: 16px 20px;
    }

    /* Stack content vertically */
    .bsb-app-row {
        flex-direction: column;
        gap: 35px;
        padding: 30px 0;
        margin-bottom: 0;
        text-align: center;
    }

    /* Reset reverse order - always show content first, then images */
    .bsb-app-row.reverse {
        flex-direction: column;
    }

    .bsb-app-row.reverse .bsb-app-slider {
        order: 2;
    }

    .bsb-app-row.reverse .bsb-app-content {
        order: 1;
    }

    /* Content block - center aligned */
    .bsb-app-content {
        max-width: 100%;
        width: 100%;
        margin-top: 0;
        margin-left: 0;
        padding-left: 0;
        text-align: center;
        align-items: center;
    }

    /* Logo centered */
    .app-logo {
        margin-bottom: 20px;
        display: flex;
        justify-content: center;
    }

    .app-logo-img {
        margin-left: auto;
        margin-right: auto;
        max-width: 250px;
    }

    /* Heading centered */
    .bsb-app-content h3.app-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    /* Highlights list centered but text left-aligned */
    .bsb-app-content .app-highlights {
        text-align: left;
        display: flex !important;
        flex-direction: column !important;
        max-width: 100%;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 0 20px;
        gap: 12px !important;
        list-style: none !important;
    }

    .bsb-app-content .app-highlights li {
        display: flex !important;
        justify-content: flex-start !important;
        align-items: flex-start !important;
        gap: 12px !important;
        text-align: left !important;
        font-size: 0.95rem !important;
        line-height: 1.5 !important;
        min-height: 24px !important;
        margin-bottom: 0 !important;
    }

    .bsb-app-content .app-highlights li i {
        flex-shrink: 0 !important;
        width: 16px !important;
        height: 16px !important;
        margin-top: 2px !important;
        color: #FBC02D !important;
    }

    /* Buttons centered */
    .bsb-app-content .app-actions {
        justify-content: center;
        margin-left: 0;
        margin-right: 0;
        padding-left: 0;
        padding-right: 0;
        width: 100%;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .bsb-app-content .app-actions .btn-download-app,
    .bsb-app-content .app-actions .btn-book-demo {
        margin-top: 0;
    }

    /* Slider block - full width, centered */
    .bsb-app-slider {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        padding: 20px 16px;
        border-radius: 8px;
    }

    /* Slider wrapper - mobile view */
    .bsb-slider-wrapper {
        height: auto;
        overflow: hidden;
        position: relative;
        min-height: 380px;
        max-height: 400px;
    }

    /* Slider track - mobile: show 1 image at a time, NO GAPS - STRICT */
    .bsb-slider-track {
        display: flex !important;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        width: fit-content !important;
        gap: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    /* Image cards - show only 1 image at a time on mobile, NO GAPS - STRICT OVERRIDE */
    .bsb-img-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        height: auto;
        min-height: 360px;
        max-height: 400px;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        margin-right: 0 !important;
        margin-left: 0 !important;
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding: 0 !important;
        gap: 0 !important;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        position: relative !important;
    }

    /* Disable hover transform on mobile to prevent gaps */
    .bsb-img-card:hover {
        transform: none !important;
        margin-right: 0 !important;
    }

    .bsb-img-card img {
        width: 100% !important;
        max-width: 100% !important;
        height: auto;
        object-fit: contain !important;
        transform: scale(1) !important;
        max-height: 400px;
        transition: opacity 0.3s ease !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
    }

    .bsb-slide-group .bsb-img-card:hover img,
    .bsb-slide-group.active .bsb-img-card:hover img {
        transform: scale(1.05);
        box-shadow: 0 8px 20px rgba(6, 78, 141, 0.2);
    }

    /* Navigation buttons - ensure they work on mobile */
    .bsb-nav-buttons {
        display: flex !important;
        justify-content: center;
        gap: 15px;
        margin-top: 20px;
        z-index: 10;
        position: relative;
    }

    .bsb-nav {
        width: 44px;
        height: 44px;
        font-size: 14px;
        cursor: pointer;
        pointer-events: auto !important;
        z-index: 10;
        position: relative;
    }

    /* Mobile - Below 768px */
    @media (max-width: 767px) {
        .apps-hub-section {
            padding: 30px 0;
        }

        .app-section {
            padding: 30px 0;
        }

        .app-section .container {
            padding: 16px;
        }

        .apps-header {
            margin-bottom: 24px;
        }

        .bsb-app-row {
            gap: 30px;
            padding: 20px 0;
        }

        .app-logo-img {
            max-width: 200px;
        }

        .bsb-app-content h3.app-subtitle {
            font-size: 1.5rem;
        }

        .bsb-app-content .app-highlights li {
            font-size: 0.9rem;
        }

        .bsb-app-slider {
            padding: 20px 14px;
        }

        .bsb-slider-track {
            min-height: 350px;
        }

        .bsb-img-card {
            flex: 0 0 calc(100% - 24px);
            max-width: 280px;
            min-width: 240px;
            min-height: 320px;
        }

        .bsb-img-card img {
            max-height: 350px;
        }

        .bsb-nav {
            width: 42px;
            height: 42px;
            font-size: 13px;
        }
    }

    /* Extra Small Mobile - Below 480px */
    @media (max-width: 480px) {
        .apps-hub-section {
            padding: 24px 0;
        }

        .app-section {
            padding: 24px 0;
        }

        .app-section .container {
            padding: 14px;
        }

        .apps-header {
            margin-bottom: 20px;
        }

        .apps-header h2 {
            font-size: 1.6rem;
        }

        .bsb-app-row {
            gap: 24px;
            padding: 16px 0;
        }

        .app-logo-img {
            max-width: 180px;
        }

        .bsb-app-content h3.app-subtitle {
            font-size: 1.3rem;
        }

        .bsb-app-content .app-highlights {
            max-width: 100%;
            width: 100%;
            padding: 0 10px;
            display: block;
        }

        .bsb-app-content .app-highlights li {
            font-size: 0.85rem;
            gap: 8px;
            justify-content: flex-start;
            align-items: center;
            text-align: left;
            margin-bottom: 10px;
        }

        .bsb-app-slider {
            padding: 16px 12px;
        }

        .bsb-slider-track {
            min-height: 320px;
        }

        .bsb-img-card {
            max-width: 260px;
            min-width: 220px;
            min-height: 300px;
        }

        .bsb-img-card img {
            max-height: 320px;
        }

        .bsb-nav {
            width: 40px;
            height: 40px;
            font-size: 12px;
        }
    }
}

/* ===== BSB Slider Responsive ===== */
@media (max-width: 768px) {
    .bsb-app-slider {
        padding: 20px 15px 30px;
        display: flex;
        flex-direction: column;
        align-items: center;
        overflow: visible !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .bsb-slider-wrapper {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 300px;
        max-height: 400px;
        overflow: hidden !important;
        position: relative;
    }

    .bsb-slider-track {
        display: flex !important;
        gap: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
        will-change: transform;
        align-items: center;
        width: fit-content !important;
    }

    .bsb-img-card {
        flex: 0 0 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        box-sizing: border-box !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .bsb-img-card img {
        width: 100% !important;
        height: auto !important;
        max-height: 350px !important;
        object-fit: contain !important;
        margin: 0 !important;
        padding: 0 !important;
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .bsb-nav-buttons {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-top: 20px;
        padding: 10px 0;
        width: 100%;
        justify-content: center;
        gap: 15px;
        position: relative;
        z-index: 30;
    }

    .bsb-nav {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 48px !important;
        height: 48px !important;
        min-width: 48px !important;
        min-height: 48px !important;
        font-size: 16px;
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 30 !important;
        background: linear-gradient(135deg, #064E8D 0%, #1E3A8A 100%);
        color: white;
        border: none;
        border-radius: 3px;
        box-shadow: 0 4px 15px rgba(6, 78, 141, 0.25);
        transition: all 0.3s ease !important;
    }

    .bsb-nav:hover {
        background: linear-gradient(135deg, #1E3A8A 0%, #064E8D 100%);
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(6, 78, 141, 0.35);
    }

    .bsb-nav:active {
        transform: scale(0.95);
    }
}

@media (max-width: 480px) {
    .bsb-app-slider {
        padding: 15px 10px 25px;
        border-radius: 0;
    }

    .bsb-slider-wrapper {
        min-height: 280px;
        max-height: 350px;
    }

    .bsb-img-card img {
        max-height: 300px;
    }

    .bsb-nav {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }

    .bsb-nav-buttons {
        gap: 12px;
        margin-top: 15px;
    }
}

/* ===== Triple Phone Layout Responsive ===== */
@media (max-width: 1024px) {
    .app-media .triple-phone-layout {
        gap: 30px !important;
    }

    .app-media .phone-mockup {
        width: 240px !important;
    }
}

@media (max-width: 768px) {
    .app-media .app-slider-viewport {
        padding: 40px 15px !important;
    }

    .app-media .triple-phone-layout {
        gap: 20px !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .app-media .phone-mockup {
        width: 280px !important;
        margin-bottom: 20px !important;
    }

    .app-media .phone-mockup:last-child {
        margin-bottom: 0 !important;
    }

    .slider-nav {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .app-slider-viewport {
        padding: 30px 10px;
        border-radius: 0;
    }

    .phone-mockup {
        width: 250px;
    }

    .slider-buttons.compact {
        gap: 12px;
    }

    .slider-nav {
        width: 42px;
        height: 42px;
        font-size: 15px;
    }
}

/* ===== Responsive 3-Card Slider ===== */
@media (max-width: 768px) {
    .app-card {
        flex: 0 0 100%;
    }

    .app-slider-container {
        padding: 15px;
    }

    .app-slider-track {
        gap: 0;
    }

    .slider-navigation {
        margin-top: 15px;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .app-slider-container {
        padding: 10px;
        border-radius: 0;
    }

    .app-card {
        border-radius: 0;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
    }
}

/* ===== App Media Responsive ===== */
@media (max-width: 1024px) {
    .app-showcase {
        flex-direction: column;
        gap: 40px;
    }

    .app-showcase.reverse {
        flex-direction: column;
    }

    .app-info,
    .app-media {
        flex: none;
        width: 100%;
    }
}

.app-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
}

.app-highlights li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--grey-dark);
    font-size: 0.95rem;
}

.app-highlights i {
    color: var(--primary-blue);
    font-size: 1rem;
    margin-top: 2px;
}

.app-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 25px;
    justify-content: flex-start;
}

.app-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.app-media {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.app-slider-viewport {
    border-radius: 28px;
    background: #ffffff;
    padding: 36px;
    box-shadow: 0 35px 60px rgba(6, 78, 141, 0.12);
}

.app-slider-track {
    --slider-gap: 18px;
}

.app-slider-item {
    flex: 0 0 calc(100% - var(--slider-gap));
}

.app-screen-image {
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(6, 78, 141, 0.06), rgba(0, 7, 43, 0.08));
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 360px;
    box-shadow: 0 25px 45px rgba(6, 78, 141, 0.16);
}

.app-screen-image img {
    width: 100%;
    max-width: 320px;
    max-height: 520px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 18px 36px rgba(6, 78, 141, 0.2));
    border-radius: 0;
}

.app-screen {
    border-radius: 0;
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    background: linear-gradient(135deg, rgba(6, 78, 141, 0.85), rgba(0, 7, 43, 0.95));
    min-height: 240px;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
    color: var(--white);
    position: relative;
}

.app-screen::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 70%);
    pointer-events: none;
}

.app-screen h5 {
    margin: 0;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.app-screen p {
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.95rem;
    line-height: 1.6;
}

.app-screen-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.app-screen-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
}

/* ===== Video Gallery ===== */
.video-gallery-section {
    background: linear-gradient(135deg, #F3F4F6 0%, #FFFFFF 100%);
    color: #1F2937;
    padding: var(--spacing-xxl) 0;
    border-top: 1px solid rgba(6, 78, 141, 0.1);
}

.video-header h2 {
    margin-top: 12px;
    color: #1F2937;
}

.video-header p {
    color: #6B7280;
    max-width: 620px;
}

.video-grid {
    margin-top: var(--spacing-xl);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-xl);
}

@media (min-width: 1200px) {
    .video-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: var(--spacing-lg);
    }
}

.video-actions {
    margin-top: var(--spacing-md);
    display: flex;
    justify-content: flex-end;
}

.video-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.video-card {
    background: #FFFFFF;
    border-radius: 0;
    padding: var(--spacing-lg);
    border: 1px solid rgba(6, 78, 141, 0.1);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 78, 141, 0.08);
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(6, 78, 141, 0.15);
    border-color: #064E8D;
}

.video-embed {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    border-radius: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
    cursor: pointer;
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #FFFFFF;
    background: linear-gradient(135deg, rgba(6, 78, 141, 0.8), rgba(30, 58, 138, 0.9));
    text-align: center;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.3s ease;
}

.video-placeholder i {
    font-size: 2.4rem;
    color: #FBC02D;
}

.video-placeholder:hover {
    background: linear-gradient(135deg, rgba(6, 78, 141, 0.9), rgba(30, 58, 138, 0.95));
    transform: scale(1.02);
}

.video-card h4 {
    margin: 0;
    font-size: 1.25rem;
    letter-spacing: 0.4px;
    color: #1F2937;
}

.video-card p {
    margin: 0;
    color: #6B7280;
    font-size: 0.95rem;
    line-height: 1.6;
}

.video-library-modal {
    position: fixed;
    inset: 0;
    background: rgba(2, 8, 23, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-lg);
    z-index: 2000;
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.video-library-modal.active {
    display: flex;
}

.video-library-content {
    background: #020817;
    border-radius: 0;
    width: min(1100px, 100%);
    max-height: 90vh;
    overflow-y: auto;
    padding: var(--spacing-xl);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 45px 90px rgba(2, 8, 23, 0.55);
}

.video-library-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    color: var(--white);
}

.video-library-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-lg);
}

.video-library-close {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

.video-library-content .video-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-cta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
    z-index: 1600;
}

.floating-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 20px;
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 0.4px;
    box-shadow: 0 8px 24px rgba(6, 78, 141, 0.25);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 64px;
    min-height: 64px;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.floating-btn:hover::before {
    width: 300px;
    height: 300px;
}

.floating-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 32px rgba(6, 78, 141, 0.35);
}

.floating-btn:active {
    transform: translateY(-2px) scale(1.02);
}

/* Premium WhatsApp Button - Official WhatsApp Green Colors */
.floating-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.floating-btn.whatsapp:hover {
    background: linear-gradient(135deg, #2FE576 0%, #20BA8F 100%);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

/* SVG WhatsApp Icon Styling */
.floating-btn .whatsapp-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
    color: var(--white);
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.floating-btn:hover .whatsapp-icon {
    transform: scale(1.1) rotate(5deg);
}

.floating-btn i {
    font-size: 1.1rem;
}

.floating-btn span {
    white-space: nowrap;
}

.floating-cta .floating-btn {
    min-width: 64px;
    min-height: 64px;
    justify-content: center;
}

@media (max-width: 1200px) {

    .dual-slider-item,
    .app-slider-item {
        flex: 0 0 calc(100% - var(--slider-gap));
    }
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 28, 63, 0.88);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
    display: none;
    flex-direction: column;
    padding: 80px 24px 120px;
    z-index: 1400;
}

.mobile-nav-overlay.active {
    display: flex;
}

.mobile-nav-overlay .nav-menu {
    flex-direction: column;
    gap: 16px;
    width: 100%;
}

.mobile-nav-overlay .nav-menu>li>a {
    display: block;
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    font-size: 1.05rem;
    color: #ffffff;
    text-align: center;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 18px 28px rgba(3, 18, 43, 0.25);
}

.mobile-nav-overlay .button-group {
    flex-direction: column !important;
    gap: 16px !important;
    margin-top: 28px !important;
    width: 100% !important;
    display: flex !important;
    align-items: stretch !important;
}

.mobile-nav-overlay .button-group .nav-btn {
    width: 100% !important;
    padding: 14px 24px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    min-height: 48px !important;
    height: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    border-radius: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.mobile-nav-overlay .nav-actions {
    flex-direction: column !important;
    gap: 16px !important;
    margin-top: 24px !important;
    margin-right: 0 !important;
    display: flex !important;
    /* Ensure Call button is visible */
    visibility: visible !important;
    opacity: 1 !important;
    width: 100% !important;
    align-items: stretch !important;
}

.mobile-nav-overlay .nav-actions .nav-btn {
    width: 100% !important;
    padding: 14px 24px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    min-height: 48px !important;
    height: auto !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    border-radius: 0 !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.mobile-nav-overlay .nav-btn {
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    border-radius: 0 !important;
    margin-left: 0 !important;
    padding: 14px 24px !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    min-height: 48px !important;
    height: auto !important;
    display: flex !important;
    gap: 8px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    box-sizing: border-box !important;
}

.mobile-floating-actions {
    display: none;
}

/* Show WhatsApp floating icon on mobile like desktop - positioned like desktop */
@media (max-width: 767px) {
    .floating-cta {
        display: flex !important;
        position: fixed !important;
        right: 20px !important;
        bottom: 24px !important;
        /* Same position as desktop */
        z-index: 1700 !important;
    }

    .floating-btn {
        min-width: 64px !important;
        min-height: 64px !important;
        padding: 16px 20px !important;
        border-radius: 50px !important;
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3) !important;
    }

    .floating-btn .whatsapp-icon {
        width: 24px !important;
        height: 24px !important;
    }

    /* Hide mobile floating actions on mobile - use desktop style instead */
    .mobile-floating-actions {
        display: none !important;
    }
}

/* Show desktop floating button on tablet and desktop */
@media (min-width: 768px) {
    .floating-cta {
        display: flex;
    }

    .mobile-floating-actions {
        display: none !important;
    }
}

/* Tablet/iPad Responsive Navbar (768px - 1024px) - Mobile Toggle Menu */
@media (min-width: 768px) and (max-width: 1024px) {
    .navbar {
        padding: 12px 0;
        gap: 0;
        flex-wrap: nowrap;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        position: relative;
    }

    .logo {
        flex-shrink: 0;
        min-width: 150px;
        max-width: 150px;
        order: 1;
    }

    .logo a {
        padding-left: 20px;
        padding-right: 12px;
    }

    .logo-img {
        height: 40px;
        max-width: 150px;
        width: auto;
        display: block;
    }

    /* Hide nav-center and nav-actions on iPad */
    .nav-center {
        display: none !important;
    }

    .nav-actions {
        display: none !important;
    }

    /* Show mobile toggle button on iPad - PROPERLY POSITIONED */
    .mobile-menu-toggle {
        display: flex !important;
        margin-left: auto;
        margin-right: 20px;
        order: 2;
        z-index: 1500;
        position: relative;
        align-self: center;
        width: 40px;
        height: 40px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        background: transparent;
        border: none;
        cursor: pointer;
    }

    .mobile-menu-toggle span {
        width: 28px;
        height: 3px;
        background-color: var(--white);
        display: block;
        transition: all 0.3s ease;
        border-radius: 2px;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Ensure no overlap */
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Mobile nav overlay for iPad - PERFECTLY CENTERED */
    .mobile-nav-overlay {
        padding: 120px 40px 80px !important;
        display: none !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(5, 28, 63, 0.95) !important;
        -webkit-backdrop-filter: blur(8px) !important;
        backdrop-filter: blur(8px) !important;
    }

    .mobile-nav-overlay.active {
        display: flex !important;
    }

    .mobile-nav-overlay .nav-menu,
    .mobile-nav-overlay .button-group,
    .mobile-nav-overlay .nav-actions {
        max-width: 600px !important;
        width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-nav-overlay .nav-actions {
        margin-top: 24px !important;
        gap: 16px !important;
    }

    .mobile-nav-overlay .nav-actions .btn-call-nav {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        padding: 14px 24px !important;
        font-size: 1rem !important;
        min-height: 48px !important;
        background: var(--accent-orange) !important;
        color: var(--white) !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .mobile-nav-overlay .nav-menu {
        gap: 20px !important;
        margin-bottom: 0 !important;
    }

    .mobile-nav-overlay .nav-menu>li>a {
        font-size: 1.1rem !important;
        padding: 16px 24px !important;
        text-align: center !important;
        width: 100% !important;
    }

    .mobile-nav-overlay .button-group {
        gap: 16px !important;
        margin-top: 32px !important;
        width: 100% !important;
        max-width: 600px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .mobile-nav-overlay .button-group .nav-btn {
        width: 100% !important;
        padding: 14px 24px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        min-height: 48px !important;
        height: auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        border-radius: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .mobile-nav-overlay .nav-btn {
        width: 100% !important;
        padding: 14px 24px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        min-height: 48px !important;
        height: auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        border-radius: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .mobile-nav-overlay .nav-actions {
        gap: 16px !important;
        margin-top: 24px !important;
        width: 100% !important;
        max-width: 600px !important;
        display: flex !important;
        /* Ensure Call button is visible on iPad */
        flex-direction: column !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: stretch !important;
    }

    .mobile-nav-overlay .nav-actions .nav-btn {
        width: 100% !important;
        padding: 14px 24px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        min-height: 48px !important;
        height: auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        border-radius: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-nav-overlay .nav-actions .btn-call-nav {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        padding: 14px 24px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        min-height: 48px !important;
        height: auto !important;
        background: var(--accent-orange) !important;
        color: var(--white) !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        border-radius: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
}

/* Desktop view - Full navbar visible (above 1024px) */
@media (min-width: 1025px) {
    .mobile-menu-toggle {
        display: none !important;
    }

    .nav-center {
        display: flex !important;
        flex: 1 1 0 !important;
        min-width: 0 !important;
        margin-left: 0 !important;
        margin-right: 16px !important;
    }

    .nav-actions {
        display: flex !important;
        flex-shrink: 0 !important;
    }

    .logo {
        flex-shrink: 0 !important;
        min-width: 180px !important;
        max-width: 200px !important;
        margin-right: 24px !important;
    }

    .navbar {
        gap: 20px !important;
    }
}

@media (max-width: 1024px) {
    .elite-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: var(--spacing-xl);
    }

    .elite-actions {
        justify-content: center;
    }

    .elite-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .elite-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .elite-hero-content {
        align-items: center;
        margin: 0 auto;
    }

    .elite-hero-card {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        text-align: center;
    }

    .elite-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .elite-steps-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .elite-hero-content h1 {
        font-size: 2.2rem;
    }

    .elite-subtitle {
        font-size: 1.2rem;
    }

    .elite-join-text h2 {
        font-size: 2.2rem;
    }

    .join-motto p {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {

    .elite-benefits-grid,
    .elite-steps-grid {
        grid-template-columns: 1fr;
    }

    .elite-hero-card-wrapper {
        padding: var(--spacing-xl);
        border-radius: 8px;
    }

    .elite-hero-content h1 {
        font-size: 1.8rem;
    }

    .elite-subtitle {
        font-size: 1.1rem;
    }

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

    .elite-mission {
        padding: 15px 20px;
    }

    .elite-mission p {
        font-size: 1rem;
    }

    .elite-join-text h2 {
        font-size: 1.8rem;
    }

    .join-tagline {
        font-size: 1.1rem;
    }

    .join-motto p {
        font-size: 1.1rem;
    }

    .elite-actions {
        flex-direction: column;
        width: 100%;
    }

    .elite-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .recycle-dual-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .dual-slider-card {
        padding: var(--spacing-lg);
    }

    .app-showcase,
    .app-showcase.reverse {
        grid-template-columns: 1fr;
        padding: var(--spacing-xl);
        text-align: center;
    }

    .app-showcase.reverse .app-info,
    .app-showcase.reverse .app-media {
        order: initial;
    }

    .app-info {
        align-items: center;
    }

    .app-highlights li {
        justify-content: center;
        text-align: left;
    }

    .app-actions {
        justify-content: center;
    }

    .app-media {
        max-width: 540px;
        margin: 0 auto;
    }

    .video-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .video-library-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .nav-center {
        display: none !important;
    }

    .nav-actions {
        display: none !important;
    }

    .mobile-menu-toggle {
        display: flex !important;
        margin-left: auto !important;
        margin-right: 16px;
        order: 999;
        z-index: 1500;
        position: relative;
        align-self: center;
    }

    body {
        padding-top: 70px;
    }

    .navbar {
        padding: 10px 0;
        justify-content: space-between !important;
        align-items: center;
        gap: 0;
        position: relative;
        width: 100%;
    }

    .navbar .nav-center {
        display: none !important;
        width: 0;
        height: 0;
        overflow: hidden;
    }

    .navbar .nav-actions {
        display: none !important;
        width: 0;
        height: 0;
        overflow: hidden;
    }

    .logo {
        flex-shrink: 0;
        order: 1;
        z-index: 1500;
        position: relative;
        margin-right: 0;
    }

    .logo a {
        padding-left: 16px;
        padding-right: 0;
    }

    .logo-img {
        height: 38px;
        max-width: 150px;
        width: auto;
    }

    /* Ensure mobile nav overlay is properly positioned */
    .mobile-nav-overlay {
        padding: 100px 24px 120px;
    }

    .mobile-nav-overlay .nav-menu,
    .mobile-nav-overlay .button-group,
    .mobile-nav-overlay .nav-actions {
        max-width: 100%;
        width: 100%;
        display: flex !important;
        /* Ensure all sections are visible */
        visibility: visible !important;
        opacity: 1 !important;
    }

    .mobile-nav-overlay .nav-actions {
        flex-direction: column !important;
        gap: 14px !important;
        margin-top: 24px !important;
        align-items: center !important;
    }

    .mobile-nav-overlay .nav-actions .btn-call-nav {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        padding: 14px 24px !important;
        font-size: 1rem !important;
        min-height: 48px !important;
        background: var(--accent-orange) !important;
        color: var(--white) !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .mobile-floating-actions {
        display: flex;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        padding: 14px 16px 22px;
        background: linear-gradient(180deg, rgba(10, 58, 113, 0) 0%, rgba(10, 58, 113, 0.92) 40%, rgba(10, 58, 113, 0.98) 100%);
        z-index: 1600;
        justify-content: center;
    }

    .mobile-floating-actions a {
        flex: 0 1 auto;
        min-width: 200px;
        justify-content: center;
        border-radius: 50px;
        padding: 14px 24px;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .mobile-floating-actions .btn-whatsapp-nav {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    }

    .mobile-floating-actions a:hover {
        transform: translateY(-2px);
    }

    .mobile-floating-actions .btn-whatsapp-nav:hover {
        box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
    }

    .elite-card {
        padding: var(--spacing-lg);
    }

    .elite-stats {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .elite-hero-card {
        grid-template-columns: 1fr;
    }

    .elite-benefits-grid,
    .elite-steps-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .sustainable-header {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-md);
    }

    .btn-sustainable {
        width: 100%;
        justify-content: center;
    }

    .dual-slider-card {
        padding: var(--spacing-md);
    }

    .dual-slider-track,
    .app-slider-track {
        --slider-gap: 18px;
    }

    .dual-slider-item,
    .app-slider-item {
        flex: 0 0 calc(100% - var(--slider-gap));
    }

    .app-showcase {
        padding: var(--spacing-lg);
    }

    /* Tablet dual phone layout */
    .dual-phone-layout .phone-mockup {
        max-width: 220px;
    }

    .app-slider-item.dual-phone-layout {
        gap: var(--spacing-md);
    }

    .app-info h3 {
        font-size: 1.75rem;
    }

    .app-actions {
        flex-direction: column;
        gap: 12px;
    }

    .app-actions .btn-download-app,
    .app-actions .btn-book-demo {
        width: 100% !important;
        min-height: 48px !important;
        height: 48px !important;
        padding: 14px 24px !important;
        font-size: 0.95rem !important;
    }

    /* Mobile phone mockup adjustments */
    .apps-hub-section .phone-mockup {
        width: 200px;
        height: 400px;
        padding: 15px 10px;
    }

    .app-slider-item {
        min-height: 450px;
        padding: var(--spacing-sm);
    }

    .app-slider-viewport {
        padding: var(--spacing-md);
    }

    /* Mobile dual phone layout */
    .app-slider-item.dual-phone-layout {
        flex-direction: column;
        gap: var(--spacing-md);
        justify-content: center;
    }

    .dual-phone-layout .phone-mockup {
        max-width: 200px;
        margin: 0 auto;
    }

    .app-screenshots-box .phone-mockup {
        width: calc(33.333% - 6px);
        padding: 6px;
    }

    .slider-buttons {
        justify-content: center;
    }

    .video-gallery-section {
        padding: var(--spacing-xl) 0;
    }

    .video-card {
        padding: var(--spacing-md);
    }

    /* Floating CTA is shown above - don't hide it here */
    .floating-btn {
        min-width: 64px !important;
        min-height: 64px !important;
        padding: 16px 20px !important;
    }

    .floating-btn .whatsapp-icon {
        width: 24px !important;
        height: 24px !important;
    }

    /* Hide mobile floating actions - use desktop style */
    .mobile-floating-actions {
        display: none !important;
    }
}

/* Tablet Responsive Styles for WhatsApp Button */
@media (min-width: 768px) and (max-width: 1024px) {
    .floating-cta {
        right: 20px;
        bottom: 24px;
    }

    .floating-btn {
        min-width: 60px;
        min-height: 60px;
    }

    .floating-btn .whatsapp-icon {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .elite-content h2 {
        font-size: 2.1rem;
    }

    .metric-value {
        font-size: 1.7rem;
    }

    .app-info h3 {
        font-size: 1.6rem;
    }

    .floating-btn span {
        font-size: 0.85rem;
    }
}

.slider-container {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
    position: relative;
    border-radius: 0;
    background: linear-gradient(135deg, rgba(6, 78, 189, 0.05), rgba(6, 78, 141, 0.1));
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s, transform 0.6s;
    flex-shrink: 0;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
}

.slide-image {
    max-width: 90%;
    max-height: 90%;
    height: auto;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    object-fit: contain;
}

.slide-placeholder {
    font-size: 150px;
    color: rgba(255, 255, 255, 0.2);
}

.slide-content {
    text-align: center;
    padding: var(--spacing-md);
    color: var(--white);
}

.slide-content i {
    font-size: 4rem;
    color: var(--cta-yellow);
    margin-bottom: var(--spacing-sm);
    display: block;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.slide-content h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: var(--spacing-xs);
}

.slide-content p {
    font-size: 1rem;
    opacity: 0.9;
    color: var(--cta-yellow);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.slider-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--cta-yellow);
    transform: scale(1.1);
}

.slider-btn:active {
    transform: scale(0.95);
}

.slider-dots {
    display: flex;
    gap: 8px;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.dot.active {
    background: var(--cta-yellow);
    width: 12px;
    height: 12px;
    border-color: var(--white);
}

/* Right column: vertical boxes */
.hero-right {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 520px;
    width: 100%;
    margin-left: auto;
}

.hero-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0;
    padding: var(--spacing-md);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

/* Vertical ticker */
.vertical-ticker .ticker-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cta-yellow);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

/* Image slider (right box) */
.image-slider-box .slider-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cta-yellow);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.image-slider-box .slider-size-note {
    margin-left: auto;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: none;
}

.img-slider-viewport {
    position: relative;
    width: 100%;
    height: 220px;
    /* Fixed viewport height */
    overflow: hidden;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.04);
}

.img-slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease;
    will-change: transform;
}

.img-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.img-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.img-slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: var(--spacing-sm);
}

.img-slider-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.img-slider-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.img-slider-dots {
    display: flex;
    gap: 6px;
}

.img-slider-dots .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    transition: all 0.3s;
}

.img-slider-dots .dot.active {
    background: var(--cta-yellow);
    width: 10px;
    height: 10px;
}

@media (max-width: 1024px) {
    .img-slider-viewport {
        height: 200px;
    }
}

@media (max-width: 767px) {
    .img-slider-viewport {
        height: 180px;
    }
}

/* Mobile App Screenshots Slider */
.app-screenshots-box {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: var(--spacing-md);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.app-screenshots-viewport {
    position: relative;
    width: 100%;
    height: 380px;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    margin: var(--spacing-sm) 0;
}

.app-screenshots-track {
    display: flex;
    height: 100%;
    transition: transform 0.6s ease;
    will-change: transform;
}

.screenshot-group {
    min-width: 100%;
    display: flex;
    gap: 12px;
    padding: 10px;
    align-items: center;
    justify-content: center;
}

/* Hero section phone mockups */
.app-screenshots-box .phone-mockup {
    width: calc(33.333% - 8px);
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 0;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.15);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

/* BSB Apps Hub phone mockups */
.apps-hub-section .phone-mockup {
    position: relative;
    width: 300px;
    height: 600px;
    margin: 0 auto;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 35px;
    padding: 25px 15px;
    box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #333;
}

/* Hero section phone mockup interactions */
.app-screenshots-box .phone-mockup:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.3);
}

.app-screenshots-box .phone-mockup::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    z-index: 2;
}

.app-screenshots-box .phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 14px;
    display: block;
}

/* BSB Apps Hub phone mockup interactions */
.apps-hub-section .phone-mockup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: #555;
    border-radius: 2px;
    z-index: 2;
}

.apps-hub-section .phone-mockup::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: #555;
    border-radius: 2px;
    z-index: 2;
}

.apps-hub-section .phone-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.apps-hub-section .phone-mockup:hover {
    transform: translateY(-5px);
    box-shadow:
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 15px 25px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.app-screenshots-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-top: var(--spacing-sm);
}

.screenshot-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.screenshot-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.screenshot-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.screenshot-dots {
    display: flex;
    gap: 8px;
}

.screenshot-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transition: all 0.3s;
    cursor: pointer;
}

.screenshot-dots .dot.active {
    background: var(--cta-yellow);
    width: 12px;
    height: 12px;
}

@media (max-width: 1024px) {
    .app-screenshots-viewport {
        height: 320px;
    }
}

@media (max-width: 767px) {
    .app-screenshots-viewport {
        height: 280px;
    }

    .screenshot-group {
        gap: 8px;
        padding: 6px;
    }

    .phone-mockup {
        border-radius: 15px;
        padding: 6px;
    }
}

.vertical-ticker .ticker-viewport {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.vertical-ticker .ticker-track {
    display: flex;
    flex-direction: column;
    transition: transform 0.6s ease;
    will-change: transform;
}

.vertical-ticker .ticker-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 6px;
    color: var(--white);
}

.vertical-ticker .ticker-item i {
    color: var(--cta-yellow);
    margin-top: 2px;
}

.vertical-ticker .ticker-item p {
    margin: 2px 0 0 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

/* Informative card */
.info-card .info-header {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cta-yellow);
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
}

.info-card .info-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
}

.info-card .info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.info-card .info-list i {
    color: #7CFC00;
    margin-top: 3px;
}

/* Responsive tweaks for the right column */
@media (max-width: 1024px) {
    .vertical-ticker .ticker-viewport {
        height: 180px;
    }
}

@media (max-width: 767px) {
    .hero-left {
        order: 1;
    }

    .hero-right {
        order: 2;
    }
}

/* ===== Section Styles ===== */
section {
    padding: var(--spacing-xxl) 0;
}

@media (max-width: 768px) {
    section {
        padding: var(--spacing-lg) 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-header h2 {
    color: var(--primary-blue);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-primary);
}

.section-header p {
    color: var(--grey-dark);
    font-size: 1.1rem;
    font-weight: 400;
}

/* ===== Services Section ===== */
.services-section {
    background-color: var(--grey-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.service-card {
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid var(--grey-light);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(6, 78, 141, 0.15);
    border-color: var(--primary-blue);
}

.service-logo {
    width: 250px;
    max-width: 100%;
    height: auto;
    margin: 0 auto var(--spacing-sm);
    display: block;
    object-fit: contain;
    margin-left: -30px;
}

.service-card h3 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
}

.service-card p {
    color: var(--grey-dark);
    margin-bottom: var(--spacing-sm);
    flex: 1;
}

.service-interest-btn {
    background: var(--primary-blue);
    color: var(--white);
    width: 100%;
    border: none;
    border-radius: 4px;
    padding: 12px 18px;
    font-weight: 600;
    transition: var(--transition);
    margin-top: auto;
}

.service-interest-btn:hover {
    background: var(--accent-orange);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(6, 78, 141, 0.15);
}

.service-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 2000;
}

.service-modal.show {
    display: flex;
}

.service-modal-content {
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    width: 100%;
    max-width: 520px;
    position: relative;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.2);
}

.service-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--grey-dark);
}

.service-modal-subtitle {
    color: var(--grey-dark);
    margin-bottom: 20px;
}

.service-form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
}

.service-form-field label {
    font-weight: 600;
    color: var(--primary-blue);
}

.service-form-field input,
.service-form-field select {
    border: 1px solid var(--grey-light);
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 1rem;
    width: 100%;
    transition: var(--transition);
}

.service-form-field input:focus,
.service-form-field select:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 2px rgba(6, 78, 141, 0.15);
    outline: none;
}

.service-submit-btn {
    width: 100%;
    background: var(--accent-orange);
    color: var(--white);
    border: none;
    border-radius: 6px;
    padding: 14px 18px;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 10px;
}

.service-submit-btn:hover {
    background: var(--primary-blue);
}

body.modal-open {
    overflow: hidden;
}

/* ===== Live Rates Section ===== */
.live-rates-section {
    background-color: var(--white);
    padding: var(--spacing-sm) 0 var(--spacing-md);
}

.live-rates-section .section-header {
    margin-bottom: var(--spacing-sm);
}

.live-rates-container {
    display: flex;
    gap: var(--spacing-md);
    overflow-x: auto;
    padding: var(--spacing-sm) 0;
    scroll-behavior: smooth;
}

.live-rates-container::-webkit-scrollbar {
    height: 8px;
}

.live-rates-container::-webkit-scrollbar-track {
    background: var(--grey-light);
}

.live-rates-container::-webkit-scrollbar-thumb {
    background: var(--primary-blue);
    border-radius: 4px;
}

.rate-card {
    flex: 0 0 200px;
    background: var(--white);
    border: 1px solid #E0E0E0;
    border-radius: 6px;
    padding: var(--spacing-md);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rate-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(6, 78, 141, 0.12);
    border-color: var(--primary-blue);
}

.rate-transit {
    display: inline-block;
    padding: 4px 12px;
    background-color: #E3F2FD;
    color: var(--primary-blue);
    border-radius: 0;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.rate-product-name {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--black);
    margin: 4px 0;
    line-height: 1.3;
}

.rate-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 4px 0;
}

.rate-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--black);
}

.rate-price-range {
    font-size: 0.85rem;
    color: var(--grey-dark);
}

.rate-change {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 4px;
}

.rate-change.up {
    color: #2E7D32;
    background-color: #E8F5E9;
}

.rate-change.down {
    color: #C62828;
    background-color: #FFEBEE;
}

.rate-change.neutral {
    color: var(--grey-dark);
    background-color: var(--grey-light);
}

.loading-rates {
    text-align: center;
    padding: var(--spacing-lg);
    color: var(--grey-medium);
}

.loading-rates i {
    font-size: 2rem;
    margin-bottom: var(--spacing-sm);
}

/* ===== Tools Section ===== */
.tools-section {
    background-color: var(--grey-light);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-md);
}

.tool-card {
    background: var(--white);
    padding: 0;
    border-radius: 8px;
    border: 1px solid var(--grey-light);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.tool-card:hover {
    box-shadow: 0 8px 16px rgba(6, 78, 141, 0.15);
    border-color: var(--primary-blue);
}

.calculator-banner {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 10px 20px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.tool-card h3 {
    color: var(--black);
    margin: var(--spacing-md);
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.calculator-form {
    padding: 0 var(--spacing-md) var(--spacing-md);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.calculator-field {
    margin-bottom: var(--spacing-md);
}

.calculator-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--black);
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.calculator-field input {
    width: 100%;
    padding: 12px 0;
    border: none;
    border-bottom: 2px solid var(--grey-medium);
    font-family: var(--font-body);
    font-size: 1rem;
    background: transparent;
    transition: border-color 0.3s;
}

.calculator-field input:focus {
    outline: none;
    border-bottom-color: var(--primary-blue);
}

.calculator-field input:read-only {
    color: var(--grey-dark);
    cursor: not-allowed;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--black);
}

.form-group input:not(.calculator-field input),
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--grey-medium);
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.form-group input:not(.calculator-field input):focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(6, 78, 141, 0.1);
}

.calculator-result {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm);
    background-color: var(--grey-light);
    border-radius: 5px;
    font-weight: 600;
    color: var(--primary-blue);
    display: none;
}

.calculator-result.show {
    display: block;
}

/* ===== Events Section ===== */
.events-section {
    background-color: var(--grey-light);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: stretch;
}

/* iPad - Reduce event card size */
@media (min-width: 768px) and (max-width: 1023px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .event-card {
        padding: 20px 16px !important;
    }

    .event-icon {
        width: 60px !important;
        height: 60px !important;
        margin-bottom: 16px !important;
    }

    .event-icon i {
        font-size: 1.6rem !important;
    }

    .event-card h3 {
        font-size: 1.1rem !important;
        min-height: 48px !important;
        margin-bottom: 10px !important;
    }

    .event-subtitle {
        font-size: 0.85rem !important;
        min-height: 40px !important;
        margin-bottom: 12px !important;
    }

    .event-description {
        margin: 12px 0 !important;
    }

    .event-description>p {
        font-size: 0.85rem !important;
        line-height: 1.5 !important;
        margin-bottom: 12px !important;
    }

    .event-highlights {
        gap: 8px !important;
        margin: 12px 0 !important;
    }

    .highlight-item {
        padding: 8px !important;
        gap: 8px !important;
        font-size: 0.8rem !important;
    }

    .highlight-item i {
        font-size: 0.75rem !important;
    }

    .event-card .btn,
    .event-card button {
        padding: 10px 14px !important;
        font-size: 0.85rem !important;
    }
}

/* iPad Pro - Uniform event cards with consistent heights */
@media (min-width: 1024px) and (max-width: 1366px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        align-items: stretch;
    }

    .event-card {
        padding: 24px 20px !important;
        display: flex !important;
        flex-direction: column !important;
        height: 100% !important;
        min-height: 580px !important;
        /* Uniform minimum height */
    }

    .event-icon {
        width: 70px !important;
        height: 70px !important;
        margin-bottom: 20px !important;
        flex-shrink: 0 !important;
    }

    .event-icon i {
        font-size: 2rem !important;
    }

    .event-card h3 {
        font-size: 1.2rem !important;
        min-height: 56px !important;
        margin-bottom: 12px !important;
        flex-shrink: 0 !important;
    }

    .event-subtitle {
        font-size: 0.95rem !important;
        min-height: 48px !important;
        margin-bottom: 16px !important;
        flex-shrink: 0 !important;
    }

    .event-description {
        margin: 16px 0 !important;
        flex: 1 !important;
        /* Take remaining space */
        display: flex !important;
        flex-direction: column !important;
    }

    .event-description>p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
        margin-bottom: 16px !important;
    }

    .event-highlights {
        gap: 12px !important;
        margin: 12px 0 !important;
        flex: 1 !important;
    }

    .highlight-item {
        padding: 10px 0 !important;
        gap: 10px !important;
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    .highlight-item i {
        font-size: 0.8rem !important;
        flex-shrink: 0 !important;
    }

    .event-card .btn,
    .event-card button {
        padding: 12px 18px !important;
        font-size: 0.9rem !important;
        margin-top: auto !important;
        /* Push button to bottom */
        flex-shrink: 0 !important;
    }
}

.event-card {
    background: var(--white);
    padding: 28px 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid var(--grey-light);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 100%;
    align-items: stretch;
    justify-content: flex-start;
    position: relative;
    overflow: hidden;
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(6, 78, 141, 0.2);
    border-color: #064E8D;
}

.event-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/recycle/bsbapp4.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.08;
    /* very low visibility */
    z-index: 0;
}

.event-card>* {
    position: relative;
    z-index: 1;
}

.event-card:hover::before {
    opacity: 0.1;
}

@media (max-width: 768px) {
    .event-card::before {
        opacity: 0.06;
    }
}

.event-card:hover .event-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(6, 78, 141, 0.3);
}

.event-card:hover .event-icon i {
    transform: scale(1.1);
}

.event-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #064E8D 0%, #00072B 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.event-icon i {
    font-size: 2rem;
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.event-card h3 {
    color: #00072B;
    margin-bottom: 10px;
    font-size: 1.2rem;
    line-height: 1.4;
    font-weight: 700;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: color 0.3s ease;
}

.event-card:hover h3 {
    color: #064E8D;
}

.event-card>p:not(.event-subtitle):not(.event-description p) {
    color: var(--grey-dark);
    margin-bottom: 16px;
    flex: 0 0 auto;
}

.event-card .btn,
.event-card button {
    margin-top: auto;
    width: 100%;
    flex-shrink: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 16px;
    line-height: 1.2;
    box-sizing: border-box;
}

.event-card .btn i,
.event-card button i {
    font-size: 0.9rem;
}

.event-card .btn:hover,
.event-card button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(6, 78, 141, 0.3);
}

/* Featured Event Card Styles */
.event-card.featured-event {
    border: 2px solid var(--accent-orange);
    background: linear-gradient(135deg, #fff 0%, #fff5e6 100%);
    position: relative;
}

.event-card.featured-event::before {
    content: 'Featured';
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-orange);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.event-card.featured-event:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 15px 30px rgba(245, 127, 23, 0.2);
}

.event-subtitle {
    color: #545971;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 12px;
    font-style: italic;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: color 0.3s ease;
}

.event-card:hover .event-subtitle {
    color: #064E8D;
}

.event-description {
    text-align: left;
    margin: 12px 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-description>p {
    color: #545971;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 0 0 auto;
    text-align: left;
    transition: color 0.3s ease;
}

.event-card:hover .event-description>p {
    color: #00072B;
}

.event-highlights {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 12px 0;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 10px;
    background: #F3F3F5;
    border-radius: 6px;
    border-left: 4px solid #064E8D;
    transition: all 0.3s ease;
    cursor: default;
}

.highlight-item:hover {
    background: rgba(6, 78, 141, 0.08);
    border-left-color: #FBC02D;
    transform: translateX(5px);
    box-shadow: 0 2px 8px rgba(6, 78, 141, 0.1);
}

.highlight-item i {
    color: #064E8D;
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.highlight-item:hover i {
    color: #FBC02D;
    transform: scale(1.1);
}

.highlight-item span {
    color: #545971;
    font-size: 0.9rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.highlight-item:hover span {
    color: #00072B;
    font-weight: 500;
}

/* ===== Registration Section ===== */
.registration-section {
    background-color: var(--white);
}

.registration-tabs {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    justify-content: center;
}

.tab-btn {
    padding: 14px 30px;
    background-color: var(--grey-light);
    color: var(--grey-dark);
    border: none;
    border-radius: var(--radius) var(--radius) 0 0;
    font-family: var(--font-primary);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    border-bottom: none;
}

.tab-btn:hover:not(.active) {
    background-color: rgba(6, 78, 141, 0.1);
    color: var(--primary-blue);
}

.tab-btn.active {
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.tab-pane {
    display: none;
    background: var(--white);
    padding: var(--spacing-lg);
    border-radius: 0 var(--radius) var(--radius) var(--radius);
    border: 2px solid var(--grey-light);
}

.tab-pane.active {
    display: block;
}

.registration-form {
    max-width: 800px;
    margin: 0 auto;
}

/* Improve form element tap targets and stacking on small screens */
@media (max-width: 767px) {
    .registration-tabs {
        gap: var(--spacing-xs);
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 12px 20px;
        font-size: 0.95rem;
        flex: 1;
        min-width: 200px;
    }

    .registration-form {
        padding: 0;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }

    /* prevent iOS zoom */
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-sm);
}

/* ===== Clients Section ===== */
.clients-section {
    background-color: var(--white);
    padding: var(--spacing-xl) 0;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    background-color: var(--grey-light);
    padding: var(--spacing-xxl) 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.testimonial-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid var(--grey-light);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(6, 78, 141, 0.15);
    border-color: var(--primary-blue);
}

.testimonial-rating {
    display: flex;
    gap: 5px;
    color: var(--cta-yellow);
    font-size: 1.1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--grey-dark);
    font-style: italic;
    margin: 0;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--grey-light);
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--grey-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.author-info {
    flex-grow: 1;
}

.author-name {
    color: var(--primary-blue);
    margin: 0 0 4px 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.author-position {
    color: var(--grey-medium);
    margin: 0;
    font-size: 0.9rem;
}

.clients-scroll {
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    gap: var(--spacing-md);
    animation: scroll-right 30s linear infinite;
}

@media (max-width: 767px) {
    .clients-track {
        animation: scroll-right 8s linear infinite;
        /* Increased speed - faster scroll on mobile */
    }

    .apps-title-logo {
        max-width: 220px;
    }

    .apps-header-logo {
        margin-bottom: 16px;
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.client-logo {
    flex-shrink: 0;
    width: 200px;
    height: 120px;
    background: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0.5px solid #B0B2BD;
    /* Gray border - reduced thickness */
    transition: var(--transition);
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.client-logo:hover {
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(6, 78, 141, 0.15);
}

.client-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 15px;
    transition: var(--transition);
}

.client-logo-img:hover {
    transform: scale(1.05);
}

.client-placeholder {
    color: var(--grey-medium);
    font-weight: 600;
}

/* ===== News Section ===== */
.news-section {
    background-color: var(--grey-light);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.news-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid var(--grey-light);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(6, 78, 141, 0.15);
    border-color: var(--primary-blue);
}

.news-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
}

.news-content {
    padding: var(--spacing-md);
}

.news-category {
    display: inline-block;
    padding: 5px 15px;
    background-color: var(--accent-orange);
    color: var(--white);
    border-radius: 0;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.news-content h3 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
}

.news-link {
    color: var(--accent-orange);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: var(--spacing-sm);
}

/* ===== About Section ===== */
.about-section {
    background-color: var(--white);
}

.about-content {
    display: block;
}

.about-text h2 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-md);
}

.about-text p {
    color: var(--grey-dark);
    margin-bottom: var(--spacing-sm);
}

/* ===== Mission & Stats Section ===== */
.mission-stats-wrapper {
    margin-top: 60px;
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.mission-stats-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange), var(--primary-blue));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.about-mission-modern {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    padding: 0 20px;
}

.mission-icon-wrapper {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(6, 78, 141, 0.25);
    transition: all 0.3s ease;
}

.mission-icon-wrapper:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(6, 78, 141, 0.35);
}

.mission-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--white);
}

.about-mission-modern h3 {
    color: var(--primary-blue);
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-mission-modern p {
    color: var(--grey-dark);
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0;
}

.about-stats-modern {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.stat-card-modern {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid var(--grey-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.stat-card-modern:hover {
    transform: translateY(-10px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 40px rgba(6, 78, 141, 0.2);
}

.stat-card-modern:hover::before {
    transform: scaleX(1);
}

.stat-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-orange), #F57F17);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 6px 20px rgba(251, 192, 45, 0.3);
    transition: all 0.3s ease;
}

.stat-card-modern:hover .stat-icon-wrapper {
    transform: scale(1.15) rotate(-5deg);
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue));
    box-shadow: 0 8px 25px rgba(6, 78, 141, 0.35);
}

.stat-icon-wrapper i {
    font-size: 1.8rem;
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-orange);
    margin: 15px 0 10px;
    line-height: 1;
    transition: color 0.3s ease;
}

.stat-card-modern:hover .stat-number {
    color: var(--primary-blue);
}

.stat-label {
    color: var(--grey-dark);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
    .about-stats-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .mission-stats-wrapper {
        padding: 40px 0;
    }
}

@media (max-width: 768px) {
    .about-stats-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .about-mission-modern h3 {
        font-size: 1.75rem;
    }

    .about-mission-modern p {
        font-size: 1rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .mission-icon-wrapper {
        width: 75px;
        height: 75px;
    }

    .mission-icon-wrapper i {
        font-size: 2rem;
    }
}

.about-timeline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-md);
    margin: var(--spacing-md) 0 var(--spacing-lg);
}

.timeline-item {
    position: relative;
    background: var(--grey-light);
    padding: var(--spacing-md);
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--primary-blue);
    transition: var(--transition);
}

.timeline-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(6, 78, 141, 0.15);
    border-left-color: var(--accent-orange);
}

.timeline-year {
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.timeline-item h4 {
    margin-bottom: 6px;
    color: var(--deep-blue);
}

.timeline-item p {
    margin-bottom: 0;
}

.about-image {
    font-size: 200px;
    color: var(--grey-light);
    text-align: center;
}

/* ===== Business Verticals Section ===== */
.business-verticals-section {
    padding: 40px 0;
}

.business-verticals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
}

.vertical-card-modern {
    background: var(--white);
    padding: 30px 25px;
    border-radius: 12px;
    border: 2px solid var(--grey-light);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vertical-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.vertical-card-modern:hover {
    border-color: var(--primary-blue);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(6, 78, 141, 0.15);
}

.vertical-card-modern:hover::before {
    transform: scaleX(1);
}

.vertical-icon-modern {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 78, 141, 0.2);
}

.vertical-card-modern:hover .vertical-icon-modern {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--accent-orange), #F57F17);
    box-shadow: 0 6px 20px rgba(251, 192, 45, 0.3);
}

.vertical-icon-modern i {
    font-size: 2rem;
    color: var(--white);
}

.vertical-card-modern h4 {
    color: var(--primary-blue);
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
    transition: color 0.3s ease;
}

.vertical-card-modern:hover h4 {
    color: var(--accent-orange);
}

.vertical-card-modern p {
    color: var(--grey-dark);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 1024px) {
    .business-verticals-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .about-timeline {
        grid-template-columns: 1fr;
    }

    .business-verticals-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .business-verticals-section .section-header h3 {
        font-size: 1.75rem;
    }

    .business-verticals-section .section-header p {
        font-size: 1rem;
    }
}

/* ===== Contact Section ===== */
.contact-section {
    background-color: var(--white);
}

.contact-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xl);
}

.contact-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.contact-info-card {
    background: var(--grey-light);
    padding: var(--spacing-lg);
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.contact-info-card:hover {
    background: var(--white);
    border-color: var(--primary-blue);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(6, 78, 141, 0.15);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-md);
}

.contact-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-info-card h3 {
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
    font-size: 1.3rem;
}

.contact-info-card p {
    margin: 5px 0;
    color: var(--grey-dark);
}

.contact-info-card a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-card a:hover {
    color: var(--accent-orange);
}

.contact-hours {
    margin-top: var(--spacing-sm);
    padding-top: var(--spacing-sm);
    border-top: 1px solid var(--grey-medium);
}

.contact-form-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.contact-form-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.contact-form-header h3 {
    color: var(--primary-blue);
    font-size: 2rem;
    margin-bottom: var(--spacing-xs);
}

.contact-form {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--grey-light);
}

.whatsapp-contact-banner {
    background: linear-gradient(135deg, #25D366, #128C7E);
    padding: var(--spacing-lg);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: var(--spacing-xl);
    color: var(--white);
}

.whatsapp-content {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.whatsapp-content i {
    font-size: 3rem;
}

.whatsapp-content h4 {
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.whatsapp-content p {
    margin: 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--accent-orange);
    margin-top: 5px;
}

.contact-item h4 {
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.contact-item a {
    color: var(--black);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--primary-blue);
}

/* ===== Footer ===== */
.main-footer {
    background-color: var(--deep-blue);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3,
.footer-section h4 {
    color: var(--cta-yellow);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo-img {
    max-width: 220px;
    height: auto;
    width: auto;
    max-height: 60px;
    object-fit: contain;
    display: block;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--cta-yellow);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-links a {
    width: 42px;
    height: 42px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--accent-orange);
    color: var(--white);
    transform: translateY(-2px);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info li i {
    color: var(--cta-yellow);
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

.contact-info li span {
    flex: 1;
    line-height: 1.6;
}

.contact-info li a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info li a:hover {
    color: var(--cta-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* ===== Footer Responsive ===== */
@media (max-width: 1024px) {
    .main-footer {
        padding: 50px 0 25px;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
        margin-bottom: 25px;
    }

    .footer-section {
        margin-bottom: 0;
    }

    .footer-logo-img {
        max-width: 200px;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 18px;
    }

    .footer-section p {
        font-size: 0.9rem;
    }

    .footer-section ul li {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .contact-info li {
        font-size: 0.9rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 767px) {
    .main-footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 25px;
        text-align: center;
    }

    .footer-section {
        margin-bottom: 0;
        align-items: center;
    }

    .footer-logo {
        margin-bottom: 20px;
    }

    .footer-logo-img {
        max-width: 180px;
        margin: 0 auto;
    }

    .footer-section p {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 20px;
        font-size: 0.9rem;
    }

    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 18px;
        text-align: center;
    }

    .footer-section ul {
        text-align: center;
        display: inline-block;
    }

    .footer-section ul li {
        font-size: 0.9rem;
        margin-bottom: 10px;
        text-align: left;
    }

    .social-links {
        justify-content: center;
        margin-top: 20px;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .contact-info {
        align-items: center;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-info li {
        justify-content: center;
        text-align: center;
        font-size: 0.9rem;
        gap: 10px;
    }

    .contact-info li span {
        text-align: center;
    }

    .footer-bottom {
        padding-top: 20px;
    }

    .footer-bottom p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 35px 0 18px;
    }

    .footer-content {
        gap: 25px;
        margin-bottom: 20px;
    }

    .footer-logo-img {
        max-width: 160px;
    }

    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 15px;
    }

    .footer-section p {
        font-size: 0.85rem;
        margin-bottom: 18px;
    }

    .footer-section ul li {
        font-size: 0.85rem;
        margin-bottom: 8px;
    }

    .contact-info li {
        font-size: 0.85rem;
        gap: 8px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .contact-info li i {
        font-size: 1rem;
        margin-top: 0;
    }

    .contact-info li span {
        text-align: center;
    }

    .social-links {
        gap: 10px;
        margin-top: 18px;
    }

    .social-links a {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .footer-bottom {
        padding-top: 18px;
    }

    .footer-bottom p {
        font-size: 0.8rem;
    }
}

/* ===== Modal ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.modal-content {
    background-color: var(--white);
    margin: 5% auto;
    padding: var(--spacing-lg);
    border-radius: 8px;
    width: 90%;
    max-width: 600px;
}

.modal-content .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 15px;
}

.modal-content .form-group.full-width {
    grid-column: 1 / -1;
}

.modal-content .form-group label .required {
    color: #e74c3c;
}

@media (max-width: 768px) {
    .modal-content .form-row {
        grid-template-columns: 1fr;
    }
}

.modal-content {
    max-width: 500px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--grey-light);
}

.close-modal {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: var(--grey-medium);
    cursor: pointer;
}

.close-modal:hover {
    color: var(--black);
}

/* ===== Success/Error Messages ===== */
.message {
    padding: var(--spacing-sm);
    border-radius: 5px;
    margin-bottom: var(--spacing-sm);
    display: none;
}

.message.success {
    background-color: #4CAF50;
    color: var(--white);
    display: block;
}

.message.error {
    background-color: #f44336;
    color: var(--white);
    display: block;
}

/* ===== Responsive Design ===== */

/* Tablet and iPad (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .hero-left {
        order: 2;
    }

    .hero-slider-section {
        order: 1;
        margin-bottom: var(--spacing-md);
    }

    .hero-actions {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-slider {
        max-width: 100%;
    }

    .slider-container {
        height: 300px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .live-rates-container {
        flex-wrap: wrap;
        justify-content: center;
    }

    .rate-card {
        flex: 0 0 calc(50% - var(--spacing-md));
        max-width: 280px;
    }
}

/* Mobile (up to 767px) */
@media (max-width: 767px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-center {
        display: none;
    }

    .nav-actions {
        display: none;
    }

    /* Ensure mobile nav overlay works properly */
    .mobile-nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(5, 28, 63, 0.95);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 100px 24px 120px;
        z-index: 1400;
        overflow-y: auto;
    }

    .mobile-nav-overlay.active {
        display: flex;
    }

    .mobile-nav-overlay .nav-menu {
        list-style: none;
        margin: 0;
        padding: 0;
        flex-direction: column;
        gap: 16px;
        width: 100%;
        max-width: 400px;
    }

    .mobile-nav-overlay .nav-menu>li {
        width: 100%;
    }

    .mobile-nav-overlay .nav-menu>li>a {
        display: block;
        width: 100%;
        padding: 16px 20px;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 0;
        font-size: 1.1rem;
        color: #ffffff;
        text-align: center;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    }

    .mobile-nav-overlay .nav-menu>li>a:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    }

    .mobile-nav-overlay .button-group {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        margin-top: 32px !important;
        width: 100% !important;
        max-width: 400px !important;
        align-items: stretch !important;
    }

    .mobile-nav-overlay .button-group .nav-btn {
        width: 100% !important;
        padding: 14px 24px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        min-height: 48px !important;
        height: auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        border-radius: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
    }

    .mobile-nav-overlay .nav-btn {
        width: 100% !important;
        padding: 14px 24px !important;
        font-size: 1rem !important;
        font-weight: 600 !important;
        min-height: 48px !important;
        height: auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        border-radius: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
        text-decoration: none !important;
        transition: all 0.3s ease !important;
    }

    .mobile-nav-overlay .nav-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        margin-top: 24px !important;
        width: 100% !important;
        max-width: 400px !important;
        visibility: visible !important;
        opacity: 1 !important;
        align-items: center !important;
    }

    .mobile-nav-overlay .nav-actions .btn-call-nav {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100% !important;
        padding: 14px 24px !important;
        font-size: 1rem !important;
        min-height: 48px !important;
        background: var(--accent-orange) !important;
        color: white !important;
        border: none !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 8px !important;
        font-weight: 600 !important;
    }

    .mobile-nav-overlay .nav-actions .btn-call-nav:hover {
        background: var(--cta-yellow) !important;
        color: var(--deep-blue) !important;
        transform: translateY(-2px);
    }

    /* Mobile dropdown functionality */
    .mobile-nav-overlay .mobile-dropdown {
        position: relative;
    }

    .mobile-nav-overlay .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between;
        cursor: pointer;
    }

    .mobile-nav-overlay .dropdown-toggle .chevron {
        transition: transform 0.3s ease;
        margin-left: 8px;
    }

    .mobile-nav-overlay .mobile-dropdown.active .chevron {
        transform: rotate(180deg);
    }

    .mobile-nav-overlay .dropdown-menu {
        display: none;
        list-style: none;
        margin: 12px 0 0 0;
        padding: 8px 0;
        background: rgba(0, 0, 0, 0.4);
        border-radius: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-nav-overlay .mobile-dropdown.active .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-nav-overlay .dropdown-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .mobile-nav-overlay .dropdown-menu li:last-child {
        border-bottom: none;
    }

    .mobile-nav-overlay .dropdown-menu a {
        display: block;
        padding: 14px 20px;
        color: rgba(255, 255, 255, 0.95) !important;
        text-decoration: none;
        font-size: 1rem;
        font-weight: 500;
        transition: all 0.3s ease;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        text-align: left;
    }

    .mobile-nav-overlay .dropdown-menu a:hover {
        background: rgba(255, 255, 255, 0.15) !important;
        color: var(--cta-yellow) !important;
        padding-left: 24px;
    }

    .mobile-nav-overlay .app-download-link,
    .mobile-nav-overlay .demo-link {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
    }

    .mobile-nav-overlay .app-download-link i:first-child,
    .mobile-nav-overlay .demo-link i:first-child {
        color: var(--cta-yellow) !important;
    }

    /* Show WhatsApp floating icon on mobile like desktop */
    .floating-cta {
        display: flex !important;
        position: fixed !important;
        right: 20px !important;
        bottom: 24px !important;
        z-index: 1700 !important;
    }

    .floating-btn {
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3) !important;
    }

    /* Enhanced visibility when mobile nav is active */
    .mobile-nav-overlay.active~.floating-cta,
    .mobile-nav-overlay.active~.mobile-floating-actions {
        z-index: 1700 !important;
    }

    .mobile-floating-actions {
        z-index: 1600 !important;
    }

    /* Hide desktop navigation elements in mobile */
    .navbar .nav-center {
        display: none;
    }

    .navbar .nav-actions {
        display: none;
    }

    .logo img {
        height: 45px;
        max-width: 180px;
    }

    .hero-section {
        padding: var(--spacing-lg) 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .hero-left {
        order: 1;
    }

    .hero-slider-section {
        order: 2;
        margin-bottom: var(--spacing-md);
    }

    .hero-actions {
        grid-template-columns: 1fr;
        gap: var(--spacing-sm);
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

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

    .hero-slider {
        max-width: 100%;
    }

    .slider-container {
        height: 250px;
    }

    .hero-cta {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .app-buttons {
        flex-direction: column;
        width: 100%;
    }

    .app-btn {
        width: 100%;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .services-grid,
    .tools-grid,
    .events-grid,
    .news-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: var(--spacing-lg);
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .live-rates-container {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: var(--spacing-sm);
    }

    .rate-card {
        flex: 0 0 260px;
        min-width: 260px;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .registration-tabs {
        flex-direction: column;
    }

    .tab-btn {
        border-radius: 5px;
        width: 100%;
    }

    .tab-pane {
        border-radius: 10px;
    }

    .calculator-banner {
        font-size: 0.8rem;
        padding: 8px 15px;
    }

    .tool-card h3 {
        font-size: 1.2rem;
        margin: var(--spacing-sm) var(--spacing-md);
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo-img {
        margin: 0 auto;
    }

    .social-links {
        justify-content: center;
    }
}

/* Small Mobile (up to 480px) */
@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-xs);
    }

    body {
        padding-top: 68px;
    }

    .navbar {
        padding: 8px 0;
    }

    .logo a {
        padding-left: 12px;
    }

    .logo-img {
        height: 35px;
        max-width: 130px;
    }

    .mobile-menu-toggle {
        margin-left: auto !important;
        margin-right: 12px;
        padding: 6px;
        order: 999;
    }

    .navbar {
        justify-content: space-between !important;
    }

    .logo {
        margin-right: 0;
    }

    .mobile-menu-toggle span {
        width: 22px;
        height: 2.5px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .logo img {
        height: 35px;
        max-width: 130px;
    }

    .rate-card {
        flex: 0 0 240px;
        min-width: 240px;
        padding: var(--spacing-sm);
    }

    .rate-product-name {
        font-size: 1rem;
    }

    .rate-price {
        font-size: 1.1rem;
    }
}

/* Large Desktop (above 1200px) */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
    }

    .hero-content {
        gap: var(--spacing-xl);
    }

    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Larger desktop for hero spacing and title scale */
@media (min-width: 1440px) {
    .container {
        max-width: 1500px;
    }

    .hero-title {
        font-size: 3.75rem;
    }
}

/* Tablet refinements */
@media (min-width: 768px) and (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .hero-right {
        max-width: 100%;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }
}

/* Mobile refinements */
@media (max-width: 767px) {
    .hero-content {
        gap: var(--spacing-md);
    }

    .hero-left {
        order: 1;
    }

    .hero-right {
        order: 2;
        max-width: 100%;
    }

    .hero-actions {
        gap: var(--spacing-sm);
    }

    /* Buyer App Card Mobile */
    .buyer-app-card {
        padding: var(--spacing-md);
    }

    .app-card-header h4 {
        font-size: 1rem;
    }

    .app-features li {
        font-size: 0.9rem;
        padding: 6px 0;
    }

    .app-card-actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .btn-download-app,
    .btn-get-started {
        font-size: 0.9rem;
        padding: 12px;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .whatsapp-contact-banner {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-md);
    }
}

/* ===== Page Specific Styles ===== */

.page-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue));
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

.bg-light {
    background-color: var(--grey-light);
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--grey-dark);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--deep-blue));
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}