/* =========================================
   GLOBAL VARIABLES & BASE STYLES
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    --primary-color: #ff6b35;
    --secondary-color: #0f172a; /* Deeper, richer navy blue */
    --primary-dark: #ea580c;   
    --accent-color: #1e293b;
    --text-light: #ffffff;
    --text-dark: #1e293b; /* Softer than pure black */
    --gradient: linear-gradient(135deg, #ff6b35, #f97316);
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.05); /* Softer luxury shadow */
    --shadow-hover: 0 10px 40px rgba(0, 0, 0, 0.1);
    --bg-light: #f8fafc;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Plus Jakarta Sans', system-ui, sans-serif; /* Premium Font */
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: #ffffff;
    -webkit-font-smoothing: antialiased; /* Makes text look sharper */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* =========================================

   HEADER & NAVIGATION

   ========================================= */

.header {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    background: rgba(26, 26, 46, 0.95);

    backdrop-filter: blur(10px);

    z-index: 1000;

    padding: 0.5rem 0;

    transition: all 0.3s ease;

    box-shadow: 0 2px 10px rgba(0,0,0,0.1);

}



.nav-container {

    max-width: 1200px;

    margin: 0 auto;

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 0 2rem;

    position: relative;

}



.logo {

    display: flex;

    align-items: center;

    font-size: 1.5rem;

    font-weight: bold;

    color: var(--text-light);

    text-decoration: none;

    z-index: 1001;

    transition: transform 0.3s ease;

}



.logo:hover {

    transform: scale(1.02);

}



.logo-img {

    width: 35px;

    height: 35px;

    border-radius: 50%;

    object-fit: cover;

    margin-right: 8px;

}



.nav-menu {

    display: flex;

    list-style: none;

    gap: 1.5rem;

    margin: 0;

}



.nav-menu a {

    color: var(--text-light);

    text-decoration: none;

    transition: color 0.3s ease;

    position: relative;

    padding: 0.5rem 0;

    font-size: 0.9rem;

    font-weight: 500;

}



.nav-menu a:hover {

    color: var(--primary-color);

}



.nav-menu a::after {

    content: '';

    position: absolute;

    bottom: -5px;

    left: 0;

    width: 0;

    height: 2px;

    background: var(--primary-color);

    transition: width 0.3s ease;

}



.nav-menu a:hover::after {

    width: 100%;

}



.cta-button {
    background: var(--gradient);
    color: var(--text-light);
    padding: 12px 28px;
    border: none;
    border-radius: 8px; /* Modern square-rounded look */
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25); /* Subtle orange glow */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}



.hamburger {

    display: none;

    flex-direction: column;

    cursor: pointer;

    padding: 5px;

    z-index: 1001;

}



.hamburger span {

    width: 25px;

    height: 3px;

    background: var(--text-light);

    margin: 3px 0;

    transition: all 0.3s ease;

    border-radius: 2px;

}



.hamburger.active span:nth-child(1) {

    transform: rotate(45deg) translate(5px, 5px);

}



.hamburger.active span:nth-child(2) {

    opacity: 0;

}



.hamburger.active span:nth-child(3) {

    transform: rotate(-45deg) translate(6px, -6px);

}



/* Keeps the SEO location links looking like buttons */

a.location-item {

    text-decoration: none !important;

    color: var(--text-light) !important;

    display: block; /* Ensures the whole box is clickable */

}
/* =========================================
   HERO SECTION
   ========================================= */
.hero {
    min-height: 85vh;
    height: auto;
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-color));
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 40px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23ff6b35" opacity="0.1"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateX(-50%) translateY(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) translateY(-50%) rotate(360deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-title {
    font-size: 2.8rem;
    font-weight: bold;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1.5rem;
}

