/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Image Constraints */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
}

.nav-menu .btn {
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
    background: transparent !important;
    color: #333 !important;
    border: none !important;
    box-shadow: none !important;
    align-self: flex-start;
    margin-top: -0.2rem;
}

.nav-menu .btn-icon {
    width: 12px;
    height: 12px;
}

.nav-menu .btn:hover {
    background: #333 !important;
    color: white !important;
}

.btn-primary {
    background: linear-gradient(135deg, #fccb28 0%, #ff6900 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e6b825 0%, #e55a00 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(252, 203, 40, 0.3);
}

.btn-secondary {
    background: white;
    color: #333;
    border: 2px solid #333;
}

.btn-secondary:hover {
    background: #333;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(51, 51, 51, 0.3);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.6;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    justify-content: center;
    min-height: 48px;
}

.btn-primary {
    background: linear-gradient(135deg, #fccb28 0%, #ff6900 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(252, 203, 40, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 203, 40, 0.4);
}

.btn-secondary {
    background: transparent;
    color: #333;
    border: 2px solid #fccb28;
}

.btn-secondary:hover {
    background: #fccb28;
    color: white;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    min-height: 50px;
    height: 50px;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    height: 100%;
    gap: 3rem;
}

.nav-menu {
    margin-left: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo {
    height: 102px;
    width: auto;
    transition: transform 0.3s ease;
    transform: translateY(20px);
}

.logo:hover {
    transform: translateY(20px) scale(1.05);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.nav-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #fccb28;
}


/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100%;
}

.hero-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -2;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -2;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(252, 203, 40, 0.8) 0%, rgba(255, 105, 0, 0.8) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center !important;
    color: white;
    padding: 2rem 0;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 100%;
}

.hero-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    text-align: center !important;
    width: 100%;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    text-align: center !important;
    width: 100%;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    color: #333;
    margin-bottom: 1rem;
}

.section-divider {
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #fccb28 0%, #ff6900 100%);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-description {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
}

