:root {

    /* ── Background ──────────────────── */
    --bg-color: #fafbfc;
    --bg-light: #f4f6fa;

    /* ── Text ────────────────────────── */
    --text-navy: #0f172a;
    --text-gray: #64748b;
    --text-dark: #1e293b;

    /* ── Brand accent (Orange) ───────── */
    --brand-green: #F97316;
    /* keeps old name so all usages auto-update */
    --brand-green-hover: #EA580C;
    --brand-orange: #F97316;
    --brand-orange-hover: #EA580C;
    --brand-orange-rgb: 249, 115, 22;
    --text-navy-rgb: 15, 23, 42;

    /* ── Semantic ────────────────────── */
    --success-green: #3FAA4A;
    /* seats available / verified badges */

    /* ── UI lines ────────────────────── */
    --grid-line: #eef1f6;
    --track-line: #1e293b;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Sora', 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-navy);
    background-color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

/* =========================================
   Navbar
   ========================================= */
.navbar {
    width: 100%;
    padding: 25px 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 999;
    transition: box-shadow 0.3s ease, padding 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 15px 50px;
    /* slightly smaller padding when scrolled */
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-navy);
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-navy);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--brand-orange);
}

.active-nav {
    color: var(--brand-orange) !important;
    font-weight: 600;
}

.nav-links .arrow,
.nav-lang .arrow {
    font-size: 0.7rem;
    font-weight: bold;
    color: var(--text-gray);
    transform: scaleX(1.5) translateY(-1px);
    display: inline-block;
}

.btn-outline {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #ffffff;
    border: 1px solid var(--text-navy);
    border-radius: 50px;
    background-color: var(--text-navy);
    transition: all 0.2s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background-color: #ffffff;
    color: var(--text-navy);
    border-color: var(--text-navy);
}



.hero-arrow {
    position: absolute;
    right: -40px;
    top: -50px;
    z-index: 20;
}

/* =========================================
   Hero Content
   ========================================= */
.hero-section {
    position: relative;
    overflow: hidden;
    /* Added for decor */
    min-height: calc(100vh - 100px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 50px;
}

/* Background grid isolated to pseudo-element to not mask content */
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    /* Add grid pattern ONLY to background */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Crect x='10' y='10' width='80' height='80' rx='20' fill='none' stroke='%23f1f3f9' stroke-width='1.5'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    background-position: center top;

    /* Fade the background pattern at the edges */
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 80%);
    mask-image: radial-gradient(ellipse at center, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 80%);
}

.hero-section::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Crect x='10' y='10' width='80' height='80' rx='20' fill='none' stroke='%23fd5202' stroke-width='2.5'/%3E%3C/svg%3E");
    background-size: 80px 80px;
    background-position: center top;
    
    -webkit-mask-image: radial-gradient(circle 220px at var(--mouse-x, -500px) var(--mouse-y, -500px), rgba(0,0,0,1), transparent);
    mask-image: radial-gradient(circle 220px at var(--mouse-x, -500px) var(--mouse-y, -500px), rgba(0,0,0,1), transparent);
    
    opacity: 0;
    transition: opacity 1s ease;
}
.hero-section:hover::after {
    opacity: 0.50;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    z-index: 20;
    position: relative;
    padding: 0 20px;
    margin-top: 60px;
    /* Pushed down from navbar to fix meshup */
}

.hero-title {
    font-size: 4.8rem;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -1.5px;
    color: var(--text-navy);
    margin-bottom: 30px;
    position: relative;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 50px;
    font-weight: 400;
}

/* =========================================
   Hero CTA
   ========================================= */
.hero-cta {
    margin: 0 auto 70px;
    text-align: center;
}

.start-btn {
    background-color: var(--brand-green);
    color: #ffffff;
    border: none;
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(var(--brand-orange-rgb), 0.2);
}