.hero-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    color: var(--text-light);
    font-size: 0.85rem;
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    border-radius: 50%;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    animation: slideInRight 1s ease-out;
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.cta-button, .btn-primary {
    background: var(--gradient);
    color: var(--text-light);
    padding: 12px 28px;
    border: none;
    border-radius: 8px; /* Modern square-rounded look */
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.25); /* Subtle orange glow */
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.cta-button:hover, .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4); /* Stronger glow on hover */
    color: #fff;
}

.btn-secondary:hover {
    background: white;
    color: var(--secondary-color);
    border-color: white;
}

/* =========================================
   DETAILED BOOKING SECTION (From Page 2)
   ========================================= */
.booking-section {
    background: white;
    padding: 60px 0;
    width: 100%;
}

.booking-form-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 800px; 
    margin: 0 auto;
}

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

.form-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 20px;
    text-align: center;
}

.form-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

.form-header p {
    opacity: 0.9;
    font-size: 0.9rem;
}

.booking-form {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

/* =========================================
   SERVICES SECTION
   ========================================= */
         .services-header-bg {
             background:
                 linear-gradient(
                     rgba(15, 23, 42, 0.25),
                     rgba(15, 23, 42, 0.30)
                 ),
                 url('/pics/serviceshero.webp') center/cover no-repeat;
             padding: 120px 0 80px;
             color: white;
             text-align: center;
         }
        .service-grid-modern {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: -50px;
            position: relative;
            z-index: 10;
        }
        .service-card-modern {
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
            position: relative;
            overflow: hidden;
        }
        .service-card-modern:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.1);
            border-bottom: 4px solid var(--primary-color);
        }
        .service-card-modern i {
            font-size: 3rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            display: inline-block;
        }
        .service-card-modern h3 {
            color: var(--secondary-color);
            font-size: 1.4rem;
            margin-bottom: 15px;
            font-weight: 800;
        }
        .service-card-modern p {
            color: #64748b;
            margin-bottom: 25px;
            font-size: 1rem;
            line-height: 1.6;
        }
        .service-link {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 5px;
            transition: gap 0.3s;
        }
        .service-card-modern:hover .service-link {
            gap: 10px;
        }
        
        /* SEO Directory Styles */
        .seo-directory {
            background: #f8fafc;
            padding: 80px 0;
        }
        .directory-category {
            margin-bottom: 40px;
        }
        .directory-category h3 {
            color: var(--secondary-color);
            font-size: 1.5rem;
            margin-bottom: 20px;
            padding-bottom: 10px;
            border-bottom: 2px solid #e2e8f0;
        }
        .pill-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .seo-pill {
            background: white;
            color: #475569;
            padding: 10px 20px;
            border-radius: 30px;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 600;
            border: 1px solid #cbd5e1;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .seo-pill:hover {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2);
        }
/* =========================================
   ABOUT US SECTION
   ========================================= */
