/* Zone 1: Discovery (Unified White) */
.more-features-section {
    background: #fff;
    padding: 80px 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    /* Dotted pattern removed as per request */
}

/* Scattered Icons for "More Features" - Smaller & More */
.more-features-section::before {
    content: '\f005 \00a0 \f0e7 \00a0 \f06b \00a0 \f091 \00a0 \f024 \00a0 \f128';
    /* Star, Bolt, Gift, Trophy, Flag, Question */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 2%;
    left: 2%;
    font-size: 1.5rem;
    /* Smaller size */
    color: var(--secondary-color);
    opacity: 0.15;
    transform: rotate(-15deg);
    pointer-events: none;
    letter-spacing: 80px;
    /* More scattered */
    width: 100%;
}

.more-features-section::after {
    content: '\f290 \00a0 \f53a \00a0 \f4c4 \00a0 \f201 \00a0 \f080 \00a0 \f1eb';
    /* Shopping Bag, Money Bill, File Invoice, Chart Line, Chart Bar, Wifi */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 2%;
    right: 2%;
    font-size: 1.8rem;
    /* Smaller size */
    color: var(--primary-color);
    opacity: 0.12;
    transform: rotate(10deg);
    pointer-events: none;
    letter-spacing: 90px;
    /* More scattered */
    width: 100%;
    text-align: right;
}

/* Add a middle layer of icons using the container's pseudo-elements? 
   Better to just add one more independent floating element using a child selector if needed, 
   but for now, let's decorate the container too. */
.more-features-container {
    position: relative;
    z-index: 1;
}

.more-features-container::before {
    content: '\f0ad';
    /* Wrench/Tools */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 40%;
    left: -5%;
    font-size: 6rem;
    color: #e2e8f0;
    transform: rotate(-20deg);
    z-index: -1;
}

.more-features-container::after {
    content: '\f0c3';
    /* Flask/Magic */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 40%;
    right: -5%;
    font-size: 6rem;
    color: #fef3c7;
    transform: rotate(20deg);
    z-index: -1;
}

.more-header {
    text-align: center;
    margin-bottom: 36px;
}

.more-header h2 {
    font-size: 2.4rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.more-header p {
    color: var(--text-light);
    font-size: 1.15rem;
}

.more-features-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.more-feature-card {
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 32px 24px 24px 24px;
    text-align: center;
    width: 300px;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.more-feature-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: var(--shadow-lg);
}

.more-feature-img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 18px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.07));
}

.more-feature-card h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.more-feature-card p {
    color: var(--text-light);
    font-size: 1rem;
}