.start-btn:hover {
    background-color: var(--brand-green-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(var(--brand-orange-rgb), 0.3);
}

.outline-hero-btn {
    background-color: #ffffff;
    border: 2px solid var(--text-navy);
    color: var(--text-navy);
    box-shadow: 0 8px 30px rgba(var(--text-navy-rgb), 0.1);
}

.outline-hero-btn:hover {
    background-color: var(--text-navy);
    color: #ffffff;
    box-shadow: 0 12px 35px rgba(var(--text-navy-rgb), 0.3);
}

/* =========================================
   Stats Row
   ========================================= */
.stats-row {
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: nowrap;
    /* Force all stats on a single line */
}

.stat-item {
    display: flex;
    align-items: center;
    /* Vertically align number and text */
    gap: 12px;
}

.stat-number {
    font-size: 2.2rem;
    /* Reduced from 2.8rem */
    font-weight: 800;
    color: var(--text-navy);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 500;
    text-align: left;
    /* Keep text left aligned to the number */
    line-height: 1.3;
}

/* =========================================
   Features Section
   ========================================= */
.features-section {
    padding: 100px 0 60px;
    background: white;
}

.text-center {
    text-align: center;
}

.section-title.dark {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-navy);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 25px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
    border: 1px solid #f0f3f8;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.fc-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.fc-number {
    width: 32px;
    height: 32px;
    background: #f0f3f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-navy);
}

.fc-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-navy);
}

.fc-desc {
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
}

.fc-visual {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}



.f-ui-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-green);
}




/* ---- Hamburger Menu ---- */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 100%;
    height: 2px;
    background-color: var(--text-navy);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ---- Mobile Nav Drawer ---- */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 1000;
    padding: 40px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 40px;
}

#mobileNavClose {
    background: none;
    border: none;
    font-size: 2.5rem;
    line-height: 1;
    color: var(--text-navy);
    cursor: pointer;
    padding: 0;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.mobile-nav-links a {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-navy);
    transition: color 0.2s;
}

.mobile-nav-links a:hover {
    color: var(--brand-orange);
}

.mobile-login-btn {
    margin-top: auto;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #f1f5f9;
    font-weight: 700;
    color: var(--text-navy);
    font-size: 1.1rem;
    transition: background 0.2s;
    width: 100%;
}

.mobile-login-btn:hover {
    background-color: #f8fafc;
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}


/* =========================================
   New Stats Section
   ========================================= */
.new-stats-section {
    padding: 80px 0 40px;
    background-color: #ffffff;
}

.section-title {
    font-size: 2.5rem;
    color: var(--text-navy);
    font-weight: 700;
    letter-spacing: -0.5px;
}



/* =========================================
   How It Works Section
   ========================================= */
.how-it-works-section {
    padding: 80px 0;
    width: 100%;
    background-color: #f1f5fc;
}

.hiw-wrapper {
    background-color: transparent;
    padding: 0;
    text-align: center;
    width: 100%;
    margin: 0 auto;
}

.hiw-header {
    margin-bottom: 60px;
}

.hiw-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-gray);
    margin-top: 20px;
}

.hiw-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-navy);
    letter-spacing: -0.03em;
}

.hiw-timeline {
    position: relative;
    max-width: 900px;
    margin: 40px auto 0;
    padding: 0;
}

/* Center darker line */
.hiw-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 3px;
    background: #d0d8e8;
    /* Darker than previous #eef1f6 */
}

.hiw-step {
    position: relative;
    margin-bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    /* Default to right side */
}

.hiw-step:last-child {
    margin-bottom: 0;
}

/* Odd elements go to the left side */
.hiw-step:nth-child(odd) {
    justify-content: flex-start;
}

/* Step content container width */
.hiw-step-content {
    width: 45%;
    /* Keep away from center line */
    background: white;
    border-radius: 12px;
    padding: 20px 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid #f0f3f8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

/* Base pointer arrow */
.hiw-step-content::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border-style: solid;
    border-width: 10px;
}

/* Arrow for right-side items (points left) */
.hiw-step:nth-child(even) .hiw-step-content::after {
    left: -20px;
    border-color: transparent white transparent transparent;
}

