        /* ===========================================
           KARIBU PARCELS - PROFESSIONAL COURIER SYSTEM
           Elegant design with #ff3519 and #008f40 colors
        =========================================== */
        
        :root {
            /* Brand Color Palette - #008f40 as dominant, #ff3519 as accent */
            --primary-50: #e6f7ef;
            --primary-100: #c2ebd9;
            --primary-200: #9bdec2;
            --primary-300: #74d0ab;
            --primary-400: #58c69a;
            --primary-500: #3bbc89; /* Base green */
            --primary-600: #35b681;
            --primary-700: #2dad76;
            --primary-800: #26a56c; /* Main brand #008f40 */
            --primary-900: #1a9759;
            
            --accent-50: #ffeae6;
            --accent-100: #ffcab9;
            --accent-200: #ffa68d;
            --accent-300: #ff8160;
            --accent-400: #ff653e;
            --accent-500: #ff4a1d; /* Base orange-red */
            --accent-600: #ff4319;
            --accent-700: #ff3a15; /* Main accent #ff3519 */
            --accent-800: #ff3211;
            --accent-900: #ff220a;
            
            /* Neutral Palette - Elegant & Professional */
            --neutral-50: #ffffff;
            --neutral-100: #f9fafb;
            --neutral-200: #f3f4f6;
            --neutral-300: #e5e7eb;
            --neutral-400: #d1d5db;
            --neutral-500: #9ca3af;
            --neutral-600: #6b7280;
            --neutral-700: #4b5563;
            --neutral-800: #374151;
            --neutral-900: #1f2937;
            
            /* Semantic Colors */
            --success: #10b981;
            --warning: #f59e0b;
            --error: #ef4444;
            --info: #3b82f6;
            
            /* Typography */
            --font-heading: 'Plus Jakarta Sans', sans-serif;
            --font-body: 'Inter', sans-serif;
            
            /* Layout */
            --border-radius-sm: 8px;
            --border-radius-md: 12px;
            --border-radius-lg: 16px;
            --border-radius-xl: 24px;
            --border-radius-full: 9999px;
            
            /* Shadows - Elegant */
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
            --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
            --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);
            
            /* Transitions */
            --transition-fast: 200ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
            --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        /* Reset & Base */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            font-family: var(--font-body);
            color: var(--neutral-800);
            background-color: var(--neutral-50);
            line-height: 1.6;
            overflow-x: hidden;
        }
        
        .container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 2rem;
        }
        
        section {
            padding: 5rem 0;
        }
        
        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-heading);
            font-weight: 700;
            line-height: 1.2;
            color: var(--neutral-900);
        }
        
        h1 {
            font-size: 3.25rem;
            letter-spacing: -0.02em;
            line-height: 1.1;
        }
        
        h2 {
            font-size: 2.5rem;
            letter-spacing: -0.01em;
        }
        
        h3 {
            font-size: 1.75rem;
        }
        
        h4 {
            font-size: 1.35rem;
        }
        
        p {
            line-height: 1.7;
            color: var(--neutral-700);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }
        
        .section-title h2 {
            margin-bottom: 1rem;
            background: linear-gradient(135deg, var(--primary-800), var(--primary-600));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .section-title p {
            max-width: 700px;
            margin: 0 auto;
            color: var(--neutral-600);
        }
        
        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            padding: 0.875rem 1.75rem;
            border-radius: var(--border-radius-md);
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all var(--transition-fast);
            border: none;
            text-decoration: none;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
            color: white;
            box-shadow: var(--shadow-md);
        }
        
        .btn-primary:hover {
            background: linear-gradient(135deg, var(--primary-800), var(--primary-900));
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        
        .btn-accent {
            background: linear-gradient(135deg, var(--accent-600), var(--accent-700));
            color: white;
            box-shadow: var(--shadow-md);
        }
        
        .btn-accent:hover {
            background: linear-gradient(135deg, var(--accent-700), var(--accent-800));
            transform: translateY(-2px);
            box-shadow: var(--shadow-lg);
        }
        
        .btn-secondary {
            background-color: white;
            color: var(--primary-800);
            border: 2px solid var(--primary-300);
        }
        
        .btn-secondary:hover {
            background-color: var(--primary-50);
            border-color: var(--primary-600);
            transform: translateY(-2px);
        }
        
        .btn-large {
            padding: 1rem 2.25rem;
            font-size: 1rem;
        }
        
        /* Header & Navigation */
        header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background-color: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            z-index: 1000;
            box-shadow: var(--shadow-sm);
            transition: all var(--transition-base);
        }
        
        header.scrolled {
            background-color: white;
            box-shadow: var(--shadow-md);
        }
        
        .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 1.25rem 0;
        }
        
        .logo {
            display: flex;
            align-items: center;
            gap: 0.875rem;
            font-family: var(--font-heading);
            font-weight: 800;
            font-size: 1.6rem;
            color: var(--primary-800);
            text-decoration: none;
        }
        
