@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;500;600;700&display=swap');

:root {
    --primary: #ffc107;
    --primary-dark: #e0ac00;
    --secondary: #1a1a1b;
    --text-dark: #333333;
    --text-muted: #666666;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --radius-lg: 16px;
    --radius-md: 12px;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    margin: 0;
    overflow-x: hidden;
    background: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.main-header {
    background: linear-gradient(135deg, #1a1a1b 0%, #2d2d2e 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 45px;
    filter: brightness(0) invert(1);
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-dark);
}

.btn-partner {
    background: var(--primary);
    color: var(--secondary);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    font-size: 14px;
    transition: transform 0.3s, background 0.3s;
}

.btn-partner:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 10, 0.65), rgba(0, 0, 10, 0.65)), url('../images/hero_new.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
}

.journey-cta-box {
    background: linear-gradient(rgba(0, 0, 10, 0.7), rgba(0, 0, 10, 0.7)), url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?q=80&w=2070&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    padding: 60px 80px;
    color: #fff;
    text-align: left;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
    word-wrap: break-word;
}

.hero-content h1 span {
    color: var(--primary);
}

.hero-content p {
    font-size: 18px;
    color: #eee;
    margin-bottom: 30px;
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.stat-item h3 {
    font-size: 32px;
    margin: 0;
}

.stat-item p {
    font-size: 14px;
    margin: 5px 0 0;
}

/* Booking Card */
.booking-card {
    background: var(--white);
    padding: 35px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.booking-card h2 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 24px;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
}

.form-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-dark);
}

.form-group input {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border: 1px solid #ddd;
    border-radius: var(--radius-md);
    font-size: 15px;
    box-sizing: border-box;
}

.btn-check-fare {
    width: 100%;
    background: linear-gradient(90deg, #ff8c00, #ffc107);
    color: var(--white);
    border: none;
    padding: 15px;
    border-radius: var(--radius-md);
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    margin-top: 10px;
    transition: opacity 1.3s;
}

.btn-check-fare:hover {
    opacity: 0.9;
}

/* Services */
.services {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
}

.section-title h2 span {
    color: var(--primary-dark);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: var(--primary-dark);
}

/* Footer */
.main-footer {
    background: var(--secondary);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-col h4 {
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a {
    color: #ccc;
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid #333;
    margin-top: 50px;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: #888;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--white);
}

.faq-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: flex-start;
}

.faq-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.accordion-item {
    border-bottom: 1px solid #eee;
    padding: 15px 0;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    padding: 10px 0;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    color: var(--secondary);
    text-align: left;
    transition: color 0.3s;
}

.accordion-header:hover {
    color: var(--primary-dark);
}

.accordion-header i {
    transition: transform 0.3s;
    font-size: 14px;
    color: var(--primary-dark);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    background: #fdfdfd;
    border-radius: var(--radius-md);
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding: 15px 0;
}

.accordion-content p {
    margin: 0;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: #f0f4f8;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    border-bottom: 5px solid var(--primary);
    transition: transform 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.test-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.test-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.test-info h4 {
    margin: 0;
    font-size: 18px;
}

.test-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.test-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.test-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.stars {
    color: #ffc107;
    font-size: 14px;
}

/* Responsive Utilities & Media Queries */
.responsive-grid {
    display: grid;
    gap: 30px;
}

@media (min-width: 993px) {
    .responsive-grid {
        grid-template-columns: repeat(var(--cols-desktop, 3), 1fr);
    }
}

@media (max-width: 992px) {
    .responsive-grid {
        grid-template-columns: repeat(var(--cols-tablet, 2), 1fr);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .hero {
        background: linear-gradient(rgba(0, 0, 10, 0.7), rgba(0, 0, 10, 0.5)), url('../images/hero_new.jpg');
        background-position: center right 25%;
        padding: 60px 0;
        min-height: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-container {
        grid-template-columns: 1fr;
    }
}

/* Mobile Navigation */
.mobile-toggle {
    display: none;
    font-size: 24px;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--secondary);
    z-index: 2000;
    padding: 80px 30px;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav.active {
    right: 0;
}

.mobile-nav a {
    color: var(--white);
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    display: none;
}

.mobile-nav-overlay.active {
    display: block;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: var(--white);
    font-size: 30px;
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 992px) {
    .nav-links {
        display: none !important;
    }

    .mobile-toggle {
        display: block;
    }

    .header-cta {
        display: none !important;
    }
}

@media (max-width: 600px) {

    .responsive-grid,
    .service-grid,
    .testimonial-grid,
    .stat-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .hero-section {
        padding: 40px 0;
    }

    .hero-content h1 {
        font-size: 20px !important;
        line-height: 1.3;
        text-align: center;
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    }

    .hero-content p {
        text-align: center;
        font-size: 14px;
    }

    .hero-btns {
        justify-content: center;
    }

    .journey-cta-box {
        padding: 40px 20px;
        text-align: center;
        border-radius: 16px;
    }

    .journey-cta-box h2 {
        font-size: 26px !important;
    }

    .journey-cta-box p {
        font-size: 15px !important;
    }

    .hero {
        background: linear-gradient(rgba(0, 0, 10, 0.8), rgba(0, 0, 10, 0.4)), url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?q=80&w=2070&auto=format&fit=crop');
        background-position: center right 25% !important;
        padding: 50px 0;
    }

    .header-inner {
        padding: 10px 0;
    }

    .booking-card {
        padding: 20px;
    }

    .logo-tagline {
        font-size: 8px !important;
        max-width: 140px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        display: block;
    }
}