/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary: #ffb700;
    /* Taxi Yellow */
    --dark: #0f172a;
    --light: #f8fafc;
    --gray: #64748b;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.95);
    --shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
    --border: #e2e8f0;
}

/********************
 * Resets & Basics
 ********************/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.7;
    /* Increased for readability */
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

.container {
    max-width: 1350px;
    /* Wider container */
    margin: 0 auto;
    padding: 0 30px;
    /* More breathing room */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    margin-bottom: 0.8em;
    color: var(--dark);
}

p {
    margin-bottom: 1.2em;
    color: #475569;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--dark);
    box-shadow: 0 4px 15px rgba(255, 183, 0, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 183, 0, 0.4);
}

/********************
 * Header
 ********************/
header {
    background: var(--glass);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo span {
    color: var(--dark);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-weight: 500;
    color: var(--dark);
}

.nav-links a:hover {
    color: var(--primary);
}

/********************
 * Hero Section
 ********************/
.hero {
    padding: 140px 0 60px;
    background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7)), url('../img/airport_taxi_main.png');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    /* Reduced gap */
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-text p {
    font-size: 1.15rem;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-card {
    background: var(--white);
    padding: 25px;
    /* Reduced padding */
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.booking-form .form-group {
    margin-bottom: 15px;
}

.booking-form label {
    display: block;
    margin-bottom: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.2s;
}

.booking-form input:focus {
    outline: none;
    border-color: var(--primary);
}

.booking-form button {
    width: 100%;
    margin-top: 10px;
}

/********************
 * Content Sections with Split Layout
 ********************/
.content-wrapper {
    max-width: 1350px;
    /* Adjusted for better reading width on large screens */
    margin: 0 auto;
    padding: 30px 20px;
    /* Reduced from 60px 20px */
}

.content-section {
    margin-bottom: 30px;
    /* Reduced from 60px */
    background: #fff;
    padding: 30px;
    /* Reduced from 40px */
    border-radius: 16px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    border: 1px solid var(--border);
}

.split-section {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* Left side slightly wider */
    gap: 40px;
    align-items: start;
}

.split-section>div {
    min-width: 0;
    /* Prevents overflow */
}

.content-section h2 {
    font-size: 2.2rem;
    margin-bottom: 30px;
    color: var(--dark);
    position: relative;
    padding-bottom: 15px;
}

.content-section h2::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 4px;
    background: var(--secondary);
    border-radius: 2px;
}

/* Tables */
.table-responsive {
    overflow-x: auto;
}

.rate-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.rate-table th,
.rate-table td {
    padding: 18px;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.rate-table th {
    background-color: #f1f5f9;
    color: var(--dark);
    font-weight: 700;
}

.rate-table tr:hover {
    background-color: #f8fafc;
}

/* FAQ Accordion */
.accordion-item {
    border-bottom: 1px solid var(--border);
}

.accordion-header {
    width: 100%;
    text-align: left;
    padding: 20px 0;
    background: none;
    border: none;
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.accordion-content p {
    padding-bottom: 20px;
    color: var(--gray);
}

.accordion-item.active .accordion-header::after {
    content: '-';
}

.accordion-item.active .accordion-content {
    max-height: 200px;
}

/********************
 * Features (Redesigned)
 ********************/
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.feature-card {
    padding: 25px;
    background: var(--light);
    border-radius: 16px;
    transition: transform 0.3s;
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary);
}

/********************
 * Airport Grid
 ********************/
.airport-list-section {
    padding: 80px 0;
    background: var(--white);
}

.airport-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.airport-tag {
    background: var(--light);
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid var(--border);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray);
    transition: all 0.2s;
}

.airport-tag:hover,
.airport-tag.active {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.active-airport-highlight {
    background: var(--primary) !important;
    color: white !important;
    border-color: var(--primary) !important;
}

/********************
 * Footer
 ********************/
footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 25px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #94a3b8;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #64748b;
    font-size: 0.9rem;
}

@media (max-width: 900px) {
    .split-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .nav-links {
        display: none;
    }
}