
    /* Import Poppins Font */
    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

   /* Updated Color Scheme */
:root {
    --primary: #FFD700; /* Gold */
    --secondary: #FFF44F; /* Lemon */
    --accent: #FFA500; /* Orange */
    --accent-light: #FFE135; /* Yellow */
    --dark: #333;
    --light: #f8f9fa;
    --gray: #6c757d;
    --success: #28a745;
    --warning: #ffc107;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    --gradient-light: linear-gradient(135deg, var(--secondary) 0%, var(--accent-light) 100%);
}

/* Updated Header Styles */
.logo-main {
    color: var(--primary); /* Gold for main logo text */
}

.logo-sub {
    color: var(--accent); /* Orange for subtitle */
}

/* Updated Button Styles */
.btn-primary {
    background: var(--gradient);
    color: var(--dark); /* Dark text for better contrast on gold */
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background-color: var(--accent); /* Orange */
    color: white;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
}

.btn-secondary:hover {
    background-color: #e69500; /* Darker orange */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-size: 1.1rem;
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--dark);
}

/* Updated Section Title */
.section-title h2 {
    color: var(--primary); /* Gold for section titles */
}

.section-title h2::after {
    background: var(--gradient);
}

/* Updated Hero Section */
.hero h1 span {
    color: var(--primary); /* Gold color for highlighted text */
}

/* Updated Service Cards */
.service-card::before {
    background: var(--gradient);
}

.service-card .service-icon {
    background: var(--gradient);
    color: var(--dark);
}

.service-card:hover .service-icon {
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.3);
}

/* Updated Value Cards */
.value-card .value-icon {
    color: var(--primary);
}

.value-card:hover .value-icon {
    background: var(--gradient);
    color: var(--dark);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* Updated Navigation */
nav ul li a::after {
    background: var(--gradient);
}

nav ul li a:hover {
    color: var(--primary);
}

/* Updated Dropdown Menu */
.dropdown-item:hover {
    color: var(--primary);
    border-left-color: var(--primary);
}

/* Updated Footer */
.footer-column h3::after {
    background: var(--gradient);
}

.footer-links i {
    color: var(--accent); /* Orange for icons */
}

.social-links a:hover {
    background: var(--gradient);
}

/* Updated Timeline Steps */
.step-icon {
    background: var(--gradient);
}

.timeline-step:hover .step-icon {
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* Updated Status Badges */
.status-in-transit {
    background: var(--secondary); /* Lemon */
    color: var(--dark);
    border: 1px solid var(--accent-light);
}

/* Updated Progress Bar */
.progress-bar .step.completed .dot {
    background: var(--primary);
    border-color: var(--primary);
}

.progress-bar .step.active .dot {
    background: var(--accent); /* Orange */
    border-color: var(--accent);
}

/* Updated History Items */
.history-icon {
    background: var(--gradient);
}

.history-content {
    border-left: 4px solid var(--primary);
}

/* Additional Gold Accent Styles */
.gold-accent {
    color: var(--primary);
}

.orange-accent {
    color: var(--accent);
}

.lemon-bg {
    background-color: var(--secondary);
}

.yellow-bg {
    background-color: var(--accent-light);
}

/* Updated Form Focus States */
.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

/* Updated Service Section Background */
.services-section {
    background: linear-gradient(rgba(255, 215, 0, 0.9), rgba(255, 165, 0, 0.9)), url('https://i.pinimg.com/736x/65/8f/be/658fbe2e80d0661124b635214882321b.jpg');
}

.services-section::before {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.9) 0%, rgba(255, 165, 0, 0.8) 100%);
}

/* Updated Values Section */
.values-section {
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://i.pinimg.com/736x/e8/0a/f8/e80af80fff2789161299bc9abf49110b.jpg');
}

/* Updated Page Hero */
.page-hero::before {
    background: var(--gradient);
}

/* Updated Contact Icons */
.contact-icon {
    background: var(--gradient);
}

/* Updated Mission Stats */
.stat-number {
    color: var(--primary);
}

/* Updated Pricing Header */
.pricing-header {
    background: var(--gradient);
}