.about {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa, white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.about-text h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-icon {
    width: 45px;
    height: 45px;
    background: var(--gradient);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}
         .about-header-bg {
             background:
                 linear-gradient(
                     rgba(15, 23, 42, 0.35),
                     rgba(15, 23, 42, 0.50)
                 ),
                 url('/pics/abouthero.webp') center/cover;
             padding: 120px 0 80px;
             color: white;
             text-align: center;
         }
        .story-container {
            background: white;
            border-radius: 15px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
            margin-top: -60px;
            position: relative;
            z-index: 10;
            border: 1px solid #e2e8f0;
        }
        .timeline-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .value-card {
            background: #f8fafc;
            padding: 30px;
            border-radius: 12px;
            border-left: 4px solid var(--primary-color);
            transition: transform 0.3s ease;
        }
        .value-card:hover {
            transform: translateX(10px);
            background: white;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        .value-card h4 {
            color: var(--secondary-color);
            font-size: 1.2rem;
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        .stat-grid-modern {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        .stat-box {
            text-align: center;
            padding: 30px 20px;
            background: var(--secondary-color);
            border-radius: 12px;
            color: white;
        }
        .stat-box .num {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        @media (max-width: 768px) {
            .timeline-grid { grid-template-columns: 1fr; gap: 30px; }
            .story-container { padding: 30px 20px; }
        }
/* =========================================
   FLEET & GALLERY SECTION
   ========================================= */
.fleet {
    padding: 60px 0;
    background: white;
}

.fleet-features {
    list-style: none;
    margin-top: 0.8rem;
}

.fleet-features li {
    padding: 0.2rem 0;
    color: #666;
    font-size: 0.9rem;
}

.fleet-features li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    margin-right: 0.5rem;
}
/* new */
         .fleet-header-bg {
             background:
                 linear-gradient(
                     rgba(15, 23, 42, 0.35),
                     rgba(15, 23, 42, 0.50)
                 ),
                 url('/pics/fleethero.webp') center/cover;
             padding: 120px 0 80px;
             color: white;
             text-align: center;
         }
        .premium-fleet-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 40px;
            margin-top: 40px; /* This creates the clean gap below the hero */
            position: relative;
            z-index: 10;
        }
        .premium-fleet-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            border: 1px solid #e2e8f0;
            transition: transform 0.3s ease;
        }
        .premium-fleet-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 50px rgba(0,0,0,0.12);
        }
        .fleet-img-container {
            height: 220px;
            background: #f1f5f9;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }
        .fleet-img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .premium-fleet-card:hover .fleet-img-container img {
            transform: scale(1.05);
        }
        .fleet-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--primary-color);
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 800;
            letter-spacing: 1px;
            text-transform: uppercase;
        }
        .fleet-details {
            padding: 30px;
        }
        .fleet-name {
            font-size: 1.5rem;
            color: var(--secondary-color);
            margin-bottom: 5px;
            font-weight: 800;
        }
        .fleet-price {
            color: #64748b;
            font-size: 1rem;
            margin-bottom: 20px;
            font-weight: 600;
            padding-bottom: 15px;
            border-bottom: 1px solid #e2e8f0;
        }
        .spec-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 25px;
        }
        .spec-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: #475569;
            font-size: 0.95rem;
            font-weight: 500;
        }
        .spec-item i {
            color: var(--primary-color);
            width: 20px;
            text-align: center;
        }
        
        /* Modern Gallery Grid */
        .modern-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }
        .modern-gallery-item {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            aspect-ratio: 4/3;
            background: #f1f5f9;
        }
        .modern-gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: contain; /* Forces the entire image to be visible */
            transition: transform 0.5s ease;
        }
        .modern-gallery-item:hover img {
            transform: scale(1.1);
        }
/* =========================================
   TESTIMONIALS SECTION
   ========================================= */
.testimonials {
    padding: 60px 0;
    background: var(--secondary-color);
    color: var(--text-light);
}

.testimonials .section-title {
    color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255,255,255,0.1);
}

.quote-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.testimonial-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
}

.author-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-color);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact {
    background: white;
    padding: 60px 0;
    width: 100%;
}

.contact-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.contact-item {
    padding: 25px 15px;
    border-radius: 10px;
    background: var(--bg-light);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-weight: 600;
    margin-top: 10px;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 102, 0, 0.3);
}


/* =========================================
   FOOTER & WHATSAPP
   ========================================= */
.footer {
    background: var(--secondary-color);
    color: var(--text-light);
    padding: 3rem 0 1rem;
    font-size: 0.9rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-light);
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    font-size: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #1ebe5d;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
}

/* =========================================
   ANIMATIONS & ACCESSIBILITY
   ========================================= */
