/* SwiftRide Taxi Website Stylesheet */
/* styles.css */

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #414042;
}

/* Header Navigation */
.header {
    background: #414042;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    position: relative;
}

/* Mobile Menu Toggle Button */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.menu-toggle:hover {
    color: #FFCD07;
}

/* Stacked Logo Styling */
.logo-stacked {
    text-align: center;
    background: #414042;
    color: #FFFFFF;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    border: 2px solid #FFCD07;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.logo-stacked:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 205, 7, 0.4);
}

.logo-stacked .line1 {
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}

.logo-stacked .line2 {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.logo-stacked .swift { 
    color: #FFCD07; 
}

.logo-stacked .ride { 
    color: #FFFFFF;
    font-style: italic;
}

.logo-stacked .taxi { 
    color: #FFCD07; 
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #FFCD07;
}

.book-now-btn {
    background: #FFCD07;
    color: #414042;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 205, 7, 0.4);
}

/* Phone Number Link Styling - Fixed Colors */
a[href^="tel:"] {
    color: #414042;
    text-decoration: none;
    font-weight: bold;
}

a[href^="tel:"]:hover {
    text-decoration: none;
}

/* Exception for phone links in dark backgrounds */
.header a[href^="tel:"],
.footer a[href^="tel:"],
.hours-section a[href^="tel:"] {
    color: #FFFFFF !important;
}

/* Hero and Emergency Banner Phone Numbers */
.hero .phone-number,
.emergency-banner .phone-number,
.phone-banner a[href^="tel:"] {
    color: #414042 !important;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #414042 0%, #2c2c2e 100%);
    color: #FFFFFF;
    padding: 4rem 0 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #FFCD07;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Service Categories */
.service-category {
    padding: 4rem 0;
    border-bottom: 1px solid #eee;
}

.service-category:last-child {
    border-bottom: none;
}

.category-header {
    text-align: center;
    margin-bottom: 3rem;
}

.category-header h2 {
    font-size: 2.5rem;
    color: #414042;
    margin-bottom: 1rem;
}

.category-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Cards */
.service-card {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid #FFCD07;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #414042;
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 1rem;
    color: #666;
}

.service-features {
    list-style: none;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.3rem 0;
    color: #414042;
}

.service-features li:before {
    content: "✓ ";
    color: #FFCD07;
    font-weight: bold;
}

/* Booking CTA */
.booking-cta {
    background: #FFCD07;
    padding: 3rem 0;
    text-align: center;
    margin: 4rem 0;
    border-radius: 15px;
}

.booking-cta h3 {
    color: #414042;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.booking-cta p {
    color: #414042;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Coverage Section */
.coverage-section {
    background: #f8f9fa;
    padding: 4rem 0;
    margin: 4rem 0;
    border-radius: 15px;
}

.coverage-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.coverage-section h3 {
    font-size: 2rem;
    color: #414042;
    margin-bottom: 2rem;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.coverage-item {
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.coverage-item h4 {
    color: #414042;
    margin-bottom: 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #414042 0%, #2c2c2e 100%);
    color: #FFFFFF;
    padding: 4rem 0;
    text-align: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #FFCD07;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary {
    background: #FFCD07;
    color: #414042;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 205, 7, 0.4);
}

.cta-secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #FFFFFF;
    color: #414042;
}

/* Phone Number Section */
.phone-banner {
    background: #FFCD07;
    color: #414042;
    text-align: center;
    padding: 1rem;
    font-size: 1.2rem;
    font-weight: bold;
}

.phone-number {
    font-size: 1.5rem;
    margin-left: 0.5rem;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: #FFFFFF;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.features h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #414042;
}

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

.feature-card {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #414042;
}

/* Services Section */
.services {
    padding: 4rem 0;
    background: #f8f9fa;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #414042;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-item {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.service-item h3 {
    color: #414042;
    margin-bottom: 1rem;
}

/* Coverage Section */
.coverage {
    padding: 4rem 0;
    background: #414042;
    color: #FFFFFF;
}

.coverage-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.coverage h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #FFCD07;
}

.coverage-areas {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.area-item {
    background: rgba(255, 205, 7, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #FFCD07;
}

/* CTA Section */
.cta-section {
    background: #FFCD07;
    padding: 3rem 0;
    text-align: center;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-section h2 {
    color: #414042;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: #414042;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: #414042;
    color: #FFFFFF;
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer h3 {
    color: #FFCD07;
    margin-bottom: 1rem;
}

/* Footer Logo Styling */
.footer-logo {
    margin-bottom: 1rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.footer-logo .swift { 
    color: #FFCD07;
    font-size: 1.4rem;
    font-weight: bold;
}

.footer-logo .ride { 
    color: #FFFFFF;
    font-style: italic;
    font-size: 1.4rem;
    font-weight: bold;
}

.footer-logo .taxi { 
    color: #FFCD07;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer a {
    color: #FFFFFF;
    text-decoration: none;
}

.footer a:hover {
    color: #FFCD07;
}

.footer-bottom {
    border-top: 1px solid #666;
    padding-top: 1rem;
    text-align: center;
    color: #ccc;
}

/* Fare Calculator Section */
.calculator-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 15px;
    text-align: center;
}

.calculator-section h2 {
    font-size: 2.5rem;
    color: #414042;
    margin-bottom: 1rem;
}

.calculator-section p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

/* Fare Calculator Styles */
.fare-calculator {
    max-width: 500px;
    margin: 20px auto;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 2px solid #414042;
}

.calculator-title {
    text-align: center;
    color: #414042;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
}

.input-group {
    margin-bottom: 15px;
}

.input-label {
    display: block;
    color: #414042;
    font-weight: bold;
    margin-bottom: 5px;
}

.address-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #414042;
    border-radius: 8px;
    font-size: 16px;
    box-sizing: border-box;
}

.address-input:focus {
    outline: none;
    border-color: #FFCD07;
    box-shadow: 0 0 5px rgba(255, 205, 7, 0.3);
}

.calculate-btn {
    width: 100%;
    background: #FFCD07;
    color: #414042;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 205, 7, 0.4);
}

.calculate-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.result-container {
    margin-top: 20px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #FFCD07;
    display: none;
}

.result-container.show {
    display: block;
}

.fare-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: #414042;
    text-align: center;
    margin-bottom: 10px;
}

.trip-details {
    color: #666;
    font-size: 14px;
    text-align: center;
}

.error-message {
    background: #ffebee;
    color: #c62828;
    padding: 10px;
    border-radius: 5px;
    margin-top: 10px;
    display: none;
}

.error-message.show {
    display: block;
}

.loading {
    text-align: center;
    color: #414042;
    font-style: italic;
    display: none;
}

.loading.show {
    display: block;
}

.rate-info {
    background: #FFCD07;
    color: #414042;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 20px;
    text-align: center;
    font-size: 14px;
}

.disclaimer {
    font-size: 12px;
    color: #666;
    text-align: center;
    margin-top: 15px;
    font-style: italic;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 5px;
}

/* Official Rates Section */
.rates-section {
    padding: 4rem 0;
}

.rates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.rate-card {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #FFCD07;
}

.rate-card h3 {
    color: #414042;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.rate-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.rate-item:last-child {
    border-bottom: none;
}

.rate-description {
    flex: 1;
    color: #414042;
}

.rate-amount {
    font-weight: bold;
    color: #414042;
    font-size: 1.1rem;
}

/* Sample Fares Section */
.sample-fares {
    background: #f8f9fa;
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 15px;
}

.sample-fares h3 {
    text-align: center;
    font-size: 2rem;
    color: #414042;
    margin-bottom: 2rem;
}

.sample-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.sample-item {
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.sample-route {
    font-weight: bold;
    color: #414042;
    margin-bottom: 0.5rem;
}

.sample-price {
    font-size: 1.2rem;
    color: #FFCD07;
    font-weight: bold;
}

/* Payment Methods */
.payment-section {
    padding: 4rem 0;
    text-align: center;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.payment-method {
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
    min-width: 150px;
}

.payment-method h4 {
    color: #414042;
    margin-bottom: 0.5rem;
}

/* Coverage Overview */
.coverage-overview {
    padding: 4rem 0;
    text-align: center;
}

.coverage-overview h2 {
    font-size: 2.5rem;
    color: #414042;
    margin-bottom: 2rem;
}

.coverage-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #FFCD07;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFCD07;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #414042;
    font-weight: 500;
}

/* Service Levels */
.service-levels {
    padding: 4rem 0;
    background: #f8f9fa;
    margin: 4rem 0;
    border-radius: 20px;
}

.service-levels h3 {
    text-align: center;
    font-size: 2rem;
    color: #414042;
    margin-bottom: 3rem;
}

.levels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.level-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    position: relative;
}

.level-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFCD07;
    color: #414042;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.level-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.level-title {
    font-size: 1.3rem;
    color: #414042;
    margin-bottom: 1rem;
}

.level-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.level-features {
    list-style: none;
    text-align: left;
}

.level-features li {
    padding: 0.3rem 0;
    color: #414042;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.level-features li:before {
    content: "✓";
    color: #FFCD07;
    font-weight: bold;
}

/* Counties Section */
.counties-section {
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #414042;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.counties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.county-card {
    background: #FFFFFF;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid #FFCD07;
}

.county-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.county-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.county-icon {
    font-size: 2rem;
}

.county-name {
    font-size: 1.3rem;
    font-weight: bold;
    color: #414042;
}

.county-description {
    color: #666;
    margin-bottom: 1rem;
}

.county-highlights {
    list-style: none;
}

.county-highlights li {
    padding: 0.2rem 0;
    color: #414042;
    font-size: 0.9rem;
}

.county-highlights li:before {
    content: "• ";
    color: #FFCD07;
    font-weight: bold;
}

/* Airports Section */
.airports-section {
    padding: 4rem 0;
    background: #414042;
    color: #FFFFFF;
    margin: 4rem 0;
    border-radius: 20px;
}

.airports-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #FFCD07;
    margin-bottom: 3rem;
}

.airports-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 2rem;
}

.airport-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s;
}

.airport-card:hover {
    transform: scale(1.05);
}

.airport-code {
    font-size: 2.5rem;
    font-weight: bold;
    color: #FFCD07;
    margin-bottom: 0.5rem;
}

.airport-name {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.airport-distance {
    color: #FFCD07;
    font-weight: bold;
    margin-bottom: 1rem;
}

.airport-features {
    list-style: none;
    text-align: left;
}

.airport-features li {
    padding: 0.3rem 0;
    color: #FFFFFF;
    font-size: 0.9rem;
}

.airport-features li:before {
    content: "✓ ";
    color: #FFCD07;
    font-weight: bold;
}

/* Response Times */
.response-times {
    padding: 4rem 0;
}

.response-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.response-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #eee;
    transition: border-color 0.3s;
}

.response-card:hover {
    border-color: #FFCD07;
}

.response-time {
    font-size: 2rem;
    font-weight: bold;
    color: #FFCD07;
    margin-bottom: 0.5rem;
}

.response-area {
    font-weight: bold;
    color: #414042;
    margin-bottom: 0.5rem;
}

.response-note {
    color: #666;
    font-size: 0.9rem;
}

/* Special Coverage */
.special-coverage {
    background: #FFCD07;
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 20px;
    text-align: center;
}

.special-coverage h3 {
    color: #414042;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.special-item {
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.special-item h4 {
    color: #414042;
    margin-bottom: 1rem;
}

/* Fleet Overview */
.fleet-overview {
    padding: 4rem 0;
    text-align: center;
}

.fleet-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border-left: 4px solid #FFCD07;
}

/* Vehicle Categories */
.vehicle-category {
    padding: 4rem 0;
    border-bottom: 1px solid #eee;
}

.vehicle-category:last-child {
    border-bottom: none;
}

/* Vehicle Grid */
.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.vehicle-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #FFCD07;
}

