:root {
    /* Colors */
    --primary: #f86b30;
    --primary-dark: #d65a26;
    --bg-dark: #0a0a0a;
    --bg-card: #1a1a1a;
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --border-color: #333333;

    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --container-width: 1280px;
    --section-padding: 120px;
}

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

html {
    font-size: 16px;
    /* scroll-behavior: smooth; - Removed to avoid conflict with Lenis */
}

body {
    background-color: transparent;
    /* Moved to .hero-bg */
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    -webkit-font-smoothing: antialiased;
}

html {
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.2;
    overflow-wrap: break-word;
    word-wrap: break-word;
    hyphens: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: none;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(248, 107, 48, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 1px solid var(--text-main);
    color: var(--text-main);
    margin-left: 16px;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.preloader-logo {
    width: 100vw;
    height: 100vh;
    max-width: none;
    object-fit: cover;
    /* Fills the screen, cropping if necessary */
    margin: 0;
    padding: 0;
    opacity: 0;
    filter: drop-shadow(0 0 50px rgba(248, 107, 48, 0.4));
    /* Animated via JS */
}

.counter {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
    /* Changed to white for better contrast on potentially covered bg */
    letter-spacing: 2px;
    z-index: 10;
    /* Ensure it stays on top of the giant logo */
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    transition: all 0.3s ease;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 48px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.logo img:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(248, 107, 48, 0.3);
    border-color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-hidden {
    display: inline-flex;
    padding: 10px 24px;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 101;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    transition: all 0.3s ease;
}

/* Hamburger Animation */
.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);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    /* Increased from 80px */
    padding-bottom: 80px;
    /* Added bottom padding */
    overflow: hidden;
    /* background: radial-gradient(circle at 50% 50%, #1a1a1a 0%, #0a0a0a 100%); - Removed for canvas visibility */
}

.hero-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background-color: var(--bg-dark);
}

#bg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    filter: blur(80px);
    /* CSS Blur for performance */
    opacity: 0.8;
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    opacity: 0.07;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.badge-container {
    margin-bottom: 30px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.badge::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
}

