/* =====================================================
   QUALITY COACH HIRE - PREMIUM STYLING
   ===================================================== */

/* =====================================================
   ROOT VARIABLES & RESET
   ===================================================== */
:root {
    --black: #000000;
    --white: #FFFFFF;
    --dark-gray: #1a1a1a;
    --light-gray: #F5F5F5;
    --medium-gray: #666666;
    --text-gray: #333333;

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;

    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--dark-gray);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* =====================================================
   TYPOGRAPHY
   ===================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--black);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--medium-gray);
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--black);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--white);
    color: var(--black);
    border-color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--black);
}

.btn-text {
    color: var(--black);
    font-weight: 600;
    padding: 0;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--medium-gray);
    transform: translateX(5px);
}

.btn-full {
    width: 100%;
}

/* =====================================================
   HEADER & NAVIGATION
   ===================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 1.2rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.5px;
}

.logo-text {
    color: var(--black);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu li a {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-gray);
    position: relative;
    transition: var(--transition);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--black);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--black);
    transition: var(--transition);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    width: 100%;
}

.cta-button {
    background-color: var(--black);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.cta-button:hover {
    background-color: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--black);
    margin: 3px 0;
    transition: var(--transition);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 80px;
    padding: 60px 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6)),
        url('../assets/pic.jpg');
    background-size: cover;
    background-position: 30% center;
    background-attachment: fixed;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    color: var(--white);
}

.hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* Hero Quote Form */
.hero-quote-form {
    width: 100%;
}

.quote-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.quote-card h3 {
    color: var(--black);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.quote-card>p {
    color: var(--medium-gray);
    font-size: 0.95rem;
    margin-bottom: 1.75rem;
}

.quote-card .form-group {
    margin-bottom: 1rem;
}

.quote-card .form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
    font-size: 0.9rem;
}

.quote-card .form-group input,
.quote-card .form-group textarea,
.quote-card .form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    background-color: var(--white);
}

.quote-card .form-group input:focus,
.quote-card .form-group textarea:focus,
.quote-card .form-group select:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.quote-card .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.quote-card .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.quote-card .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.quote-card .radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.quote-card .radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 400;
}

.quote-card .radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.quote-card .radio-label span {
    font-size: 0.95rem;
    color: var(--dark-gray);
}

.quote-card .btn-full {
    margin-top: 1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    opacity: 0.8;
}

.scroll-indicator span {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--white));
    animation: scroll 2s infinite;
}

@keyframes scroll {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0;
    }

    50% {
        transform: translateY(15px);
        opacity: 1;
    }
}

/* =====================================================
   SECTION STYLING
   ===================================================== */
section {
    padding: 100px 0;
    overflow: hidden;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.15rem;
    color: var(--medium-gray);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-header p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about-section {
    background-color: var(--light-gray);
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--black);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
    border-radius: 50%;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--black);
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    color: var(--medium-gray);
}

/* =====================================================
   FLEET SECTION
   ===================================================== */
.fleet-section {
    background-color: var(--light-gray);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.fleet-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.fleet-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Special positioning for 16-seater VIP coach image */
.fleet-card:first-child .fleet-image img {
    object-position: center 30%;
}

.fleet-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
}

.fleet-card:hover .fleet-placeholder {
    transform: scale(1.05);
}

.fleet-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--black);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
}

.fleet-info {
    padding: 2rem;
}

.fleet-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.fleet-info p {
    margin-bottom: 1.25rem;
}

.fleet-link {
    color: var(--black);
    font-weight: 600;
    transition: var(--transition);
}

.fleet-link:hover {
    color: var(--medium-gray);
}

.fleet-cta {
    text-align: center;
    margin-top: 3rem;
}

/* =====================================================
   WHY CHOOSE US SECTION
   ===================================================== */
.why-section {
    background-color: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.why-card {
    text-align: center;
    padding: 2rem 1.5rem;
    transition: var(--transition);
}

.why-card:hover {
    transform: translateY(-5px);
}

.why-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-gray);
    border-radius: 50%;
    color: var(--black);
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background-color: var(--black);
    color: var(--white);
    transform: rotateY(360deg);
}

.why-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.why-card p {
    line-height: 1.7;
}

/* =====================================================
   GALLERY SECTION
   ===================================================== */
.gallery-preview {
    background-color: var(--light-gray);
}

.gallerySwiper {
    width: 100%;
    padding: 0 50px 50px;
}

.swiper-slide {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.gallery-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--dark-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--black);
}