.services-grid {
    display: grid;
    gap: 2rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-title {
    color: #333;
    margin-bottom: 1rem;
}

.service-divider {
    width: 40px;
    height: 3px;
    background: #fccb28;
    margin-bottom: 1rem;
}

.service-description {
    color: #666;
    line-height: 1.6;
}

.service-features {
    display: grid;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #fccb28 0%, #ff6900 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

.feature-title {
    color: #333;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #666;
    font-size: 0.9rem;
}

/* Driver Section */
.driver-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fccb28 0%, #ff6900 100%);
    color: white;
}

.driver-content {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.driver-image {
    text-align: center;
    overflow: hidden;
    border-radius: 15px;
}

.driver-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: cover;
}

.driver-info {
    text-align: center;
}

.driver-title {
    color: white;
    margin-bottom: 1rem;
}

.driver-divider {
    width: 60px;
    height: 4px;
    background: white;
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.driver-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Reservation Section */
.reservation {
    padding: 4rem 0;
    background: #333;
    color: white;
    text-align: center;
}

.reservation-title {
    color: white;
    margin-bottom: 2rem;
}

.reservation-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Contact Section */
.contact {
    padding: 4rem 0;
    background: #f8f9fa;
}

.contact-content {
    text-align: center;
}

.contact-title {
    color: #333;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 24px;
    height: 24px;
    color: #fccb28;
}

.contact-item a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    color: #fccb28;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    text-align: center;
}

.footer-logo-img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-text {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-link:hover {
    color: #fccb28;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        background: none;
        box-shadow: none;
        display: flex;
        gap: 2rem;
    }

    .nav-link {
        border-bottom: none;
        padding: 0.5rem 0;
    }

    .nav-toggle {
        display: none;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .service-features {
        grid-template-columns: repeat(3, 1fr);
    }

    .driver-content {
        grid-template-columns: 1fr 1fr;
        text-align: left;
    }

    .driver-info {
        text-align: left;
    }

    .driver-divider {
        margin: 0 0 1.5rem 0;
    }

    .contact-item {
        justify-content: flex-start;
        max-width: 400px;
        margin: 0 auto 1rem;
    }

    .footer-links {
        gap: 3rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .services {
        padding: 6rem 0;
    }

    .driver-section {
        padding: 6rem 0;
    }

    .reservation {
        padding: 6rem 0;
    }

    .contact {
        padding: 6rem 0;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles */
.btn:focus,
.nav-link:focus,
.nav-toggle:focus {
    outline: 2px solid #fccb28;
    outline-offset: 2px;
}

/* High contrast mode */
@media (prefers-contrast: high) {
    .btn-primary {
        background: #000;
        color: #fff;
        border: 2px solid #fff;
    }
    
    .btn-secondary {
        background: #fff;
        color: #000;
        border: 2px solid #000;
    }
}

/* Additional Styles for Services and Contact Pages */
.service-features-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-features-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: #666;
}

.service-features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fccb28;
    font-weight: bold;
}

.nav-link.active {
    color: #fccb28;
    font-weight: 600;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
}

.contact-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #fccb28 0%, #ff6900 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.contact-icon-large svg {
    width: 40px;
    height: 40px;
}

.contact-card-title {
    color: #333;
    margin-bottom: 0.5rem;
}

.contact-card-description {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-card-link {
    color: #fccb28;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
}

.contact-card-link:hover {
    color: #ff6900;
}

.contact-card-text {
    color: #333;
    font-weight: 600;
    font-size: 1.125rem;
}

/* Schedule Section */
.schedule-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.schedule-title {
    color: #333;
    text-align: center;
    margin-bottom: 1.5rem;
}

.schedule-grid {
    display: grid;
    gap: 1rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.schedule-day {
    font-weight: 600;
    color: #333;
}

.schedule-hours {
    color: #fccb28;
    font-weight: 600;
}

.schedule-note {
    text-align: center;
    color: #666;
    font-style: italic;
    margin-top: 1rem;
}

/* Coverage Section */
.coverage-section {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.coverage-title {
    color: #333;
    text-align: center;
    margin-bottom: 1.5rem;
}

.coverage-description {
    color: #666;
    margin-bottom: 1.5rem;
    text-align: center;
}

.coverage-list {
    list-style: none;
    padding: 0;
}

.coverage-list li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 2rem;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.coverage-list li:last-child {
    border-bottom: none;
}

.coverage-list li::before {
    content: '📍';
    position: absolute;
    left: 0;
    color: #fccb28;
}

.reservation-subtitle {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

/* Responsive Design for Contact Page */
@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .schedule-item {
        justify-content: center;
        gap: 2rem;
    }
    
    .reservation-buttons {
        flex-direction: row;
        gap: 1rem;
    }
}

/* Services Cards Section */
.services-cards {
    padding: 4rem 0;
    background: white;
}

.services-cards-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.service-card-large {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card-large:hover {
    transform: translateY(-5px);
}

.service-card-image {
    height: 300px;
    overflow: hidden;
}

.service-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card-large:hover .service-card-img {
    transform: scale(1.05);
}

.service-card-content {
    padding: 2rem;
    text-align: center;
}

.service-card-title {
    margin: 0;
}

.service-card-title a {
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.service-card-title a:hover {
    color: #fccb28;
}

/* Features Section */
.features-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-icon {
    margin-bottom: 1rem;
}

.feature-icon-img {
    width: 80px;
    height: auto;
}

.feature-title {
    color: #333;
    margin-bottom: 0.5rem;
}

.feature-description {
    color: #666;
    font-size: 0.9rem;
}

/* Reservation CTA Section */
.reservation-cta {
    padding: 4rem 0;
    background: #333;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reservation-cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.reservation-cta-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.reservation-cta .container {
    position: relative;
    z-index: 2;
}

.reservation-icon {
    margin-bottom: 2rem;
}

.reservation-icon-img {
    width: 100px;
    height: auto;
}

.reservation-title {
    color: white;
    margin-bottom: 2rem;
}

/* Footer Enhanced */
.footer-info {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.footer-column {
    text-align: center;
}

.footer-title {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer-text {
    color: #666;
    margin-bottom: 1rem;
}

.footer-text a {
    color: #fccb28;
    text-decoration: none;
}

.footer-text a:hover {
    color: #ff6900;
}

.social-links {
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #fccb28;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ff6900;
}

.footer-bottom {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: center;
}

.footer-copyright {
    color: #666;
    margin: 0;
}

/* Partner Section */
.partner-section {
    padding: 4rem 0;
    background: white;
}

/* Vehicle Config Section */
.vehicle-config-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.vehicle-config-content {
    display: grid;
    gap: 3rem;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
}

.vehicle-config-info {
    text-align: center;
    max-width: 100%;
    overflow: hidden;
}

.vehicle-config-title {
    color: #333;
    margin-bottom: 1rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
    max-width: 100%;
    white-space: normal;
    hyphens: auto;
    font-size: 1.5rem;
}

.vehicle-config-divider {
    width: 60px;
    height: 4px;
    background: #fccb28;
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.vehicle-config-description {
    color: #666;
    margin-bottom: 2rem;
}

.vehicle-features-list {
    display: grid;
    gap: 1rem;
}

.vehicle-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    overflow: hidden;
}

.vehicle-feature-icon {
    width: 24px;
    height: 24px;
    color: #fccb28;
    flex-shrink: 0;
}

.vehicle-feature-text {
    color: #333;
    font-weight: 500;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.vehicle-config-image {
    text-align: center;
}

.vehicle-config-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Accessories Section */
.accessories-section {
    padding: 4rem 0;
    background: white;
}

.accessories-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

.accessories-image {
    text-align: center;
}

.accessories-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.accessories-info {
    text-align: center;
}

.accessories-title {
    color: #333;
    margin-bottom: 1rem;
}

.accessories-divider {
    width: 60px;
    height: 4px;
    background: #fccb28;
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.accessories-description {
    color: #666;
    margin-bottom: 2rem;
}

.accessories-list {
    display: grid;
    gap: 1rem;
}

.accessory-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #fccb28;
}

.accessory-icon {
    width: 24px;
    height: 24px;
    color: #fccb28;
    flex-shrink: 0;
}

.accessory-text {
    color: #333;
    font-weight: 500;
}

/* Solution Section */
.solution-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #817b64 0%, #5a5447 100%);
    color: white;
    text-align: center;
}

.cta-icon {
    margin-bottom: 2rem;
}

.cta-icon-img {
    width: 100px;
    height: auto;
}

.cta-title {
    color: white;
    margin-bottom: 1rem;
}

.cta-description {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.trustmary-widget {
    margin: 2rem 0;
    min-height: 400px;
}

.fallback-reviews {
    margin-top: 2rem;
}

.reviews-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.review-stars {
    margin-bottom: 1rem;
    color: #fccb28;
    font-size: 1.5rem;
}

.review-text {
    color: #333;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.review-author {
    color: #666;
    font-weight: 600;
}

/* Description Section */
.description-section {
    padding: 4rem 0;
    background: white;
}

/* Reservation Form Section */
.reservation-form-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reservation-form {
    display: grid;
    gap: 2rem;
}

.form-row {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1fr;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-label {
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
}

.form-input,
.form-textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #fccb28;
}

.form-input.error,
.form-textarea.error {
    border-color: #e74c3c;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

.radio-group {
    display: flex;
    gap: 2rem;
    margin-top: 0.5rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.radio-input {
    margin: 0;
}

.radio-text {
    color: #333;
}

.form-submit {
    justify-self: center;
    min-width: 200px;
}

.form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 3rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.success-icon svg {
    width: 40px;
    height: 40px;
}

.success-title {
    color: #333;
    margin-bottom: 1rem;
}

.success-message {
    color: #666;
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Contact Info Section */
.contact-info-section {
    padding: 4rem 0;
    background: white;
}

.contact-info-content {
    text-align: center;
}

.contact-info-title {
    color: #333;
    margin-bottom: 1rem;
}

.contact-info-description {
    color: #666;
    margin-bottom: 2rem;
}

.contact-info-buttons {
    display: flex;
    justify-content: center;
}

/* Harmonized Page Styles */
.main-content {
    /* No padding-top to avoid zoom issues */
}

/* Ensure consistent page dimensions across all pages */
body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Consistent header dimensions */
.header {
    min-height: 80px;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

/* Consistent container dimensions */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Consistent section padding */
section {
    padding: 2rem 0;
}

/* Consistent hero section dimensions - FORCE IDENTICAL SIZES */
.hero {
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: 100% !important;
    max-width: 100% !important;
}

/* Ensure all hero sections are identical */
section.hero,
.hero-section,
#hero {
    height: 100vh !important;
    min-height: 100vh !important;
    max-height: 100vh !important;
    width: 100% !important;
}

.page-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #fccb28, #ff6900);
}

.page-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

/* Ensure all section headers are centered */
.services-overview .section-header,
.partner-section .section-header,
.reviews-section .section-header,
.description-section .section-header {
    text-align: center;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #fccb28, #ff6900);
    margin: 0 auto 1.5rem;
    border-radius: 2px;
}

.section-description {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Services Page Styles */
.services-overview {
    padding: 4rem 0;
    background: white;
}


.services-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-top: 4rem;
}

.service-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(252, 203, 40, 0.2);
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #fccb28;
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    color: #fccb28;
    background: rgba(252, 203, 40, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.service-item:hover .service-icon {
    background: #fccb28;
    color: white;
    transform: scale(1.1);
}

.service-icon svg {
    width: 35px;
    height: 35px;
}

.service-title {
    color: #333;
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
}

.service-description {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

.detailed-services {
    padding: 6rem 0;
    background: white;
    position: relative;
}

.detailed-services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0, transparent);
}

.service-detail {
    display: grid;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    padding: 3rem 0;
    border-radius: 20px;
    background: rgba(248, 249, 250, 0.5);
    transition: all 0.3s ease;
}

.service-detail:hover {
    background: rgba(252, 203, 40, 0.05);
    transform: translateY(-5px);
}

.service-detail.reverse {
    direction: rtl;
}

.service-detail.reverse > * {
    direction: ltr;
}

.service-detail-content {
    text-align: center;
    padding: 1.5rem;
}

.service-detail-title {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    font-weight: 700;
}

.service-detail-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #fccb28, #ff6900);
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.service-detail-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-size: 1rem;
}

.service-features {
    list-style: none;
    padding: 1.5rem;
    text-align: left;
    max-width: 380px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.8rem;
}

.service-features li {
    color: #333;
    margin-bottom: 0;
    font-weight: 500;
    font-size: 0.95rem;
    padding-left: 1.2rem;
    position: relative;
    line-height: 1.4;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #fccb28;
    font-weight: bold;
    font-size: 1rem;
}

.service-detail-image {
    text-align: center;
    padding: 1rem;
    overflow: hidden;
    border-radius: 20px;
}

.service-detail-img {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    object-fit: cover;
}

.service-detail-img:hover {
    transform: scale(1.02);
}

/* CTA Section Styles */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #333 0%, #555 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    min-width: 200px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Responsive Design Updates */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
    
    .nav-menu {
        position: static !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        background: none !important;
        box-shadow: none !important;
        display: flex !important;
        gap: 2rem;
        z-index: auto !important;
    }
    
    .nav-link {
        border-bottom: none;
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        display: block !important;
    }
    
    .nav-link:hover {
        color: #fccb28;
    }
    
    .nav-link.active {
        color: #fccb28;
        font-weight: 600;
    }
    
    .services-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .vehicle-config-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .vehicle-config-info {
        text-align: left;
    }
    
    .vehicle-config-divider {
        margin: 0 0 1.5rem 0;
    }
    
    .accessories-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .accessories-info {
        text-align: left;
    }
    
    .accessories-divider {
        margin: 0 0 1.5rem 0;
    }
    
    .footer-info {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .radio-group {
        justify-content: flex-start;
    }
    
    .service-detail {
        grid-template-columns: 1fr 1fr;
    }
    
    .service-detail-content {
        text-align: left;
    }
    
    .service-detail-divider {
        margin: 0 0 1.5rem 0;
    }
    
    .service-features {
        text-align: left;
        margin: 0;
        grid-template-columns: 1fr 1fr;
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .radio-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .success-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Print styles */
@media print {
    .header,
    .nav-toggle,
    .hero-buttons,
    .reservation-buttons {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 2rem 0;
    }
    
    .hero-background {
        display: none;
    }
    
    .hero::before {
        display: none;
    }
    
    .hero-content {
        color: #000;
    }
    
    .services,
    .driver-section,
    .reservation,
    .contact {
        padding: 1rem 0;
    }
}
