/* ============================================
   Revival Motorways - Professional Bus Company Website
   Colors: Green (#1a5d1a, #2e7d32) & Gold (#d4af37, #ffd700)
   ============================================ */

/* CSS Variables */
:root {
    --primary-green: #1a5d1a;
    --primary-green-light: #2e7d32;
    --primary-green-dark: #0d3d0d;
    --gold: #d4af37;
    --gold-light: #ffd700;
    --gold-dark: #b8960c;
    --white: #ffffff;
    --black: #1a1a1a;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --gray-800: #343a40;
    --shadow: 0 4px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --border-radius-lg: 16px;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--black);
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-green);
}

.btn-secondary {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green-dark);
    border-color: var(--primary-green-dark);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.btn-whatsapp:hover {
    background: #128C7E;
    border-color: #128C7E;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

/* Top Bar */
.top-bar {
    background: var(--primary-green-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-contact {
    display: flex;
    gap: 25px;
}

.top-contact a {
    color: var(--gray-300);
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-contact a:hover {
    color: var(--gold);
}

.top-contact i {
    color: var(--gold);
}

.top-social {
    display: flex;
    gap: 15px;
}

.top-social a {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.top-social a:hover {
    background: var(--gold);
    color: var(--black);
}

/* Navigation */
.navbar {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    color: var(--primary-green);
}

.logo img {
    height: 55px;
    width: auto;
}

.logo strong {
    color: var(--gold-dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu li a {
    padding: 10px 18px;
    color: var(--gray-700);
    font-weight: 500;
    border-radius: 50px;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--primary-green);
    background: rgba(26, 93, 26, 0.08);
}

.nav-menu .btn-book {
    background: var(--gold);
    color: var(--black);
    margin-left: 10px;
}

.nav-menu .btn-book:hover {
    background: var(--gold-dark);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-green);
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
}

.hero-slide {
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    max-width: 700px;
    color: var(--white);
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h1 {
    color: var(--white);
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.hero-content h1 span {
    color: var(--gold);
}

.tagline {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 15px;
}

.hero-text {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 25px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Hero Features Bar */
.hero-features {
    background: var(--primary-green);
    padding: 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}

.feature-item {
    padding: 30px 25px;
    text-align: center;
    border-right: 1px solid var(--gray-200);
    transition: var(--transition);
}

.feature-item:last-child {
    border-right: none;
}

.feature-item:hover {
    background: var(--primary-green);
    color: var(--white);
}

.feature-item:hover i,
.feature-item:hover h3 {
    color: var(--gold);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
    transition: var(--transition);
}

.feature-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    transition: var(--transition);
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin: 0;
}

.feature-item:hover p {
    color: var(--gray-300);
}

/* Quick Booking Section */
.quick-booking {
    padding: 80px 0 60px;
    background: var(--gray-100);
}

.booking-box {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.booking-box h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-green);
}

.booking-box h2 i {
    color: var(--gold);
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    align-items: end;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--gray-700);
    font-size: 0.9rem;
}

.form-group select,
.form-group input {
    padding: 14px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group select:focus,
.form-group input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(26, 93, 26, 0.1);
}

.booking-form .btn {
    height: fit-content;
}

/* About Preview Section */
.about-preview {
    padding: 70px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gold);
    color: var(--black);
    padding: 25px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-badge .number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.9rem;
    font-weight: 600;
}

.section-tag {
    display: inline-block;
    color: var(--gold-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
    margin-bottom: 10px;
}

.about-content h2 {
    margin-bottom: 20px;
}

.about-content h2 span {
    color: var(--primary-green);
}

.about-content .lead {
    font-size: 1.1rem;
    color: var(--gray-700);
    font-weight: 500;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature i {
    color: var(--primary-green);
    font-size: 1.2rem;
}

.about-feature span {
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 60px 0;
    background: var(--gray-100);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    color: var(--gray-600);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-header.light h2,
.section-header.light p {
    color: var(--white);
}

.section-header.light .section-tag {
    color: var(--gold);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--primary-green-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--primary-green);
}

.service-card p {
    color: var(--gray-600);
    margin-bottom: 20px;
}

.service-link {
    color: var(--gold-dark);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover {
    color: var(--primary-green);
    gap: 10px;
}

/* Routes Section */
.routes-preview {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
}

.routes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.route-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.route-card:hover {
    transform: translateY(-10px);
}

.route-image {
    height: 180px;
    overflow: hidden;
}

.route-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.route-card:hover .route-image img {
    transform: scale(1.1);
}

.route-content {
    padding: 25px;
}

.route-cities {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.route-cities span {
    font-weight: 700;
    color: var(--primary-green);
}

.route-cities i {
    color: var(--gold);
}

.route-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.route-details span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.route-details i {
    color: var(--gold-dark);
}

/* Stats Section */
.stats {
    padding: 50px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
}

.stat-item i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-green);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-label {
    color: var(--gray-600);
    font-weight: 500;
}

/* Social Feed Section */
.social-feed {
    padding: 60px 0;
    background: var(--gray-100);
}

.feed-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.facebook-feed {
    background: var(--white);
    padding: 20px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    min-height: 600px;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.social-cta {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.social-cta-content,
.whatsapp-cta {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    text-align: center;
}

.social-cta-content i,
.whatsapp-cta i {
    font-size: 3rem;
    color: #1877F2;
    margin-bottom: 20px;
}

.whatsapp-cta i {
    color: #25D366;
}

.social-cta-content h3,
.whatsapp-cta h3 {
    margin-bottom: 15px;
}

.social-cta-content p,
.whatsapp-cta p {
    color: var(--gray-600);
    margin-bottom: 25px;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stars {
    color: var(--gold);
    margin-bottom: 20px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-green), var(--gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

.author-info strong {
    display: block;
    color: var(--black);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* CTA Section */
.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-green-dark), var(--primary-green));
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: var(--gray-300);
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--gray-400);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--gray-800);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-logo img {
    height: 50px;
    width: auto;
    background: white;
    border-radius: 50%;
    padding: 3px;
}

/* Facebook Embed */
.facebook-feed iframe {
    width: 100%;
    min-height: 500px;
    border: none;
    border-radius: var(--border-radius);
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gold);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--gray-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.contact-info i {
    color: var(--gold);
    margin-right: 8px;
}

.footer-bottom {
    text-align: center;
    padding: 25px 0;
    font-size: 0.9rem;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Header (for inner pages) */
.page-header {
    background: linear-gradient(rgba(0,50,0,0.85), rgba(0,50,0,0.85)), 
                url('https://images.unsplash.com/photo-1544620347-c4fd4a3d5957?w=1920') center/cover;
    padding: 120px 0 80px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    color: var(--white);
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-header .breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    color: var(--gray-400);
}

.page-header .breadcrumb a {
    color: var(--gold);
}

/* Content Sections for Inner Pages */
.content-section {
    padding: 80px 0;
}

.content-section.alt {
    background: var(--gray-100);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.value-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.value-card h4 {
    color: var(--primary-green);
}

/* FAQ Section */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 15px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-question {
    padding: 20px 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--gray-100);
}

.faq-question i {
    color: var(--gold);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 25px 20px;
    color: var(--gray-600);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form textarea {
    padding: 14px 16px;
    border: 2px solid var(--gray-300);
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-family: inherit;
    width: 100%;
    min-height: 150px;
    resize: vertical;
    transition: var(--transition);
}

.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-green);
}

.contact-form input {
    width: 100%;
}

/* Route Table */
.route-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.route-table th {
    background: var(--primary-green);
    color: var(--white);
    padding: 18px 20px;
    text-align: left;
}

.route-table td {
    padding: 18px 20px;
    border-bottom: 1px solid var(--gray-200);
}

.route-table tr:hover td {
    background: var(--gray-100);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid,
    .services-grid,
    .routes-grid,
    .stats-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .booking-form {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    
    .top-bar {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li a {
        display: block;
        padding: 15px 20px;
    }
    
    .hero-slide {
        min-height: 70vh;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .features-grid,
    .services-grid,
    .routes-grid,
    .stats-grid,
    .testimonials-grid,
    .about-grid,
    .feed-container {
        grid-template-columns: 1fr;
    }
    
    .booking-form {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .experience-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