/* Updated Tracking Progress */
.progress {
    background: var(--gradient);
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .service-card:hover .service-icon,
    .value-card:hover .value-icon {
        box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
    }
}
    
    body {
        color: var(--dark);
        line-height: 1.7;
        background-color: #f5f7fa;
        font-size: 16px;
        font-weight: 400;
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }
    
    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .btn {
        display: inline-block;
        padding: 14px 28px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.1rem;
        transition: all 0.3s ease;
        cursor: pointer;
        border: none;
        position: relative;
        overflow: hidden;
    }
    
    .btn-primary {
        background: var(--gradient);
        color: white;
        box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
    }
    
    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 86, 179, 0.4);
    }
    
    .btn-secondary {
        background-color: var(--secondary);
        color: white;
        box-shadow: 0 4px 15px rgba(255, 102, 0, 0.3);
    }
    
    .btn-secondary:hover {
        background-color: #e55c00;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(255, 102, 0, 0.4);
    }
    
    .btn-outline {
        background-color: transparent;
        border: 2px solid var(--primary);
        color: var(--primary);
        font-size: 1.1rem;
    }
    
    .btn-outline:hover {
        background-color: var(--primary);
        color: white;
    }
    
    section {
        padding: 100px 0;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .section-title h2 {
        font-size: 3.2rem;
        font-weight: 700;
        margin-bottom: 20px;
        color: var(--primary);
        position: relative;
        display: inline-block;
        line-height: 1.2;
    }
    
    .section-title h2::after {
        content: '';
        position: absolute;
        bottom: -15px;
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
        height: 5px;
        background: var(--gradient);
        border-radius: 3px;
    }
    
    .section-title p {
        font-size: 1.3rem;
        color: var(--gray);
        max-width: 800px;
        margin: 30px auto 0;
        font-weight: 400;
        line-height: 1.6;
    }
    
   
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            line-height: 1.6;
            color: var(--dark-color);
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--primary-color);
            font-weight: bold;
            font-size: 24px;
        }
        
        .logo-image {
            height: 50px;
            margin-right: 10px;
        }
        
        .logo-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        
        .logo-main {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary-color);
        }
        
        .logo-sub {
            font-size: 14px;
            font-weight: 500;
            color: var(--secondary-color);
        }
        
        
        
    
    nav ul {
        display: flex;
        list-style: none;
    }
    
    nav ul li {
        margin-left: 30px;
        position: relative;
    }
    
    nav ul li a {
        text-decoration: none;
        color: var(--dark);
        font-weight: 500;
        font-size: 1.1rem;
        transition: color 0.3s;
        padding: 10px 0;
        position: relative;
    }
    
    nav ul li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 0;
        height: 3px;
        background: var(--gradient);
        transition: width 0.3s ease;
    }
    
    nav ul li a:hover::after,
    nav ul li a.active::after {
        width: 100%;
    }
    
    nav ul li a:hover {
        color: var(--primary);
    }
    
    /* Service Dropdown Styles - Mobile Fix */
.services-dropdown {
    position: relative;
}

.services-dropdown > a::after {
    content: '▼';
    font-size: 0.8rem;
    margin-left: 8px;
    color: var(--primary);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 300px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.15);
    padding: 20px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.services-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 15px 30px;
    color: var(--dark);
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    border-left: 4px solid transparent;
    font-size: 1.1rem;
    font-weight: 500;
}

.dropdown-item:hover {
    background: rgba(255, 215, 0, 0.05);
    color: var(--primary);
    border-left-color: var(--primary);
    padding-left: 35px;
}

.dropdown-item i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--primary);
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 215, 0, 0.2);
    margin: 15px 0;
}

/* Mobile Responsive Fixes */
@media (max-width: 768px) {
    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 12px 12px;
        z-index: 1000;
    }

    nav ul.show {
        display: flex;
    }

    nav ul li {
        margin: 10px 0;
        margin-left: 0;
        width: 100%;
    }

    nav ul li a {
        font-size: 1rem;
        padding: 12px 0;
        display: block;
        color: var(--dark); /* Ensure text is visible */
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    }

    /* Mobile Dropdown Menu Fix */
    .dropdown-menu {
        position: static;
        width: 100%;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 10px 0;
        background: rgba(255, 215, 0, 0.05);
        border: none;
        border-radius: 8px;
        margin-top: 10px;
    }

    .dropdown-item {
        padding: 12px 20px;
        font-size: 1rem;
        color: var(--dark);
        border-left: 3px solid transparent;
    }

    .dropdown-item:hover {
        background: rgba(255, 215, 0, 0.1);
        color: var(--primary);
        padding-left: 25px;
    }

    .dropdown-divider {
        background: rgba(255, 215, 0, 0.3);
        margin: 10px 20px;
    }

    .services-dropdown > a::after {
        content: '▼';
        float: right;
        margin-right: 10px;
        transition: transform 0.3s ease;
    }

    .services-dropdown.active > a::after {
        transform: rotate(180deg);
    }
}

@media (max-width: 480px) {
    .dropdown-menu {
        padding: 8px 0;
    }

    .dropdown-item {
        padding: 10px 15px;
        font-size: 0.95rem;
    }

    .dropdown-item i {
        font-size: 1rem;
        margin-right: 10px;
    }
}


.header-actions {
    display: flex;
    gap: 20px;
}

.mobile-menu {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--dark);
}

.mobile-menu:hover {
    color: var(--primary); /* Gold on hover */
}

/* Page-specific styles */
.page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 140px 0;
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient); /* Gold to Orange gradient */
    opacity: 0.8;
    z-index: 1;
}

.page-hero > .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    color: white;
}

.page-hero p {
    font-size: 1.4rem;
    margin-bottom: 40px;
    font-weight: 400;
    line-height: 1.6;
    color: white;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    color: white;
}

