/* Reset and global styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #FDFDFD;
}

/* Colors from image */
:root {
    --primary-blue: #0A1C4F;
    --primary-orange: #E87A38;
    --primary-yellow: #FCBF1A;
    --white: #FFFFFF;
}

/* Header */
.header {
    background: var(--white);
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-text {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-blue);
}

.logo-text span {
    font-size: 16px;
    font-weight: normal;
    display: block;
    margin-top: -5px;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    margin-left: 20px;
    font-weight: 500;
}

.nav-links a.active {
    color: var(--primary-orange);
}

/* Hero Section */
.hero-section {
    background-color: var(--primary-blue);
    color: var(--white);
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    /* Image placeholder set as background */
    background-image: url('https://via.placeholder.com/800x400');
    background-size: cover;
    background-position: center;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 10;
}

.tagline {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
}

.announcement-boxes .box {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 10px;
    font-weight: bold;
    color: var(--primary-blue);
}

.announcement-boxes .box span {
    font-size: 22px;
}

.announcement-boxes .box.orange {
    background-color: var(--primary-orange);
}

.announcement-boxes .box.yellow {
    background-color: var(--primary-yellow);
}

.fares-text {
    font-size: 14px;
    margin-top: 15px;
}

/* Search Section */
.search-section {
    background: #F8F9FB;
    padding: 30px 50px;
}

.search-title {
    font-size: 20px;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.search-inputs {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}

.input-group {
    flex: 1;
}

.input-group label {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
}

.input-group input, .input-group select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.search-btn {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

/* Features Section */
.features-section {
    padding: 50px;
    background-color: #F8F9FB;
}

.section-title {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    text-align: center;
}

.feature-item i {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-item p {
    font-size: 14px;
    color: #666;
}

/* Offers Section */
.offers-section {
    padding: 50px;
}

.offers-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.offer-card {
    background-color: #E6EFFF; /* Base blue from image */
    padding: 20px;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.offer-card.extra-savings {
    background-color: #FFEFC1; /* Base yellow from image */
}

.offer-details h4 {
    margin: 0;
    font-size: 14px;
    color: var(--primary-blue);
}

.offer-details p {
    font-size: 20px;
    font-weight: bold;
    margin: 5px 0 15px;
}

.offer-details a {
    background-color: var(--white);
    color: var(--primary-blue);
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.offer-coupon {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
}

/* Simple structure for mixed layouts - not exact like image */
.routes-testimonials {
    padding: 50px;
    display: flex;
    gap: 40px;
}

/* About Section */
.about-section {
    padding: 50px;
    background-color: #E6EFFF;
}

.about-section h2 {
    color: var(--primary-blue);
}

/* Footer */
.footer {
    background-color: var(--primary-blue);
    color: #CCC;
    padding: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 15px;
}

.footer a {
    text-decoration: none;
    color: #CCC;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

.footer p {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-app img {
    margin-bottom: 10px;
    display: block;
}

.footer-social i {
    font-size: 18px;
    color: var(--white);
    margin-right: 15px;
    cursor: pointer;
}

.copyright {
    grid-column: 1 / span 4;
    text-align: center;
    font-size: 12px;
    border-top: 1px solid #333;
    padding-top: 20px;
}