.cost-saving-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    background: linear-gradient(90deg, #f3f0ff 60%, #fff 100%);
    border-radius: 18px;
    box-shadow: var(--shadow-lg);
    padding: 32px 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.cost-saving-img {
    width: 320px;
    max-width: 90vw;
    border-radius: 14px;
    object-fit: cover;
    box-shadow: var(--shadow-md);
}

.cost-saving-text {
    max-width: 420px;
}

.cost-saving-text h2 {
    color: var(--secondary-color);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.cost-saving-text p {
    color: var(--text-dark);
    font-size: 1.15rem;
}

.cost-saving-text .highlight {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 900px) {
    .more-features-grid {
        flex-direction: column;
        align-items: center;
    }

    .cost-saving-banner {
        flex-direction: column;
        gap: 18px;
        padding: 24px 10px;
    }

    .cost-saving-img {
        width: 90vw;
        max-width: 350px;
    }
}

/* Global Styles */
:root {
    --primary-color: #624be2;
    /* Brand Purple */
    --secondary-color: #ff914c;
    /* Brand Yellow */
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --bg-subtle-blue: linear-gradient(180deg, #ffffff 0%, #f6f4ff 100%);
    /* Tinted Purple */
    --bg-subtle-gray: #f8fafc;
    --bg-subtle-warm: #fffdf5;
    /* Tinted Warm Yellow */
    --bg-gradient-process: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
    --bg-gradient-cta: linear-gradient(180deg, #ffffff 0%, #e2e8f0 100%);

    /* Patterns */
    --pattern-dots: radial-gradient(#cbd5e1 1.5px, transparent 1.5px);
    --pattern-grid: linear-gradient(#e2e8f0 1px, transparent 1px), linear-gradient(90deg, #e2e8f0 1px, transparent 1px);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    --radius: 8px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%; /* Ensure full height for positioning context */
    /* Make this relative so absolute positioning works if needed inside */
    position: relative; 
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 60px; /* Adjust based on navbar height (70px) and padding */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 2.8rem; /* desktop spacing */
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background: var(--primary-color);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    transition: background 0.3s;
}

.btn-nav:hover {
    background: #4a38b5;
}

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    position: relative;
    height: auto;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 100px;
    padding-bottom: 40px;
    overflow: visible;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    color: var(--white);
    gap: 1.6rem;
    padding-top: 0;
}

.hero-intro {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 3rem;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    padding: 0.9rem 1.1rem;
    border-radius: 10px;
    width: 100%;
    max-width: 1100px;
    box-shadow: var(--shadow-md);
    margin: 0 auto;
}

.hero-logo {
    height: 140px;
    width: auto;
    object-fit: contain;
}

.hero-description {
    font-size: 1.05rem;
    line-height: 1.5;
    opacity: 0.95;
    flex: 1;
    min-width: 280px;
    max-width: 100%;
}

.hero-main {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    align-items: stretch;
    width: 100%;
    max-width: 1200px;
    gap: 1.4rem;
    margin: 0 auto;
    grid-auto-rows: 1fr;
}

.hero-column {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    padding: 1rem 1.2rem;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    height: 100%;
}

.hero-column-domestic {
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-column-international {
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-label {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    font-weight: 700;
}

.hero-text {
    flex: 1;
    max-width: none;
}

.hero-text-international h1 {
    font-size: 2.3rem;
    line-height: 1.2;
}

.hero-quote-btn {
    width: auto !important;
    align-self: flex-start;
    padding: 0.75rem 1.2rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.hero-text h1 {
    font-size: 3rem;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.hero-text h1 span {
    color: var(--secondary-color);
}

.hero-text p {
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
    opacity: 0.9;
    max-width: 500px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.stat i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.stat span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Booking Card */
.booking-card {
    background: var(--white);
    padding: 1.5rem 1.5rem 1.0rem 1.5rem; /* Reduced bottom padding */
    border-radius: var(--radius);
    width: 600px;
    max-width: 90vw;
    box-shadow: var(--shadow-lg);
    color: var(--text-dark);
    margin: 1rem auto 0;
    opacity: 1;
    transform: translateY(0) scaleY(1);
    transition: opacity 0.28s ease, transform 0.28s ease, max-height 0.32s ease, padding 0.24s ease, margin 0.24s ease;
    max-height: 1200px;
    overflow: hidden;
    transform-origin: top;
}

.booking-card-hidden {
    opacity: 0;
    transform: translateY(-14px) scaleY(0.95);
    pointer-events: none;
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 0;
}

/* booking-card always visible now */

.booking-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.booking-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.name-field {
    grid-column: 1 / -1;
}

.btn-primary {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-light);
}

.form-group label i {
    margin-right: 5px;
    color: var(--primary-color);
}

/* Remove default full width on button since grid handles it */
.btn-primary {
    width: 100%;
}

.form-group input,
.form-group select {
    width: 100%;
    /* Standardize height */
    height: 48px;
    padding: 0 0.8rem; /* Use flex alignment or line-height for vertical centering */
    line-height: 46px; /* height - borders */
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: #fff;
    box-sizing: border-box;
    /* Ensure select has bg */
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--primary-color);
    padding: 1rem;
    border: none;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

.btn-primary:hover {
    background: #e6ac00;
    transform: translateY(-2px);
}

/* Trust Bar */
.trust-bar {
    background: var(--bg-light);
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.trust-bar p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0.6;
    font-weight: 700;
    font-size: 1.2rem;
    color: #888;
}

/* Problem We Solve Section - Warm Tint */
.problem-section {
    background: var(--bg-subtle-warm);
    color: #1e293b;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* No overlay needed for white theme */
.problem-section::before {
    display: none;
}

.problem-container {
    max-width: 1100px;
    /* Wider for cards */
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.problem-header {
    text-align: center;
    margin-bottom: 4rem;
}

.problem-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 1rem;
    color: #0f172a;
    background: none;
    -webkit-text-fill-color: initial;
    text-shadow: none;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.problem-card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s, border-color 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #fff;
    border-color: #cbd5e1;
}

.problem-icon-wrapper {
    width: 64px;
    height: 64px;
    background: rgba(239, 68, 68, 0.15);
    /* Red tint */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.problem-icon {
    font-size: 1.5rem;
    color: #f87171;
    /* Red 400 */
}

.problem-card p {
    font-size: 1.2rem;
    color: #475569;
    line-height: 1.5;
    font-weight: 500;
}

/* Highlight inside card text */
.card-highlight {
    color: #0f172a;
    font-weight: 700;
}

.solution-highlight {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem;
    background: radial-gradient(circle at center, rgba(255, 192, 2, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
}

.solution-highlight h3 {
    font-size: 2.2rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.brand-text {
    color: var(--secondary-color);
    font-weight: 800;
}

.solution-highlight p {
    font-size: 1.4rem;
    color: #475569;
    font-weight: 400;
}

.benefit-highlight {
    color: #059669;
    /* Emerald 600 */
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.benefit-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
    opacity: 0.7;
}

/* Features Section - Subtle Gray + Dots (Icon Removed) */
.features {
    padding: 80px 0;
    background-color: var(--bg-subtle-gray);
    background-image: var(--pattern-dots);
    background-size: 24px 24px;
    position: relative;
    overflow: hidden;
}

/* Truck Icon removed */

.features::after {
    content: '';
    position: absolute;
    bottom: 10%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 192, 2, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    padding: 2rem;
    border-radius: var(--radius);
    background: var(--white);
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

/* Feature icon styles */
.feature-icon {
    width: 72px;
    height: 72px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.08));
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

/* Removed old .icon-box styles */

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Zone 3: Deep Dive (White + Wavy Pattern) */
.solutions-section {
    background: #fff;
    /* Wavy Pattern */
    background-image: radial-gradient(circle at 50% 100%, #f1f5f9 10%, transparent 11%), radial-gradient(circle at 50% 0%, #f1f5f9 10%, transparent 11%);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    padding: 80px 0;
    position: relative;
    border: none;
    overflow: hidden;
}

.solutions-header {
    text-align: center;
    margin-bottom: 4rem;
}

.solutions-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.solution-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    border: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.solution-icon-box {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #faf5ff 0%, #e9d5ff 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: var(--primary-color);
}

.solution-card.card-planned .solution-icon-box {
    background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
    color: var(--secondary-color);
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.solution-points {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    width: 100%;
}

.solution-points li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
}

.solution-points li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 0;
}

.solution-card.card-planned .solution-points li::before {
    color: var(--secondary-color);
}

.btn-link {
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.2s;
}

.btn-link:hover {
    gap: 12px;
    text-decoration: underline;
}

.solution-card.card-planned .btn-link {
    color: var(--secondary-color);
}

/* Process Section (How It Works) - Flow Gradient + Markers (Smaller & More) */
.process-section {
    background: var(--bg-gradient-process);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.process-section::before {
    content: '\f3c5 \00a0 \f48b \00a0 \f0d1 \00a0 \f024 \00a0 \f1b9';
    /* Marker, Clipboard List, Truck, Flag, Car Side */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 5%;
    left: 2%;
    font-size: 4rem;
    /* Smaller size */
    color: var(--secondary-color);
    opacity: 0.05;
    transform: rotate(15deg);
    pointer-events: none;
    letter-spacing: 120px;
    /* Scattered */
    width: 100%;
}

.process-section::after {
    content: '\f017 \00a0 \f274 \00a0 \f49e \00a0 \f124 \00a0 \f56f';
    /* Clock, Calendar Check, Route, Location Arrow, Map Signs */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: 5%;
    right: 2%;
    font-size: 5rem;
    /* Smaller size */
    color: var(--primary-color);
    opacity: 0.04;
    transform: rotate(-10deg);
    pointer-events: none;
    letter-spacing: 150px;
    /* Scattered */
    width: 100%;
    text-align: right;
}

.process-header {
    text-align: center;
    margin-bottom: 5rem;
}

.process-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.process-stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
    gap: 20px;
}

/* Connecting Line */
.process-stepper::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 50px;
    right: 50px;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.step-item {
    position: relative;
    z-index: 1;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    box-shadow: 0 0 0 8px #fff;
    /* Create visual gap for line */
    transition: transform 0.3s, background 0.3s, color 0.3s;
}

.step-item:hover .step-number {
    background: var(--secondary-color);
    color: #fff;
    transform: scale(1.1);
}

.step-content h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
    max-width: 220px;
    margin: 0 auto;
}

/* Mobile Responsiveness for Stepper */
@media (max-width: 768px) {
    .process-stepper {
        flex-direction: column;
        gap: 2rem;
        align-items: flex-start;
        padding-left: 20px;
    }

    .process-stepper::before {
        top: 0;
        bottom: 0;
        left: 44px;
        /* Center line through numbers */
        width: 2px;
        height: auto;
        right: auto;
    }

    .step-item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 1.5rem;
        width: 100%;
    }

    .step-number {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-content p {
        max-width: 100%;
        margin: 0;
    }
}

/* Excel-First Section - White */
.excel-section {
    background: #fff;
    padding: 80px 0;
    border-top: none;
}

.excel-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.excel-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.excel-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.excel-features li {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 1.2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Custom Checkmark Style */
.excel-features li::before {
    content: '\f00c';
    /* FontAwesome Check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #10b981;
    /* Green */
    background: #d1fae5;
    /* Light Green Bg */
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.micro-trust-line {
    font-size: 1rem;
    color: #64748b;
    font-style: italic;
    border-left: 3px solid #cbd5e1;
    padding-left: 1rem;
    margin-top: 1rem;
}

.excel-image-wrapper {
    position: relative;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    background: #fff;
    padding: 1rem;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.excel-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.excel-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

@media (max-width: 968px) {
    .excel-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .excel-features li {
        justify-content: center;
        text-align: left;
    }

    .micro-trust-line {
        border-left: none;
        border-top: 3px solid #cbd5e1;
        padding-left: 0;
        padding-top: 1rem;
        display: inline-block;
    }

    .excel-image-wrapper {
        transform: none;
        max-width: 600px;
        margin: 0 auto;
    }

    .excel-image-wrapper:hover {
        transform: none;
    }
}

/* Benefits Section - Subtle Gray + Dots + Rupee */
.benefits-section {
    background-color: var(--bg-subtle-gray);
    background-image: var(--pattern-dots);
    background-size: 24px 24px;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.benefits-section::before {
    content: '\f156';
    /* Rupee Sign */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-5deg);
    font-size: 35rem;
    color: #10b981;
    /* Emerald/Money Green */
    opacity: 0.02;
    pointer-events: none;
}



.benefits-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.benefits-header {
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    text-align: left;
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-container {
        padding: 0 20px;
    }

    .benefit-card {
        padding: 2rem 1.5rem;
    }
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    border-color: var(--secondary-color);
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-title i {
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.benefits-header h2 i {
    color: var(--secondary-color);
    margin-right: 15px;
}

.flex-header h2 i {
    color: #10b981;
    margin-right: 15px;
}

.trust-header h2 i {
    color: var(--primary-color);
    margin-right: 15px;
}

.benefit-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.benefit-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.benefit-list li {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefit-list li::before {
    content: '•';
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -2px;
    line-height: 1;
}

.benefit-list li:last-child {
    margin-bottom: 0;
}

/* Flexibility Section - White */
.flexibility-section {
    background-color: #fff;
    padding: 80px 0;
    text-align: center;
    border: none;
}

.flexibility-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
}

.flex-header {
    margin-bottom: 3rem;
}

.flex-header h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.flex-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    margin-bottom: 4rem;
}

.flex-point {
    background: #f8fafc;
    padding: 1rem 1.8rem;
    border-radius: 50px;
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s, border-color 0.2s;
}

.flex-point:hover {
    transform: translateY(-2px);
    border-color: #cbd5e1;
    background: #fff;
}

.flex-point::before {
    content: '\f00c';
    /* Check icon */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #10b981;
    font-size: 1rem;
}

.flex-highlight {
    font-size: 1.8rem;
    font-family: 'Georgia', serif;
    /* Serif for "quote" feel */
    font-style: italic;
    color: #475569;
    line-height: 1.4;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

/* Trust & Compliance Section - Warm Tint + Grid + Shield */
.trust-section {
    background-color: var(--bg-subtle-warm);
    background-image: var(--pattern-grid);
    background-size: 40px 40px;
    padding: 80px 0;
    border: none;
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '\f3ed';
    /* Shield */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    bottom: -10%;
    right: -5%;
    font-size: 25rem;
    color: #475569;
    opacity: 0.03;
    pointer-events: none;
}

.trust-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
}

.trust-header {
    margin-bottom: 4rem;
}

.trust-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #fff;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: left;
}

.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.trust-icon-wrapper {
    width: 50px;
    height: 50px;
    background: #faf5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon-wrapper i {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.trust-text {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Final CTA Section - Stronger Gradient */
.final-cta-section {
    background: var(--bg-gradient-cta);
    padding: 80px 0;
    text-align: center;
    color: #0f172a;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #f1f5f9;
}

/* Subtle background pattern overlay if desired, similar to problem section */
.final-cta-section::before {
    display: none;
}

.final-cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.final-cta-content h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    line-height: 1.2;
    color: #0f172a;
}

.final-cta-content p {
    font-size: 1.5rem;
    color: #64748b;
    margin-bottom: 4rem;
    font-weight: 300;
}

.final-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.btn-cta {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Primary Button (Weekly) */
.btn-cta-primary {
    background: #0f172a;
    color: #fff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    background: #1e293b;
}

/* Secondary Button (Talk) */
.btn-cta-secondary {
    background: transparent;
    border: 2px solid #0f172a;
    color: #0f172a;
}

.btn-cta-secondary:hover {
    background: #f1f5f9;
    color: #000;
}

/* Tertiary Button (Instant) */
.btn-cta-tertiary {
    background: #f1f5f9;
    color: #475569;
}

.btn-cta-tertiary:hover {
    background: #e2e8f0;
    color: #0f172a;
}

@media (max-width: 768px) {
    .final-cta-content h2 {
        font-size: 2.2rem;
    }

    .final-cta-content p {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }

    .final-cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

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

/* App Download Section - Subtle Blue Flow + Sparkles */
.app-download {
    background: var(--bg-subtle-blue);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Sparkle/Confetti Effect */
.app-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(#a78bfa 2px, transparent 2px), radial-gradient(#ff914c 2px, transparent 2px);
    background-size: 60px 60px;
    background-position: 0 0, 30px 30px;
    opacity: 0.15;
    pointer-events: none;
}

.app-download::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
}



.app-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
}

.app-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    /* Use order to place it on the left if HTML order is text-first, 
       but we will restructure HTML to put visual first or use flex-direction row-reverse if needed.
       The plan is to restructure HTML, so standard order is fine. */
}

.phone-and-qr {
    position: relative;
    /* Removed the previous CSS-only mockup styles effectively by replacing the image content */
}

/* Mockup Image styling */
.app-mockup-img {
    max-width: 420px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.app-mockup-img:hover {
    transform: rotate(0deg);
}

.app-text {
    flex: 1;
    color: var(--text-dark);
}

.app-text h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    color: #000;
}

.promo-text {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.brand-text-large {
    color: #000;
    font-weight: 900;
    font-size: 2rem;
    display: block;
    margin-top: 5px;
}

.download-area {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.qr-box-new {
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 10px;
    background: #fff;
    text-align: center;
}

.qr-img-new {
    width: 120px;
    height: 120px;
    display: block;
    margin-bottom: 5px;
}

.qr-label {
    background: var(--primary-color);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

.store-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.store-heading {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    display: block;
}

.btn-store-black {
    background: #000;
    color: #fff;
    border: 1px solid #000;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    width: fit-content;
}

.btn-store-black i {
    font-size: 1.4rem;
}

.btn-store-black:hover {
    background: #333;
    transform: translateY(-2px);
}

.btn-store-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.1;
}

.btn-store-text span:first-child {
    font-size: 0.65rem;
    text-transform: uppercase;
}

.btn-store-text span:last-child {
    font-size: 1rem;
    font-weight: 600;
}


@media (max-width: 900px) {
    .app-container {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }

    .download-area {
        flex-direction: column;
        align-items: center;
    }

    .store-links {
        align-items: center;
    }

    .app-visual {
        order: -1;
    }
}

/* FAQ Section - White */
.faq-section {
    padding: 80px 0;
    background-color: #fff;
}

.faq-container {
    max-width: 800px;
    /* Narrower container for better readability */
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item[open] {
    box-shadow: var(--shadow-md);
}

.faq-item summary {
    padding: 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    list-style: none;
    /* Remove default triangle */
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    background-color: rgba(0, 0, 0, 0.01);
}

.faq-item summary::after {
    content: '\f078';
    /* FontAwesome chevron down */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    font-size: 0.9rem;
    color: var(--primary-color);
    transition: transform 0.3s;
}

.faq-item[open] summary::after {
    transform: rotate(180deg);
}

.faq-item[open] summary {
    border-bottom: 1px solid #eee;
    color: var(--primary-color);
}

.faq-answer {
    padding: 1.5rem;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
    animation: fadeIn 0.3s ease-in-out;
}

.faq-answer ul,
.faq-answer ol {
    margin-left: 1.5rem;
    margin-top: 0.8rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
}

.faq-answer strong {
    color: var(--text-dark);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }

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

/* Footer */
footer {
    background: #000;
    color: #888;
    padding: 3rem 0;
    text-align: center;
}

.footer-compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand img {
    height: 190px; /* Increased Size */
    width: auto;
    opacity: 0.9;
}

.footer-brand p {
    font-size: 0.9rem;
    color: #aaa;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.footer-links a {
    color: #ddd;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-social {
    display: flex;
    gap: 1.2rem;
}

.footer-social a {
    color: #fff;
    font-size: 1.2rem;
    transition: color 0.3s, transform 0.2s;
    opacity: 0.8;
}

.footer-social a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
    opacity: 1;
}

.footer-copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    padding-top: 1.5rem;
    margin-top: 1rem;
    font-size: 0.85rem;
    color: #666;
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        height: auto; /* Allow content to expand */
        min-height: 100vh;
        padding-top: 100px; /* More space for navbar */
        padding-bottom: 50px; /* Space at bottom */
        overflow: visible; /* Prevent clipping */
    }

    .hero-content {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .hero-intro {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        box-shadow: none;
        background: rgba(0, 0, 0, 0.3);
        padding: 1.1rem 1.25rem;
    }

    .hero-description {
        text-align: center;
    }

    .hero-logo {
        height: 100px;
    }

    .hero-main {
        grid-template-columns: 1fr;
        width: 100%;
        grid-auto-rows: auto;
        align-items: start;
    }

    .hero-column {
        height: auto;
    }

    .hero-text {
        margin-bottom: 2rem;
    }

    .hero-stats {
        justify-content: center;
    }

    .booking-card {
        width: 100%;
        max-width: 100%;
        padding: 1.2rem; /* Reduce padding on mobile */
    }

    .booking-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .booking-form {
        display: flex;
        flex-direction: column;
        gap: 0.8rem; /* Slightly tighter gap */
    }

    .app-container {
        flex-direction: column;
        text-align: center;
    }

    .app-buttons {
        justify-content: center;
        margin-bottom: 3rem;
    }

    .footer-compact {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%; /* Full width for better mobile experience */
        left: 0;
        right: 0;
        background: var(--white);
        position: absolute;
        top: 70px; /* Adjusted to sit right below nav */
        padding: 15px 20px; /* Add space container top/bottom */
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        text-align: center;
        z-index: 1001;
        border-top: 1px solid rgba(0,0,0,0.05); /* Separator from header */
        gap: 0; /* reset gap for mobile stack */
    }

    .nav-links.active {
        display: flex;
        animation: slideInDown 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    }
    
    @keyframes slideInDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .nav-links li {
        width: 100%;
        margin: 5px 0; /* consistent small gap between items */
    }
    
    .nav-links a {
        display: block;
        padding: 10px; /* Comfortable touch target but not huge */
        font-size: 1rem;
        color: var(--text-dark);
        border-radius: 8px;
        transition: all 0.2s;
    }
    
    .nav-links .btn-nav {
        margin-top: 10px; /* Separation for the CTA button */
        background: var(--primary-color); 
        color: white !important;
        width: 100%;
        padding: 12px;
    }
    
    .nav-links a:hover {
        background: var(--bg-light);
        color: var(--primary-color);
        transform: translateX(5px);
    }

    .hamburger {
        display: block;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    /* Footer brand image sizing for mobile */
    .footer-brand img {
        height: 120px;
        max-width: 70vw;
        width: auto;
        object-fit: contain;
    }
}

/* Onboarding Page Styles */
.onboarding-page {
    /* Neutral dark overlay to let image colors pop (Warm lights, etc.) */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
        url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?q=80&w=2940&auto=format&fit=crop');
    /* Warehouse/Shipping Container image with more varied colors */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    font-family: 'Inter', sans-serif;
}

/* Removed Blue Orb to avoid "fully blue" look */
.bg-orb {
    display: none;
}

@keyframes pulseOrb {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

.onboarding-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 100px 20px 40px;
    /* Top padding to clear navbar */
    position: relative;
    z-index: 1;
}

.onboarding-image,
.onboarding-image img,
.onboarding-image .overlay,
.onboarding-text {
    display: none;
    /* Removed in HTML, ensuring clean CSS too */
}

.onboarding-form-wrapper {
    flex: 0 1 500px;
    /* Fixed width basis */
    width: 100%;
    max-width: 500px;
    /* White Liquid Glass Effect */
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.4);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h2 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.form-header p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.onboarding-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

/* Phone Input Group Styles (Scoped to Onboarding Form) */
.onboarding-form .phone-input-group {
    display: flex;
    gap: 0.5rem;
}

.onboarding-form .static-country-code {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0 1rem;
    border-radius: 8px;
    font-weight: 600;
    min-width: 60px;
    white-space: nowrap;
}

/* Ensure phone input matches other inputs specifically */
.onboarding-form .phone-input-group input {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    width: 100%;
    font-size: 1rem;
    transition: all 0.3s;
    /* Flex grow to fill space */
    flex: 1;
}

.onboarding-form .phone-input-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 10px rgba(98, 75, 226, 0.2);
}

.onboarding-form select,
.onboarding-form input {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    width: 100%;
    font-size: 1rem;
    transition: all 0.3s;
}

.onboarding-form select:focus,
.onboarding-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 10px rgba(98, 75, 226, 0.2);
}

.onboarding-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Fix for autofill background color */
.onboarding-form input:-webkit-autofill,
.onboarding-form input:-webkit-autofill:hover,
.onboarding-form input:-webkit-autofill:focus,
.onboarding-form input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #0a1120 inset !important;
    -webkit-text-fill-color: white !important;
}

.btn-block {
    width: 100%;
    margin-top: 1rem;
}

/* Responsive Onboarding */
@media (max-width: 900px) {
    .onboarding-image {
        display: none;
    }
}

@media (max-width: 600px) {
    .onboarding-container {
        padding-top: 80px;
    }

    .onboarding-form-wrapper {
        padding: 1.5rem;
        width: 100%;
    }
}

/* Services Section Styles - White */
.services-section {
    padding: 80px 0;
    background: #fff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-img-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s;
}

.service-img-card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-img-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.card-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.text-link {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 5rem 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid #eee;
}

.user-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.user-profile img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.user-profile h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.user-profile span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.stars {
    color: var(--secondary-color);
}

/* Partner Benefits (Onboarding) */
.partner-benefits {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.partner-benefits h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.partner-benefits .benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 equal columns */
    gap: 1rem;
    text-align: center;
}

.benefit-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.benefit-item i {
    font-size: 1.2rem;
    color: #fff;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s;
}

.benefit-item:hover i {
    transform: translateY(-3px);
}

.benefit-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.3;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    /* background: radial-gradient(circle at center, rgba(98, 75, 226, 0.04) 0%, rgba(255, 255, 255, 1) 100%); */
    background: rgba(98, 75, 226, 0.1);
    position: relative;
    border-top: 1px solid #eee;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    align-items: center;
}

.contact-info-col h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.contact-info-col p.subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center; /* Center icon and link vertically */
    gap: 1.5rem;
}

.icon-box {
    width: 50px;
    height: 50px;
    background: rgba(98, 75, 226, 0.1);
    /* Primary color low opacity */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.item-content h4 {
    font-size: 1.1rem;
    color: var(--text-dark);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.item-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.5;
}

/* Make contact links look like clickable pills */
.contact-details a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    min-height: 50px; /* Match icon box height */
    background: rgba(98, 75, 226, 0.08);
    border: 1px solid rgba(98, 75, 226, 0.2);
    border-radius: 10px;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-details a:hover {
    background: rgba(98, 75, 226, 0.14);
    border-color: rgba(98, 75, 226, 0.4);
    color: var(--primary-color);
    transform: translateY(-1px);
}

.contact-form-wrapper {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    /* Stronger shadow for lift */
    border: 1px solid #f0f0f0;
}

.contact-form-wrapper h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-form-simple {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-form-simple input,
.contact-form-simple textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-size: 1rem;
    background: #f8fafc;
    transition: all 0.3s;
    font-family: inherit;
}

.contact-form-simple textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form-simple input:focus,
.contact-form-simple textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(98, 75, 226, 0.1);
}

.btn-contact-submit {
    background: var(--text-dark);
    /* Black/Dark Button */
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    margin-top: 0.5rem;
}

.btn-contact-submit:hover {
    background: #000;
    transform: translateY(-2px);
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }
}.form-message {
    /* margin-top: 15px; Removed to fix spacing */
    font-size: 1rem;
    grid-column: 1 / -1; /* Full width in grid */
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius);
    padding: 0;
    /* Hide message by default to avoid grid gaps */
    display: none; 
    text-align: center;
    font-weight: 600;
}

.form-message.success,
.form-message.error {
    display: block; /* Show when active */
    margin-top: 10px; /* Reduced margin */
    padding: 0.8rem; /* Slightly reduced padding */
    opacity: 1; /* Reset opacity too, though display handles visibility */
    max-height: none; /* Allow height */
}

.form-message.success {
    background-color: #dcfce7; /* Green 100 */
    border: 1px solid #22c55e; /* Green 500 */
    color: #15803d; /* Green 700 */
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4); /* Green Glow */
}

.form-message.error {
    padding: 1rem;
    background-color: #fee2e2;
    border: 1px solid #ef4444;
    color: #b91c1c;
    box-shadow: 0 0 15px rgba(239, 68, 68, 0.2);
    opacity: 1;
    max-height: 150px;
}

/* Custom Autocomplete Dropdown */
.custom-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 0 0 8px 8px; /* Rounded bottom corners */
    max-height: 200px; /* Scrollable fixed height */
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    list-style: none;
    padding: 0;
    margin: 0;
    display: none; /* Hidden by default */
}

.custom-dropdown.show {
    display: block;
    animation: fadeInDropdown 0.2s ease-out;
}

@keyframes fadeInDropdown {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.custom-dropdown li {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    color: var(--text-dark);
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.2s, padding-left 0.2s;
}

.custom-dropdown li:last-child {
    border-bottom: none;
}

.custom-dropdown li:hover, .custom-dropdown li.active {
    background-color: var(--bg-subtle-blue) !important; /* Use site's subtle blue/purple background */
    color: var(--primary-color);
    padding-left: 1.25rem; /* Slight shift effect */
    font-weight: 500;
}

/* Scrollbar Styling for Dropdown */
.custom-dropdown::-webkit-scrollbar {
    width: 6px;
}

.custom-dropdown::-webkit-scrollbar-track {
    background: #f1f5f9;
}

.custom-dropdown::-webkit-scrollbar-thumb {
    background-color: #cbd5e1;
    border-radius: 4px;
}

.custom-dropdown::-webkit-scrollbar-thumb:hover {
    background-color: #94a3b8;
}

/* Price Popup Styles */
.price-popup {
    grid-column: 1 / -1; /* Spans full width */
    background: #f0fdf4; /* Green 50 */
    border: 1px solid #22c55e; /* Green 500 */
    color: #15803d; /* Green 700 */
    padding: 1rem;
    border-radius: var(--radius);
    /* margin-bottom: 1rem; */
    margin-top: 1rem; /* Space above, not below to avoid form spacing issues */
    font-weight: 600;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.3s ease-out;
}

.price-popup.error-price {
    background: #fef2f2; /* Red 50 */
    border: 1px solid #ef4444; /* Red 500 */
    color: #b91c1c; /* Red 700 */
}

/* Phone Input Group (Homepage/Booking Form) */
.booking-form .phone-input-group {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    background-color: #fff;
    padding: 0;
    overflow: hidden;
    transition: border-color 0.3s;
    /* Match standard input height */
    height: 48px;
    width: 100%;
    box-sizing: border-box;
}

.booking-form .phone-input-group:focus-within {
    border-color: var(--primary-color);
}

.booking-form .phone-prefix {
    /* Auto width + full height */
    height: 100%;
    padding: 0 0.8rem;
    background-color: #f8f9fa;
    color: var(--text-light);
    font-weight: 500;
    border-right: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    box-sizing: border-box;
    white-space: nowrap;
}

.booking-form .phone-input-group input {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    /* padding: 0.6rem 0.8rem; Removed padding for height alignment */
    /* Only horizontal padding */
    padding: 0 0.8rem;
    
    /* Flexbox sizing instead of fixed width */
    flex: 1;
    min-width: 0; /* Allow shrinking */
    width: auto;

    height: 100%;
    line-height: normal; /* Let flex centering handle it */
    background: transparent;
    box-sizing: border-box;
    color: var(--text-dark); /* Ensure text is visible */
}

/* Form Actions */
.form-actions {
    grid-column: 1 / -1;
    display: flex;
    gap: 1rem;
    margin-top: 1rem; 
    margin-bottom: 0.5rem; /* Reduced bottom margin */
}

.form-actions button {
    height: 100%; /* Match heights */
}

#quoteSubmitBtn {
    flex: 3; /* Allows taking full width if alone, or 3/4 if shared */
    width: 100%;
}

#quoteResetBtn {
    flex: 1;
    display: none; /* Hidden by default */
}

@media (max-width: 480px) {
    .form-actions {
        flex-direction: column;
    }
    
    #quoteResetBtn {
         flex: unset;
         width: 100%;
    }
}

.btn-secondary {
    background: #e2e6ea;
    color: var(--text-dark);
    padding: 1rem;
    border: 1px solid #ced4da;
    border-radius: var(--radius);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    text-align: center;
}

.btn-secondary:hover {
    background: #dbe0e5;
    transform: translateY(-2px);
}

/* =========================================
   Loading Screen Styles
   ========================================= */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    z-index: 9999;
    /* Ensure child absolute elements are relative to this */
    position: fixed; 
    display: flex;
    justify-content: center;
    align-items: center;
    /* Changed to customized bezier for faster exit */
    transition: opacity 0.5s cubic-bezier(0.6, 0.04, 0.98, 0.335), visibility 0.5s cubic-bezier(0.6, 0.04, 0.98, 0.335);
    overflow: hidden; /* Hide overflow from moving icons */
}

/* Background Icons */
.loader-bg-icons {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    z-index: 0;
    pointer-events: none;
}

.loader-bg-icons i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--secondary-color);
    opacity: 0; /* Start hidden */
    font-size: 2rem; /* Default size */
    will-change: transform, opacity;
}

/* Specific styling is now handled by JS for randomness */

@keyframes expandIcons {
    0% {
        opacity: 0;
        transform: translate(calc(-50% + var(--sx)), calc(-50% + var(--sy))) scale(0.5);
    }
    40% {
        opacity: 0.8; /* Highly visible */
    }
    100% {
        opacity: 0.15; /* Settle */
        transform: translate(calc(-50% + var(--tx)), calc(-50% + var(--ty))) rotate(var(--rot)) scale(var(--scale));
    }
}

.loader-content {
    text-align: center;
    position: relative;
    z-index: 1; /* Keep text above icons */
}

.loader-text {
    font-family: 'Inter', sans-serif;
    font-size: 5rem; /* Increased size */
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 5px;
    display: flex;
    gap: 5px;
}

/* X in yellow - based on structure F.A.R.T.Y.X. */
.loader-text span:nth-child(11) {
    color: var(--secondary-color);
}

/* Animation for letters */
.loader-text span {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px); /* Increased movement */
    animation: fadeInUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards; /* Faster & Bouncy */
}

/* Staggered animation delay - Sped up by 2x */
.loader-text span:nth-child(1) { animation-delay: 0.05s; }
.loader-text span:nth-child(2) { animation-delay: 0.1s; }  /* . */
.loader-text span:nth-child(3) { animation-delay: 0.15s; }  /* A */
.loader-text span:nth-child(4) { animation-delay: 0.2s; }  /* . */
.loader-text span:nth-child(5) { animation-delay: 0.25s; }  /* R */
.loader-text span:nth-child(6) { animation-delay: 0.3s; }  /* . */
.loader-text span:nth-child(7) { animation-delay: 0.35s; }  /* T */
.loader-text span:nth-child(8) { animation-delay: 0.4s; }  /* . */
.loader-text span:nth-child(9) { animation-delay: 0.45s; }  /* Y */
.loader-text span:nth-child(10) { animation-delay: 0.5s; } /* . */
.loader-text span:nth-child(11) { animation-delay: 0.55s; } /* X */
.loader-text span:nth-child(12) { animation-delay: 0.6s; } /* . */

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

/* Gentle floating for the whole text container */
.loader-text {
    animation: textFloat 3s ease-in-out infinite;
}

@keyframes textFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Optional loading bar */
.loader-bar {
    width: 0;
    height: 4px;
    background: var(--secondary-color); /* Assuming variable exists */
    margin: 20px auto 0;
    border-radius: 2px;
    animation: loadBar 1.5s ease-in-out forwards;
}

@keyframes loadBar {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Class to hide the loader */
.loader-hidden {
    opacity: 0;
    visibility: hidden;
}

/* Response Fixes for Loader */
@media screen and (max-width: 768px) {
    .loader-text {
        font-size: 8vw; /* Responsive scaling based on viewport width */
        letter-spacing: 2px;
        gap: 0; /* Remove gap to fit */
        flex-wrap: nowrap; /* Force single line */
        justify-content: center;
        width: 100%; /* Ensure container takes width */
    }
    
    .loader-text span {
        margin: 0 1px; /* Tiny margin instead of gap */
    }

    .loader-bar {
        width: 60%; /* Smaller bar */
        margin-top: 15px;
    }
}