.hero h1 span {
    color: var(--primary); /* Gold color */
    display: block;
    font-size: 3.5rem;
    margin-top: 5px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

.hero p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
    color: white;
}

/* Enhanced Hero CTA Buttons */
.hero .btn-primary {
    background: var(--gradient);
    color: var(--dark);
    border: 2px solid var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero .btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.hero .btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.hero .btn-secondary:hover {
    background: white;
    color: var(--dark);
    transform: translateY(-3px);
}

/* Mobile Responsive Styles */
@media (max-width: 1200px) {
    .page-hero h1 {
        font-size: 3rem;
    }
    
    .hero h1 {
        font-size: 3.8rem;
    }
    
    .hero h1 span {
        font-size: 3rem;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .page-hero {
        padding: 100px 0;
    }
    
    .page-hero h1 {
        font-size: 2.8rem;
    }
    
    .page-hero p {
        font-size: 1.2rem;
    }
    
    .hero h1 {
        font-size: 3.2rem;
    }
    
    .hero h1 span {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .dropdown-menu {
        width: 280px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 80px 0;
    }
    
    .page-hero h1 {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
    
    .page-hero p {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }
    
    .hero h1 span {
        font-size: 2rem;
        margin-top: 3px;
    }
    
    .hero h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 1rem;
        margin: 0 auto 30px;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .dropdown-menu {
        position: static;
        width: 100%;
        box-shadow: none;
        border: none;
        background: rgba(255, 215, 0, 0.05);
    }
}

@media (max-width: 576px) {
    .page-hero {
        padding: 60px 20px;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .page-hero p {
        font-size: 1rem;
        margin-bottom: 25px;
        line-height: 1.5;
    }
    
    .hero {
        padding: 80px 20px !important;
    }
    
    .hero h1 {
        font-size: 2rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }
    
    .hero h1 span {
        font-size: 1.6rem;
        margin-top: 2px;
    }
    
    .hero h2 {
        font-size: 1.3rem;
        margin-bottom: 15px;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin: 0 auto 25px;
        line-height: 1.5;
    }
    
    .dropdown-menu {
        padding: 15px 0;
    }
    
    .dropdown-item {
        padding: 12px 20px;
        font-size: 1rem;
    }
}

@media (max-width: 400px) {
    .page-hero h1 {
        font-size: 1.6rem;
    }
    
    .page-hero p {
        font-size: 0.9rem;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero h1 span {
        font-size: 1.4rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
}

/* Ensure container has proper padding on mobile */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Prevent horizontal overflow */
html, body {
    overflow-x: hidden;
    max-width: 100%;
}

/* Ensure text doesn't overflow containers */
.page-hero h1,
.page-hero p,
.hero h1,
.hero h2,
.hero p {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Additional Gold Theme Enhancements */
.services-dropdown > a {
    color: var(--dark);
    transition: color 0.3s ease;
}

.services-dropdown:hover > a {
    color: var(--primary); /* Gold on hover */
}

/* Gold accent for active dropdown items */
.dropdown-item.active {
    background: rgba(255, 215, 0, 0.1);
    color: var(--primary);
    border-left-color: var(--primary);
}

/* Enhanced hero text contrast */
.hero h1 span {
    background: linear-gradient(45deg, var(--primary), var(--accent-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

/* Gold scrollbar for dropdown */
.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: rgba(255, 215, 0, 0.1);
    border-radius: 3px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}
    
    .booking-form {
        max-width: 800px;
        margin: 0 auto;
        background: white;
        padding: 50px;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
    
    .form-section {
        margin-bottom: 50px;
        padding-bottom: 40px;
        border-bottom: 1px solid #eee;
    }
    
    .form-section h3 {
        margin-bottom: 25px;
        color: var(--primary);
        position: relative;
        padding-left: 20px;
        font-size: 1.8rem;
        font-weight: 600;
    }
    
    .form-section h3::before {
        content: '';
        position: absolute;
        left: 0;
        top: 5px;
        height: 25px;
        width: 6px;
        background: var(--gradient);
        border-radius: 3px;
    }
    
    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .form-group {
        margin-bottom: 25px;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 10px;
        font-weight: 500;
        font-size: 1.1rem;
        color: var(--dark);
    }
    
    .form-group input, .form-group select, .form-group textarea {
        width: 100%;
        padding: 15px 20px;
        border: 1px solid #ddd;
        border-radius: 8px;
        font-size: 1.1rem;
        transition: all 0.3s;
        font-family: 'Poppins', sans-serif;
    }
    
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
        outline: none;
    }
    
    /* Service Cards */
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 35px;
    }
    
    .service-card {
        background: white;
        border-radius: 15px;
        padding: 45px 35px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
    }
    
    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: var(--gradient);
    }
    
    .service-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .service-icon {
        font-size: 3.5rem;
        margin-bottom: 25px;
        display: inline-block;
        padding: 20px;
        background: rgba(0, 86, 179, 0.1);
        border-radius: 12px;
    }
    
    .service-card h3 {
        font-size: 1.6rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: var(--dark);
        line-height: 1.3;
    }
    
    .service-card p {
        font-size: 1.1rem;
        color: var(--gray);
        line-height: 1.7;
        font-weight: 400;
    }
    
    /* Value Cards */
    .values-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 35px;
    }
    
    .value-card {
        text-align: center;
        padding: 45px 25px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        transition: transform 0.3s ease;
    }
    
    .value-card:hover {
        transform: translateY(-8px);
    }
    
    .value-icon {
        font-size: 3.2rem;
        color: var(--primary);
        margin-bottom: 25px;
        display: inline-block;
        padding: 20px;
        background: rgba(0, 86, 179, 0.1);
        border-radius: 50%;
    }
    
    .value-card h3 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 20px;
        color: var(--dark);
        line-height: 1.3;
    }
    
    .value-card p {
        font-size: 1.1rem;
        color: var(--gray);
        line-height: 1.7;
        font-weight: 400;
    }
    
    /* Enhanced Services Section with Background Images */
    .services-section {
        position: relative;
        padding: 100px 0;
        background: linear-gradient(rgba(0, 86, 179, 0.9), rgba(0, 86, 179, 0.9)), url('https://i.pinimg.com/736x/65/8f/be/658fbe2e80d0661124b635214882321b.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
    }
    
    .services-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(0, 86, 179, 0.9) 0%, rgba(0, 196, 204, 0.8) 100%);
        z-index: 1;
    }
    
    .services-section > .container {
        position: relative;
        z-index: 2;
    }
    
    /* Enhanced Service Cards with Background Images */
    .service-card {
        background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)) !important;
        border-radius: 15px;
        padding: 45px 35px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        position: relative;
        overflow: hidden;
        border: none;
        background-size: cover !important;
        background-position: center !important;
    }
    
    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
        z-index: 1;
        transition: opacity 0.4s ease;
    }
    
    .service-card:hover::before {
        opacity: 0.85;
    }
    
    .service-card > * {
        position: relative;
        z-index: 2;
    }
    
    .service-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }
    
    .service-card .service-icon {
        font-size: 3.5rem;
        margin-bottom: 25px;
        display: inline-block;
        padding: 25px;
        background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
        border-radius: 50%;
        transition: all 0.4s ease;
        color: white;
        position: relative;
        z-index: 2;
    }
    
    .service-card:hover .service-icon {
        transform: scale(1.1) rotate(5deg);
        box-shadow: 0 10px 25px rgba(0, 86, 179, 0.3);
    }
    
    /* Values Section with Background */
    .values-section {
        position: relative;
        background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://i.pinimg.com/736x/e8/0a/f8/e80af80fff2789161299bc9abf49110b.jpg');
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        padding: 100px 0;
    }
    
    .values-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.92);
        z-index: 1;
    }
    
    .values-section > .container {
        position: relative;
        z-index: 2;
    }
    
    /* Enhanced Value Cards */
    .value-card {
        background: linear-gradient(rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.95)) !important;
        border-radius: 12px;
        padding: 45px 25px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        transition: all 0.4s ease;
        position: relative;
        overflow: hidden;
        border: none;
        background-size: cover !important;
        background-position: center !important;
        text-align: center;
    }
    
    .value-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.98) 100%);
        z-index: 1;
        transition: opacity 0.4s ease;
    }
    
    .value-card:hover::before {
        opacity: 0.9;
    }
    
    .value-card > * {
        position: relative;
        z-index: 2;
    }
    
    .value-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    }
    
    .value-card .value-icon {
        font-size: 3.2rem;
        margin-bottom: 25px;
        display: inline-block;
        padding: 25px;
        background: rgba(0, 86, 179, 0.1);
        border-radius: 50%;
        transition: all 0.4s ease;
        color: var(--primary);
        position: relative;
        z-index: 2;
    }
    
    .value-card:hover .value-icon {
        background: var(--gradient);
        color: white;
        transform: scale(1.1);
        box-shadow: 0 8px 20px rgba(0, 86, 179, 0.3);
    }
    
    /* Footer Styles */
    footer {
        background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
        color: white;
        padding: 70px 0 20px;
        margin-top: auto;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        margin-bottom: 50px;
    }
    
    .footer-column h3 {
        font-size: 1.4rem;
        margin-bottom: 25px;
        color: white;
        position: relative;
        padding-bottom: 10px;
    }
    
    .footer-column h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 3px;
        background: var(--gradient);
        border-radius: 2px;
    }
    
    .footer-column p {
        color: rgba(255, 255, 255, 0.8);
        line-height: 1.7;
        margin-bottom: 20px;
    }
    
    .footer-links {
        list-style: none;
    }
    
    .footer-links li {
        margin-bottom: 12px;
    }
    
    .footer-links a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
    }
    
    .footer-links a:hover {
        color: white;
        transform: translateX(5px);
    }
    
    .footer-links i {
        margin-right: 10px;
        width: 20px;
        text-align: center;
        color: var(--accent);
    }
    
    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 20px;
    }
    
    .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .social-links a:hover {
        background: var(--gradient);
        transform: translateY(-3px);
    }
    
    .copyright {
        text-align: center;
        padding-top: 30px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.9rem;
    }
    
    .copyright a {
        color: rgba(255, 255, 255, 0.8);
        text-decoration: none;
        transition: color 0.3s ease;
    }
    
    .copyright a:hover {
        color: white;
    }
    
    /* Mobile Responsive Styles */
    @media (max-width: 1200px) {
        .container {
            padding: 0 30px;
        }
        
        .section-title h2 {
            font-size: 2.8rem;
        }
        
        .section-title p {
            font-size: 1.2rem;
        }
        
        .footer-content {
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
    }
    
    @media (max-width: 992px) {
        section {
            padding: 80px 0;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
        }
        
        .services-grid {
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
        }
        
        .values-grid {
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
        }
        
        .service-card,
        .value-card {
            padding: 35px 25px;
        }
        
        .service-card h3,
        .value-card h3 {
            font-size: 1.4rem;
        }
        
        .service-card p,
        .value-card p {
            font-size: 1rem;
        }
    }
    
    @media (max-width: 768px) {
        body {
            font-size: 15px;
        }
        
        .header-container {
            padding: 15px 0;
        }
        
        .logo {
            font-size: 1.8rem;
        }
        
        .logo-icon {
            font-size: 2rem;
        }
        
        nav ul {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: white;
            flex-direction: column;
            padding: 20px;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            border-radius: 0 0 12px 12px;
            z-index: 1000;
        }
        
        nav ul.show {
            display: flex;
        }
        
        nav ul li {
            margin: 10px 0;
            margin-left: 0;
        }
        
        nav ul li a {
            font-size: 1rem;
            padding: 12px 0;
            display: block;
        }
        
        .mobile-menu {
            display: block;
        }
        
        .header-actions {
            display: none;
        }
        
        .page-hero {
            padding: 100px 0;
        }
        
        .page-hero h1 {
            font-size: 2.5rem;
        }
        
        .page-hero p {
            font-size: 1.2rem;
        }
        
        .section-title {
            margin-bottom: 40px;
        }
        
        .section-title h2 {
            font-size: 2.2rem;
        }
        
        .section-title p {
            font-size: 1.1rem;
        }
        
        .services-section,
        .values-section {
            background-attachment: scroll;
            padding: 60px 0;
        }
        
        .services-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .values-grid {
            grid-template-columns: 1fr;
            gap: 20px;
        }
        
        .service-card,
        .value-card {
            padding: 30px 20px;
        }
        
        .service-icon,
        .value-icon {
            font-size: 2.5rem;
            padding: 15px;
            margin-bottom: 20px;
        }
        
        .service-card h3,
        .value-card h3 {
            font-size: 1.3rem;
        }
        
        .btn {
            padding: 12px 24px;
            font-size: 1rem;
        }
        
        .booking-form {
            padding: 30px 20px;
        }
        
        .form-row {
            grid-template-columns: 1fr;
            gap: 15px;
        }
        
        .form-section {
            margin-bottom: 30px;
            padding-bottom: 30px;
        }
        
        .form-section h3 {
            font-size: 1.4rem;
        }
        
        .dropdown-menu {
            position: static;
            width: 100%;
            opacity: 1;
            visibility: visible;
            transform: none;
            box-shadow: none;
            padding: 10px 0;
            background: transparent;
        }
        
        .dropdown-item {
            padding: 10px 20px;
            font-size: 1rem;
        }
        
        .footer-content {
            grid-template-columns: 1fr;
            gap: 30px;
        }
    }
    
    @media (max-width: 480px) {
        .container {
            padding: 0 15px;
        }
        
        .section-title h2 {
            font-size: 1.8rem;
        }
        
        .page-hero h1 {
            font-size: 2rem;
        }
        
        .page-hero p {
            font-size: 1rem;
        }
        
        .service-card,
        .value-card {
            padding: 25px 15px;
        }
        
        .service-icon,
        .value-icon {
            font-size: 2rem;
            padding: 12px;
        }
        
        .service-card h3,
        .value-card h3 {
            font-size: 1.2rem;
        }
        
        .btn {
            padding: 10px 20px;
            font-size: 0.9rem;
        }
    }

    /* Animation for cards when they come into view */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .service-card,
    .value-card {
        animation: fadeInUp 0.6s ease forwards;
    }

    .service-card:nth-child(1) { animation-delay: 0.1s; }
    .service-card:nth-child(2) { animation-delay: 0.2s; }
    .service-card:nth-child(3) { animation-delay: 0.3s; }
    .service-card:nth-child(4) { animation-delay: 0.4s; }
    .service-card:nth-child(5) { animation-delay: 0.5s; }
    .service-card:nth-child(6) { animation-delay: 0.6s; }

    .value-card:nth-child(1) { animation-delay: 0.1s; }
    .value-card:nth-child(2) { animation-delay: 0.2s; }
    .value-card:nth-child(3) { animation-delay: 0.3s; }
    .value-card:nth-child(4) { animation-delay: 0.4s; }
    .value-card:nth-child(5) { animation-delay: 0.5s; }
    .value-card:nth-child(6) { animation-delay: 0.6s; }
    
/* Service Timeline Styles */
.service-timeline {
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.service-timeline h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 40px;
    position: relative;
    display: inline-block;
}

.service-timeline h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
}