/* Logo Image Container */
.logo-img {
    width: 50px;
    height: 50px;
    border-radius: var(--border-radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--primary-700), var(--primary-800));
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-sm);
}

.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.logo:hover .logo-img img {
    transform: scale(1.05);
}

/* Remove the old .logo-icon styles and replace with above */
        
        .nav-links {
            display: flex;
            gap: 1.75rem;
            list-style: none;
        }
        
        .nav-links a {
            color: var(--neutral-800);
            text-decoration: none;
            font-weight: 600;
            transition: color var(--transition-fast);
            position: relative;
            padding: 0.5rem 0;
            font-size: 0.95rem;
        }
        
        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-700), var(--accent-600));
            transition: width var(--transition-base);
        }
        
        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }
        
        .nav-links a:hover,
        .nav-links a.active {
            color: var(--primary-800);
        }
        
        .nav-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
        }
        
        /* Compact Hero Section with Background Image */
        .hero {
            padding: 9rem 0 5rem;
            position: relative;
            overflow: hidden;
            background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(230, 247, 239, 0.98)), 
                        url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center;
            background-size: cover;
            color: var(--neutral-900);
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, rgba(38, 165, 108, 0.08) 0%, transparent 60%);
            z-index: 0;
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 4rem;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        
        .hero-text h1 {
            margin-bottom: 1.5rem;
            background: linear-gradient(135deg, var(--primary-800), var(--primary-600));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        
        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            color: var(--neutral-700);
            line-height: 1.8;
        }
        
        .hero-actions {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }
        
        .hero-stats {
            display: flex;
            gap: 2.5rem;
            margin-top: 3rem;
            padding-top: 1.75rem;
            border-top: 1px solid var(--neutral-200);
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.25rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--primary-700), var(--accent-600));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 0.375rem;
        }
        
        .stat-label {
            font-size: 0.9rem;
            color: var(--neutral-600);
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .hero-image {
            position: relative;
        }
        
        .hero-image-content {
            width: 100%;
            height: 340px;
            background: white;
            border-radius: var(--border-radius-xl);
            border: 1px solid var(--neutral-200);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 2.5rem;
            box-shadow: var(--shadow-xl);
            transform: perspective(1000px) rotateY(-5deg);
            transition: transform var(--transition-base);
            overflow: hidden;
            position: relative;
        }
        
        .hero-image-content::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-700), var(--accent-600));
        }
        
        .hero-image:hover .hero-image-content {
            transform: perspective(1000px) rotateY(0deg);
        }
        
        /* Trusted Partners Section */
        .trusted-section {
            padding: 3rem 0;
            background-color: var(--neutral-100);
            border-bottom: 1px solid var(--neutral-200);
        }
        
        .trusted-title {
            text-align: center;
            margin-bottom: 2rem;
            color: var(--neutral-600);
            font-weight: 600;
            font-size: 1.1rem;
        }
        
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 1.5rem;
            align-items: center;
        }
        
        .partner-logo {
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all var(--transition-fast);
            background: white;
            border-radius: var(--border-radius-sm);
            padding: 1rem;
            border: 1px solid var(--neutral-200);
        }
        
        .partner-logo:hover {
            filter: grayscale(0);
            opacity: 1;
            box-shadow: var(--shadow-sm);
            border-color: var(--primary-300);
        }
        
        /* Features Section */
        .features {
            background-color: white;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .feature-card {
            background-color: white;
            border-radius: var(--border-radius-lg);
            padding: 2.25rem;
            box-shadow: var(--shadow-md);
            transition: all var(--transition-base);
            border: 1px solid var(--neutral-200);
            position: relative;
            overflow: hidden;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, var(--primary-700), var(--accent-600));
        }
        
        .feature-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-300);
        }
        
        .feature-icon {
            width: 64px;
            height: 64px;
            border-radius: var(--border-radius-md);
            background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
            color: var(--primary-800);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 1.75rem;
        }
        
        .feature-card h3 {
            margin-bottom: 1rem;
        }
        
        /* Booking Engine Section */
        .booking-section {
            background: linear-gradient(135deg, var(--primary-50) 0%, white 100%);
            color: var(--neutral-900);
            border-top: 1px solid var(--neutral-200);
            border-bottom: 1px solid var(--neutral-200);
        }
        
        .booking-container {
            max-width: 1000px;
            margin: 0 auto;
        }
        
        .booking-header {
            text-align: center;
            margin-bottom: 2.5rem;
        }
        
        .booking-header h2 {
            background: linear-gradient(135deg, var(--primary-800), var(--primary-600));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1rem;
        }
        
        .booking-header p {
            color: var(--neutral-700);
        }
        
        .booking-form {
            background-color: white;
            border-radius: var(--border-radius-lg);
            padding: 2.5rem;
            border: 1px solid var(--neutral-200);
            box-shadow: var(--shadow-xl);
            position: relative;
            overflow: hidden;
        }
        
        .booking-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-700), var(--accent-600));
        }
        
        .form-row {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }
        
        .form-group {
            margin-bottom: 0;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.625rem;
            font-weight: 600;
            color: var(--neutral-800);
            font-size: 0.95rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .booking-form input, .booking-form select {
            width: 100%;
            padding: 0.875rem 1.125rem;
            border: 2px solid var(--neutral-300);
            border-radius: var(--border-radius-md);
            background-color: white;
            color: var(--neutral-800);
            font-size: 0.95rem;
            transition: all var(--transition-fast);
        }
        
        .booking-form input:focus, .booking-form select:focus {
            outline: none;
            border-color: var(--primary-700);
            background-color: var(--primary-50);
            box-shadow: 0 0 0 3px rgba(38, 165, 108, 0.1);
        }
        
        .booking-form option {
            background-color: white;
            color: var(--neutral-800);
        }
        
        .booking-actions {
            display: flex;
            justify-content: center;
            gap: 1.25rem;
            margin-top: 2rem;
        }
        
        /* Tracking Section */
        .tracking-section {
            background-color: white;
        }
        
        .tracking-container {
            max-width: 800px;
            margin: 0 auto;
        }
        
        .tracking-input-container {
            background-color: var(--neutral-100);
            border-radius: var(--border-radius-lg);
            padding: 2.5rem;
            box-shadow: var(--shadow-md);
            margin-top: 2rem;
            border: 1px solid var(--neutral-200);
            position: relative;
            overflow: hidden;
        }
        
        .tracking-input-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-700), var(--accent-600));
        }
        
        .tracking-input-wrapper {
            display: flex;
            gap: 1rem;
            margin-bottom: 1.75rem;
        }
        
        .tracking-input-wrapper input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: 2px solid var(--neutral-300);
            border-radius: var(--border-radius-md);
            font-size: 1rem;
            transition: all var(--transition-fast);
        }
        
        .tracking-input-wrapper input:focus {
            outline: none;
            border-color: var(--primary-700);
            box-shadow: 0 0 0 3px rgba(38, 165, 108, 0.1);
        }
        
        .tracking-examples {
            display: flex;
            flex-wrap: wrap;
            gap: 0.875rem;
            justify-content: center;
        }
        
        .tracking-example {
            padding: 0.625rem 1.5rem;
            background-color: var(--primary-50);
            border-radius: var(--border-radius-full);
            color: var(--primary-800);
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition-fast);
            border: 1px solid var(--primary-200);
        }
        
        .tracking-example:hover {
            background-color: var(--primary-100);
            transform: translateY(-2px);
            border-color: var(--primary-400);
        }
        
        /* Pick Stations Section */
        .stations-section {
            background-color: var(--neutral-100);
        }
        
        .filter-controls {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem;
            margin-bottom: 2.5rem;
            background-color: white;
            padding: 2rem;
            border-radius: var(--border-radius-lg);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--neutral-200);
        }
        
        .filter-group {
            margin-bottom: 0;
        }
        
        .filter-group label {
            display: block;
            margin-bottom: 0.625rem;
            font-weight: 600;
            color: var(--neutral-800);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .filter-group select {
            width: 100%;
            padding: 0.875rem 1.125rem;
            border: 2px solid var(--neutral-300);
            border-radius: var(--border-radius-md);
            background-color: white;
            color: var(--neutral-800);
            font-size: 0.95rem;
            transition: all var(--transition-fast);
        }
        
        .filter-group select:focus {
            outline: none;
            border-color: var(--primary-700);
        }
        
        .accordion {
            margin-top: 1.75rem;
        }
        
        .accordion-item {
            margin-bottom: 1rem;
            border-radius: var(--border-radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--neutral-200);
        }
        
        .accordion-header {
            background-color: white;
            padding: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            font-weight: 700;
            color: var(--neutral-900);
            transition: background-color var(--transition-fast);
        }
        
        .accordion-header:hover {
            background-color: var(--primary-50);
        }
        
        .accordion-content {
            background-color: white;
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-base), padding var(--transition-base);
        }
        
        .accordion-item.active .accordion-content {
            padding: 1.75rem;
            max-height: 1000px;
        }
        
        .stations-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        
        .station-card {
            background-color: white;
            border-radius: var(--border-radius-md);
            padding: 1.75rem;
            border-left: 4px solid var(--primary-700);
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--neutral-200);
            transition: transform var(--transition-fast);
        }
        
        .station-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }
        
        .station-card h4 {
            margin-bottom: 0.625rem;
            color: var(--primary-800);
        }
        
        /* FAQ Section */
        .faq-section {
            background-color: white;
        }
        
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        
        .faq-grid {
            margin-top: 2.5rem;
        }
        
        .faq-item {
            margin-bottom: 1rem;
            border-radius: var(--border-radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--neutral-200);
            background-color: white;
        }
        
        .faq-question {
            padding: 1.5rem;
            display: flex;
            align-items: center;
            justify-content: space-between;
            cursor: pointer;
            font-weight: 700;
            color: var(--neutral-900);
            background-color: white;
            transition: background-color var(--transition-fast);
        }
        
        .faq-question:hover {
            background-color: var(--primary-50);
        }
        
        .faq-question i {
            color: var(--primary-700);
            transition: transform var(--transition-base);
        }
        
        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }
        
        .faq-answer {
            padding: 0;
            max-height: 0;
            overflow: hidden;
            transition: max-height var(--transition-base), padding var(--transition-base);
            border-top: 1px solid transparent;
        }
        
        .faq-item.active .faq-answer {
            padding: 0 1.5rem 1.5rem;
            max-height: 500px;
            border-top: 1px solid var(--neutral-200);
        }
        
        /* Contact Section */
        .contact-section {
            background-color: var(--neutral-100);
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }
        
        .contact-info h3 {
            margin-bottom: 1.5rem;
            color: var(--primary-800);
        }
        
        .contact-method {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            margin-bottom: 1.75rem;
            padding: 1.25rem;
            background-color: white;
            border-radius: var(--border-radius-md);
            border: 1px solid var(--neutral-200);
            transition: transform var(--transition-fast);
        }
        
        .contact-method:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-sm);
            border-color: var(--primary-300);
        }
        
        .contact-icon {
            width: 50px;
            height: 50px;
            border-radius: var(--border-radius-md);
            background: linear-gradient(135deg, var(--primary-100), var(--primary-200));
            color: var(--primary-800);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            flex-shrink: 0;
        }
        
        .contact-details h4 {
            margin-bottom: 0.25rem;
            color: var(--primary-800);
        }
        
        .contact-form {
            background-color: white;
            border-radius: var(--border-radius-lg);
            padding: 2.5rem;
            box-shadow: var(--shadow-xl);
            border: 1px solid var(--neutral-200);
            position: relative;
            overflow: hidden;
        }
        
        .contact-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-700), var(--accent-600));
        }
        
        .form-group {
            margin-bottom: 1.5rem;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--neutral-800);
        }
        
        .form-group input, .form-group textarea, .form-group select {
            width: 100%;
            padding: 0.875rem 1.125rem;
            border: 2px solid var(--neutral-300);
            border-radius: var(--border-radius-md);
            background-color: white;
            color: var(--neutral-800);
            font-size: 0.95rem;
            transition: all var(--transition-fast);
        }
        
        .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
            outline: none;
            border-color: var(--primary-700);
            box-shadow: 0 0 0 3px rgba(38, 165, 108, 0.1);
        }
        
        .form-group textarea {
            min-height: 140px;
            resize: vertical;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--primary-800) 0%, var(--primary-600) 100%);
            color: white;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120" preserveAspectRatio="none"><path d="M1200 120L0 16.48 0 0 1200 0 1200 120z" fill="white" opacity="0.1"/></svg>');
            background-size: 100% 100px;
            background-repeat: no-repeat;
            background-position: top;
        }
        
        .cta-section h2 {
            color: white;
            margin-bottom: 1.25rem;
        }
        
        .cta-section p {
            color: rgba(255, 255, 255, 0.9);
            max-width: 700px;
            margin: 0 auto 2rem;
        }
        
        /* Footer */
        footer {
            background-color: var(--neutral-900);
            color: var(--neutral-300);
            padding: 4rem 0 1.75rem;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2.5rem;
            margin-bottom: 2.5rem;
        }
        
        .footer-logo {
            display: flex;
            flex-direction: column;
            gap: 1.25rem;
        }
        
        .footer-links h4 {
            color: white;
            margin-bottom: 1.25rem;
        }
        
        .footer-links ul {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 0.75rem;
        }
        
        .footer-links a {
            color: var(--neutral-400);
            text-decoration: none;
            transition: color var(--transition-fast);
            font-size: 0.95rem;
        }
        
        .footer-links a:hover {
            color: var(--primary-400);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 1.75rem;
            border-top: 1px solid var(--neutral-800);
            color: var(--neutral-500);
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            h1 {
                font-size: 2.75rem;
            }
            
            h2 {
                font-size: 2.25rem;
            }
            
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }
            
            .hero-actions {
                justify-content: center;
            }
            
            .form-row {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .filter-controls {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .contact-container {
                grid-template-columns: 1fr;
                gap: 3rem;
            }
            
            .footer-content {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .container {
                padding: 0 1.5rem;
            }
            
            .navbar {
                flex-direction: column;
                gap: 1.25rem;
            }
            
            .nav-links {
                flex-wrap: wrap;
                justify-content: center;
                gap: 1rem;
            }
            
            section {
                padding: 4rem 0;
            }
            
            .hero {
                padding: 8rem 0 4rem;
            }
            
            .form-row {
                grid-template-columns: 1fr;
            }
            
            .filter-controls {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
            
            .tracking-input-wrapper {
                flex-direction: column;
            }
            
            .booking-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .hero-stats {
                flex-direction: column;
                gap: 1.25rem;
            }
            
            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
        }
        
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn var(--transition-base);
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.03); }
            100% { transform: scale(1); }
        }
        
        .pulse {
            animation: pulse 2s infinite;
        }
        
        /* Utility Classes */
        .text-center {
            text-align: center;
        }
        
        .mb-1 { margin-bottom: 1rem; }
        .mb-2 { margin-bottom: 1.5rem; }
        .mb-3 { margin-bottom: 2rem; }
        .mb-4 { margin-bottom: 2.5rem; }
        
        .mt-1 { margin-top: 1rem; }
        .mt-2 { margin-top: 1.5rem; }
        .mt-3 { margin-top: 2rem; }
        .mt-4 { margin-top: 2.5rem; }