/* Arrow for left-side items (points right) */
.hiw-step:nth-child(odd) .hiw-step-content::after {
    right: -20px;
    border-color: transparent transparent transparent white;
}

/* The number circle positioned on the center line */
.hiw-step-number {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--brand-green);
    color: #151e3f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 0 0 6px #f1f5fc;
    /* Matches section background to cut out line */
    z-index: 2;
}

.hiw-step-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
}

.hiw-step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 8px;
}

.hiw-step-content p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
    margin: 0;
}





/* =========================================
   Dashboard Preview Section
   ========================================= */
.Dashboard-Preview {
    padding: 80px 0 100px;
    background: #ffffff;
}

.dp-header {
    text-align: center;
    margin-bottom: 50px;
}

.dp-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-navy);
    margin-top: 16px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.dp-desc {
    font-size: 1.15rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0 auto;
}

.dp-image {
    margin-bottom: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.dp-main-img {
    width: 100%;
    display: block;
    object-fit: cover;
    max-height: 600px;
}

.dp-features {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.dp-feat {
    flex: 1;
    max-width: 320px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 18px;
    text-align: left;
    padding: 28px;
    border-radius: 16px;
    background: #f8faf9;
    border: 1.5px solid #d6dce8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dp-feat:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.dp-feat-icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    background: rgba(253, 82, 2, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dp-feat-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.dp-feat h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 6px;
    text-align: left;
}

.dp-feat p {
    font-size: 0.92rem;
    color: var(--text-gray);
    line-height: 1.5;
    text-align: left;
}

@media (max-width: 768px) {
    .dp-features {
        flex-direction: column;
        align-items: center;
    }

    .dp-feat {
        max-width: 100%;
    }

    .dp-title {
        font-size: 2.2rem;
    }
}

.wcu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.tag-purple {
    display: inline-block;
    color: #464a9c;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.wcu-title {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-navy);
    letter-spacing: -0.02em;
    margin-bottom: 25px;
}

.wcu-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 50px;
}

.wcu-features {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.wcu-feat {
    display: flex;
    gap: 20px;
}

.wcu-icon {
    width: 60px;
    height: 60px;
    background: var(--text-navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.wcu-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-navy);
    margin-bottom: 8px;
}

.wcu-text p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Right Visual */
.wcu-visual {
    position: relative;
    border-radius: 24px;
}

.wcu-main-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: 24px;
    display: block;
}

.float-chart-card {
    position: absolute;
    bottom: 50px;
    left: -60px;
    background: white;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    width: 320px;
}

.fccd-header {
    margin-bottom: 25px;
}

.fccd-header h4 {
    font-size: 1rem;
    color: var(--text-navy);
    font-weight: 600;
    margin-bottom: 5px;
}

.fccd-stat {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.fccd-stat strong {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-navy);
}

.up-green {
    color: #00b014;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Bar Chart */
.bar-chart-container {
    display: flex;
    height: 120px;
    gap: 10px;
}

.y-axis {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #a0a6b5;
    padding-bottom: 20px;
    /* Space for x axis */
}

.bars {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    flex: 1;
    border-bottom: 1px solid #f0f3f8;
    padding-bottom: 5px;
    height: 100px;
    /* Chart area height */
}

.bar-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
    height: 100%;
}

.bar {
    width: 100%;
    border-radius: 4px;
}

.dark-bar {
    background: var(--text-navy);
}

.green-bar {
    background: var(--brand-green);
}

.x-label {
    font-size: 0.75rem;
    color: #a0a6b5;
    margin-top: 10px;
}

/* ================================
   Pricing Section
================================ */

.pricing-section {
    padding: 100px 0;
    background: #f8fafc;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-navy);
}

.pricing-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-top: 10px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pricing-card {
    background: white;
    padding: 40px;
    border-radius: 18px;
    border: 1px solid #e8edf5;
    text-align: center;
    position: relative;
    transition: all .3s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
}

.plan-name {
    font-size: 1.4rem;
    font-weight: 700;
}

.plan-price {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 15px 0;
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-gray);
}

