/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Montserrat:wght@400;500;600;700&family=Open+Sans:wght@300;400;500;600&display=swap');

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B35;
    --secondary-color: #004E89;
    --accent-color: #FFA500;
    --dark-color: #1A1A2E;
    --light-color: #F8F9FA;
    --text-dark: #2C3E50;
    --text-light: #6C757D;
    --success-color: #28A745;
    --warning-color: #FFC107;
    --danger-color: #DC3545;
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    --gradient-secondary: linear-gradient(135deg, #004E89 0%, #0077B6 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0, 78, 137, 0.95) 0%, rgba(0, 119, 182, 0.95) 100%);
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.15);
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-body), sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 { font-weight: 700; }
h2 { font-weight: 700; }
h3 { font-weight: 600; }
h4 { font-weight: 600; }
h5 { font-weight: 500; }
h6 { font-weight: 500; }

/* Navigation */
.navbar {
    background: #ffffff;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.navbar-brand {
    color: var(--primary-color) !important;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.navbar-brand i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.logo-img {
    height: auto;
    width: 250px;
    max-height: 60px;
    transition: all 0.3s ease;
    display: block;
    object-fit: contain;
}

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

.nav-link {
    font-weight: 500;
    margin: 0 8px;
    color: var(--text-dark) !important;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem !important;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 53, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.btn-whatsapp {
    background: var(--success-color) !important;
    color: white !important;
    padding: 10px 20px;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.btn-whatsapp:hover {
    background: #00A040 !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)),
        url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    will-change: transform;
    transform: translateZ(0);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
    will-change: opacity;
    contain: layout style paint;
}

.hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    contain: layout;
}

.hero-content {
    padding-right: 2rem;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-content .lead {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.hero-content .badge {
    font-size: 0.9rem;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.booking-form {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 500px;
    width: 100%;
    margin: 0 auto;
    transform: translateY(0);
    transition: all 0.3s ease;
}

.booking-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.booking-form .badge {
    background: var(--gradient-primary);
    color: white;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: inline-block;
}

.booking-form h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.booking-form p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Modern Booking Form */
.booking-form {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: var(--shadow-xl);
    max-width: 500px;
    width: 100%;
    margin-left: auto;
    height: auto;
    position: relative;
}

.booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 16px 16px 0 0;
}

.booking-form h3 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-control, .form-select {
    border: 2px solid #E9ECEF;
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-weight: 500;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    outline: none;
}

.form-control:hover, .form-select:hover {
    border-color: var(--accent-color);
}

/* Modern Buttons */
.btn-primary {
    background: var(--gradient-primary);
    border: none;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, #F7931E 0%, #FF6B35 100%);
}

.btn-success {
    background: var(--success-color);
    border: none;
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-md);
}

.btn-success:hover {
    background: #00A040;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-light {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--accent-color);
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-light:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Feature Cards */
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.05);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

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

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-card h4 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Route Cards */
.route-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.route-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 78, 137, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.route-card:hover::after {
    opacity: 1;
}

.route-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

.route-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.4s ease;
}

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

.route-card .card-body {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.route-card h5 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.price-badge {
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
    font-size: 0.9rem;
}

/* Testimonial Cards */
.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    height: 100%;
    position: relative;
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
}

/* CTA Section */
.cta-section {
    background: var(--gradient-secondary);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1449824913935-59a10b8d2000?w=1920&h=600&fit=crop') center/cover;
    opacity: 0.1;
    mix-blend-mode: overlay;
}

.cta-section .row {
    position: relative;
    z-index: 2;
}

.cta-section h2 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

/* Blog Styles */
.blog-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    display: flex;
    flex-direction: column;
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA500 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.blog-card:hover::before {
    transform: scaleX(1);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.blog-card.featured {
    border: 2px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA500 100%) border-box;
}

.blog-card.small {
    max-height: 420px;
}

.blog-card .card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
    width: 100%;
}

.blog-card:hover .card-img-top {
    transform: scale(1.08);
}

.blog-card.small .card-img-top {
    height: 160px;
}

.blog-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.blog-meta .badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.65rem;
    border-radius: 15px;
    font-weight: 600;
}