.hero-title {
    font-size: 5.5rem;
    line-height: 1.05;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.hero-title .line {
    display: block;
    overflow: hidden;
    /* For text reveal animation */
}

.highlight {
    color: transparent;
    background: linear-gradient(to right, #fff, #a1a1aa);
    -webkit-background-clip: text;
    background-clip: text;
    position: relative;
}

.highlight::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: var(--primary);
    z-index: -1;
    opacity: 0.3;
    transform: skewX(-20deg);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 50px;
    max-width: 550px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
}

.hero-visual {
    position: relative;
    perspective: 1000px;
}

.image-mask {
    width: 100%;
    height: 600px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    transform: rotate(-3deg) translateZ(0);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.hero-visual:hover .image-mask {
    transform: rotate(0deg) scale(1.02);
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 0.5s ease;
}

.floating-card {
    position: absolute;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 18px 28px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.floating-card i {
    color: var(--primary);
    font-size: 1.8rem;
    background: rgba(248, 107, 48, 0.1);
    padding: 10px;
    border-radius: 12px;
}

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

.card-1 {
    top: 15%;
    left: -40px;
}

.card-2 {
    bottom: 20%;
    right: -40px;
}

/* Trust Ticker */
.trust-ticker {
    padding: 60px 0;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.trust-ticker::before,
.trust-ticker::after {
    content: '';
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.trust-ticker::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.trust-ticker::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.ticker-track {
    display: inline-flex;
    animation: scroll 30s linear infinite;
}

.ticker-item {
    font-size: 2rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    margin: 0 60px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    cursor: default;
}

.ticker-item:hover {
    color: var(--primary);
    -webkit-text-stroke: 1px var(--primary);
    text-shadow: 0 0 20px rgba(248, 107, 48, 0.5);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Services Section */
.services {
    padding: 160px 0;
    /* background: radial-gradient(circle at 50% 0%, #111 0%, #0a0a0a 100%); - Removed for canvas visibility */
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 3.5rem;
    margin-bottom: 24px;
    background: linear-gradient(to bottom, #fff, #666);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.2rem;
    line-height: 1.6;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 350px);
    gap: 30px;
}

.bento-card {
    background: rgba(40, 40, 40, 0.6);
    /* Increased opacity */
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    /* Slightly brighter border */
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.bento-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.bento-card:hover::before {
    opacity: 1;
}

.card-large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(30, 30, 30, 0.6), rgba(10, 10, 10, 0.8));
}

.card-medium {
    grid-column: span 1;
}

.card-wide {
    grid-column: span 3;
    height: auto;
    min-height: 250px;
    flex-direction: row;
    align-items: center;
    gap: 40px;
}

.card-content {
    position: relative;
    z-index: 2;
}

.card-content h3 {
    font-size: 1.8rem;
    margin: 24px 0 12px;
    font-weight: 600;
}

.card-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.icon-large {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(248, 107, 48, 0.3));
}

.icon-medium {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
    display: inline-block;
}

.visual-1 {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 300px;
    height: 300px;
    background: url('https://images.unsplash.com/photo-1580674684081-7617fbf3d745?q=80&w=1974&auto=format&fit=crop');
    /* Box/Package image */
    background-size: cover;
    border-radius: 20px;
    opacity: 0.5;
    transform: rotate(-10deg);
    transition: transform 0.5s ease;
    mix-blend-mode: overlay;
}

.bento-card:hover .visual-1 {
    transform: rotate(0deg) scale(1.1);
    opacity: 0.8;
}

/* Why Us */
.why-us {
    padding: 160px 0;
    /* background: #0f0f0f; - Removed for canvas visibility */
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-text .section-title {
    font-size: 3rem;
    text-align: left;
    margin-bottom: 20px;
    background: linear-gradient(to right, #fff, #999);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.why-text p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 1.15rem;
    padding: 16px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease, background 0.3s ease;
}

.feature-list li:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.feature-list i {
    color: var(--primary);
    font-size: 1.6rem;
    background: rgba(248, 107, 48, 0.1);
    padding: 8px;
    border-radius: 50%;
}

.why-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.stat-item:hover::after {
    opacity: 1;
}

.stat-number {
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-main);
    font-family: var(--font-heading);
    line-height: 1;
    display: inline-block;
}

.stat-symbol {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
}

.stat-label {
    display: block;
    color: var(--text-muted);
    margin-top: 12px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Recruitment */
.recruitment {
    padding: 160px 0;
    position: relative;
    overflow: hidden;
}

.recruitment::before {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(248, 107, 48, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
}

.recruitment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.recruitment-content .section-title {
    text-align: left;
    font-size: 3.5rem;
    margin-bottom: 24px;
}

.recruitment-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0 50px;
}

.benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.benefit-item i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.benefit-item span {
    font-weight: 600;
    font-size: 1rem;
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

.recruitment-visual {
    position: relative;
}

.recruitment-visual::before {
    content: '';
    position: absolute;
    inset: -20px;
    border: 2px solid var(--primary);
    border-radius: 40px;
    opacity: 0.3;
    transform: rotate(-5deg);
    z-index: -1;
}

.driver-img {
    border-radius: 30px;
    transform: rotate(3deg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.recruitment-visual:hover .driver-img {
    transform: rotate(0deg) scale(1.02);
}

/* FAQ */
.faq {
    padding: 160px 0;
    max-width: 900px;
    margin: 0 auto;
}

.faq .section-title {
    margin-bottom: 60px;
}

.accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background: rgba(30, 30, 30, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
}

.accordion-header {
    width: 100%;
    padding: 24px 32px;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.2rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-heading);
}

.accordion-header i {
    transition: transform 0.3s ease;
    color: var(--primary);
}

.accordion-header.active i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    color: var(--text-muted);
}

.accordion-content p {
    padding: 0 32px 32px;
    line-height: 1.6;
}

/* Footer */
.footer {
    padding: 100px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: #050505;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
    align-items: flex-start;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    width: 180px;
    margin-bottom: 24px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.footer-logo:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(248, 107, 48, 0.2);
    border-color: var(--primary);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    gap: 100px;
}

.footer-col h4 {
    margin-bottom: 30px;
    color: var(--text-main);
    font-size: 1.2rem;
}

.footer-col a,
.footer-col p {
    display: block;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary);
    transform: translateX(5px);
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .card-large {
        grid-column: span 2;
    }

    .card-wide {
        grid-column: span 2;
    }

    .why-grid,
    .recruitment-container {
        gap: 50px;
    }
}

/* Desktop optimization for decorative image - screens larger than 1024px */
@media (min-width: 1025px) {
    .bento-grid {
        grid-template-rows: auto auto;
        /* Let rows size naturally instead of fixed 350px */
    }

    .deco-grocery-standalone {
        max-width: 100%;
        /* Take full width of container */
        width: 100%;
    }

    .bento-deco-image {
        padding: 20px;
        /* Reduce padding */
        padding-top: 20px;
        /* Much less top padding on desktop */
        min-height: auto;
        /* Remove min-height constraint */
        align-items: center;
        /* Center the image */
    }

    /* Ensure cards don't stretch too tall */
    .card-medium {
        max-height: 400px;
    }
}


@media (max-width: 768px) {

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
        z-index: 99;
        display: flex;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.5rem;
    }

    .mobile-hidden {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
        /* Reduced from 2.5rem to fit long words */
    }

    /* Fix Floating Cards on Mobile */
    .floating-card {
        position: relative;
        top: auto;
        left: auto;
        right: auto;
        bottom: auto;
        margin: 10px auto;
        transform: none !important;
        /* Disable hover/float effects that might cause overflow */
        max-width: 80%;
    }

    .card-1,
    .card-2 {
        display: inline-flex;
        /* Center them */
    }

    .hero-visual {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .ticker-item {
        margin: 0 30px;
        font-size: 1.5rem;
    }

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

    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .bento-deco-image {
        padding-top: 40px;
        min-height: 300px;
        align-items: center;
    }

    .deco-grocery-standalone {
        max-width: 300px;
        transform: rotate(0deg);
    }

    .card-large,
    .card-medium,
    .card-wide {
        grid-column: span 1;
    }

    .why-grid,
    .recruitment-container {
        grid-template-columns: 1fr;
    }

    .why-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .why-text,
    .recruitment-content {
        text-align: center;
    }

    .why-text .section-title,
    .recruitment-content .section-title {
        text-align: center;
    }

    .feature-list {
        text-align: left;
        display: inline-block;
    }

    .footer-top {
        flex-direction: column;
        gap: 60px;
    }

    .footer-links {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
    }
}

/* Service Features List */
.service-features {
    margin-top: 20px;
    padding: 0;
    list-style: none;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.service-features i {
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}

/* Partnership Process / How It Works */
.how-it-works {
    padding: 160px 0;
    /* background: radial-gradient(circle at 50% 50%, #111 0%, #0a0a0a 100%); - Removed for canvas visibility */
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-card {
    background: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.process-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(248, 107, 48, 0.2);
}

.process-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    font-family: var(--font-heading);
    line-height: 1;
}

.process-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 24px;
    display: inline-block;
}

.process-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.process-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 160px 0;
    /* background: #0f0f0f; - Removed for canvas visibility */
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: rgba(30, 30, 30, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.testimonial-card:hover::before {
    opacity: 1;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.stars i {
    color: #FFB800;
    font-size: 1.2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.testimonial-author strong {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.testimonial-author small {
    color: var(--text-muted);
    font-size: 0.85rem;
    opacity: 0.7;
}

/* CTA Section */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, rgba(248, 107, 48, 0.1) 0%, rgba(10, 10, 10, 0.8) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* CTA Grid Layout */
.cta-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.cta-content {
    text-align: left;
    max-width: 700px;
}

/* CTA Visual - Fleet Image */
.cta-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-fleet-img {
    width: 100%;
    max-width: 650px;
    /* Increased from 500px */
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    /* Reduced from extreme organic shape to subtle rounded corners */
    opacity: 0.95;
    /* Increased from 0.85 for more prominence */
    transform: rotate(-2deg);
    /* Reduced rotation for subtlety */
    box-shadow: -40px 40px 100px rgba(0, 0, 0, 0.7),
        -20px 20px 50px rgba(248, 107, 48, 0.25);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: grayscale(0.15) contrast(1.05);
    /* Reduced grayscale for more color */
}

.cta-visual:hover .cta-fleet-img {
    transform: rotate(0deg) scale(1.03);
    filter: grayscale(0) contrast(1.1);
    /* Full color on hover */
    box-shadow: -50px 50px 120px rgba(0, 0, 0, 0.8),
        -25px 25px 70px rgba(248, 107, 48, 0.35);
}

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 24px;
    background: linear-gradient(to right, #fff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.cta-content p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.cta-contact {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--text-muted);
}

.contact-item i {
    color: var(--primary);
    font-size: 1.5rem;
}

.contact-item a {
    color: var(--text-main);
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary);
}

/* Requirements Section */
.requirements {
    margin-top: 30px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.requirements h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.requirements ul {
    list-style: none;
    padding: 0;
}

.requirements li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: var(--text-muted);
    font-size: 1rem;
}

.requirements li i {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Footer Enhancements */
.footer-tagline {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-top: 8px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

.social-links i {
    font-size: 1.3rem;
    color: var(--text-main);
}

/* Responsive adjustments for new sections */
@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .cta-content {
        text-align: center;
        max-width: 100%;
    }

    .cta-content h2 {
        font-size: 2.5rem;
    }
}


@media (max-width: 768px) {
    .process-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-contact {
        flex-direction: column;
        gap: 25px;
    }
}

/* Aesthetic Image Shapes & Animations */
.shape-blob {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    overflow: hidden;
    animation: morph 8s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.shape-arch {
    border-radius: 200px 200px 20px 20px;
    overflow: hidden;
    position: relative;
}

.shape-organic {
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    overflow: hidden;
    transition: all 0.5s ease;
}

.shape-organic:hover {
    border-radius: 50%;
}

@keyframes morph {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }

    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }

    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* Specific Image Overrides */
.hero-visual .image-mask {
    border-radius: 30% 70% 50% 50% / 30% 30% 70% 70%;
    /* Initial organic shape */
    animation: morph 10s ease-in-out infinite;
    border: none;
    /* Remove border for cleaner look with blob */
    box-shadow: 0 30px 60px rgba(248, 107, 48, 0.15);
    /* Orange glow */
}

.recruitment-visual .driver-img {
    border-radius: 20px;
    /* Reset default */
    mask-image: radial-gradient(white, black);
    -webkit-mask-image: -webkit-radial-gradient(white, black);
}

.recruitment-visual {
    position: relative;
}

.recruitment-visual::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.5;
    transform: rotate(-5deg);
    transition: transform 0.3s ease;
}

.recruitment-visual:hover::after {
    transform: rotate(0deg);
}

/* Decorative Images in Services */
.service-deco {
    transition: all 0.5s ease;
}

/* Same Day Delivery Image - Below Text */
.deco-box {
    position: relative;
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
    aspect-ratio: 1;
    margin: 30px auto 0;
    object-fit: cover;
    border-radius: 50%;
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 40px 80px rgba(248, 107, 48, 0.3),
        0 20px 40px rgba(0, 0, 0, 0.5);
    /* 3D Depth with orange glow */
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: float-gentle 6s ease-in-out infinite;
}

.bento-card:hover .deco-box {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 50px 100px rgba(248, 107, 48, 0.4),
        0 30px 60px rgba(0, 0, 0, 0.6);
}

/* Food & Grocery Decorative Image - Standalone Grid Item */
.bento-deco-image {
    grid-column: span 1;
    position: relative;
    display: flex;
    align-items: flex-start;
    /* Changed from center to position lower */
    justify-content: center;
    padding-top: 280px;
    /* Push down significantly to avoid overlap */
    min-height: 350px;
    pointer-events: none;
}

/* Don't block card interactions */
.deco-grocery-standalone {
    width: 100%;
    max-width: 480px;
    /* Increased from 360px for larger display */
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
    opacity: 0.95;
    transform: rotate(-5deg);
    box-shadow: -40px 40px 100px rgba(0, 0, 0, 0.7),
        -20px 20px 60px rgba(248, 107, 48, 0.3);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    animation: float-dynamic 8s ease-in-out infinite;
    pointer-events: auto;
    /* Allow image interaction */
}

.bento-deco-image:hover .deco-grocery-standalone {
    transform: rotate(0deg) scale(1.08);
    box-shadow: -50px 50px 120px rgba(0, 0, 0, 0.8),
        -30px 30px 80px rgba(248, 107, 48, 0.4);
}

/* Old deco-grocery removed, keeping for backwards compatibility but hidden */
.deco-grocery {
    display: none;
}

/* Floating Animations for Depth */
@keyframes float-gentle {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes float-dynamic {

    0%,
    100% {
        transform: translateY(-50%) rotate(-8deg);
    }

    50% {
        transform: translateY(calc(-50% - 20px)) rotate(-3deg);
    }
}

.bento-card {
    background: rgba(40, 40, 40, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 32px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: visible;
    /* Allow images to pop out */
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.why-bg-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    mask-image: linear-gradient(to left, black, transparent);
    -webkit-mask-image: linear-gradient(to left, black, transparent);
    pointer-events: none;
    z-index: 0;
}

/* =========================================
   Contact Page Styles
   ========================================= */

/* Contact Hero */
.contact-hero {
    min-height: 60vh;
    padding-top: 160px;
    padding-bottom: 60px;
    align-items: center;
    justify-content: center;
}

.contact-hero .hero-title {
    font-size: 4.5rem;
}

.contact-hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    grid-template-columns: 1fr;
    max-width: 900px;
    margin: 0 auto;
    gap: 30px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0 160px;
    position: relative;
    z-index: 10;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

/* Contact Info Column */
.contact-info-card {
    background: rgba(30, 30, 30, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 40px;
    position: sticky;
    top: 120px;
}

.contact-info-card h3 {
    font-size: 2rem;
    margin-bottom: 16px;
    background: linear-gradient(to right, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.contact-info-card>p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.info-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.icon-box {
    width: 48px;
    height: 48px;
    background: rgba(248, 107, 48, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.info-item:hover .icon-box {
    background: var(--primary);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.info-item h4 {
    font-size: 1.1rem;
    margin-bottom: 4px;
    color: var(--text-main);
}

.info-item p,
.info-item a {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.5;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--primary);
}

.social-connect h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.social-connect .social-links {
    justify-content: flex-start;
    gap: 16px;
}

.social-connect .social-links a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-connect .social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-3px);
}

/* Contact Form Column */
.glass-form-card {
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    padding: 50px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Subject Selection */
.subject-group {
    margin-bottom: 16px;
}

.group-label {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 16px;
    color: var(--text-main);
}

.subject-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.subject-option {
    position: relative;
    cursor: pointer;
}

.subject-option input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.option-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.option-content i {
    font-size: 1.8rem;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.option-content span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

/* Selected State */
.subject-option input:checked+.option-content {
    background: rgba(248, 107, 48, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(248, 107, 48, 0.2);
}

.subject-option input:checked+.option-content i,
.subject-option input:checked+.option-content span {
    color: var(--primary);
}

.subject-option:hover .option-content {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

/* Form Inputs */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-group {
    position: relative;
}

.input-wrapper {
    position: relative;
}

.form-control {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 18px 20px 18px 50px;
    /* Left padding for icon */
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-main);
    transition: all 0.3s ease;
    outline: none;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(248, 107, 48, 0.1);
}

/* Floating Label */
.input-wrapper label {
    position: absolute;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    font-size: 1rem;
}

.form-control:focus+label,
.form-control:not(:placeholder-shown)+label {
    top: 0;
    left: 20px;
    transform: translateY(-50%);
    font-size: 0.8rem;
    background: #1a1a1a;
    /* Match card bg roughly or transparent */
    padding: 0 6px;
    color: var(--primary);
    background: linear-gradient(to bottom, rgba(30, 30, 30, 0), #1e1e1e 50%, #1e1e1e);
    /* Hack for transparent bg */
    border-radius: 4px;
}

/* Textarea specific */
textarea.form-control {
    resize: vertical;
    min-height: 150px;
}

textarea.form-control+label {
    top: 24px;
}

textarea.form-control:focus+label,
textarea.form-control:not(:placeholder-shown)+label {
    top: 0;
}

/* Input Icon */
.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.textarea-icon {
    top: 24px;
}

.form-control:focus~.input-icon {
    color: var(--primary);
}

/* Error Message */
.error-msg {
    position: absolute;
    bottom: -20px;
    left: 20px;
    font-size: 0.8rem;
    color: #ff4d4d;
    opacity: 0;
    transform: translateY(-5px);
    transition: all 0.3s ease;
    pointer-events: none;
}

.form-group.error .form-control {
    border-color: #ff4d4d;
}

.form-group.error .input-icon {
    color: #ff4d4d;
}

.form-group.error .error-msg {
    opacity: 1;
    transform: translateY(0);
}

/* Submit Button & Status */
.form-footer {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.btn-submit {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-loader,
.btn-success {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.btn-loader i {
    animation: spin 1s linear infinite;
    font-size: 1.5rem;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.btn-submit.loading .btn-text {
    opacity: 0;
}

.btn-submit.loading .btn-loader {
    opacity: 1;
}

.btn-submit.success {
    background-color: #22c55e;
    /* Green */
    pointer-events: none;
}

.btn-submit.success .btn-text,
.btn-submit.success .btn-loader {
    opacity: 0;
}

.btn-submit.success .btn-success {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
}

.privacy-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
}

.privacy-note a {
    color: var(--text-main);
    text-decoration: underline;
}

.form-status-message {
    text-align: center;
    min-height: 24px;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-status-message.success {
    color: #22c55e;
    opacity: 1;
}

.form-status-message.error {
    color: #ff4d4d;
    opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-card {
        position: static;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .subject-options {
        grid-template-columns: 1fr;
    }

    .option-content {
        flex-direction: row;
        justify-content: flex-start;
        padding: 16px 20px;
    }

    .glass-form-card {
        padding: 30px 20px;
    }

    /* Mobile Preloader Fix */
    .preloader-logo {
        width: auto;
        height: auto;
        max-width: 80vw;
        max-height: 30vh;
        object-fit: contain;
    }
}

/* =========================================
   Why Partner Bento Grid
   ========================================= */
.partner-bento-section {
    padding: 100px 0;
    position: relative;
    z-index: 5;
}

.partner-bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.partner-card {
    min-height: 320px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(248, 107, 48, 0.1);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.partner-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.partner-card p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

/* Visual Elements in Cards */
.visual-element {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 120px;
    pointer-events: none;
    opacity: 0.5;
}

/* Speed Meter */
.speed-meter {
    width: 120px;
    height: 60px;
    border-top-left-radius: 120px;
    border-top-right-radius: 120px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-bottom: 0;
    position: absolute;
    bottom: 20px;
    right: 30px;
}

.needle {
    width: 60px;
    height: 4px;
    background: var(--primary);
    position: absolute;
    bottom: 0;
    left: 0;
    transform-origin: right center;
    transform: rotate(0deg);
    animation: gauge 4s ease-in-out infinite;
}

@keyframes gauge {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(160deg);
    }
}

/* Network Map */
.node-map {
    position: absolute;
    bottom: 20px;
    right: 30px;
    width: 100px;
    height: 80px;
}

.node {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
    box-shadow: 0 0 10px var(--primary);
    animation: pulse-node 2s infinite;
}

.n1 {
    top: 10px;
    left: 10px;
}

.n2 {
    top: 40px;
    right: 20px;
    animation-delay: 0.5s;
}

.n3 {
    bottom: 10px;
    left: 40px;
    animation-delay: 1s;
}

.n4 {
    top: 30px;
    left: 50px;
    animation-delay: 1.5s;
}

.connection {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    height: 1px;
    transform-origin: left center;
}

.c1 {
    width: 60px;
    top: 14px;
    left: 14px;
    transform: rotate(25deg);
}

.c2 {
    width: 50px;
    top: 44px;
    left: 54px;
    transform: rotate(140deg);
}

@keyframes pulse-node {

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

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }
}

/* Growth Chart */
.bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    position: absolute;
    bottom: 30px;
    right: 40px;
    height: 60px;
}

.bar {
    width: 12px;
    background: linear-gradient(to top, var(--primary), rgba(248, 107, 48, 0.2));
    border-radius: 4px 4px 0 0;
    animation: grow-bar 3s ease-in-out infinite;
}

.b1 {
    height: 30%;
    animation-delay: 0s;
}

.b2 {
    height: 50%;
    animation-delay: 0.2s;
}

.b3 {
    height: 70%;
    animation-delay: 0.4s;
}

.b4 {
    height: 90%;
    animation-delay: 0.6s;
}

@keyframes grow-bar {

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

    50% {
        transform: scaleY(1.2);
    }
}

/* =========================================
   Driver Mission Section
   ========================================= */
.driver-mission-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.5));
}

/* Ticker */
.ticker-wrap {
    width: 100%;
    overflow: hidden;
    background: var(--primary);
    padding: 12px 0;
    transform: rotate(-2deg) scale(1.05);
    margin-bottom: 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hiring-ticker {
    display: flex;
    white-space: nowrap;
    animation: ticker 20s linear infinite;
}

.ticker-item {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.2rem;
    color: #000;
    padding: 0 40px;
    letter-spacing: 1px;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Mission Content */
.mission-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
}

.mission-content p {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.mission-stats {
    display: flex;
    gap: 60px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1;
}

.stat-item span:not(.stat-num):not(.stat-label) {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Driver ID Card */
.mission-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.driver-id-card {
    width: 320px;
    height: 200px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    position: relative;
    transform: rotate(-5deg) perspective(1000px) rotateY(10deg);
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s ease;
}

.driver-id-card:hover {
    transform: rotate(0deg) perspective(1000px) rotateY(0deg) scale(1.05);
}

.id-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.id-logo {
    height: 24px;
}

.id-badge {
    font-size: 0.7rem;
    background: var(--primary);
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 700;
}

.id-body {
    display: flex;
    gap: 20px;
}

.id-avatar {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-muted);
}

.id-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.id-row {
    display: flex;
    flex-direction: column;
}

.id-row .label {
    font-size: 0.6rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.id-row .value {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
}

.id-row .value.active {
    color: #22c55e;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Responsive Enhancements */
@media (max-width: 992px) {
    .partner-bento-grid {
        grid-template-columns: 1fr;
    }

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

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

    .mission-visual {
        height: 300px;
    }
}