.plan-limit {
    color: var(--text-gray);
    margin-bottom: 20px;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: var(--text-gray);
    text-align: left;
}

.plan-features li i {
    color: #00b014;
    /* Match brand green or tick color */
    width: 18px;
    height: 18px;
}

.plan-commission {
    font-weight: 600;
    margin-bottom: 20px;
}

.pricing-btn {
    background: var(--brand-green);
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 40px;
    font-weight: 600;
    cursor: pointer;
}

.pricing-btn:hover {
    background: var(--brand-green-hover);
}

.popular {
    border: 2px solid var(--brand-green);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--brand-green);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-note {
    text-align: center;
    margin-top: 40px;
    color: var(--text-gray);
}

/* ---- Home Contact Section ---- */
.home-contact {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(253, 82, 2, 0.1);
    color: var(--brand-orange);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    width: 28px;
    height: 28px;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-navy);
}

.contact-card p {
    color: var(--text-gray);
    line-height: 1.5;
    margin-bottom: 2px;
}

.contact-btn {
    display: inline-block;
    background: var(--brand-orange);
    color: white;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}

.contact-btn:hover {
    background: var(--brand-orange-hover);
    transform: translateY(-2px);
}

/* Responsive */

@media (max-width:900px) {

    .pricing-grid {

        grid-template-columns: 1fr;

    }

    .popular {
        transform: none;
    }

}



.site-footer {

    background: var(--text-navy);
    color: white;
    padding: 80px 0 30px;

}

.footer-grid {

    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 50px;

}

.footer-logo {

    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 15px;

}

.footer-desc {

    color: #9aa6b2;
    line-height: 1.6;

}

.footer-col h4 {

    margin-bottom: 15px;
    font-size: 1.1rem;

}

.footer-col ul {

    list-style: none;
    padding: 0;

}

.footer-col ul li {

    margin-bottom: 10px;

}

.footer-col a {

    color: #9aa6b2;
    text-decoration: none;
    font-size: 0.95rem;

}

.footer-col a:hover {

    color: white;

}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #9aa6b2;
}

/* ---- Footer Extra ---- */
.footer-extra {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: #9aa6b2;
    transition: color 0.3s, transform 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-socials a:hover {
    color: white;
    transform: translateY(-2px);
}

.footer-socials svg {
    width: 20px;
    height: 20px;
}

.footer-security {
    display: flex;
    align-items: center;
    color: #9aa6b2;
    font-size: 0.95rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .footer-extra {
        flex-direction: column;
        gap: 20px;
        text-align: center;
        padding: 25px 0;
    }
}

/* ---- Footer Newsletter ---- */
.footer-newsletter {
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.footer-newsletter-text h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
}

.footer-newsletter-text p {
    color: #9aa6b2;
    font-size: 1.05rem;
}

.footer-newsletter-form {
    display: flex;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px;
    border-radius: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
    width: 100%;
}

.footer-newsletter-form input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 0 25px;
    color: white;
    font-size: 1rem;
    outline: none;
}

.footer-newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter-form button {
    background: var(--brand-orange);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s, background 0.2s;
}

.footer-newsletter-form button:hover {
    transform: scale(1.05);
    background: var(--brand-orange-hover);
}