.timeline-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-steps::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    z-index: 1;
}

.timeline-step {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 20px 15px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.timeline-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--primary);
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 20px rgba(0, 86, 179, 0.3);
}

.step-icon i {
    font-size: 2rem;
    color: white;
}

.timeline-step h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 10px;
}

.timeline-step p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.service-timeline > p:last-child {
    font-size: 1.2rem;
    color: var(--dark);
    background: white;
    padding: 15px 25px;
    border-radius: 8px;
    display: inline-block;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--secondary);
}

/* Mobile Responsive Styles for Timeline */
@media (max-width: 992px) {
    .timeline-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .timeline-steps::before {
        display: none;
    }
    
    .service-timeline {
        padding: 30px 20px;
    }
    
    .service-timeline h3 {
        font-size: 1.8rem;
    }
    
    .step-icon {
        width: 70px;
        height: 70px;
    }
    
    .step-icon i {
        font-size: 1.8rem;
    }
    
    .timeline-step h4 {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .timeline-steps {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .service-timeline {
        padding: 25px 15px;
    }
    
    .service-timeline h3 {
        font-size: 1.6rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
    
    .timeline-step h4 {
        font-size: 1.1rem;
    }
    
    .service-timeline > p:last-child {
        font-size: 1rem;
        padding: 12px 20px;
    }
}

/* Animation for timeline steps */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.timeline-step {
    animation: fadeInUp 0.6s ease forwards;
}

.timeline-step:nth-child(1) { animation-delay: 0.1s; }
.timeline-step:nth-child(2) { animation-delay: 0.2s; }
.timeline-step:nth-child(3) { animation-delay: 0.3s; }
.timeline-step:nth-child(4) { animation-delay: 0.4s; }    

/* WhatsApp Floating Icon Styles */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1000;
}

.whatsapp-link {
    display: block;
    position: relative;
    text-decoration: none;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
    position: relative;
    overflow: hidden;
}

.whatsapp-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: scale(0);
    transition: transform 0.3s ease;
}

.whatsapp-icon:hover::before {
    transform: scale(1);
}

.whatsapp-icon i {
    font-size: 28px;
    color: white;
    position: relative;
    z-index: 2;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: #333;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 100%;
    transform: translateY(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #333;
}

.whatsapp-link:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

.whatsapp-link:hover .whatsapp-icon {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.8);
    }
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
}