.blog-card .card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card.small .card-body {
    padding: 1.25rem;
}

.blog-card .card-title {
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-family: var(--font-primary);
    font-size: 1.25rem;
    line-height: 1.3;
}

.blog-card.small .card-title {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.blog-card .card-text {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    flex: 1;
}

.blog-card.small .card-text {
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    margin-top: auto;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.author-info h6 {
    font-weight: 600;
    margin-bottom: 0;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.author-info small {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.author-info small {
    font-size: 0.8rem;
}

/* Category Cards */
.category-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA500 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.2);
    border-color: rgba(255, 107, 53, 0.3);
}

.category-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.category-card:hover .category-icon {
    transform: scale(1.1) rotate(-5deg);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.category-card h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
    color: var(--text-dark);
    font-size: 1.1rem;
}

.category-card p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    border: none;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 107, 53, 0.05);
}

.faq-question h6 {
    margin: 0;
    font-weight: 600;
    color: var(--text-dark);
    font-family: var(--font-primary);
}

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

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* Responsive Design & Core Web Vitals Optimization */

/* Large Tablets (992px - 1199px) */
@media (max-width: 1199px) {
    .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .service-card {
        height: 100%;
    }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
    .hero {
        padding: 80px 0 60px;
        min-height: 90vh;
    }
    
    .hero-content {
        text-align: center;
        padding-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .booking-form {
        margin-bottom: 2rem;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-card {
        margin-bottom: 2rem;
    }
    
    .contact-info-card {
        margin-bottom: 1.5rem;
    }
}

/* Small Tablets & Large Phones (576px - 767px) */
@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
        min-height: 85vh;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1rem;
    }
    
    .booking-form {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    .service-card {
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .blog-card {
        margin-bottom: 2rem;
    }
    
    .category-card {
        margin-bottom: 1.5rem;
    }
}

/* Mobile Phones (480px - 575px) */
@media (max-width: 576px) {
    .hero {
        padding: 50px 0 30px;
        min-height: 80vh;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-content .lead {
        font-size: 0.95rem;
    }
    
    .booking-form {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .booking-form h3 {
        font-size: 1.3rem;
    }
    
    .form-label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .form-control, .form-select {
        padding: 0.75rem;
        font-size: 0.9rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .logo-img {
        height: 30px;
    }
    
    .navbar {
        padding: 0.25rem 0;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .service-card {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .blog-card {
        margin-bottom: 1.5rem;
    }
    
    .blog-card .card-title {
        font-size: 1.1rem;
    }
    
    .contact-info-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
    
    .category-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1rem;
    }
}

/* Small Mobile Phones (320px - 479px) */
@media (max-width: 480px) {
    .hero {
        padding: 40px 0 20px;
        min-height: 75vh;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
        line-height: 1.1;
    }
    
    .hero-content .lead {
        font-size: 0.9rem;
    }
    
    .booking-form {
        padding: 1rem;
    }
    
    .booking-form h3 {
        font-size: 1.2rem;
    }
    
    .booking-form .badge {
        font-size: 0.8rem;
        padding: 0.25rem 0.5rem;
    }
    
    .form-label {
        font-size: 0.85rem;
    }
    
    .form-control, .form-select {
        padding: 0.625rem;
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.85rem;
    }
    
    .logo-img {
        height: 25px;
    }
    
    .container {
        padding: 0 10px;
    }
    
    .service-card {
        padding: 1.25rem 0.75rem;
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.1rem;
    }
    
    .service-card p {
        font-size: 0.9rem;
    }
    
    .blog-card .card-body {
        padding: 1.25rem;
    }
    
    .blog-card .card-title {
        font-size: 1rem;
    }
    
    .blog-card .card-text {
        font-size: 0.85rem;
    }
    
    .contact-info-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-info-card h4 {
        font-size: 1.1rem;
    }
    
    .contact-info-card p {
        font-size: 0.9rem;
    }
    
    .category-card {
        padding: 1.5rem 1rem;
    }
    
    .category-card h5 {
        font-size: 1rem;
    }
    
    .category-card p {
        font-size: 0.85rem;
    }
}

/* Core Web Vitals Optimizations */
@media (max-width: 768px) {
    /* Reduce layout shifts */
    .hero::before {
        animation: none;
    }
    
    /* Optimize images for mobile */
    img {
        max-width: 100%;
        height: auto;
    }
    
    /* Improve touch targets */
    .btn, .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Optimize fonts for mobile */
    body {
        font-size: 16px;
        line-height: 1.5;
    }
    
    /* Reduce motion for better performance */
    * {
        animation-duration: 0.2s !important;
        transition-duration: 0.2s !important;
    }
}

/* Icon fixes and fallbacks */
.fas, .fab {
    transform: scale(1) !important;
    transform-origin: center center !important;
    -webkit-transform: scale(1) !important;
    -moz-transform: scale(1) !important;
    -ms-transform: scale(1) !important;
    -o-transform: scale(1) !important;
}

.fa-phone-alt {
    transform: scaleX(1) rotate(0deg) !important;
    -webkit-transform: scaleX(1) rotate(0deg) !important;
    -moz-transform: scaleX(1) rotate(0deg) !important;
    -ms-transform: scaleX(1) rotate(0deg) !important;
    -o-transform: scaleX(1) rotate(0deg) !important;
}

.icon-fallback {
    font-size: 1.2em !important;
    vertical-align: middle !important;
    display: inline-block !important;
    width: 1.2em !important;
    height: 1.2em !important;
    text-align: center !important;
    line-height: 1.2em !important;
}

/* Image placeholder styles */
.fallback-applied {
    display: none !important;
}

.image-placeholder {
    background: linear-gradient(135deg, #f0f0f0 25%, #e0e0e0 25%, #e0e0e0 50%, #f0f0f0 50%, #f0f0f0 75%, #e0e0e0 75%, #e0e0e0) !important;
    background-size: 20px 20px !important;
    border: 2px dashed #ccc !important;
    border-radius: 8px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #666 !important;
    font-size: 14px !important;
    font-family: Arial, sans-serif !important;
    text-align: center !important;
    padding: 20px !important;
    box-sizing: border-box !important;
}

/* Mobile and Tablet Optimizations */

/* Touch-friendly improvements */
.btn, .nav-link, .form-control, .form-select {
    min-height: 44px;
    touch-action: manipulation;
}

/* Better mobile navigation */
@media (max-width: 991px) {
    .navbar {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem;
        font-size: 1rem;
    }
    
    .navbar-toggler {
        padding: 0.5rem 0.75rem;
        min-height: 44px;
        min-width: 44px;
    }
}

/* Enhanced mobile form styling */
@media (max-width: 768px) {
    .booking-form {
        margin: 20px auto;
        max-width: 100%;
        padding: 1.25rem;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-control, .form-select {
        padding: 1rem;
        font-size: 16px;
        min-height: 48px;
        border-radius: 8px;
    }
    
    .form-label {
        font-size: 14px;
        margin-bottom: 0.5rem;
        font-weight: 600;
    }
    
    .btn {
        padding: 1rem 1.5rem;
        font-size: 16px;
        min-height: 48px;
        border-radius: 8px;
    }
}

/* Tablet-specific optimizations */
@media (min-width: 768px) and (max-width: 1024px) {
    .container {
        max-width: 95%;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .booking-form {
        max-width: 450px;
    }
}

/* Small mobile optimizations */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.1;
    }
    
    .hero-content .lead {
        font-size: 1rem;
    }
    
    .booking-form {
        margin: 15px auto;
        padding: 1rem;
    }
    
    .form-control, .form-select {
        padding: 0.875rem;
        font-size: 16px;
    }
    
    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 16px;
    }
    
    .service-card, .blog-card, .contact-info-card {
        margin-bottom: 1.5rem;
    }
}

/* Accessibility improvements */
@media (max-width: 768px) {
    .visually-hidden {
        display: none;
    }
    
    .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
    
    /* Focus indicators for better accessibility */
    .form-control:focus,
    .form-select:focus,
    .btn:focus {
        outline: 2px solid var(--primary-color);
        outline-offset: 2px;
    }
    
    /* Better contrast for mobile */
    .text-muted {
        color: #6c757d;
        opacity: 0.9;
    }
}

/* Performance optimizations for mobile */
@media (max-width: 768px) {
    /* Reduce animations on mobile for better performance */
    .hero::before {
        animation: none;
    }
    
    .booking-form {
        transition: none;
        transform: none;
    }
    
    .service-card:hover,
    .blog-card:hover {
        transform: none;
        transition: box-shadow 0.3s ease;
    }
    
    /* Optimize images for mobile */
    img {
        content-visibility: auto;
    contain-intrinsic-size: 1024px 768px;
    }
}

/* Dark mode support for better readability */
@media (prefers-color-scheme: dark) {
    .service-card, .blog-card, .category-card {
        background: #1a1a1a;
        color: #ffffff;
    }
}

/* Contact Page Styles */
.contact-info-card {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA500 100%);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.contact-info-card:hover::before {
    animation: shimmer 1.5s ease-in-out;
}

.contact-info-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.contact-info-card:hover .contact-icon {
    transform: scale(1.1) rotate(-5deg);
    background: rgba(255, 255, 255, 0.3);
}

.contact-info-card h4 {
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.contact-info-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.contact-info-card a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-info-card a:hover {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: underline;
}

.contact-form-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA500 100%);
}

.contact-form-card h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 2rem;
    font-family: var(--font-primary);
    font-size: 1.8rem;
    text-align: center;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.quick-contact-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

.quick-contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.quick-contact-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.quick-contact-card h5 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.quick-contact-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Fleet Cards Enhancement */
.fleet-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.fleet-card .card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fleet-card:hover .card-img-top {
    transform: scale(1.05);
}

.fleet-card .card-body {
    padding: 1.5rem;
}

.fleet-card h5 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.fleet-card p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.fleet-card .text-muted {
    color: var(--text-light) !important;
    font-size: 0.85rem;
}

.fleet-card strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Service Cards Enhancement */
.service-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-highlights {
    background: rgba(255, 107, 53, 0.05);
    border-radius: 12px;
    padding: 1rem;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-color);
}

.service-highlights h6 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-family: var(--font-primary);
}

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

.features-list li {
    padding: 0.25rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.features-list li i {
    color: var(--success-color);
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

.price-info {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA500 100%);
    color: white;
    padding: 1.25rem;
    border-radius: 16px;
    text-align: center;
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.price-info::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.price-info:hover::before {
    animation: shimmer 1.5s ease-in-out;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.price-badge {
    font-size: 1.5rem;
    font-weight: 800;
    display: block;
    font-family: var(--font-primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 2;
}

.price-info small {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.95;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 2;
}

/* Small price info for homepage */
.price-info-small {
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #FFA500 100%);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    text-align: center;
    margin: 1rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-info-small::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
}

.price-info-small:hover::before {
    animation: shimmer 1.5s ease-in-out;
}

.price-info-small .price-badge {
    font-size: 0.95rem;
    font-weight: 700;
    display: block;
    font-family: var(--font-primary);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1A1A2E 0%, #2C3E50 100%);
    color: white;
    padding: 3rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
    position: relative;
}

footer h5::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-color);
}

footer p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 1rem;
}

footer ul {
    list-style: none;
    padding: 0;
}

footer ul li {
    margin-bottom: 0.8rem;
}

footer ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

footer ul li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

footer .social-icons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

footer .social-icons a:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.footer-logo {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

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

footer hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0 1rem;
}

footer .text-center p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.6);
}

/* Page Header */
.page-header {
    background: var(--gradient-secondary);
    padding: 120px 0 60px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1542362567-b07e54358753?w=1920&h=400&fit=crop') center/cover;
    opacity: 0.2;
    mix-blend-mode: overlay;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

/* Service Cards */
.service-highlights {
    background: rgba(0, 78, 137, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid var(--primary-color);
}

.service-highlights h6 {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: var(--font-primary);
}

.service-highlights .features-list {
    margin-bottom: 0;
}

.service-highlights .features-list li {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.service-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(-5deg);
}

.service-icon i {
    font-size: 2.5rem;
    color: white;
}

.service-card h3 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.features-list li {
    padding: 8px 0;
    color: var(--dark-color);
    font-weight: 500;
    display: flex;
    align-items: center;
}

.features-list i {
    color: var(--success-color);
    margin-right: 12px;
    font-size: 1.1rem;
}

/* Fleet Cards */
.fleet-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.4s ease;
    height: 100%;
    position: relative;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.fleet-card img {
    height: 220px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.4s ease;
}

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

.fleet-card .card-body {
    padding: 1.5rem;
    position: relative;
}

.fleet-card h5 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

/* Mission & Vision Cards */
.mission-vision-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lg);
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.mission-vision-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.mission-vision-card:hover .icon-wrapper {
    transform: scale(1.1);
}

.icon-wrapper i {
    font-size: 2.5rem;
    color: white;
}

.mission-vision-card h3 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

/* Why Cards */
.why-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
    border: 1px solid rgba(0,0,0,0.05);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.why-card:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-icon i {
    font-size: 2rem;
    color: white;
}

.why-card h4 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Team Cards */
.team-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.team-image {
    width: 120px;
    height: 120px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

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

.team-image i {
    font-size: 3rem;
    color: white;
}

.team-card h5 {
    color: var(--secondary-color);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Pricing Table */
.pricing-table {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0,0,0,0.05);
}

.pricing-table th {
    background: var(--gradient-secondary);
    border: none;
    color: white;
    font-weight: 700;
    padding: 1.2rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-table td {
    vertical-align: middle;
    padding: 1.2rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.pricing-table tbody tr:hover {
    background-color: rgba(255, 107, 53, 0.05);
}

/* Contact Form */
.contact-form {
    background: white;
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0,0,0,0.05);
}

.contact-info-card {
    background: var(--gradient-secondary);
    color: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-info-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.contact-info-card i {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--accent-color);
}

.contact-info-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Map Container */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0,0,0,0.05);
}

.map-container iframe {
    border: none;
    width: 100%;
    height: 450px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--success-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 200, 81, 0.7);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(0, 200, 81, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 200, 81, 0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* Alert Messages */
.alert-custom {
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin: 1rem 0;
    border: none;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.alert-success-custom {
    background: linear-gradient(135deg, #D4EDDA 0%, #C3E6CB 100%);
    color: #155724;
    border-left: 4px solid var(--success-color);
}

.alert-error-custom {
    background: linear-gradient(135deg, #F8D7DA 0%, #F5C6CB 100%);
    color: #721C24;
    border-left: 4px solid var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .lead {
        font-size: 1.1rem;
    }
    
    .booking-form {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .feature-card, .service-card, .testimonial-card {
        margin-bottom: 2rem;
    }
    
    .route-card {
        margin-bottom: 1.5rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .page-header {
        padding: 100px 0 50px;
    }
    
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-section .btn {
        margin-bottom: 1rem;
        width: 100%;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.2rem;
    }
    
    .btn-primary, .btn-success, .btn-light {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .feature-card, .service-card {
        padding: 1.5rem 1rem;
    }
    
    .contact-info-card {
        padding: 1.5rem 1rem;
    }
}

/* Loading Spinner */
.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--light-color);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-secondary);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gradient-primary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Statistics Counter */
.stat-item {
    text-align: center;
    margin-bottom: 2rem;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.1rem;
    color: var(--dark-color);
    font-weight: 600;
    margin: 0;
}

/* FAQ Accordion */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.accordion-button {
    background: white;
    color: var(--dark-color);
    font-weight: 600;
    padding: 1.2rem 1.5rem;
    border: none;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: var(--gradient-secondary);
    color: white;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 1.5rem;
    font-weight: 500;
    line-height: 1.7;
}