@media (max-width:900px) {

    .footer-grid {

        grid-template-columns: 1fr 1fr;

    }

    .footer-newsletter {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .footer-newsletter-form {
        max-width: 100%;
    }

}

@media (max-width: 500px) {
    .footer-newsletter-form {
        flex-direction: column;
        border-radius: 20px;
        background: transparent;
        border: none;
        padding: 0;
    }

    .footer-newsletter-form input {
        background: rgba(255, 255, 255, 0.05);
        height: 55px;
        border-radius: 50px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        margin-bottom: 10px;
    }

    .footer-newsletter-form button {
        width: 100%;
        height: 55px;
    }
}

@media (max-width: 900px) {
    .global-stats-grid {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .divider {
        width: 100%;
        height: 1px;
    }

    .stat-meta {
        justify-content: center;
    }

    .avatars img {
        margin-right: -8px;
        margin-left: -8px;
    }

    .hiw-grid {
        grid-template-columns: 1fr;
    }

    .hiw-wrapper {
        padding: 40px 20px;
    }

    .hiw-title {
        font-size: 2.2rem;
    }

    .hiw-timeline {
        padding-left: 35px;
        margin-top: 40px;
    }

    .hiw-timeline::before {
        left: 20px;
        transform: none;
    }

    .hiw-step {
        justify-content: flex-end !important;
        /* Force all to align right on mobile */
        margin-bottom: 40px;
    }

    .hiw-step-content {
        width: 100%;
        /* Take up remaining space */
        padding: 25px 20px;
    }

    .hiw-step-content::after {
        display: none;
        /* Hide arrows on curved mobile line layout to prevent overlap */
    }

    .hiw-step-number {
        left: 20px;
        top: 30px;
        /* Align near top of card instead of center */
        transform: translate(-50%, 0);
        width: 36px;
        height: 36px;
        font-size: 1rem;
        box-shadow: 0 0 0 6px #f1f5fc;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 50px 20px;
    }

    .services-image-panel {
        margin-top: 40px;
    }

    .plan-smarter-cta {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 30px;
    }

    .ps-content h2 {
        font-size: 2.2rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .dest-arch {
        display: none;
    }

    .destinations {
        flex-direction: column;
        gap: 40px;
    }

    .lc-header,
    .lc-row {
        flex-direction: column;
        gap: 15px;
    }

    .lc-address {
        text-align: left;
    }

    /* Why Choose us section mobile fixes */
    .wcu-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 20px;
    }

    .float-chart-card {
        left: 50%;
        transform: translateX(-50%);
        bottom: -30px;
        width: 90%;
        max-width: 350px;
    }

    .wcu-title {
        font-size: 2.5rem;
    }

    /* Simplify Logistics fixed for mobile */
    .sl-truck {
        display: none;
    }

    .simplify-logistics {
        padding: 80px 20px;
        min-height: auto;
    }

    .sl-title {
        font-size: 2.2rem;
    }

    /* Footer Mobile */
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .fb-flex {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .fb-socials {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* =========================================
   Platform Highlights (Scroll Interaction)
   ========================================= */
.platform-highlights {
    position: relative;
    background-color: var(--bg-light);
}

.ph-section-header {
    text-align: center;
    padding: 80px 20px 0;
}

.ph-section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-navy);
    letter-spacing: -0.02em;
}

.ph-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    position: relative;
    padding: 0 20px;
}

/* LEFT: Sticky Visuals */
.ph-visuals {
    width: 50%;
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ph-image-wrapper {
    position: relative;
    width: 90%;
    aspect-ratio: 4/3;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.ph-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.ph-img.active {
    opacity: 1;
}

/* RIGHT: Scrolling Content */
.ph-content {
    width: 50%;
    padding: 0;
    /* No extra padding — last step stays in place until section scrolls away */
}

.ph-block {
    height: 100vh;
    /* Each block takes a full viewport height to trigger correctly */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 40px;
}

.ph-tag {
    display: inline-block;
    padding: 8px 16px;
    background-color: rgba(253, 82, 2, 0.1);
    color: var(--brand-green);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    width: fit-content;
}

.ph-title {
    font-size: 2.8rem;
    color: var(--text-navy);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.ph-desc {
    font-size: 1.2rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.ph-mobile-img {
    display: none;
}



/* =========================================
   Global Responsive Overrides
   ========================================= */
@media (max-width: 1024px) {
    .navbar {
        padding: 20px 30px;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    /* Platform Highlights Mobile Fix */
    .ph-visuals {
        display: none;
    }

    .ph-container {
        flex-direction: column;
        gap: 40px;
        padding: 40px 20px;
    }

    .ph-content {
        width: 100%;
        padding: 0 !important;
    }

    .ph-block {
        height: 60vh;
        padding-right: 0;
        text-align: center;
        margin-bottom: 0px;
    }

    .ph-mobile-img {
        display: block;
        width: 100%;
        border-radius: 24px;
        overflow: hidden;
        margin-bottom: 20px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    }

    .ph-mobile-img img {
        width: 100%;
        height: auto;
        display: block;
        aspect-ratio: 16/10;
        object-fit: cover;
    }

    .ph-title {
        font-size: 2.2rem;
    }

    .ph-desc {
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 3.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 40px;
    }

    .start-btn {
        padding: 16px 40px;
        font-size: 1.1rem;
    }

    .stats-row {
        gap: 30px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .pricing-title {
        font-size: 2.6rem;
    }

    .footer-newsletter-text h2 {
        font-size: 1.8rem;
    }

    .contact-grid {
        gap: 20px;
    }

    .section-title.dark {
        font-size: 2.8rem;
    }

    .section-subtitle {
        font-size: 1.05rem;
    }

    .ph-section-title {
        font-size: 2.8rem;
    }

    .dp-title {
        font-size: 2.8rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .feature-card {
        padding: 25px;
    }

    .fc-title {
        font-size: 1.25rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .popular {
        transform: none;
    }
}

@media (max-width: 991px) {

    /* Platform Highlights Responsive */
    .ph-container {
        flex-direction: column;
    }

    .ph-visuals {
        width: 100%;
        height: 50vh;
        top: 80px;
        z-index: 10;
        padding-top: 20px;
    }

    .ph-image-wrapper {
        width: 100%;
        aspect-ratio: 16/9;
    }

    .ph-content {
        width: 100%;
        padding: 10vh 0 30vh 0;
    }

    .ph-block {
        height: 80vh;
        padding-right: 0;
        text-align: center;
        align-items: center;
    }

    .ph-title {
        font-size: 2.2rem;
    }

    /* How it Works Responsive */
    .hiw-wrapper,
    .hiw-timeline {
        width: 100% !important;
        max-width: none !important;
        padding: 0 !important;
    }

    .hiw-timeline::before {
        left: 50% !important;
        transform: translateX(-50%) !important;
    }

    .hiw-step-number {
        display: none !important;
    }

    .hiw-step,
    .hiw-step:nth-child(odd),
    .hiw-step:nth-child(even) {
        display: flex !important;
        justify-content: center !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        margin-bottom: 40px;
    }

    .hiw-step-content {
        width: 90% !important;
        max-width: 500px !important;
        text-align: center !important;
        margin: 0 auto !important;
        padding: 25px !important;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }

    .hiw-step-content::after {
        display: none !important;
    }

    .section-title.dark {
        font-size: 2.6rem;
    }

    .ph-section-title {
        font-size: 2.6rem;
    }

    .dp-title {
        font-size: 2.6rem;
    }

    .dp-features {
        gap: 20px;
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-newsletter {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding-bottom: 40px;
        margin-bottom: 40px;
    }

    .footer-newsletter-form {
        max-width: 100%;
    }

    .contact-grid {
        gap: 20px;
    }

    .contact-card {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
        padding: 20px !important;
        gap: 20px !important;
    }

    .contact-icon {
        margin: 0 !important;
        width: 50px !important;
        height: 50px !important;
        min-width: 50px !important;
    }

    .contact-card h3 {
        margin-bottom: 2px !important;
        font-size: 1.1rem !important;
    }

    .home-contact {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-section {
        padding-bottom: 30px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: 35px;
    }

    .start-btn {
        padding: 14px 32px;
        font-size: 1.05rem;
        width: 100%;
        justify-content: center;
    }

    .hero-arrow {
        display: none;
    }

    .stats-row {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        justify-items: center;
    }

    .stat-item {
        justify-content: center;
        width: 100%;
    }

    .section-title.dark {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .ph-section-title {
        font-size: 2.2rem;
    }

    .Dashboard-Preview {
        padding: 60px 0 80px;
    }

    .dp-title {
        font-size: 2.2rem;
    }

    .dp-desc {
        font-size: 1rem;
    }

    .dp-features {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .dp-feat {
        max-width: none;
        width: 100%;
    }

    .dp-main-img {
        max-height: 350px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .pricing-card {
        padding: 30px 20px;
    }

    .plan-price {
        font-size: 2rem;
    }

    .pricing-title {
        font-size: 1.8rem;
    }

    .feature-card {
        padding: 20px;
    }

    .fc-title {
        font-size: 1.2rem;
    }

    .fc-desc {
        font-size: 0.95rem;
    }

    .footer-newsletter-text h2 {
        font-size: 1.6rem;
    }

    .footer-newsletter-form {
        flex-direction: column;
        border-radius: 20px;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
        gap: 12px !important;
    }

    .footer-newsletter-form input {
        width: 100% !important;
        height: auto !important;
        padding: 16px 25px !important;
        text-align: center;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 50px !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    .footer-newsletter-form button {
        width: 100% !important;
        height: auto !important;
        padding: 16px 32px !important;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50px !important;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        text-align: left !important;
        gap: 40px 20px !important;
    }

    .brand-col {
        grid-column: span 2 !important;
        text-align: center !important;
        margin-bottom: 20px;
    }

    .footer-col {
        align-items: flex-start !important;
    }

    .footer-col ul {
        padding: 0;
    }

    .home-contact {
        padding: 60px 0;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-card {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        text-align: left !important;
        padding: 15px 20px !important;
        gap: 15px !important;
        width: 100% !important;
        max-width: 340px !important;
        margin: 0 auto !important;
    }

    .contact-icon {
        margin: 0 !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
    }

    .contact-card h3 {
        margin-bottom: 2px !important;
        font-size: 1rem !important;
    }

    .contact-card p {
        font-size: 0.9rem !important;
    }

    .ph-block {
        height: 70vh;
    }

    .ph-title {
        font-size: 1.8rem;
    }

    .ph-desc {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section-title.dark {
        font-size: 1.8rem;
    }

    .ph-title {
        font-size: 1.6rem;
    }

    .ph-section-title {
        font-size: 1.8rem;
    }

    .dp-title {
        font-size: 1.8rem;
    }

    .footer-newsletter-text h2 {
        font-size: 1.4rem;
    }

    .plan-price {
        font-size: 1.8rem;
    }

    .contact-btn {
        width: 100%;
        padding: 14px 20px;
        text-align: center;
    }

    .footer-newsletter-form {
        flex-direction: column !important;
        gap: 12px !important;
        background: transparent !important;
        border: none !important;
        padding: 0 !important;
    }

    .footer-newsletter-form input {
        width: 100% !important;
        height: auto !important;
        padding: 16px 25px !important;
        text-align: center !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
        border-radius: 50px !important;
        display: block !important;
        box-sizing: border-box !important;
    }

    .footer-newsletter-form button {
        width: 100% !important;
        height: auto !important;
        padding: 16px 32px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50px !important;
    }
}

@media (max-width: 375px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title.dark {
        font-size: 1.6rem;
    }

    .ph-section-title {
        font-size: 1.6rem;
    }

    .dp-title {
        font-size: 1.6rem;
    }

    .pricing-title {
        font-size: 1.6rem;
    }

    .plan-price {
        font-size: 1.6rem;
    }

    .footer-newsletter-text h2 {
        font-size: 1.3rem;
    }

    .stat-number {
        font-size: 1.6rem !important;
    }

    .stat-label {
        font-size: 0.8rem !important;
    }

    .start-btn {
        width: calc(100% - 40px) !important;
        max-width: 335px !important;
        padding: 14px 20px !important;
        font-size: 0.95rem !important;
        margin: 0 auto !important;
        display: flex !important;
        justify-content: center !important;
    }
}

/* Subpage Hero mobile top padding override */
@media (max-width: 768px) {
    section[class*="-hero"] {
        padding-top: 60px !important;
    }
}