.swiper-pagination-bullet-active {
    background-color: var(--black);
}

.gallery-cta {
    text-align: center;
    margin-top: 3rem;
}

/* =====================================================
   TESTIMONIALS SECTION
   ===================================================== */
.testimonials-section {
    background-color: var(--white);
    padding: 100px 0;
}

.testimonialsSwiper {
    width: 100%;
    padding: 0 50px 50px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    height: auto;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.testimonial-card .stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: #FFD700;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background-color: var(--black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    font-family: var(--font-heading);
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--black);
}

.author-info p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: 0;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact-section {
    background-color: var(--light-gray);
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-card {
    background-color: var(--white);
    padding: 3rem 2rem;
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-card .contact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--black);
    border-radius: 50%;
    color: var(--white);
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    transform: scale(1.1);
}

.contact-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--black);
}

.contact-card p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    color: var(--black);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.contact-link:hover {
    color: var(--medium-gray);
    transform: translateX(3px);
}

/* =====================================================
   FORM STYLING
   ===================================================== */
.contact-form {
    background-color: var(--light-gray);
    padding: 3rem;
    border-radius: 12px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--black);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* =====================================================
   FOOTER
   ===================================================== */
.main-footer {
    background-color: var(--black);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1.15rem;
    margin-bottom: 1.25rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.contact-list li {
    color: rgba(255, 255, 255, 0.7);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.developer-credit {
    margin-top: 0.75rem;
    font-size: 0.9rem;
}

.developer-credit a {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.developer-credit a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: width 0.3s ease;
}

.developer-credit a:hover {
    color: var(--white);
}

.developer-credit a:hover::after {
    width: 100%;
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        right: 0;
        background: var(--white);
        width: 220px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
        border-radius: 0 0 12px 12px;
        padding: 2rem 1.5rem;
        z-index: 1001;
        gap: 1.5rem;
        transition: var(--transition);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .cta-button {
        padding: 10px 20px;
        font-size: 0.8rem;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .quote-card {
        padding: 2rem;
    }

    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .cta-button {
        padding: 8px 16px;
        font-size: 0.75rem;
        letter-spacing: 0.3px;
    }

    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 60px 0;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-wrapper {
        gap: 2.5rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.05rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .quote-card {
        padding: 2rem 1.5rem;
    }

    .quote-card h3 {
        font-size: 1.5rem;
    }

    .quote-card .form-row {
        grid-template-columns: 1fr;
    }

    .quote-card .radio-group {
        gap: 1rem;
    }

    .services-grid,
    .fleet-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .cta-button {
        padding: 8px 14px;
        font-size: 0.7rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }

    .quote-card {
        padding: 1.5rem;
    }

    .quote-card h3 {
        font-size: 1.35rem;
    }

    .quote-card>p {
        font-size: 0.9rem;
    }

    .section-title h2 {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}

/* =====================================================
   PAGE HERO (for internal pages)
   ===================================================== */
.page-hero {
    position: relative;
    padding: 150px 0 100px;
    background-color: var(--black);
    margin-top: 80px;
    overflow: hidden;
}

.page-hero-content {
    position: relative;
    text-align: center;
    color: var(--white);
}

.page-hero-content h1 {
    color: var(--white);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin: 0;
}

/* =====================================================
   ABOUT PAGE STYLES
   ===================================================== */
.about-content {
    padding: 100px 0 60px;
    position: relative;
    z-index: 5;
    background-color: var(--white);
}

.about-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
}

.about-intro h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--medium-gray);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.about-card {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.about-card-icon {
    width: 80px;
    height: 80px;
    background-color: var(--black);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-bottom: 2rem;
}

.about-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.about-card p {
    line-height: 1.8;
}

/* Experience Section */
.experience-section {
    background-color: var(--light-gray);
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.experience-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.experience-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.experience-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.experience-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-item h3 {
    color: var(--black);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--medium-gray);
    font-weight: 600;
    margin: 0;
}

.experience-image {
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
}

.experience-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--dark-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    gap: 1rem;
}

.experience-placeholder p {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

/* Location Section */
.location-section {
    padding: 100px 0;
    position: relative;
    z-index: 2;
    background-color: var(--white);
}

.location-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.location-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.location-text>p {
    margin-bottom: 2rem;
    line-height: 1.8;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.benefits-list svg {
    flex-shrink: 0;
    color: var(--black);
    margin-top: 2px;
}

.benefits-list span {
    color: var(--medium-gray);
    line-height: 1.7;
}

.location-map {
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--light-gray);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.map-placeholder svg {
    color: var(--black);
}

.map-placeholder p {
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

/* Values Section */
.values-section {
    background-color: var(--light-gray);
    padding: 100px 0;
    position: relative;
    z-index: 2;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.value-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.value-card h3 {
    color: var(--black);
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.value-card p {
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.cta-section {
    background-color: var(--black);
    padding: 100px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    color: var(--white);
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive - About Page */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .experience-content {
        grid-template-columns: 1fr;
    }

    .experience-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-content {
        padding: 40px 0 30px;
    }

    .about-intro {
        padding: 0 10px;
        margin-bottom: 2rem;
    }

    .about-intro h2 {
        font-size: 2rem;
    }

    .lead {
        font-size: 1rem;
    }

    .about-grid {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .about-card {
        padding: 1.5rem;
    }

    .experience-section,
    .location-section,
    .values-section {
        padding: 40px 0;
    }

    .experience-content,
    .location-content {
        gap: 2rem;
    }

    .experience-text h2 {
        font-size: 1.5rem;
    }

    .experience-image,
    .location-map {
        height: 200px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .value-card {
        padding: 1.2rem 1rem;
    }

    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .experience-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .experience-image {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .about-content {
        padding: 20px 0 10px;
    }

    .about-intro {
        padding: 0 5px;
    }

    .about-intro h2 {
        font-size: 1.3rem;
    }

    .about-card {
        padding: 0.8rem;
    }

    .experience-section,
    .location-section,
    .values-section {
        padding: 20px 0;
    }

    .experience-image,
    .location-map {
        height: 120px;
    }

    .values-grid {
        gap: 0.7rem;
    }
}

/* =====================================================
   QUOTE PAGE STYLES
   ===================================================== */
.quote-form-section {
    padding: 80px 0;
    background-color: var(--white);
    position: relative;
    z-index: 2;
}

.quote-form-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.quote-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    grid-column: 1 / -1;
}

.quote-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.quote-intro p {
    font-size: 1.1rem;
    line-height: 1.7;
}

.detailed-quote-form {
    background-color: var(--light-gray);
    padding: 3rem;
    border-radius: 12px;
}

.form-section {
    margin-bottom: 3rem;
}

.form-section:last-of-type {
    margin-bottom: 2rem;
}

.form-section-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--black);
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--dark-gray);
}

.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.75rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 400;
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.radio-label span {
    font-size: 1rem;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* Quote Sidebar */
.quote-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-card {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.sidebar-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.sidebar-card p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.sidebar-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--dark-gray);
}

.sidebar-contact-item svg {
    flex-shrink: 0;
    color: var(--black);
}

.sidebar-list {
    list-style: none;
    padding: 0;
}

.sidebar-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--medium-gray);
}

.sidebar-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--black);
    font-weight: bold;
}

/* Responsive - Quote Page */
@media (max-width: 992px) {
    .quote-form-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .quote-sidebar {
        position: static;
    }

    .sidebar-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .detailed-quote-form {
        padding: 2rem;
    }

    .form-section-title {
        font-size: 1.25rem;
    }

    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }
}

/* =====================================================
   FLEET CAROUSEL STYLES
   ===================================================== */
.fleet-carousel {
    position: relative;
}

.fleet-carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    pointer-events: none;
}

.fleet-carousel-image.active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.fleet-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
}

.fleet-card:hover .fleet-carousel-btn {
    opacity: 1;
    visibility: visible;
}

.fleet-carousel-btn:hover {
    background-color: var(--black);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.fleet-carousel-btn svg {
    display: block;
}

.fleet-carousel-prev {
    left: 15px;
}

.fleet-carousel-next {
    right: 15px;
}

@media (max-width: 768px) {
    .fleet-carousel-btn {
        width: 35px;
        height: 35px;
        opacity: 1;
        visibility: visible;
    }

    .fleet-carousel-prev {
        left: 10px;
    }

    .fleet-carousel-next {
        right: 10px;
    }
}

/* =====================================================
   WHATSAPP FLOATING BUTTON
   ===================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 2000;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--black);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    border: 4px solid transparent;
    border-left-color: var(--black);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    right: 75px;
}

@keyframes whatsapp-pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4),
            0 0 0 10px rgba(37, 211, 102, 0.2),
            0 0 0 20px rgba(37, 211, 102, 0.1);
    }
}

/* WhatsApp Button - Responsive */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
    }

    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}