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

:root {
    --primary-orange: #ff7722;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
}

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

/* Navigation */
.navbar {
    background: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
}

.logo h2 {
    color: var(--primary-orange);
    font-size: 24px;
    font-weight: 700;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-orange);
}

.contact-header {
    text-align: right;
}

.contact-label {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.contact-numbers {
    list-style: none;
    margin-top: 5px;
}

.contact-numbers a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(26,26,26,0.95) 0%, rgba(45,45,45,0.95) 100%), url('fullsizecoach.jfif');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    color: var(--white);
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ddd;
}

.btn-primary {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #ff6600;
    transform: translateY(-2px);
}

/* About Shuttle Section */
.about-shuttle {
    padding: 80px 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h3 {
    color: var(--primary-orange);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
}

.features {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-item i {
    color: var(--primary-orange);
    font-size: 20px;
}

.feature-item span {
    color: var(--text-dark);
    font-weight: 500;
}

.btn-secondary {
    display: inline-block;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-orange);
    padding: 12px 30px;
    border-radius: 5px;
    transition: all 0.3s;
}

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

.about-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.about-images img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 300px;
}

/* Why Choose Us */
.why-choose {
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2d2d2d 100%);
    color: var(--white);
    padding: 80px 0;
    text-align: center;
}

.why-choose h3 {
    color: var(--primary-orange);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.why-choose h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.why-choose > .container > p {
    color: #ccc;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.stat-box h3 {
    font-size: 48px;
    color: var(--primary-orange);
    margin-bottom: 10px;
}

.stat-box p {
    color: #ccc;
    font-size: 16px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--light-bg);
}

.services h3 {
    color: var(--primary-orange);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 10px;
}

.services h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.services > .container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    background: var(--primary-orange);
    color: var(--white);
}

.service-card:hover h4 {
    color: var(--white);
}

.service-card:hover p {
    color: #f0f0f0;
}

.service-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Fleets Section */
.fleets {
    padding: 80px 0;
    background: var(--white);
}

.fleets h3 {
    color: var(--primary-orange);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 10px;
}

.fleets h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.fleets > .container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

.buses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.bus-card {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.bus-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.bus-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bus-card h4 {
    padding: 20px 20px 10px;
    font-size: 18px;
    color: var(--text-dark);
}

.bus-card h3 {
    padding: 0 20px 10px;
    font-size: 28px;
    color: var(--primary-orange);
}

.bus-features {
    list-style: none;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-light);
}

.bus-features li {
    margin-bottom: 8px;
    padding-left: 0;
}

.bus-features li:before {
    content: "✓ ";
    color: var(--primary-orange);
    font-weight: bold;
    margin-right: 8px;
}

.btn-book {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 10px 20px;
    text-decoration: none;
    font-weight: 600;
    margin: 10px 20px 0;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-book:hover {
    background: #ff6600;
}

.btn-details {
    display: inline-block;
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
    margin: 10px 10px 20px;
    font-size: 14px;
}

.btn-details:hover {
    text-decoration: underline;
}

.all-vehicles-link {
    text-align: center;
    margin-top: 40px;
}

.btn-all-vehicles {
    display: inline-block;
    background: var(--primary-orange);
    color: var(--white);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-all-vehicles:hover {
    background: #ff6600;
    transform: translateY(-2px);
}

/* Testimonials */
.testimonials {
    padding: 80px 0;
    background: var(--light-bg);
}

.testimonials h3 {
    color: var(--primary-orange);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    margin-bottom: 10px;
}

.testimonials > .container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-left: 4px solid var(--primary-orange);
}

.testimonial-text {
    color: var(--text-light);
    margin-bottom: 20px;
    font-style: italic;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    margin: 0;
    color: var(--text-dark);
    font-size: 14px;
}

/* Founder Section */
.founder-section {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff6600 100%);
    color: var(--white);
    padding: 80px 0;
}

.founder-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.founder-image {
    text-align: center;
}

.founder-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}

.founder-info h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.founder-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.founder-info p {
    font-size: 16px;
    line-height: 1.8;
    opacity: 0.95;
}

.co-founder-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.co-founder-section .founder-content--reverse {
    direction: ltr;
}

.co-founder-section .founder-content--reverse .founder-image {
    order: 2;
}

.co-founder-section .founder-content--reverse .founder-info {
    order: 1;
}

.co-founder-section .founder-info h3 {
    color: var(--primary-orange);
    opacity: 1;
}

.co-founder-section .founder-info h2 {
    color: var(--text-dark);
}

.co-founder-section .founder-info p {
    color: var(--text-light);
    opacity: 1;
}

/* Footer */
.footer {
    background: var(--dark-bg);
    color: #ccc;
    padding: 60px 0 20px;
}

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

.footer-logo h3 {
    color: var(--primary-orange);
    font-size: 24px;
    margin-bottom: 15px;
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 15px;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 16px;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.newsletter-form button {
    background: var(--primary-orange);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.newsletter-form button:hover {
    background: #ff6600;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 999;
}

.float-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.float-btn.whatsapp {
    background: #25D366;
}

.float-btn.phone {
    background: var(--primary-orange);
}

.float-btn.email {
    background: #EA4335;
}

.float-btn:hover {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .founder-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .buses-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .contact-header {
        display: none;
    }

    .hero-content h1 {
        font-size: 24px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .founder-image img {
        max-width: 100%;
    }
}