.scroll-animate {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.animate {
    opacity: 1;
    transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
/* =========================================
   PREMIUM HOMEPAGE & FLEET STYLES
   ========================================= */
.premium-hero {
    background:
        linear-gradient(
            rgba(15, 23, 42, 0.35),
            rgba(15, 23, 42, 0.50)
        ),
        url('/pics/hero.webp') center/cover no-repeat;
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.glass-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
}

.glass-form input,
.glass-form select {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.glass-form input::placeholder { color: #ccc; }

/* Ensures dropdown items are readable when clicked on Android/Windows */
.glass-form select option {
    color: var(--text-dark); 
}

.section-light { background: #f8fafc; padding: 5rem 0; }
.section-dark { background: #0f172a; padding: 5rem 0; color: white; }

.fleet-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.fleet-card:hover { transform: translateY(-5px); }
.fleet-info { padding: 25px; text-align: center; }
.fleet-name { font-size: 1.4rem; color: #0f172a; margin-bottom: 5px; font-weight: 700; }
.fleet-desc { color: #64748b; font-size: 0.95rem; margin-bottom: 15px; }
.feature-badge { 
    background: #e2e8f0; 
    color: #334155; 
    padding: 5px 12px; 
    border-radius: 20px; 
    font-size: 0.85rem; 
    font-weight: 600; 
    display: inline-block; 
    margin: 2px;
}
/* =========================================
   PREMIUM CONTACT PAGE STYLES
   ========================================= */
.contact-header-bg {
    background:
        linear-gradient(
            rgba(15, 23, 42, 0.25),
            rgba(15, 23, 42, 0.25)
        ),
        url('/pics/contacthero.webp') center/cover no-repeat;
    padding: 120px 0 60px;
    color: white;
    text-align: center;
}

.contact-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: -40px; /* Pulls the grid up into the dark header */
    position: relative;
    z-index: 10;
}

.contact-card-modern {
    background: white;
    padding: 35px 20px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #e2e8f0;
}

.contact-card-modern:hover {
    transform: translateY(-5px);
}

.contact-card-modern i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-card-modern h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 800;
}

.contact-card-modern p {
    color: #64748b;
    margin-bottom: 20px;
    font-size: 0.95rem;
}
/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 992px) {
    .contact-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================
   MOBILE RESPONSIVENESS
   ========================================= */
@media (max-width: 768px) {
    /* Fix Navigation */
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(15, 23, 42, 0.98);
        padding: 1rem 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.2);
        border-top: 1px solid rgba(255,255,255,0.1);
    }
    .nav-menu.active { display: flex; }
    .hamburger { display: flex; }
    .cta-button { display: none; } /* Hides top button to save space on mobile */

    /* Fix Premium Hero & Forms */
    .premium-hero .container {
        grid-template-columns: 1fr !important; /* Forces hero to stack */
        text-align: center;
        gap: 2rem;
        padding-top: 2rem;
    }
    .premium-hero h1 {
        font-size: 2.2rem !important; /* Shrinks massive text for phones */
    }
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .hero-buttons a {
        width: 100%; /* Makes buttons full width on mobile */
        justify-content: center;
    }
    
    /* Fix Typography & Paddings */
    .section-title { font-size: 1.8rem; }
    section { padding: 3rem 0 !important; }

    /* Fix Layout Grids */
    .about-content,
    .gallery-slide,
    .form-row,
    .contact-content {
        grid-template-columns: 1fr !important;
    }
    
    /* Fix Gallery Swiping */
    .gallery-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .gallery-slide .gallery-item:nth-child(2) {
        display: none; /* Hide second image on mobile for simpler swiping */
    }

   /* Fix Fare Estimator Mobile Grid & Overflow */
    #fare-estimator .container > div:last-child {
        grid-template-columns: 1fr !important;
        padding: 20px !important;
    }
    
    /* Stack the Origin and Destination dropdowns vertically */
    #fare-estimator div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }

    /* Prevent long dropdown text from stretching the screen */
    #fare-estimator select {
        width: 100% !important;
        max-width: 100%;
    }
/* Shrink huge paddings for mobile screens */
    .section-light, .section-dark { 
        padding: 3rem 0 !important; 
    }
    
    /* Shrink the glass form padding slightly so it fits small phone screens better */
    .glass-form {
        padding: 20px;
    }
    
    /* Ensure the fleet cards don't touch the edges of the phone screen */
    .fleet-card {
        margin: 0 10px;
    }
}
