﻿/* --- D:\Users\Mohammad Shariq\Downloads\bt-buffalo-taxi-main\bt-buffalo-taxi-main\backend\frontend\src\index.css --- */
/* General Body Styles */
body {
    max-width: 100% !important;
    overflow-x: hidden !important;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #333;
    background-color: #f4f4f4;
}

#root {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    max-width: 1280px;
    margin: 0 auto;

    width: 100%;
}

/* Header Styles */
header {
    background-color: #013142; /* Default background, can be overridden */
    color: white;
}

.top-bar {

    font-size: 14px;
    border-bottom: 1px solid #ffffff30;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar a {
    color: white;
    text-decoration: none;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar-left > div, .top-bar-right > div {
    margin-right: 20px;
}

.social-icons a {
    color: white;
    margin-left: 10px;
    text-decoration: none;
}

.main-header {
    padding: 10px 0;
    background-color: #f7921c; /* Orange color from reference */
    color: #013142; /* Dark text for contrast */
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    flex-basis: 30%; /* Give logo a flexible base size */
    flex-grow: 0; /* Prevent the logo from growing too much */
    display: flex;
    justify-content: center;
}

.logo-img {
    height: 90px;
}

.contact-info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-basis: 35%; /* Give contact sections a flexible base size */
}

.contact-item {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.contact-item i {
    font-size: 24px;
    margin-right: 10px;
    color: #013142;
}

/* Navigation */
nav {
    background-color: #004b6b;
    padding: 10px 0;
}

nav .container {
    display: flex;
    justify-content: center;
}

.nav-links {
    list-style: none;
    padding: 0;
  margin: 0;
  display: flex;
    justify-content: center;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.hamburger {
    display: none; /* Hidden on desktop */
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

/* Main Content */
main {
    flex-grow: 1;
    
}

/* Booking Form */
form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: auto;
    padding: 20px;
    border: 1px solid #ccc;
  border-radius: 8px;
    background-color: #fff;
}

form input, form button {
    margin-bottom: 15px;
    padding: 10px;
    font-size: 16px;
    border-radius: 4px;
    border: 1px solid #ddd;
}

form button {
    background-color: #ffc107;
    color: black;
    font-weight: bold;
  cursor: pointer;
    border: none;
}

/* Footer Styles */
footer {
    background-color: #013142;
    color: white;
    padding: 20px;
    text-align: center;
}

.mobile-header {
    display: none; /* Hidden on desktop */
}

/* Responsive Styles */
@media (max-width: 768px) {
    .desktop-header {
        display: none; /* Hide complex header on mobile */
    }

    .mobile-header {
        display: block; /* Show mobile header */
        padding: 10px 0;
        background-color: #f7921c;
        position: relative;
    }

    .mobile-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative; /* Needed for absolute positioning of logo */
    }
    
    .mobile-logo-link {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
}

    .mobile-header .logo-img {
        height: 50px;
    }

    .hamburger {
        display: block;
        color: #013142;
        position: static; /* Reset position for mobile header flow */
    }

    .mobile-header nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #013142;
        z-index: 1000;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
  }

    .mobile-header nav.nav-open {
        max-height: 500px; /* Adjust as needed for menu content */
    }

    .mobile-header .nav-links {
        flex-direction: column;
        align-items: center;
        padding: 10px 0;
    }

    .mobile-header .nav-links li {
        margin: 15px 0;
  }
}


/* --- D:\Users\Mohammad Shariq\Downloads\bt-buffalo-taxi-main\bt-buffalo-taxi-main\backend\frontend\src\App.css --- */
#root {
  max-width: 100% !important;
  margin: 0 auto;
  
  text-align: center;
}

