        :root {
            --primary-yellow: #FFD700;
            --accent-black: #1a1a1a;
            --pure-white: #ffffff;
            --soft-gray: #f8f9fa;
            --success-green: #28a745;
            --text-dark: #333333;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 600;
        }
        
        
        
        /* Page Header */
        .page-header {
            background: linear-gradient(180deg,rgba(40, 167, 69, 0.75),rgba(255, 215, 0, 0.75));
            background-size: cover;
            background-position: center;
            padding: 120px 0 80px;
            color: var(--pure-white);
            text-align: center;
        }
        
        .page-title {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .page-subtitle {
            font-size: 1.2rem;
            opacity: 0.9;
        }
        
        /* Fare Calculator */
        .calculator-section {
            background: var(--pure-white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            margin-bottom: 3rem;
        }
        
        .calculator-title {
            color: var(--accent-black);
            margin-bottom: 2rem;
            text-align: center;
        }
        
        .form-control, .form-select {
            border: 2px solid #e9ecef;
            border-radius: 10px;
            padding: 12px 15px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        .form-control:focus, .form-select:focus {
            border-color: var(--primary-yellow);
            box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
        }
        
        .btn-primary {
            background: var(--primary-yellow);
            border: none;
            color: var(--accent-black);
            font-weight: 600;
            padding: 12px 30px;
            border-radius: 10px;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background: #e6c200;
            transform: translateY(-1px);
        }
        
        .fare-result {
            background: var(--soft-gray);
            border-radius: 15px;
            padding: 30px;
            margin-top: 2rem;
            text-align: center;
            display: none;
        }
        
        .fare-result.show {
            display: block;
            animation: fadeInUp 0.5s ease;
        }
        
        .fare-amount {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-yellow);
            margin-bottom: 1rem;
        }
        
        .fare-breakdown {
            text-align: left;
            margin-top: 1.5rem;
        }
        
        .fare-item {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
            border-bottom: 1px solid #dee2e6;
        }
        
        .fare-item:last-child {
            border-bottom: none;
            font-weight: 600;
            color: var(--accent-black);
        }
        
        /* Pricing Cards */
        .pricing-card {
            background: var(--pure-white);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }
        
        .pricing-card.popular {
            border: 3px solid var(--primary-yellow);
            transform: scale(1.05);
        }
        
        .popular-badge {
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--primary-yellow);
            color: var(--accent-black);
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .vehicle-icon {
            font-size: 3rem;
            color: var(--primary-yellow);
            margin-bottom: 1rem;
        }
        
        .vehicle-name {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--accent-black);
            margin-bottom: 0.5rem;
        }
        
        .vehicle-specs {
            color: #666;
            margin-bottom: 1.5rem;
        }
        
        .price-display {
            font-size: 2rem;
            font-weight: 700;
            color: var(--primary-yellow);
            margin-bottom: 0.5rem;
        }
        
        .price-unit {
            font-size: 0.9rem;
            color: #666;
            margin-bottom: 1.5rem;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }
        
        .feature-list li {
            padding: 0.5rem 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .feature-list li i {
            color: var(--success-green);
            margin-right: 0.5rem;
        }
        
        /* Route Pricing Cards */
        .route-pricing-card {
            background: var(--pure-white);
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            margin-bottom: 1.5rem;
        }
        
        .route-pricing-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
        }
        
        .route-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }
        
        .route-name {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--accent-black);
        }
        
        .route-distance {
            color: #666;
            font-size: 0.9rem;
        }
        
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }
        
        .vehicle-option {
            text-align: center;
            padding: 15px;
            background: var(--soft-gray);
            border-radius: 10px;
        }
        
        .vehicle-type {
            font-weight: 600;
            color: var(--accent-black);
            margin-bottom: 0.5rem;
        }
        
        .vehicle-price {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-yellow);
        }
        
        /* Chart Container */
        .chart-container {
            height: 400px;
            margin: 2rem 0;
        }
        
        /* CTA Section */
        .cta-section {
            background: var(--primary-yellow);
            padding: 60px 0;
            text-align: center;
            color: var(--accent-black);
        }
        
        .cta-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }
        
        .cta-button {
            background: var(--accent-black);
            color: var(--pure-white);
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border: none;
            border-radius: 50px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
            margin: 0 10px;
        }
        
        .cta-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.3);
            color: var(--pure-white);
        }
        
        .btn-outline-light {
            border: 2px solid var(--accent-black);
            color: var(--accent-black);
            background: transparent;
        }
        
        .btn-outline-light:hover {
            background: var(--accent-black);
            color: var(--pure-white);
        }
        
        /* Footer */
        .footer {
            background: var(--accent-black);
            color: var(--pure-white);
            padding: 50px 0 30px;
        }
        
        .footer h5 {
            color: var(--primary-yellow);
            margin-bottom: 1.5rem;
        }
        
        .footer a {
            color: #ccc;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer a:hover {
            color: var(--primary-yellow);
        }
        
        .footer-bottom {
            border-top: 1px solid #333;
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            color: #999;
        }
        
        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: var(--pure-white);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
            transition: all 0.3s ease;
            z-index: 1000;
        }
        
        .whatsapp-btn:hover {
            transform: scale(1.1);
            color: var(--pure-white);
        }
        
        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.5rem;
            }
            
            .calculator-section {
                padding: 20px;
            }
            
            .pricing-card.popular {
                transform: none;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
            }
        }
    