/* WhatsApp Notification Badge */
.whatsapp-notification {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4444;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-2px);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-icon {
        width: 55px;
        height: 55px;
    }
    
    .whatsapp-icon i {
        font-size: 24px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
    
    .whatsapp-notification {
        width: 18px;
        height: 18px;
        font-size: 0.65rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-icon {
        width: 50px;
        height: 50px;
    }
    
    .whatsapp-icon i {
        font-size: 22px;
    }
}

/* Optional: WhatsApp Chat Widget */
.whatsapp-chat-widget {
    position: fixed;
    bottom: 100px;
    right: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.15);
    width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.whatsapp-chat-widget.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chat-header {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 15px;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-header i {
    font-size: 20px;
}

.chat-header h4 {
    margin: 0;
    font-size: 1rem;
}

.chat-body {
    padding: 15px;
    max-height: 200px;
    overflow-y: auto;
}

.chat-message {
    background: #f1f1f1;
    padding: 10px 15px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.chat-actions {
    padding: 15px;
    border-top: 1px solid #eee;
}

.chat-btn {
    display: block;
    width: 100%;
    padding: 10px;
    background: #25D366;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    text-align: center;
}

.chat-btn:hover {
    background: #128C7E;
}

/* Track Page Styles */
.tracking-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tracking-header {
    text-align: center;
    margin-bottom: 40px;
}

.tracking-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.tracking-header p {
    font-size: 1.2rem;
    color: var(--gray);
}

.tracking-input-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 40px;
    text-align: center;
}

.tracking-input {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto 20px;
}

.tracking-input input {
    flex: 1;
    padding: 15px 20px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.tracking-input input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 86, 179, 0.1);
    outline: none;
}

.tracking-help {
    color: var(--gray);
    font-size: 0.9rem;
}

.tracking-help a {
    color: var(--primary);
    text-decoration: none;
}

.tracking-help a:hover {
    text-decoration: underline;
}

.tracking-result {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

/* Journey Visual */
.journey-visual {
    display: flex;
    justify-content: space-between;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.journey-step {
    text-align: center;
    flex: 1;
    position: relative;
}

.journey-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: var(--primary);
    opacity: 0.3;
}

.step-image {
    position: relative;
    margin-bottom: 15px;
}

.step-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.step-placeholder {
    width: 80px;
    height: 80px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.step-placeholder i {
    font-size: 2rem;
    color: white;
}

.step-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--secondary);
    color: white;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

.step-info h4 {
    font-size: 1.2rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.step-info p {
    color: var(--gray);
    margin-bottom: 5px;
}

.step-time {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
}

/* Progress Bar */
.tracking-progress {
    padding: 30px 40px;
    border-bottom: 1px solid #eee;
}

.tracking-progress h3 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 25px;
}

.progress-bar {
    position: relative;
    height: 6px;
    background: #e9ecef;
    border-radius: 3px;
    margin: 40px 0;
}

.progress {
    height: 100%;
    background: var(--gradient);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.progress-bar .step {
    position: absolute;
    top: -20px;
    transform: translateX(-50%);
    text-align: center;
    width: 100px;
}

.progress-bar .step.completed .dot {
    background: var(--success);
    border-color: var(--success);
}

.progress-bar .step.active .dot {
    background: var(--primary);
    border-color: var(--primary);
    animation: pulse 2s infinite;
}

.progress-bar .step .dot {
    width: 16px;
    height: 16px;
    background: #e9ecef;
    border: 3px solid white;
    border-radius: 50%;
    margin: 0 auto 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.progress-bar .step span {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 3px;
}

.progress-bar .step p {
    font-size: 0.8rem;
    color: var(--gray);
    margin: 0;
}

/* Tracking Details */
.tracking-details-card {
    padding: 30px 40px;
    border-bottom: 1px solid #eee;
}

.details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.details-header h4 {
    font-size: 1.4rem;
    color: var(--dark);
    margin: 0;
}

.status-badge {
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.status-in-transit {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f8f9fa;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item strong {
    color: var(--dark);
}

.detail-item span {
    color: var(--gray);
}

/* Tracking History */
.tracking-history {
    padding: 30px 40px;
}

.tracking-history h4 {
    font-size: 1.4rem;
    color: var(--dark);
    margin-bottom: 25px;
}

.history-timeline {
    position: relative;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e9ecef;
}

.history-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

.history-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    position: relative;
    z-index: 2;
}

.history-icon i {
    font-size: 1.2rem;
    color: white;
}

.history-content {
    flex: 1;
}

.history-content h5 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 5px;
}

.history-content p {
    color: var(--gray);
    margin-bottom: 5px;
}

.history-time {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
}

/* Contact Page Styles */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact-icon i {
    font-size: 1.8rem;
    color: white;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.contact-card p {
    color: var(--gray);
    line-height: 1.6;
    margin: 0;
}

/* About Page Styles */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.about-content h3 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.about-content p {
    font-size: 1.1rem;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.7;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.stat {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--gray);
    font-weight: 500;
}

.about-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
}

.image-overlay h4 {
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.image-overlay p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.operations-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.operation-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: 250px;
}

.operation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.operation-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px;
}

.operation-overlay h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.operation-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.operations-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.operation-column h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.operation-column p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 20px;
}

.operation-column ul {
    list-style: none;
    padding: 0;
}

.operation-column li {
    padding: 8px 0;
    color: var(--gray);
    display: flex;
    align-items: center;
}

.operation-column li i {
    color: var(--success);
    margin-right: 10px;
    font-size: 0.9rem;
}

/* Pricing Page Styles */
.pricing-tables {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-table {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.pricing-table:hover {
    transform: translateY(-5px);
}

.pricing-header {
    background: var(--gradient);
    color: white;
    padding: 30px;
    text-align: center;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.pricing-header p {
    opacity: 0.9;
    margin: 0;
}

.pricing-body {
    padding: 30px;
}

.pricing-body table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-body th,
.pricing-body td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #f8f9fa;
}

.pricing-body th {
    font-weight: 600;
    color: var(--dark);
    background: #f8f9fa;
}

.pricing-body tr:last-child td {
    border-bottom: none;
}

.pricing-body td:last-child {
    font-weight: 600;
    color: var(--primary);
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
    /* Track Page */
    .tracking-input {
        flex-direction: column;
    }
    
    .journey-visual {
        flex-direction: column;
        gap: 30px;
    }
    
    .journey-step:not(:last-child)::after {
        display: none;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    /* Contact Page */
    .contact-info {
        gap: 20px;
    }
    
    .contact-card {
        padding: 25px 20px;
    }
    
    /* About Page */
    .about-hero {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .mission-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .operations-showcase {
        grid-template-columns: 1fr;
    }
    
    .operations-details {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Pricing Page */
    .pricing-tables {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Track Page */
    .tracking-input-section,
    .contact-form {
        padding: 25px 20px;
    }
    
    .progress-bar .step {
        width: 80px;
    }
    
    .progress-bar .step span {
        font-size: 0.8rem;
    }
    
    /* About Page */
    .about-image img {
        height: 300px;
    }
    
    .mission-stats {
        gap: 10px;
    }
    
    .stat {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Tracking Page Styles */
.tracking-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.tracking-header {
    text-align: center;
    margin-bottom: 40px;
}

.tracking-header h2 {
    color: var(--primary);
    margin-bottom: 10px;
}

.tracking-input-section {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.tracking-input {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.tracking-input input {
    flex: 1;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
}

.tracking-help {
    text-align: center;
    color: #666;
    margin: 0;
}

/* Journey Visual */
.journey-visual {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
}

.journey-visual::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 50px;
    right: 50px;
    height: 3px;
    background: #e1e5e9;
    z-index: 1;
}

.journey-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
}

.journey-step.active .step-image {
    border-color: var(--primary);
}

.journey-step.current .step-image {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(230, 164, 0, 0.3);
}

.step-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 3px solid #e1e5e9;
    margin: 0 auto 15px;
    overflow: hidden;
    position: relative;
    background: white;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.step-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    color: #ccc;
    font-size: 2rem;
}

.step-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--primary);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
}

.step-info h4 {
    margin-bottom: 5px;
    color: var(--primary);
}

.step-info p {
    color: #666;
    margin-bottom: 5px;
    font-size: 14px;
}

.step-time {
    font-size: 12px;
    color: #999;
}

/* Progress Bar */
.tracking-progress {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.progress-bar {
    position: relative;
    height: 100px;
    margin-top: 30px;
}

.progress-bar .progress {
    position: absolute;
    top: 25px;
    left: 0;
    height: 6px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.progress-bar .step {
    position: absolute;
    top: 0;
    text-align: center;
    width: 20%;
}

.progress-bar .step:nth-child(2) { left: 0; }
.progress-bar .step:nth-child(3) { left: 20%; }
.progress-bar .step:nth-child(4) { left: 40%; }
.progress-bar .step:nth-child(5) { left: 60%; }
.progress-bar .step:nth-child(6) { left: 80%; }

.progress-bar .dot {
    width: 20px;
    height: 20px;
    background: #e1e5e9;
    border-radius: 50%;
    margin: 0 auto 10px;
    position: relative;
    z-index: 2;
}

.progress-bar .step.completed .dot {
    background: var(--primary);
}

.progress-bar .step.active .dot {
    background: var(--secondary);
    box-shadow: 0 0 0 3px rgba(230, 164, 0, 0.3);
}

.progress-bar .step span {
    display: block;
    font-weight: 600;
    margin-bottom: 5px;
}

.progress-bar .step p {
    font-size: 12px;
    color: #999;
    margin: 0;
}

/* Tracking Details */
.tracking-details-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e1e5e9;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.detail-item:last-child {
    border-bottom: none;
}

/* Tracking History */
.tracking-history {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.history-timeline {
    position: relative;
    margin-left: 30px;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e1e5e9;
}

.history-item {
    position: relative;
    margin-bottom: 30px;
}

.history-item:last-child {
    margin-bottom: 0;
}

.history-icon {
    position: absolute;
    left: -35px;
    top: 0;
    width: 30px;
    height: 30px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.history-content {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.history-content h5 {
    margin-bottom: 5px;
    color: var(--primary);
}

.history-content p {
    margin-bottom: 5px;
    color: #666;
}

.history-time {
    font-size: 12px;
    color: #999;
}

.location {
    font-size: 14px;
    color: #666;
}

.location i {
    margin-right: 5px;
    color: var(--secondary);
}

/* Status Badges */
.status-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.status-pending { background: #fff3cd; color: #856404; }
.status-collected { background: #d1ecf1; color: #0c5460; }
.status-in-transit { background: #cce7ff; color: #004085; }
.status-processing { background: #e2e3e5; color: #383d41; }
.status-in-flight { background: #d1ecf1; color: #0c5460; }
.status-out-for-delivery { background: #fff3cd; color: #856404; }
.status-delivered { background: #d4edda; color: #155724; }
.status-cancelled { background: #f8d7da; color: #721c24; }

/* Loading and Error States */
.loading-state {
    text-align: center;
    padding: 60px 20px;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.tracking-error {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tracking-error i {
    font-size: 3rem;
    color: #dc3545;
    margin-bottom: 20px;
}

.tracking-error h3 {
    color: #dc3545;
    margin-bottom: 15px;
}

.no-events {
    text-align: center;
    color: #666;
    font-style: italic;
    padding: 40px 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .tracking-input {
        flex-direction: column;
    }
    
    .journey-visual {
        flex-direction: column;
        gap: 30px;
    }
    
    .journey-visual::before {
        display: none;
    }
    
    .progress-bar {
        height: auto;
    }
    
    .progress-bar .step {
        position: static;
        width: 100%;
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        text-align: left;
    }
    
    .progress-bar .progress {
        display: none;
    }
    
    .progress-bar .dot {
        margin: 0 15px 0 0;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
    }
}