.logo {
  height: 6em;
  padding: 1.5em;
  will-change: filter;
  transition: filter 300ms;
}
.logo:hover {
  filter: drop-shadow(0 0 2em #646cffaa);
}
.logo.react:hover {
  filter: drop-shadow(0 0 2em #61dafbaa);
}

@keyframes logo-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@media (prefers-reduced-motion: no-preference) {
  a:nth-of-type(2) .logo {
    animation: logo-spin infinite 20s linear;
  }
}

.card {
  padding: 2em;
}

.read-the-docs {
  color: #888;
}

/* Remove or replace old footer styles */
.site-footer {
    display: none !important;
}

/* New Footer based on page.html */
.new-site-footer {
    background-color: #1a202c;
    color: #a9b3c6;
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-widget .widget-title {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget .widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: #c5a47e;
}

.footer-widget p {
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    color: #fff;
    font-size: 1.1rem;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s, color 0.3s;
}

.footer-social-icons a:hover {
    background-color: #c5a47e;
    color: #1a202c;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #a9b3c6;
    text-decoration: none;
    transition: color 0.3s, padding-left 0.3s;
}

.footer-links a:hover {
    color: #c5a47e;
    padding-left: 5px;
}

.footer-contact-form input,
.footer-contact-form textarea {
    width: 100%;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: #fff;
    margin-bottom: 15px;
}

.footer-contact-form button {
    background-color: #c5a47e;
    color: #1a202c;
    border: none;
    padding: 12px 25px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.footer-contact-form button:hover {
    background-color: #b3916d;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider .slick-slider,
.hero-slider .slick-list,
.hero-slider .slick-track,
.hero-slider .slick-slide > div {
    height: 100vh;
}

.slide-image {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 20px;
}

.hero-section h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero-section p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Slick Carousel Customization */
.slick-dots {
    bottom: 25px;
    z-index: 3;
}

.slick-dots li button:before {
    font-size: 12px;
    color: white;
    opacity: 0.75;
}

.slick-dots li.slick-active button:before {
    color: #c5a47e;
    opacity: 1;
}

/* Updated Booking Form Styles */
.booking-form-container {
    background-color: transparent; /* The container is just for positioning */
    padding: 0; /* Remove padding */
    width: 100%;
    max-width: 700px;
}

.booking-form {
    background-color: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px; /* Creates the thin line separator */
    background-color: #e0e0e0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.form-group-split {
    position: relative;
    background-color: #fff;
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.form-group-split i {
    color: #c5a47e;
    margin-right: 10px;
}

.form-group-split input {
    width: 100%;
    border: none;
    padding: 15px 0;
    font-size: 1rem;
    background-color: transparent;
}

.form-group-split input:focus {
    outline: none;
}

.booking-form button {
    padding: 15px;
    font-size: 1.1rem;
    background-color: #c5a47e;
    color: #1a202c;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.booking-form button:hover {
    background-color: #b3916d;
}

/* Remove old form styles */
.booking-form h3, .form-group {
    display: none;
}

/* About Section */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 80px 40px;
  align-items: center;
  background-color: #f7fafc;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1a202c;
}

.about-text p {
  line-height: 1.6;
  margin-bottom: 20px;
}

/* Reusable Button Style */
.btn-primary {
  display: inline-block;
  background-color: #c5a47e;
  color: #1a202c;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #b3916d;
}

/* Niagara Section */
.niagara-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  padding: 80px 40px;
  align-items: center;
  background-color: #fff;
}

.niagara-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #1a202c;
}

.niagara-text p {
  line-height: 1.6;
  margin-bottom: 20px;
}

.niagara-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

/* Responsive Styles */
@media (max-width: 768px) {
  /* Hero Section */
  .hero-section h1 {
    font-size: 2.8rem;
  }

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

  /* About Section */
  .about-section {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .about-text h2 {
    font-size: 2rem;
  }

  /* Niagara Section */
  .niagara-section {
    grid-template-columns: 1fr;
    padding: 40px 20px;
  }

  .niagara-text h2 {
    font-size: 2rem;
  }

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

  .footer-content {
    flex-direction: column;
  }

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

@media (max-width: 480px) {
  .niagara-gallery {
    grid-template-columns: 1fr;
  }
}

/* Why Choose Us Section */
.why-choose-us-section {
  padding: 80px 0;
  background-color: #f7fafc;
}

.why-choose-us-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 50px;
  color: #1a202c;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.feature-item {
  text-align: center;
  padding: 20px;
}

.feature-item i {
  font-size: 40px;
  color: #c5a47e;
  margin-bottom: 20px;
}

.feature-item h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #1a202c;
}

.feature-item p {
  line-height: 1.6;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Fleet Section */
.fleet-section {
    padding: 80px 0;
    background-color: #fff;
}

.fleet-section h2, .fleet-section .fleet-subtitle {
    text-align: center;
    color: #1a202c;
}

.fleet-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.fleet-section .fleet-subtitle {
    font-size: 1.1rem;
    margin-bottom: 50px;
    color: #555;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.fleet-card {
    background-color: #f7fafc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-10px);
}

.fleet-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.fleet-info {
    padding: 20px;
}

.fleet-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #1a202c;
}

@media (max-width: 992px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background-color: #1a202c;
    color: white;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: #2d3748;
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid #c5a47e;
}

.testimonial-quote {
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: bold;
    text-align: right;
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Call to Action Section */
.cta-section {
    padding: 60px 0;
    background-color: #c5a47e;
    color: #1a202c;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-cta {
    font-size: 1.2rem;
    padding: 15px 30px;
}

/* Booking Confidence Section */
.confidence-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.confidence-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.confidence-image img {
    width: 100%;
    border-radius: 8px;
}

.confidence-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #1a202c;
}

.confidence-text h3 {
    font-size: 1.5rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1a202c;
}

.confidence-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.confidence-text ul li {
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.confidence-text ul li i {
    color: #38a169;
    margin-right: 10px;
}

.confidence-text a {
    color: #1a202c;
    font-weight: bold;
}

.confidence-text hr {
    border: 0;
    border-top: 1px solid #1a202c;
    margin: 20px 0;
}

.btn-secondary {
    display: inline-block;
    background-color: #1a202c;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2d3748;
}

/* Floating Action Button */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
}

.fab-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #0d6efd;
    color: white;
    font-size: 24px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.fab-button:hover {
    transform: scale(1.1);
}

.fab-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%) scaleY(0);
    transform-origin: bottom;
    transition: transform 0.3s ease;
    z-index: 1;
}

.fab-container.open .fab-menu {
    transform: translateX(-50%) scaleY(1);
}

.fab-item {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: white;
    color: #333;
    font-size: 22px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.fab-item:hover {
    transform: scale(1.1);
}

.fab-item:nth-child(2) { background-color: #25d366; color: white; } /* WhatsApp */
.fab-item:nth-child(3) { background-color: #ffc107; color: white; } /* SMS */
.fab-item:nth-child(4) { background-color: #198754; color: white; } /* Call */
.fab-item:nth-child(5) { background-color: #dc3545; color: white; } /* Email */


@media (max-width: 768px) {
    .confidence-section .container {
        grid-template-columns: 1fr;
    }
}

/* Our Services Section */
.services-section {
    padding: 80px 0;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a202c;
}

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

.service-card {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 40px;
    color: #c5a47e;
    margin-bottom: 20px;
}

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

/* Our Team Section */
.team-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a202c;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 5px solid white;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #1a202c;
}

.team-member p {
    color: #555;
    font-style: italic;
}


@media (max-width: 992px) {
    .services-grid, .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid, .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Destinations Section */
.destinations-section {
    padding: 80px 0;
}

.destinations-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a202c;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.destination-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 350px;
}

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.destination-card:hover img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 40px 20px 20px;
    text-align: center;
}

.destination-overlay h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.destination-overlay p {
    font-size: 1.2rem;
    font-weight: bold;
    color: #c5a47e;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a202c;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    color: #1a202c;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    padding: 0 20px;
}

.faq-item.open .faq-answer {
    max-height: 200px; /* Adjust as needed */
    padding-bottom: 20px;
}

.faq-answer p {
    line-height: 1.6;
}

@media (max-width: 992px) {
    .destinations-grid {
        grid-template-columns: 1fr;
    }
}

/* Contact Location Section */
.contact-location-section {
    position: relative;
    padding: 0;
}

.contact-location-section .container {
    display: block;
    grid-template-columns: none; /* Override grid */
    position: relative;
    padding: 0;
    max-width: 100%;
}

.contact-info {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.9);
    padding: 2rem;
    border-radius: 8px;
    z-index: 10;
    max-width: 450px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.contact-info h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info ul li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.contact-info ul li i {
    color: #c5a47e;
    margin-right: 15px;
    width: 20px;
}

.map-container {
    height: 60vh; /* Give it a viewport height */
    min-height: 500px;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.blog-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a202c;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-post-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-post-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-post-content {
    padding: 25px;
}

.blog-post-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #1a202c;
}

.blog-post-content p {
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-post-content .btn-secondary {
    font-size: 0.9rem;
}


@media (max-width: 992px) {
    .contact-location-section .container,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .contact-info {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        max-width: none;
        text-align: center;
    }
    .map-container {
        height: 400px;
    }
}

/* Hide Old Header Styles */
.site-header {
    display: none !important;
}

/* New 3-Tier Header Styles */
.new-site-header {
    font-family: 'Arial', sans-serif;
}

/* Tier 1: Top Bar */
.header-top-bar {
    background-color: #1a202c;
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
}

.header-top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-top-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.auth-links, .social-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-top-bar a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Tier 2: Contact Bar */
.header-contact-bar {
    background-color: #c5a47e;
    color: #1a202c;
    padding: 15px 0;
}

.header-contact-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-logo-in-contact-bar img {
    height: 80px;
    margin: 0 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-item i {
    font-size: 1.8rem;
}

.contact-item h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: bold;
}

.contact-item p {
    margin: 0;
    font-size: 0.9rem;
}

/* Tier 3: Main Navigation */
.header-main-nav {
    background-color: #1a202c;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.main-nav-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.main-logo img {
    display: none;
}

.flag-icon {
    height: 30px;
}

.main-nav-links {
    display: flex;
    gap: 30px;
}

.main-nav-links ul {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.main-nav-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.nav-column {
   display: none;
}

.nav-column a {
    font-size: 0.9rem;
}

.nav-column a i {
    color: #c5a47e;
    margin-right: 8px;
}

.main-nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.flat-rate-box {
    color: white;
    border: 2px solid white;
    padding: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.flat-rate-box i {
    font-size: 1.5rem;
}

.book-online-btn {
    background-color: #c5a47e;
    color: #1a202c;
    border: none;
    padding: 15px 25px;
    font-weight: bold;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
}

.hamburger-btn {
    display: none;
    color: white;
    background: none;
    border: none;
    font-size: 1.5rem;
    z-index: 1001;
}

.mobile-nav-container {
    display: none;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .header-top-bar {
        display: none; /* Hide top bar on tablets and mobile */
    }

    .header-main-nav .container {
        position: relative;
    }
    .main-nav-links, .main-nav-right, .main-nav-left {
        display: none;
    }
    .hamburger-btn {
        display: block;
    }
    
    .header-main-nav .container {
        justify-content: flex-end;
    }

    .header-contact-bar .container {
        flex-direction: row;
        overflow-x: auto;
        gap: 25px;
        padding-bottom: 15px;
        -ms-overflow-style: none;  /* IE and Edge */
        scrollbar-width: none;  /* Firefox */
        justify-content: flex-start; /* Align items to the start */
        width: 100%;
        box-sizing: border-box;
    }
    .header-contact-bar .container::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .main-logo-in-contact-bar, .header-contact-bar .contact-item {
        flex-shrink: 0;
    }

    .main-logo-in-contact-bar {
        order: 0;
        margin-bottom: 0;
    }
    
    .mobile-nav-container {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1a202c;
        padding: 20px;
        z-index: 1000;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
        opacity: 0;
        pointer-events: none;
    }

    .mobile-nav-container.open {
       transform: translateY(0);
       opacity: 1;
       pointer-events: auto;
    }
    
    .mobile-nav-container ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .header-top-bar {
        display: none;
    }
}

.btn-book-now {
    width: 100%;
    padding: 15px;
    font-size: 1.2rem;
    font-weight: bold;
}

.main-nav-links a i {
    color: #c5a47e;
    margin-right: 8px;
}

/* --- GLOBAL RESPONSIVE STYLES --- */
.container {
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

/* --- HEADER STYLES --- */

.new-site-header {
    position: relative;
    z-index: 100;
}

/* Desktop Header (hidden on mobile) */
@media (max-width: 1024px) {
    .desktop-header {
        display: none;
    }
}

/* Mobile Header (hidden on desktop) */
.mobile-header {
    display: none;
    position: sticky;
    top: 0;
    z-index: 1000;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
@media (max-width: 1024px) {
    .mobile-header {
        display: block;
        background-color: #1a202c;
    }
    .mobile-header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.mobile-logo img {
    height: 50px;
}

/* Hamburger button is now always visible on mobile header */
.hamburger-btn {
    display: block; 
    color: white;
    background: none;
    border: none;
    font-size: 1.8rem;
    z-index: 1001;
}

/* Mobile Navigation Container */
.mobile-nav-container {
    display: none; /* Keep hidden until opened */
}
@media (max-width: 1024px) {
    .mobile-nav-container {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1a202c;
        padding: 20px;
        transform: translateY(-100%);
        transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
        opacity: 0;
        pointer-events: none;
    }

    .mobile-nav-container.open {
       transform: translateY(0);
       opacity: 1;
       pointer-events: auto;
    }
    
    .mobile-nav-container ul {
        list-style: none;
        padding: 0;
        margin: 0;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .mobile-nav-container a {
        color: white;
        text-decoration: none;
        font-size: 1.1rem;
    }
}


/* --- SECTION RESPONSIVENESS --- */
@media (max-width: 992px) {
    .about-section, .niagara-section, .fleet-section, .testimonials-section, .confidence-section, .services-section, .team-section, .destinations-section, .faq-section, .blog-section {
        padding: 60px 20px;
    }
    .features-grid, .services-grid, .team-grid, .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .fleet-grid, .testimonials-grid, .destinations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-section h1 { font-size: 2.5rem; line-height: 1.2; }
    .hero-section p { font-size: 1.1rem; }
    .about-text h2, .niagara-text h2, .why-choose-us-section h2, .fleet-section h2, .testimonials-section h2, .services-section h2, .team-section h2, .destinations-section h2, .faq-section h2, .blog-section h2, .cta-section h2, .confidence-text h2 { font-size: 2rem; }
    .about-section, .niagara-section, .confidence-section .container { grid-template-columns: 1fr; gap: 30px; }
    .niagara-gallery { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-widget .widget-title::after { left: 50%; transform: translateX(-50%); }
    .footer-social-icons { justify-content: center; }
    .features-grid, .services-grid, .team-grid, .blog-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-section h1 { font-size: 2rem; }
    .niagara-gallery { grid-template-columns: 1fr; }
    .destinations-overlay h3 { font-size: 1.5rem; }
    .destinations-overlay p { font-size: 1rem; }
}

/* Vanilla hero slider (replaces react-slick) */
.hero-slider-vanilla {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slider-vanilla .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s linear;
    pointer-events: none;
}

.hero-slider-vanilla .slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-slider-vanilla .slide-image {
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

.hero-slider-vanilla::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-dots {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
    list-style: none;
    padding: 0;
    margin: 0;
}

.hero-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    padding: 0;
    font-size: 0;
}

.hero-dots button.active {
    background: #c5a47e;
}

/* Override App.css rule that hides form-group on booking page */
.booking-form-content .form-group {
    display: flex !important;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex-grow: 1;
}


/* --- D:\Users\Mohammad Shariq\Downloads\bt-buffalo-taxi-main\bt-buffalo-taxi-main\backend\frontend\src\components\ChatbotWindow.css --- */
.chatbot-window {
  position: fixed;
  bottom: 90px;
  left: 20px;
  width: 300px;
  height: 400px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  z-index: 1001;
}

.chatbot-header {
  background-color: #007bff;
  color: white;
  padding: 10px 15px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.chatbot-header h4 {
  margin: 0;
  font-size: 1.1rem;
}

.chatbot-close-btn {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.chatbot-body {
  flex-grow: 1;
  padding: 1rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  background-color: #f7fafc;
}

.chat-bubble {
  padding: 0.6rem 1rem;
  border-radius: 18px;
  max-width: 80%;
  word-wrap: break-word;
}

.chat-bubble.ai {
  background-color: #e2e8f0;
  color: #1a202c;
  border-bottom-left-radius: 4px;
  align-self: flex-start;
}

.chat-bubble.user {
  background-color: #c5a47e;
  color: #ffffff;
  border-bottom-right-radius: 4px;
  align-self: flex-end;
}

/* Loading dots animation */
.loading-dots span {
  animation-name: blink;
  animation-duration: 1.4s;
  animation-iteration-count: infinite;
  animation-fill-mode: both;
  font-size: 1.5rem;
  line-height: 1;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes blink {
  0% { opacity: .2; }
  20% { opacity: 1; }
  100% { opacity: .2; }
}

.chatbot-footer {
  padding: 0.75rem;
  border-top: 1px solid #e2e8f0;
  display: flex;
}

.chatbot-footer input {
  flex-grow: 1;
  border: 1px solid #ccc;
  border-radius: 20px;
  padding: 8px 15px;
  margin-right: 10px;
}

.chatbot-footer button {
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 20px;
  padding: 8px 15px;
  cursor: pointer;
} 

/* --- D:\Users\Mohammad Shariq\Downloads\bt-buffalo-taxi-main\bt-buffalo-taxi-main\backend\frontend\src\components\FloatingChatbotIcon.css --- */
.floating-chatbot-icon {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background-color: #007bff;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1000;
} 

/* --- D:\Users\Mohammad Shariq\Downloads\bt-buffalo-taxi-main\bt-buffalo-taxi-main\backend\frontend\src\pages\BookingPage.css --- */
.booking-page-container {
  padding: 4rem 2rem;
  background-color: #f7fafc; /* Off-white from theme */
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 80vh;
}

.booking-form-content {
  background-color: #fff;
  padding: 2.5rem;
  border-radius: 8px;
  max-width: 650px;
  width: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.booking-form-content h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  color: #1a202c; /* Charcoal from theme */
}

.booking-form-content form {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.booking-form-content .form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.booking-form-content .form-group.form-group-half {
    width: calc(50% - 0.75rem);
}

.booking-form-content .form-group label {
  margin-bottom: 0.5rem;
  font-weight: bold;
  font-size: 0.9rem;
  color: #555;
}

.booking-form-content .form-group input,
.booking-form-content .form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.booking-form-content .form-group input:focus,
.booking-form-content .form-group textarea:focus {
    outline: none;
    border-color: #c5a47e; /* Gold from theme */
}

.booking-form-content .form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.booking-form-content .btn-submit {
  width: 100%;
  padding: 15px;
  font-size: 1.2rem;
  font-weight: bold;
  background-color: #c5a47e; /* Gold from theme */
  color: #1a202c; /* Charcoal from theme */
  border: none;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 1rem;
  transition: background-color 0.3s ease;
}

.booking-form-content .btn-submit:hover {
  background-color: #b38e6b;
}

.form-status {
  margin-top: 1rem;
  padding: 0.75rem;
  border-radius: 4px;
  text-align: center;
}

.form-status:not(:empty) {
    border: 1px solid transparent;
}

.form-status[class*="Error"] {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.form-status:not([class*="Error"]) {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

@media (max-width: 600px) {
    .booking-form-content .form-group.form-group-half {
        width: 100%;
    }
} 

/* --- D:\Users\Mohammad Shariq\Downloads\bt-buffalo-taxi-main\bt-buffalo-taxi-main\backend\frontend\src\pages\AboutPage.css --- */
.about-page {
    padding: 2rem 0;
}

.about-page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Re-using the page-header style from BorderNews.css but keeping it here for component-specific adjustments if needed */
.about-page .page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.about-page .page-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a237e; /* Dark blue */
    margin-bottom: 0.5rem;
}

.about-page .page-header p {
    font-size: 1.1rem;
    color: #555;
}


/* Styling for new sections */
.mission-section, .history-section {
    background-color: #f9f9f9;
    padding: 2.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: center;
}

.mission-section h2, .history-section h2 {
    font-size: 2.2rem;
    color: #c62828; /* Red accent */
    margin-bottom: 1rem;
    font-weight: 600;
}

.mission-section p, .history-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    max-width: 800px;
    margin: 0 auto; /* Center the text */
}

/* Ensure existing components blend well */
.about-page .about-section, .about-page .why-choose-us {
    margin-top: 3rem;
    margin-bottom: 3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-page {
        padding: 1rem 0;
    }
    
    .about-page-content {
        padding: 0 1rem;
    }

    .mission-section, .history-section {
        padding: 2rem;
    }

    .mission-section h2, .history-section h2 {
        font-size: 1.8rem;
    }
} 

/* --- D:\Users\Mohammad Shariq\Downloads\bt-buffalo-taxi-main\bt-buffalo-taxi-main\backend\frontend\src\pages\OurTeamPage.css --- */
.our-team-page {
    padding-bottom: 2rem;
}

/* Re-using page-header style */
.our-team-page .page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 1rem;
    padding-bottom: 2.5rem;
    background-color: #f4f4f4;
}

.our-team-page .page-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 0.5rem;
}

.our-team-page .page-header p {
    font-size: 1.1rem;
    color: #555;
}

/* New intro section */
.team-intro-section {
    max-width: 900px;
    margin: -1.5rem auto 3rem auto; /* Pull it up slightly over the header bottom */
    background-color: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    z-index: 10;
}

.team-intro-section h2 {
    font-size: 2.2rem;
    color: #c62828;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-intro-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

/* Ensure the existing OurTeam component has enough space */
.our-team-page .our-team {
    margin-top: 2rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .team-intro-section {
        margin: 1rem;
        padding: 2rem;
    }

    .team-intro-section h2 {
        font-size: 1.8rem;
    }

    .our-team-page .page-header h1 {
        font-size: 2.2rem;
    }
} 

/* --- D:\Users\Mohammad Shariq\Downloads\bt-buffalo-taxi-main\bt-buffalo-taxi-main\backend\frontend\src\pages\BorderNews.css --- */
/* General Container for the Border News Page */
.border-news-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Roboto', sans-serif;
    color: #333;
}

/* Page Header Styling */
.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.page-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a237e; /* Dark blue */
    margin-bottom: 0.5rem;
}

.page-header p {
    font-size: 1.1rem;
    color: #555;
}

/* Main Content Area */
.news-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

/* Individual Article Styling */
.news-article {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.news-image {
    width: 40%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
}

.news-text {
    width: 60%;
}

.news-text h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #c62828; /* Red accent */
}

.article-meta {
    font-size: 0.9rem;
    color: #757575;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.news-text p, .news-text ul {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.news-text ul {
    list-style-position: inside;
    padding-left: 0;
}

.news-text ul li {
    margin-bottom: 0.75rem;
}

.news-text ul li::marker {
    color: #c62828;
}

/* Alternate Layout for every other article */
.news-article.reverse {
    flex-direction: row-reverse;
}

/* Responsive Design */
@media (max-width: 992px) {
    .news-article, .news-article.reverse {
        flex-direction: column;
        text-align: center;
    }

    .news-image {
        width: 100%;
        max-height: 300px;
        margin-bottom: 1.5rem;
    }

    .news-text {
        width: 100%;
    }

    .news-text h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .border-news-container {
        padding: 1rem;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .news-article {
        padding: 1.5rem;
    }
} 

/* --- D:\Users\Mohammad Shariq\Downloads\bt-buffalo-taxi-main\bt-buffalo-taxi-main\backend\frontend\src\pages\BookingPorts.css --- */
/* Main page container */
.booking-ports-page {
    padding-bottom: 3rem;
}

/* Re-using page-header style */
.booking-ports-page .page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.booking-ports-page .page-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 0.5rem;
}

.booking-ports-page .page-header p {
    font-size: 1.1rem;
    color: #555;
}

/* Grid container for the port cards */
.ports-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Individual port card styling */
.port-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.port-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.port-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.port-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Allows the content to fill the card */
}

.port-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #c62828;
    margin-bottom: 0.75rem;
}

.port-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #444;
    margin-bottom: 1.5rem;
    flex-grow: 1; /* Pushes the button to the bottom */
}

.btn-book-port {
    display: inline-block;
    background-color: #ff6f00; /* Bright orange */
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: background-color 0.3s ease;
    align-self: flex-start; /* Aligns button to the left */
}

.btn-book-port:hover {
    background-color: #e65100; /* Darker orange */
    color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ports-container {
        padding: 0 1rem;
    }

    .booking-ports-page .page-header h1 {
        font-size: 2.2rem;
    }
} 

/* --- D:\Users\Mohammad Shariq\Downloads\bt-buffalo-taxi-main\bt-buffalo-taxi-main\backend\frontend\src\pages\FaqPage.css --- */
.faq-page {
    padding-bottom: 3rem;
}

/* Re-using page-header style */
.faq-page .page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 1rem;
    border-bottom: 1px solid #e0e0e0;
    background-color: #f8f9fa;
}

.faq-page .page-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 0.5rem;
}

.faq-page .page-header p {
    font-size: 1.1rem;
    color: #555;
}

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

.faq-item {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.faq-question {
    font-size: 1.3rem;
    font-weight: 600;
    color: #c62828;
    margin-bottom: 1rem;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    color: #444;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-container {
        padding: 0 1rem;
    }

    .faq-page .page-header h1 {
        font-size: 2.2rem;
    }

    .faq-item {
        padding: 1.5rem;
    }
} 

/* --- D:\Users\Mohammad Shariq\Downloads\bt-buffalo-taxi-main\bt-buffalo-taxi-main\backend\frontend\src\pages\FareEstimatorPage.css --- */
/* Container */
.fare-estimator-wrapper {
  padding: 2rem 1rem;
  display: flex;
  justify-content: center;
}

.fare-estimator-card {
  width: 100%;
  max-width: 880px;
  background: #fff;
  border-radius: 12px;
  padding: 1.75rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

/* Headings */
.fare-estimator-card h2 {
  margin: 0 0 0.25rem 0;
  font-size: 1.9rem;
  text-align: center;
}
.fare-estimator-card .muted {
  text-align: center;
  color: #666;
  margin-bottom: 1rem;
}

/* Form layout */
.fare-form { display: flex; flex-direction: column; gap: 0.75rem; }

.label { font-weight: 600; color: #333; margin-bottom: 0.25rem; font-size: 0.95rem; }
.input {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d0d6db;
  font-size: 1rem;
  box-sizing: border-box;
}

/* two columns */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

/* small link under input */
.map-link { display: inline-block; margin-top: 6px; color: #0077cc; font-size: 0.88rem; text-decoration: underline; }

/* inline styles */
.inline-row { margin-top: 6px; }
.inline { display: flex; align-items: center; gap: 8px; cursor: pointer; color: #333; }
.inline input { width: 18px; height: 18px; }

/* Buttons */
.primary-btn {
  background: #c89b6d;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
  cursor: pointer;
  margin-right: 8px;
}
.secondary-btn {
  background: transparent;
  border: 1px solid #c8c8c8;
  color: #333;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
}

/* Result box */
.result-box {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: 8px;
  background: #f8fafb;
  border-left: 4px solid #c89b6d;
}
.breakdown { list-style: none; padding: 0; margin: 0; }
.breakdown li { padding: 6px 0; border-bottom: 1px dashed rgba(0,0,0,0.04); }
.breakdown li.total { font-size: 1.1rem; font-weight: 800; color: #111; }

.actions { margin-top: 10px; display:flex; gap: 12px; align-items:center; }
.muted-link { color: #666; font-size: 0.95rem; text-decoration: none; }

/* Error */
.error-box { margin-top: 8px; background: #fff0f0; color: #8b1a1a; padding: 10px; border-radius: 8px; border: 1px solid #f1c3c3; }

/* small note */
.small-muted { margin-top: 10px; font-size: 0.9rem; color: #666; text-align: center; }

/* responsive */
@media (max-width: 720px) {
  .two-col { grid-template-columns: 1fr; }
  .fare-estimator-card { padding: 1rem; border-radius: 10px; }
  .actions { flex-direction: column; align-items: stretch; }
  .primary-btn { width: 100%; }
}


/* --- D:\Users\Mohammad Shariq\Downloads\bt-buffalo-taxi-main\bt-buffalo-taxi-main\backend\frontend\src\pages\AdminPage.css --- */
/* Admin Login Page Styles */
.admin-login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-color: #f7fafc;
}

.admin-login-box {
    padding: 2.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 400px;
    text-align: center;
}

.admin-login-box h2 {
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.admin-login-box .admin-form-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

.admin-login-box label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.admin-login-box input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
}

.admin-login-box button {
    width: 100%;
    padding: 0.75rem;
    border: none;
    border-radius: 4px;
    background-color: #c5a47e;
    color: #1a202c;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.admin-login-box button:hover {
    background-color: #b38e6b;
}

.login-error {
    color: #e53e3e;
    margin-top: 1rem;
}

/* Admin Page (Dashboard) Styles */
.admin-page-container {
    padding: 2rem;
}

.admin-page-container h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #1a202c;
}

.bookings-table-container {
    overflow-x: auto;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

thead {
    background-color: #f7fafc;
}

th {
    font-size: 0.8rem;
    font-weight: 600;
    color: #4a5568;
    text-transform: uppercase;
}

tbody tr:hover {
    background-color: #f7fafc;
}

td {
    font-size: 0.9rem;
    color: #2d3748;
}

.error-message {
    color: #e53e3e;
    text-align: center;
    padding: 1rem;
    background-color: #fed7d7;
    border: 1px solid #fbb6ce;
    border-radius: 4px;
    margin-bottom: 1rem;
} 