.vehicle-image {
    height: 250px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #414042;
    position: relative;
}

.vehicle-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #FFCD07;
    color: #414042;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
}

.vehicle-content {
    padding: 2rem;
}

.vehicle-title {
    font-size: 1.5rem;
    color: #414042;
    margin-bottom: 1rem;
    font-weight: bold;
}

.vehicle-description {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.vehicle-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #414042;
}

.spec-icon {
    color: #FFCD07;
    font-weight: bold;
}

.vehicle-features {
    list-style: none;
    margin-bottom: 2rem;
}

.vehicle-features li {
    padding: 0.3rem 0;
    color: #414042;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.vehicle-features li:before {
    content: "✓";
    color: #FFCD07;
    font-weight: bold;
}

.book-vehicle-btn {
    width: 100%;
    background: #FFCD07;
    color: #414042;
    padding: 1rem;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    display: block;
    transition: all 0.3s;
}

.book-vehicle-btn:hover {
    background: #414042;
    color: #FFFFFF;
}

/* Fleet Standards */
.fleet-standards {
    background: #f8f9fa;
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 20px;
}

.standards-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.fleet-standards h3 {
    font-size: 2rem;
    color: #414042;
    margin-bottom: 2rem;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.standard-item {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.standard-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.standard-item h4 {
    color: #414042;
    margin-bottom: 1rem;
}

/* About Us Page Styles */
/* Hero Story */
.hero-story {
    padding: 4rem 0;
    text-align: center;
}

.hero-story h2 {
    font-size: 2.5rem;
    color: #414042;
    margin-bottom: 2rem;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #414042;
}

.story-content p {
    margin-bottom: 1.5rem;
}

.highlight-box {
    background: #FFCD07;
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem auto;
    max-width: 600px;
    text-align: center;
}

.highlight-box h3 {
    color: #414042;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.highlight-box p {
    color: #414042;
    font-weight: 500;
}

/* Values Section */
.values-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 20px;
}

.values-section h3 {
    text-align: center;
    font-size: 2rem;
    color: #414042;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-card {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

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

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-title {
    font-size: 1.3rem;
    color: #414042;
    margin-bottom: 1rem;
    font-weight: bold;
}

.value-description {
    color: #666;
    line-height: 1.6;
}

/* Leadership Section */
.leadership-section {
    padding: 4rem 0;
}

.leadership-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.leadership-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #414042;
}

.leadership-text p {
    margin-bottom: 1.5rem;
}

.leadership-image {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    height: 300px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #414042;
}

/* Community Section */
.community-section {
    background: #414042;
    color: #FFFFFF;
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 20px;
}

.community-section h3 {
    text-align: center;
    font-size: 2rem;
    color: #FFCD07;
    margin-bottom: 3rem;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.community-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.community-icon {
    font-size: 2.5rem;
    color: #FFCD07;
    margin-bottom: 1rem;
}

.community-item h4 {
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.community-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Credentials Section */
.credentials-section {
    padding: 4rem 0;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.credential-card {
    background: #FFFFFF;
    border: 2px solid #FFCD07;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.credential-icon {
    font-size: 2.5rem;
    color: #FFCD07;
    margin-bottom: 1rem;
}

.credential-title {
    font-size: 1.2rem;
    color: #414042;
    margin-bottom: 1rem;
    font-weight: bold;
}

.credential-details {
    color: #666;
    line-height: 1.6;
}

/* Mission Statement */
.mission-section {
    background: #FFCD07;
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 20px;
    text-align: center;
}

.mission-section h3 {
    color: #414042;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.mission-text {
    color: #414042;
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 500;
}

/* Contact CTA */
.contact-cta {
    padding: 4rem 2rem;
    text-align: center;
    background: #f8f9fa;
    border-radius: 20px;
    margin: 4rem 0;
}

.contact-cta h3 {
    color: #414042;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* FAQ Page Styles */
/* Quick Contact */
.quick-contact {
    background: #FFCD07;
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 15px;
    text-align: center;
}

.quick-contact h3 {
    color: #414042;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.quick-contact p {
    color: #414042;
    margin-bottom: 1rem;
}

.contact-options {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-btn {
    background: #414042;
    color: #FFFFFF;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(65, 64, 66, 0.4);
}

/* FAQ Categories */
.faq-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 3rem 0;
}

.category-btn {
    background: #f8f9fa;
    border: 2px solid #414042;
    color: #414042;
    padding: 1rem;
    border-radius: 10px;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
}

.category-btn:hover,
.category-btn.active {
    background: #414042;
    color: #FFFFFF;
}

/* FAQ Sections */
.faq-section {
    margin: 4rem 0;
    padding: 2rem 0;
    border-bottom: 2px solid #eee;
}

.faq-section:last-child {
    border-bottom: none;
}

/* FAQ Items */
.faq-item {
    background: #FFFFFF;
    border: 1px solid #eee;
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-question {
    background: #f8f9fa;
    padding: 1.5rem;
    cursor: pointer;
    font-weight: bold;
    color: #414042;
    border: none;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background: #FFCD07;
}

.faq-question.active {
    background: #FFCD07;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    transition: transform 0.3s;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 1.5rem;
    max-height: 500px;
}

.faq-answer p {
    margin-bottom: 1rem;
    color: #414042;
    line-height: 1.7;
}

.faq-answer ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.faq-answer li {
    margin-bottom: 0.5rem;
    color: #414042;
}

.highlight {
    background: #FFCD07;
    padding: 0.2rem 0.4rem;
    border-radius: 3px;
    font-weight: bold;
}

/* Search Box */
.faq-search {
    margin: 3rem 0;
    text-align: center;
}

.search-box {
    width: 100%;
    max-width: 500px;
    padding: 1rem;
    font-size: 1.1rem;
    border: 2px solid #414042;
    border-radius: 25px;
    outline: none;
}

.search-box:focus {
    border-color: #FFCD07;
    box-shadow: 0 0 10px rgba(255, 205, 7, 0.3);
}

/* Still Have Questions */
.still-questions {
    background: #f8f9fa;
    padding: 3rem 2rem;
    margin: 4rem 0;
    border-radius: 15px;
    text-align: center;
}

.still-questions h3 {
    color: #414042;
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Contact Page Styles */
/* Emergency Contact Banner */
.emergency-banner {
    background: #FFCD07;
    padding: 2rem;
    text-align: center;
    margin: 3rem 0;
    border-radius: 15px;
}

.emergency-banner h3 {
    color: #414042;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.emergency-banner p {
    color: #414042;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.phone-number {
    font-size: 2rem;
    font-weight: bold;
    color: #414042;
    text-decoration: none;
    display: inline-block;
    padding: 1rem 2rem;
    background: #FFFFFF;
    border-radius: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.phone-number:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* Contact Methods */
.contact-methods {
    padding: 4rem 0;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.method-card {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.method-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #FFCD07;
}

.method-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #FFCD07;
}

.method-title {
    font-size: 1.5rem;
    color: #414042;
    margin-bottom: 1rem;
    font-weight: bold;
}

.method-description {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.method-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.method-details h4 {
    color: #414042;
    margin-bottom: 1rem;
}

.method-details p {
    color: #414042;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.method-action {
    background: #414042;
    color: #FFFFFF;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
}

.method-action:hover {
    background: #FFCD07;
    color: #414042;
    transform: translateY(-2px);
}

/* Contact Form */
.contact-form-section {
    background: #f8f9fa;
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 20px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form-section h3 {
    text-align: center;
    font-size: 2rem;
    color: #414042;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: #414042;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #414042;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #FFCD07;
    box-shadow: 0 0 10px rgba(255, 205, 7, 0.3);
}

.form-textarea {
    min-height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-submit {
    background: #FFCD07;
    color: #414042;
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.form-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 205, 7, 0.4);
}

.form-note {
    background: #FFFFFF;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid #FFCD07;
}

.form-note h4 {
    color: #414042;
    margin-bottom: 1rem;
}

/* Business Info */
.business-info {
    padding: 4rem 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: #FFFFFF;
    border-left: 4px solid #FFCD07;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.info-card h4 {
    color: #414042;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.info-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-highlight {
    background: #FFCD07;
    color: #414042;
    padding: 0.3rem 0.6rem;
    border-radius: 5px;
    font-weight: bold;
}

/* Hours Section */
.hours-section {
    background: #414042;
    color: #FFFFFF;
    padding: 4rem 2rem;
    margin: 4rem 0;
    border-radius: 20px;
    text-align: center;
}

.hours-section h3 {
    font-size: 2.5rem;
    color: #FFCD07;
    margin-bottom: 2rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.hours-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hours-title {
    font-size: 1.5rem;
    color: #FFCD07;
    margin-bottom: 1rem;
    font-weight: bold;
}

.hours-time {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hours-note {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* FAQ Quick Links */
.faq-links {
    background: #FFCD07;
    padding: 3rem 2rem;
    margin: 4rem 0;
    border-radius: 20px;
    text-align: center;
}

.faq-links h3 {
    color: #414042;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-link {
    background: #FFFFFF;
    color: #414042;
    padding: 1rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    display: block;
}

.faq-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Booking Page Styles */
/* Booking specific body styling */
body.booking-page {
    background: #f8f9fa;
}

/* Quick Contact Banner */
.quick-contact {
    background: #FFCD07;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 3rem;
}

.quick-contact h3 {
    color: #414042;
    margin-bottom: 0.5rem;
}

.quick-contact p {
    color: #414042;
    margin-bottom: 1rem;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Booking Container */
.booking-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 3rem;
    align-items: start;
}

/* Booking Form */
.booking-form {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    color: #414042;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

/* Booking Steps */
.booking-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
    padding: 0 1rem;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    position: relative;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: #eee;
    z-index: 0;
}

.step.active:not(:last-child)::after {
    background: #FFCD07;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #eee;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.step.active .step-number {
    background: #FFCD07;
    color: #414042;
}

.step.completed .step-number {
    background: #28a745;
    color: white;
}

.step-label {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

.step.active .step-label {
    color: #414042;
    font-weight: bold;
}

/* Form Sections */
.form-section {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.form-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.section-title {
    color: #414042;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #FFCD07;
    padding-bottom: 0.5rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
}

/* Navigation Buttons */
.form-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.nav-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-prev {
    background: #f8f9fa;
    color: #414042;
    border: 2px solid #414042;
}

.btn-prev:hover {
    background: #414042;
    color: #FFFFFF;
}

.btn-next,
.btn-submit {
    background: #FFCD07;
    color: #414042;
}

.btn-next:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 205, 7, 0.4);
}

.btn-submit {
    background: #28a745;
    color: white;
}

/* Fare Calculator Sidebar */
.fare-calculator {
    background: #FFFFFF;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: sticky;
    top: 120px;
}

.calculator-title {
    color: #414042;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.rate-display {
    background: #FFCD07;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.rate-display h4 {
    color: #414042;
    margin-bottom: 0.5rem;
}

.fare-estimate {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #FFCD07;
    margin-top: 1.5rem;
}

.fare-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: #414042;
    text-align: center;
    margin-bottom: 1rem;
}

.fare-breakdown {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
}

/* Booking Summary */
.booking-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: bold;
}

/* Payment Section */
.payment-methods {
    margin-top: 2rem;
}

.payment-option {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.payment-option:hover {
    border-color: #FFCD07;
}

.payment-option.selected {
    border-color: #FFCD07;
    background: rgba(255, 205, 7, 0.1);
}

.payment-option input[type="radio"] {
    margin-right: 1rem;
}

.payment-icon {
    font-size: 1.5rem;
    margin-right: 1rem;
}

.payment-details {
    flex: 1;
}

.payment-title {
    font-weight: bold;
    color: #414042;
}

.payment-description {
    font-size: 0.9rem;
    color: #666;
}

/* Square Payment Form */
.square-payment-form {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    display: none;
}

.square-payment-form.active {
    display: block;
}

#card-container {
    margin-bottom: 1rem;
}

/* Confirmation */
.confirmation-section {
    text-align: center;
    padding: 2rem;
}

.confirmation-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.confirmation-title {
    color: #414042;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.confirmation-details {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    text-align: left;
}

.confirmation-number {
    background: #FFCD07;
    color: #414042;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: 1rem;
}

/* Loading Overlay */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loading-spinner {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #FFCD07;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Google Places Autocomplete */
.pac-container {
    z-index: 9999;
}

/* Terms of Service and Legal Document Page Styles */
.legal-document {
    background: #FFFFFF;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.last-updated {
    background: #FFCD07;
    color: #414042;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: bold;
}

.section {
    margin-bottom: 2.5rem;
}

.section h2 {
    color: #414042;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid #FFCD07;
    padding-bottom: 0.5rem;
}

.section h3 {
    color: #414042;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem 0;
}

.section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.warning-box {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-left: 4px solid #f39c12;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 10px 10px 0;
}

.contact-info {
    background: #414042;
    color: #FFFFFF;
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: center;
}

.contact-info h3 {
    color: #FFCD07;
    margin-bottom: 1rem;
}

.contact-info a {
    color: #FFCD07;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Passenger Rights Page Styles */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.rights-card {
    background: #f8f9fa;
    border-left: 4px solid #FFCD07;
    padding: 2rem;
    border-radius: 0 15px 15px 0;
}

.rights-card h4 {
    color: #414042;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.rights-card ul {
    padding-left: 1.5rem;
}

.emergency-box {
    background: #ffebee;
    border: 2px solid #e74c3c;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 10px;
    text-align: center;
}

.emergency-box h3 {
    color: #e74c3c;
    margin-bottom: 1rem;
}

.emergency-box p {
    color: #c62828;
    font-weight: bold;
}

.complaint-process {
    background: #e8f5e8;
    border: 2px solid #28a745;
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.complaint-process h3 {
    color: #155724;
    margin-bottom: 1rem;
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.process-step {
    background: #FFFFFF;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid #28a745;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Menu Styles */
    .nav-container {
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 1rem;
    }

    .menu-toggle {
        display: block;
        grid-column: 2;
        justify-self: end;
    }

    .logo-stacked {
        grid-column: 1;
        grid-row: 1;
        padding: 0.6rem 1rem;
    }
    
    .logo-stacked .line1 {
        font-size: 1.2rem;
        letter-spacing: 0.5px;
    }
    
    .logo-stacked .line2 {
        font-size: 0.7rem;
        letter-spacing: 1px;
    }

    .book-now-btn {
        display: none;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #414042;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.3);
        z-index: 999;
        grid-column: 1 / -1;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 0.75rem 2rem;
        border-bottom: 1px solid #666;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: block;
        width: 100%;
    }

    .hero h1,
    .page-header h1 {
        font-size: 2rem;
    }

    .hero-cta,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .features-grid,
    .services-grid,
    .rates-grid,
    .sample-grid,
    .counties-grid,
    .airports-grid,
    .response-grid,
    .vehicle-grid,
    .values-grid,
    .credentials-grid,
    .community-grid,
    .faq-categories {
        grid-template-columns: 1fr;
    }

    .payment-methods,
    .contact-options {
        flex-direction: column;
        align-items: center;
    }

    .levels-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .vehicle-specs {
        grid-template-columns: 1fr;
    }

    .standards-grid {
        grid-template-columns: 1fr;
    }

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

    .booking-container {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}