@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&display=swap');
body {
    margin: 0;
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    background: #181818;
    color: #eaeaea;
    scroll-behavior: smooth;
    overflow-x: hidden;
}
header {
    min-height: 70vh;
    position: relative;
}
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 4vw;
    background: rgba(24,24,24,0.95);
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: background 0.3s;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 2.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: #ffd700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.2s;
}
.logo:hover {
    transform: scale(1.04) rotate(-2deg);
}
.logo-img {
    height: 48px;
    width: 48px;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    padding: 2px;
}
nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
    margin: 0;
}
nav a {
    color: #eaeaea;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: color 0.2s;
    position: relative;
}
nav a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #ffd700;
    transition: width 0.3s;
    position: absolute;
    left: 0;
    bottom: -4px;
}
nav a:hover {
    color: #ffd700;
}
nav a:hover::after {
    width: 100%;
}
.cta-btn {
    background: linear-gradient(90deg, #ffd700 60%, #fffbe6 100%);
    color: #181818;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    transition: background 0.2s, color 0.2s, transform 0.2s;
    cursor: pointer;
}
.cta-btn:hover {
    background: #fffbe6;
    color: #181818;
    transform: translateY(-2px) scale(1.04);
}
.about {
    padding: 4rem 2rem 3rem 2rem;
    background: linear-gradient(90deg, #232323 60%, #181818 100%);
    color: #fff;
    text-align: center;
    border-radius: 40px;
    margin: 3rem 2vw 0 2vw;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.about-content {
  background: linear-gradient(90deg, #232526 0%, #414345 100%);
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.10);
  padding: 36px 32px 32px 32px;
  margin: 32px 0 0 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.about-intro {
  font-size: 1.22em;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.about-details {
  font-size: 1.08em;
  color: #e0e0e0;
  margin-bottom: 26px;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.about h2 {
    color: #ffd700;
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}
.about p {
    font-size: 1.15rem;
    color: #eaeaea;
    max-width: 700px;
    margin: 0 auto;
}
.about-contact {
    display: inline-block;
    margin-top: 1.2rem;
    background: #232323;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    color: #ffd700;
    font-size: 1.08rem;
    font-weight: 600;
    line-height: 2;
}
.about-contact a {
    color: #ffd700;
    text-decoration: underline;
    font-weight: 500;
}
.about-contact a:hover {
    color: #fffbe6;
}
.contact {
    padding: 4rem 2rem 3rem 2rem;
    background: #232323;
    text-align: center;
    border-radius: 40px;
    margin: 3rem 2vw 0 2vw;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.contact h2 {
    color: #ffd700;
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}
.contact form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    max-width: 420px;
    margin: 0 auto;
    background: #181818;
    padding: 2rem 1.5rem;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.contact input, .contact textarea {
    padding: 1rem;
    border: 1.5px solid #232323;
    border-radius: 7px;
    font-size: 1.08rem;
    background: #232323;
    color: #fff;
    transition: border 0.2s, box-shadow 0.2s;
    font-family: inherit;
}
.contact input:focus, .contact textarea:focus {
    border: 1.5px solid #ffd700;
    outline: none;
    box-shadow: 0 2px 8px rgba(255,215,0,0.08);
}
.contact button {
    background: linear-gradient(90deg, #ffd700 60%, #fffbe6 100%);
    color: #181818;
    border: none;
    padding: 1rem;
    border-radius: 7px;
    font-size: 1.15rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.contact button:hover {
    background: #fffbe6;
    color: #181818;
    transform: translateY(-2px) scale(1.04);
}
.contact-details {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    background: #232323;
    border-radius: 12px;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.contact-row {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.08rem;
}
.contact-label {
    color: #ffd700;
    font-weight: 600;
    min-width: 90px;
    display: inline-block;
}
.contact-value {
    color: #fff;
    font-weight: 500;
    word-break: break-all;
    text-decoration: none;
}
.contact-value:hover {
    color: #ffd700;
    text-decoration: underline;
}
.reservation {
    padding: 4rem 2rem 3rem 2rem;
    background: #232323;
    text-align: center;
    border-radius: 40px;
    margin: 3rem 2vw 0 2vw;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.reservation h2 {
    color: #ffd700;
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
}
.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 540px;
    margin: 0 auto;
    background: #181818;
    padding: 2.5rem 1.5rem;
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}
.form-row {
    display: flex;
    gap: 1.2rem;
}
.input-group {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}
.input-group label {
    font-size: 1.05rem;
    color: #ffd700;
    font-weight: 600;
    margin-bottom: 0.4rem;
    display: flex;
    align-items: center;
    gap: 0.4em;
    letter-spacing: 0.5px;
}
.input-group input,
.input-group select {
    padding: 1rem 0.9rem;
    border: 1.5px solid #232323;
    border-radius: 7px;
    font-size: 1.08rem;
    background: #232323;
    color: #fff;
    transition: border 0.2s, box-shadow 0.2s;
    font-family: inherit;
    margin-bottom: 0.2rem;
}
.input-group input:focus,
.input-group select:focus {
    border: 1.5px solid #ffd700;
    outline: none;
    box-shadow: 0 2px 8px rgba(255,215,0,0.08);
}
.reservation-form button {
    background: linear-gradient(90deg, #ffd700 60%, #fffbe6 100%);
    color: #181818;
    border: none;
    padding: 1.1rem;
    border-radius: 7px;
    font-size: 1.18rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 2px 12px rgba(0,0,0,0.10);
    margin-top: 1.2rem;
    letter-spacing: 1px;
}
.reservation-form button:hover {
    background: #fffbe6;
    color: #181818;
    transform: translateY(-2px) scale(1.04);
}
.reservation-success {
    margin-top: 1.2rem;
    color: #4caf50;
    font-weight: 600;
    font-size: 1.1rem;
    background: #232323;
    border-radius: 7px;
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(76,175,80,0.08);
}
footer {
    background: #181818;
    color: #ffd700;
    text-align: center;
    padding: 2rem 0 1rem 0;
    margin-top: 3rem;
    font-size: 1.1rem;
    letter-spacing: 1px;
    border-top: 2px solid #232323;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.10);
}
.contact-card {
  display: inline-block;
  background: linear-gradient(90deg, #232526 0%, #414345 100%);
  color: #f5f5f5;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.10);
  padding: 22px 36px;
  margin-top: 22px;
  font-size: 1.12em;
  font-weight: 500;
  letter-spacing: 0.01em;
  min-width: 270px;
  border: 1.5px solid #ffd70033;
}
.contact-card .contact-row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  font-size: 1em;
}
.contact-card .contact-row:last-child {
  margin-bottom: 0;
}
.contact-card strong {
  color: #ffd700;
  min-width: 90px;
  font-weight: 600;
  margin-right: 8px;
}
.contact-card a {
  color: #7fd7ff;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-card a:hover {
  color: #ffd700;
  text-decoration: underline;
}
.center-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.pricing {
  background: #232323;
  padding: 5rem 2rem 4rem 2rem;
  text-align: center;
  border-radius: 40px;
  margin: 3rem 2vw 0 2vw;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pricing h2 {
  color: #ffd700;
  font-size: 2.3rem;
  font-weight: 800;
  margin-bottom: 2.5rem;
  text-align: center;
}

.table-container {
  max-width: 100%;
  margin: 0 auto;
  overflow-x: auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  border: 2px solid #e9ecef;
  width: 100%;
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  min-width: 800px;
}

.pricing-table thead th {
  background: linear-gradient(90deg, #232526 0%, #414345 100%);
  color: #fff;
  padding: 25px 15px;
  text-align: center;
  font-weight: 600;
  font-size: 1.1em;
  border: none;
  white-space: nowrap;
  min-width: 120px;
}

.pricing-table thead th:first-child {
  border-top-left-radius: 14px;
  min-width: 180px;
}

.pricing-table thead th:last-child {
  border-top-right-radius: 14px;
  min-width: 150px;
  padding: 25px 15px;
}

.pricing-table tbody td {
  padding: 22px 15px;
  text-align: center;
  border-bottom: 1px solid #f1f3f4;
  font-size: 1em;
  white-space: nowrap;
  min-width: 120px;
  color: #232526;
}

.pricing-table tbody td:last-child {
  min-width: 150px;
  padding: 22px 15px;
}

.pricing-table tbody tr:hover {
  background: linear-gradient(90deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 14px;
}

.pricing-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 14px;
}

.vehicle-name {
  font-weight: 600;
  color: #232526;
  text-align: center !important;
  font-size: 1.1em;
  min-width: 180px;
}

.price {
  font-weight: 700;
  color: #2c5aa0;
  font-size: 1.1em;
}

.special-row {
  background: linear-gradient(90deg, #232526 0%, #414345 100%);
  color: #fff;
}

.special-row:hover {
  background: linear-gradient(90deg, #2a2d2f 0%, #4a4d4f 100%) !important;
}

.special-row .vehicle-name {
  color: #fff;
}

.call-pricing {
  text-align: center;
  font-weight: 600;
  font-size: 1.1em;
}

.call-link {
  color: #ffd700;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.call-link:hover {
  color: #ffed4e;
  text-decoration: underline;
}

.pricing-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

/* Hero Carousel Styles */
.hero-carousel {
    min-height: 70vh;
    position: relative;
}

.hero-slide {
    min-height: 70vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
    padding: 2rem 2rem 8rem 2rem;
    color: #fff;
    border-bottom-left-radius: 40px;
    border-bottom-right-radius: 40px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

.hero-content {
    max-width: 800px;
    z-index: 2;
    position: relative;
    margin-bottom: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    color: #ffd700;
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: 20px;
    margin-bottom: 0;
}

.carousel-indicators [data-bs-target] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 6px;
    background-color: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    opacity: 0.7;
}

.carousel-indicators .active {
    background-color: #ffd700;
    border-color: #ffd700;
    transform: scale(1.2);
    opacity: 1;
}

/* Hide carousel controls (arrows) completely */
.carousel-control-prev,
.carousel-control-next,
.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Ensure no hover states show arrows */
.hero-carousel:hover .carousel-control-prev,
.hero-carousel:hover .carousel-control-next {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
}

/* Mobile responsive for carousel */
@media (max-width: 768px) {
    .hero-carousel {
        min-height: 60vh;
    }
    
    .hero-slide {
        min-height: 60vh;
        padding: 1rem 1rem 6rem 1rem;
        border-radius: 0;
        align-items: flex-end;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 0.5rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        line-height: 1.4;
    }
    
    .cta-btn {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }
    
    .carousel-indicators {
        bottom: 15px;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 10px;
        height: 10px;
        margin: 0 4px;
    }
}

@media (max-width: 480px) {
    .hero-carousel {
        min-height: 50vh;
    }
    
    .hero-slide {
        min-height: 50vh;
        padding: 0.5rem 0.5rem 4rem 0.5rem;
        align-items: flex-end;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
    }
    
    .carousel-indicators [data-bs-target] {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }
}

/* Additional mobile improvements */
@media (max-width: 480px) {
    nav {
        padding: 0.8rem 1rem;
    }
    
    nav ul {
        gap: 1rem;
    }
    
    .logo {
        font-size: 1.4rem;
    }
    
    .logo-img {
        height: 32px;
        width: 32px;
    }
    
    /* Ensure touch targets are large enough */
    nav a {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
    
    .cta-btn {
        min-width: 140px;
        text-align: center;
    }
    
    /* Improve form inputs on mobile */
    .reservation-form {
        padding: 2rem 1rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .input-group input,
    .input-group select {
        font-size: 16px; /* Prevents zoom on iOS */
    }
}

@media (max-width: 900px) {
    nav {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 2vw;
    }
    
    nav ul {
        gap: 1.5rem;
    }
    
    nav a {
        font-size: 1rem;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .about, .contact, .pricing {
        margin: 2rem 1vw 0 1vw;
        border-radius: 18px;
    }
    
    /* Pricing table responsive styles */
    .pricing {
        padding: 3rem 1rem 2rem 1rem;
        margin: 2rem 1vw 0 1vw;
        border-radius: 18px;
    }
    
    .table-container {
        width: 98%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .pricing-table thead th {
        padding: 18px 12px;
        font-size: 0.95em;
        min-width: 110px;
    }
    
    .pricing-table thead th:first-child {
        min-width: 140px;
    }
    
    .pricing-table tbody td {
        padding: 16px 12px;
        font-size: 0.9em;
        min-width: 110px;
        color: #232526;
    }
    
    .vehicle-name {
        min-width: 140px;
        font-size: 1em;
    }
    
    .price {
        font-size: 1em;
    }
}
@media (max-width: 700px) {
    .logo-img {
        height: 36px;
        width: 36px;
    }
}
@media (max-width: 600px) {
    nav {
        padding: 1rem 2vw;
        flex-direction: column;
        gap: 0.8rem;
    }
    
    nav ul {
        gap: 1.2rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav a {
        font-size: 0.95rem;
    }
    
    .logo {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }
    
    .about, .contact, .pricing {
        padding: 2rem 1rem 1.5rem 1rem;
        margin: 1rem 0 0 0;
        border-radius: 10px;
    }
    .contact-details {
        padding: 1rem 0.5rem;
    }
    .contact-label {
        min-width: 70px;
    }
    
    /* Enhanced mobile pricing table styles */
    .pricing {
        padding: 2rem 1rem 1.5rem 1rem;
        margin: 1rem 0 0 0;
        border-radius: 10px;
    }
    
    .pricing h2 {
        font-size: 2em;
        margin-bottom: 30px;
    }
    
    .table-container {
        width: 100%;
        margin: 0;
        border-radius: 12px;
    }
    
    .pricing-table thead th {
        padding: 12px 8px;
        font-size: 0.8em;
        min-width: 70px;
    }
    
    .pricing-table thead th:first-child {
        min-width: 100px;
    }
    
    .pricing-table tbody td {
        padding: 12px 8px;
        font-size: 0.8em;
        min-width: 70px;
        color: #232526;
    }
    
    .vehicle-name {
        min-width: 100px;
        font-size: 0.9em;
    }
    
    .price {
        font-size: 0.9em;
    }
    
    .call-pricing {
        font-size: 0.9em;
    }
    
    .call-pricing-combined {
        font-size: 0.9em;
        padding: 16px 12px;
        text-align: left;
    }
}

/* Additional very small screen support */
@media (max-width: 480px) {
    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 10px 8px;
        font-size: 0.8em;
    }
    
    .pricing-table tbody td {
        color: #232526;
    }
    
    .pricing-table thead th:first-child,
    .vehicle-name {
        min-width: 100px;
    }
    
    .call-pricing-combined {
        font-size: 0.8em;
        padding: 12px 8px;
        text-align: left;
    }
}

.call-pricing-combined {
  text-align: left;
  font-weight: 600;
  font-size: 1.05em;
  color: #ffffff;
  padding: 22px 15px;
  background: linear-gradient(90deg, #e6e8ea 0%, #d4d6d8 100%);
}

.phone-highlight {
  color: #0066cc;
  font-weight: 700;
}

/* Payment Section Styles */
.payment-section {
    padding: 4rem 4vw;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    min-height: 100vh;
}

.payment-section h2 {
    text-align: center;
    color: #ffd700;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.payment-container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Trip Information Card */
.trip-info-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border: 1px solid #333;
}

.trip-info-card h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

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

.trip-form .input-group {
    display: flex;
    flex-direction: column;
}

.trip-form label {
    color: #eaeaea;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.trip-form input,
.trip-form select {
    background: #333;
    border: 2px solid #444;
    border-radius: 8px;
    padding: 0.8rem;
    color: #eaeaea;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.trip-form input:focus,
.trip-form select:focus {
    outline: none;
    border-color: #ffd700;
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.calculate-btn {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 10px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 1rem;
}

.calculate-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

/* Fare Display */
.fare-display {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border: 1px solid #333;
}

.fare-display h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.fare-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fare-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #444;
}

.fare-row.total {
    border-left-color: #ffd700;
    background: rgba(255, 215, 0, 0.1);
    font-weight: 700;
    font-size: 1.2rem;
    color: #ffd700;
}

/* Payment Method Selection */
.payment-method-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border: 1px solid #333;
}

.payment-method-card h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.payment-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.payment-method-btn {
    padding: 1.5rem;
    border: 2px solid #444;
    border-radius: 12px;
    background: linear-gradient(135deg, #333 0%, #2a2a2a 100%);
    color: #eaeaea;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.payment-method-btn:hover {
    border-color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.cash-btn:hover {
    background: linear-gradient(135deg, #2d5a2d 0%, #3d6a3d 100%);
}

.card-btn:hover {
    background: linear-gradient(135deg, #2d4a6b 0%, #3d5a7b 100%);
}

/* Card Payment Form */
.card-payment-form {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border: 1px solid #333;
}

.card-payment-form h3 {
    color: #ffd700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.card-form-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.card-element {
    background: #333;
    border: 2px solid #444;
    border-radius: 8px;
    padding: 1rem;
    transition: border-color 0.3s ease;
}

.card-element:focus-within {
    border-color: #ffd700;
}

.card-errors {
    color: #ff6b6b;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.submit-payment-btn {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border: none;
    border-radius: 10px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-payment-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.submit-payment-btn:disabled {
    background: #666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Receipt Container */
.receipt-container {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border: 1px solid #333;
    text-align: center;
}

.receipt-container h3 {
    color: #4CAF50;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.receipt-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.receipt-btn {
    padding: 1rem;
    border: 2px solid #444;
    border-radius: 10px;
    background: linear-gradient(135deg, #333 0%, #2a2a2a 100%);
    color: #eaeaea;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.print-btn:hover {
    border-color: #ffd700;
    background: linear-gradient(135deg, #6b5b00 0%, #8b7500 100%);
}

.email-btn:hover {
    border-color: #4CAF50;
    background: linear-gradient(135deg, #2d5a2d 0%, #3d6a3d 100%);
}

.new-btn:hover {
    border-color: #2196F3;
    background: linear-gradient(135deg, #1565C0 0%, #1976D2 100%);
}

/* Loading Indicator */
.loading-indicator {
    background: linear-gradient(135deg, #2a2a2a 0%, #1f1f1f 100%);
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    border: 1px solid #333;
    text-align: center;
}

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

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

.loading-indicator p {
    color: #eaeaea;
    font-size: 1.1rem;
    margin: 0;
}

/* Message Container */
.message-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 400px;
}

.message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    animation: slideIn 0.3s ease;
}

.message-success {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
}

.message-error {
    background: linear-gradient(135deg, #f44336 0%, #d32f2f 100%);
}

.message-warning {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
}

.message-info {
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .trip-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .payment-buttons {
        grid-template-columns: 1fr;
    }
    
    .receipt-actions {
        grid-template-columns: 1fr;
    }
    
    .payment-section {
        padding: 2rem 2vw;
    }
    
    .payment-section h2 {
        font-size: 2rem;
    }
    
    .message-container {
        left: 20px;
        right: 20px;
        max-width: none;
    }
}
