/* A.P. Luxury Chauffeurs - Premium Styling */

:root {
    --luxury-gold: #d4af37;
    --luxury-dark-gold: #b8941f;
    --luxury-black: #1a1a1a;
    --luxury-dark-black: #0d0d0d;
    --luxury-white: #ffffff;
    --luxury-light-gray: #f8f9fa;
    --luxury-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --luxury-gradient: linear-gradient(135deg, var(--luxury-black) 0%, var(--luxury-dark-black) 100%);
}

/* --- Booking Request card readability improvements --- */
#booking-request-card,
.booking-request-card {
    position: relative; 
    z-index: 1;
}

#booking-request-card .quote-header h5,
.booking-request-card .quote-header h5 {
    color: #d4af37 !important;              /* gold brand for title */
    text-shadow: none !important;
}

#booking-request-card .quote-body,
#booking-request-card .quote-body *,
.booking-request-card .quote-body,
.booking-request-card .quote-body * {
    color: #0b0b0b !important;   /* dark text for contrast */
    opacity: 1 !important;       /* remove any faded styles */
    text-shadow: none !important;
}

#booking-request-card .alert-info,
.booking-request-card .alert-info {
    background: #dff1ff !important;         /* deeper blue for better contrast */
    border-color: rgba(0,0,0,0.08) !important;
    color: #0b0b0b !important;
}

#booking-request-card .luxury-gold,
.booking-request-card .luxury-gold {
    color: #d4af37 !important;              /* keep gold icons and accents */
}

#booking-request-card .small,
.booking-request-card .small {
    color: #202020 !important;   /* slightly lighter than body but still readable */
    opacity: 1 !important;
}

/* --- Hero logo sizing + subtle animation --- */
.hero-logo {
  display: block;
  margin: 0 auto 1rem;
  width: clamp(140px, 38vw, 280px);  /* responsive, larger overall */
  height: auto;
  filter: drop-shadow(0 0 10px rgba(212,175,55,.25));
  animation: apGlow 4.5s ease-in-out infinite;
  will-change: filter, transform;
}

/* Keep typography spacing tidy under the logo */
.hero-logo + .hero-subtitle,
.hero-logo + h1,
.hero-logo + p {
  margin-top: .35rem;
}

/* Mobile: slightly cap size so it doesn't push text below the fold */
@media (max-width: 768px) {
  .hero-logo { width: clamp(140px, 48vw, 210px); }
}

/* Desktop: allow a little extra presence */
@media (min-width: 1024px) {
  .hero-logo { width: clamp(180px, 28vw, 300px); }
}

/* Subtle premium glow + micro float */
@keyframes apGlow {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(212,175,55,.25)) drop-shadow(0 0 2px rgba(212,175,55,.15));
    transform: translateY(0);
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(212,175,55,.38)) drop-shadow(0 0 4px rgba(212,175,55,.2));
    transform: translateY(-2px);
  }
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-logo { animation: none; }
}

/* --- Swiper Gallery Styling --- */
.section-title { 
  color: #D4AF37; 
  text-align: center; 
  margin-bottom: 1rem; 
}

.gallery-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
  margin-bottom: .75rem;
  background: #0b0b0b;
}

.gallery-main img { 
  width: 100%; 
  height: 60vh; 
  object-fit: cover; 
}

@media (max-width: 768px) { 
  .gallery-main img { height: 42vh; } 
}

.gallery-thumbs { 
  padding-top: .25rem; 
  padding-bottom: .25rem; 
}

.gallery-thumbs .swiper-slide {
  height: 78px; 
  width: auto; 
  opacity: .7; 
  cursor: pointer;
  border-radius: 10px; 
  overflow: hidden;
  border: 2px solid transparent;
  transition: all .2s ease;
  background: #111;
}

.gallery-thumbs .swiper-slide img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}

.gallery-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  border-color: #D4AF37; /* AP gold */
  box-shadow: 0 0 0 3px rgba(212,175,55,.25);
}

.swiper-button-prev, .swiper-button-next {
  color: #D4AF37;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  border: 2px solid rgba(212,175,55,0.3);
  transition: all 0.3s ease;
}

.swiper-button-prev:hover, .swiper-button-next:hover {
  background: rgba(212,175,55,0.2);
  border-color: #D4AF37;
  transform: scale(1.1);
}

.swiper-button-prev::after, .swiper-button-next::after { 
  font-size: 18px;
  font-weight: bold;
}

/* Custom arrow icons */
.swiper-button-prev::after {
  content: '‹';
}

.swiper-button-next::after {
  content: '›';
}

/* Base Styles */
body {
    font-family: 'Inter', sans-serif;
    background: var(--luxury-gradient);
    color: var(--luxury-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.luxury-gold {
    color: var(--luxury-gold) !important;
}

/* Navigation */
.luxury-nav {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--luxury-gold);
    transition: all 0.3s ease;
}

.luxury-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--luxury-gold) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.navbar-logo {
    height: 40px;
    width: auto;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.navbar-nav .nav-link {
    color: var(--luxury-white) !important;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--luxury-gold) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--luxury-gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Cards */
.luxury-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    box-shadow: var(--luxury-shadow);
    color: var(--luxury-black);
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.luxury-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* Buttons */
.luxury-btn-primary {
    background: linear-gradient(135deg, var(--luxury-gold) 0%, var(--luxury-dark-gold) 100%);
    border: none;
    color: var(--luxury-black);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

.luxury-btn-primary:hover {
    background: linear-gradient(135deg, var(--luxury-dark-gold) 0%, var(--luxury-gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
    color: var(--luxury-black);
}

.luxury-btn-outline {
    background: transparent;
    border: 2px solid var(--luxury-gold);
    color: var(--luxury-gold);
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.luxury-btn-outline:hover {
    background: var(--luxury-gold);
    color: var(--luxury-black);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Forms */
.luxury-form .form-label {
    color: var(--luxury-black);
    font-weight: 600;
    margin-bottom: 8px;
}

.luxury-input {
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
}

.luxury-input:focus {
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25);
    background: var(--luxury-white);
}

/* Date and Time Picker Styling */
.datetime-picker-wrapper {
    position: relative;
}

.luxury-date-picker,
.luxury-time-picker {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--luxury-black);
    font-weight: 500;
}

.luxury-date-picker:focus,
.luxury-time-picker:focus {
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.25), 0 5px 15px rgba(212, 175, 55, 0.1);
    background: var(--luxury-white);
    outline: none;
}

.luxury-date-picker:hover,
.luxury-time-picker:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: var(--luxury-white);
}

/* Custom calendar and clock icon styling */
.luxury-date-picker::-webkit-calendar-picker-indicator,
.luxury-time-picker::-webkit-calendar-picker-indicator {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="%23d4af37"><path d="M19 3h-1V1h-2v2H8V1H6v2H5c-1.11 0-1.99.9-1.99 2L3 19c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 16H5V8h14v11zM7 10h5v5H7z"/></svg>');
    background-size: 16px 16px;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.luxury-time-picker::-webkit-calendar-picker-indicator {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 24 24" fill="%23d4af37"><path d="M11.99 2C6.47 2 2 6.48 2 12s4.47 10 9.99 10C17.52 22 22 17.52 22 12S17.52 2 11.99 2zM12 20c-4.42 0-8-3.58-8-8s3.58-8 8-8 8 3.58 8 8-3.58 8-8 8z"/><path d="m12.5 7-1 0 0 6 5.25 3.15.75-1.23-4.5-2.67z"/></svg>');
}

.luxury-date-picker::-webkit-calendar-picker-indicator:hover,
.luxury-time-picker::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

/* Firefox date/time picker styling */
.luxury-date-picker::-moz-focus-inner,
.luxury-time-picker::-moz-focus-inner {
    border: 0;
}

/* Style for mobile devices */
@media (max-width: 768px) {
    .luxury-date-picker,
    .luxury-time-picker {
        font-size: 16px; /* Prevents zoom on iOS */
        padding: 14px 16px;
    }
    
    .datetime-picker-wrapper {
        margin-bottom: 0.5rem;
    }
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--luxury-black);
    border: 2px solid var(--luxury-gold);
    border-radius: 50%;
    color: var(--luxury-gold);
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    background: var(--luxury-gold);
    color: var(--luxury-black);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.4);
    text-decoration: none;
}

.whatsapp-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

/* Pulse animation for WhatsApp button */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.2);
    }
    50% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 25px rgba(212, 175, 55, 0.4);
    }
    100% {
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.2);
    }
}

/* Mobile adjustments for WhatsApp button */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
    }
    
    .whatsapp-button {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
}

/* Ensure WhatsApp button doesn't interfere with page content */
@media (max-width: 576px) {
    .whatsapp-float {
        bottom: 80px; /* Move higher on small screens to avoid bottom navigation */
        right: 15px;
    }
}

/* Gallery Section */
.gallery-section {
    background: var(--luxury-gradient);
    color: var(--luxury-white);
}

.gallery-description {
    font-size: 1.2rem;
    line-height: 1.7;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-style: italic;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover {
    transform: translateY(-5px) scale(1.02);
    border-color: var(--luxury-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.3);
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 0, 0, 0.7), rgba(212, 175, 55, 0.3));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--luxury-white);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    font-size: 2rem;
    color: var(--luxury-gold);
    margin-bottom: 0.5rem;
}

.gallery-overlay span {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gallery Modal */
.gallery-modal-content {
    background: var(--luxury-black);
    border: 2px solid var(--luxury-gold);
    border-radius: 15px;
}

.gallery-modal-content .modal-header {
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    background: rgba(26, 26, 26, 0.95);
}

.modal-gallery-image {
    max-height: 70vh;
    object-fit: contain;
    background: var(--luxury-black);
}

.carousel-control-prev,
.carousel-control-next {
    width: 8%;
    color: var(--luxury-gold);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: brightness(0) saturate(100%) invert(85%) sepia(78%) saturate(2476%) hue-rotate(6deg) brightness(96%) contrast(91%);
    width: 2rem;
    height: 2rem;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background: rgba(212, 175, 55, 0.1);
}

/* Mobile Gallery Adjustments */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 15px;
        padding: 0 10px;
    }
    
    .gallery-description {
        font-size: 1.1rem;
        padding: 0 15px;
    }
    
    .gallery-overlay i {
        font-size: 1.5rem;
    }
    
    .gallery-overlay span {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .gallery-item {
        aspect-ratio: 1;
    }
    
    .modal-gallery-image {
        max-height: 60vh;
    }
}

/* Testimonials Section */
.testimonials-section {
    background: var(--luxury-gradient);
    color: var(--luxury-white);
}

.testimonial-card {
    background: rgba(26, 26, 26, 0.9);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 15px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
}

.testimonial-card.fade-in-card {
    animation: fadeInUp 0.8s ease-out forwards;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: var(--luxury-gold);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 175, 55, 0.3);
}

.testimonial-quote {
    position: relative;
    margin-bottom: 1.5rem;
}

.quote-mark {
    font-size: 4rem;
    color: var(--luxury-gold);
    font-family: 'Georgia', serif;
    line-height: 1;
    position: absolute;
    top: -10px;
    left: -10px;
    opacity: 0.6;
    font-weight: bold;
    z-index: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--luxury-white);
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    text-align: right;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.author-name {
    font-size: 1rem;
    color: var(--luxury-gold);
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Mobile Testimonials Adjustments */
@media (max-width: 768px) {
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .quote-icon {
        font-size: 1.5rem;
    }
    
    .author-name {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .testimonials-section .container {
        padding: 0 15px;
    }
    
    .testimonial-card {
        padding: 1.2rem;
    }
    
    .quote-mark {
        font-size: 2.5rem;
        top: -5px;
        left: -5px;
    }
}

/* Fade-in Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Intersection Observer fallback for older browsers */
.testimonial-card.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* Admin Dashboard Styles */
body.admin-body {
    background: #0a0a0a;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Admin Header */
.admin-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-bottom: 2px solid #FFD700;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}

.admin-title {
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Main Admin Section */
.admin-main {
    background: #0a0a0a;
    min-height: calc(100vh - 80px);
    padding-top: 2rem;
}

/* Summary Bar */
.summary-bar {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.summary-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    color: #ffffff;
    font-size: 0.95rem;
}

.stat-item strong {
    color: #FFD700;
    font-size: 1.1rem;
    font-weight: 700;
}

/* Controls Section */
.controls-section {
    margin-bottom: 2rem;
}

.search-container {
    position: relative;
}

.search-icon {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #FFD700;
    z-index: 10;
}

.search-input {
    background: #1a1a1a;
    border: 2px solid rgba(255, 215, 0, 0.3);
    color: #ffffff;
    padding-left: 40px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.search-input:focus {
    background: #2d2d2d;
    border-color: #FFD700;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
    color: #ffffff;
}

.search-input::placeholder {
    color: #888;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.filter-tab {
    background: #1a1a1a;
    border: 2px solid rgba(255, 215, 0, 0.3);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    font-weight: 500;
}

.filter-tab:hover {
    background: #2d2d2d;
    border-color: #FFD700;
    transform: translateY(-2px);
}

.filter-tab.active {
    background: #FFD700;
    color: #000000;
    border-color: #FFD700;
    font-weight: 600;
}

/* Table Container */
.table-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

/* Table Header */
.table-header {
    background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
}

.sticky-header {
    position: sticky;
    top: 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #3d3d3d 100%);
    color: #FFD700;
    font-weight: 600;
    padding: 1rem 0.75rem;
    border-bottom: 3px solid #FFD700;
    z-index: 10;
    letter-spacing: 0.3px;
}

/* Luxury Table */
.luxury-table {
    background: transparent;
    color: #ffffff;
    margin: 0;
    width: 100%;
}

.luxury-table tbody tr {
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

/* Booking Row */
.booking-row {
    transition: all 0.3s ease;
    background: transparent;
}

.booking-row:hover {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08) 0%, rgba(255, 215, 0, 0.12) 100%);
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.15);
    transform: translateY(-1px);
}

.booking-row td {
    padding: 1rem 0.75rem;
    vertical-align: middle;
    border: none;
}

/* Cell Styling */
.customer-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.customer-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

.booking-id {
    color: #FFD700;
    font-size: 0.8rem;
    font-weight: 500;
}

.phone-link {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.phone-link:hover {
    color: #FFD700;
}

.phone-link i {
    color: #FFD700;
}

/* Enhanced text visibility for admin table */
.phone-text, .location-text, .datetime-text {
    color: #ffffff !important;
    font-weight: 500 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
    display: inline !important;
    visibility: visible !important;
}

.phone-link .phone-text {
    color: #ffffff !important;
}

.phone-link:hover .phone-text {
    color: #FFD700 !important;
}

/* Bootstrap text color overrides for admin dark theme */
.admin-body .text-warning {
    color: #ffc107 !important;
}

.admin-body .text-success {
    color: #20c997 !important;
}

.admin-body .text-danger {
    color: #dc3545 !important;
}

.admin-body .text-info {
    color: #0dcaf0 !important;
}

.admin-body .text-primary {
    color: #0d6efd !important;
}

/* Admin table text visibility CSS overrides */
.admin-table td, .admin-table th, .luxury-table td, .luxury-table th { 
    color: #EDEDED !important; 
}

.admin-table a.phone, .luxury-table a.phone { 
    color: #CFCFCF !important; 
    text-decoration: none; 
}

.admin-table .cell-flex, .luxury-table .cell-flex { 
    display: flex; 
    align-items: flex-start; 
    gap: .6rem; 
}

.admin-table .cell-col, .luxury-table .cell-col { 
    display: flex; 
    flex-direction: column; 
    gap: .25rem; 
}

.admin-table .addr, .admin-table .dt, .luxury-table .addr, .luxury-table .dt { 
    display: flex; 
    align-items: center; 
    gap: .5rem; 
}

.admin-table .pickup, .admin-table .drop, .admin-table .name, .admin-table .date, .admin-table .time,
.luxury-table .pickup, .luxury-table .drop, .luxury-table .name, .luxury-table .date, .luxury-table .time { 
    display: inline !important; 
    color: #EDEDED !important;
}

.admin-table i, .luxury-table i { 
    color: #FFD700 !important; 
}

/* Make text wrap instead of disappearing */
.admin-table td, .luxury-table td { 
    white-space: normal !important; 
}

.admin-route .addr span, .luxury-table .admin-route .addr span { 
    word-break: break-word; 
}

/* Ensure all text is visible */
.admin-body .luxury-table td {
    color: #EDEDED !important;
}

.admin-body .luxury-table td * {
    color: inherit !important;
}

/* Override any potential hiding styles */
.admin-table .text, .luxury-table .text {
    display: block !important;
    opacity: 1 !important;
    text-indent: 0 !important;
}

.booking-id {
    font-size: 0.8rem;
    color: #FFD700 !important;
    font-weight: 500;
}

/* Admin table high contrast */
.admin-table td, .admin-table th {
    color: #ffffff !important;   /* Bright white */
    font-weight: 600;            /* Semi-bold */
}
.admin-table a.phone {
    color: #ffffff !important;
    font-weight: 600;
}
.admin-table .pickup, 
.admin-table .drop, 
.admin-table .name, 
.admin-table .date, 
.admin-table .time {
    color: #ffffff !important;
    font-weight: 600;
}
.admin-table .addr i, 
.admin-table .dt i {
    color: #FFD700 !important;   /* Gold icons */
}

/* Remove any opacity from rows */
.admin-table tr {
    opacity: 1 !important;
}

/* Apply same overrides to luxury-table class used in admin */
.luxury-table td, .luxury-table th {
    color: #ffffff !important;   /* Bright white */
    font-weight: 600;            /* Semi-bold */
}
.luxury-table a.phone {
    color: #ffffff !important;
    font-weight: 600;
}
.luxury-table .pickup, 
.luxury-table .drop, 
.luxury-table .name, 
.luxury-table .date, 
.luxury-table .time {
    color: #ffffff !important;
    font-weight: 600;
}
.luxury-table .addr i, 
.luxury-table .dt i {
    color: #FFD700 !important;   /* Gold icons */
}

/* Remove any opacity from rows */
.luxury-table tr {
    opacity: 1 !important;
}

/* Force table text to be black and visible */
.admin-table td,
.admin-table th,
.admin-table span,
.admin-table a,
.admin-table div {
    color: #000000 !important;   /* Pure black */
    font-weight: 600;
    opacity: 1 !important;       /* Remove any fading */
}

/* Apply to luxury-table as well since it's used in admin */
.luxury-table td,
.luxury-table th,
.luxury-table span,
.luxury-table a,
.luxury-table div {
    color: #000000 !important;   /* Pure black */
    font-weight: 600;
    opacity: 1 !important;       /* Remove any fading */
}

/* Remove faded look from completed rows */
.admin-table tr {
    opacity: 1 !important;
}

.luxury-table tr {
    opacity: 1 !important;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pickup, .dropoff {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.pickup span, .dropoff span {
    color: #ffffff;
    line-height: 1.3;
    word-break: break-word;
}

.datetime-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.date, .time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #ffffff;
}

.date i, .time i {
    color: #FFD700;
    width: 12px;
}

/* Status Badges */
.status-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.status-pending {
    background: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.status-completed {
    background: #28a745;
    color: #ffffff;
    border: 2px solid #28a745;
}

.status-cancelled {
    background: #dc3545;
    color: #ffffff;
    border: 2px solid #dc3545;
}

/* Notes Cell */
.notes-cell {
    max-width: 200px;
}

.btn-notes {
    background: transparent;
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #FFD700;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-notes:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: #FFD700;
}

.notes-content {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 6px;
    padding: 0.5rem;
    font-size: 0.8rem;
    color: #ffffff;
    max-width: 250px;
    word-break: break-word;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-action {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    border: none;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-complete {
    background: #28a745;
    color: #ffffff;
}

.btn-complete:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-cancel {
    background: #dc3545;
    color: #ffffff;
}

.btn-cancel:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.btn-invoice {
    background: #ffc107;
    color: #212529;
}

.btn-invoice:hover {
    background: #e0a800;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
    color: #212529;
}

.btn-token {
    background: #17a2b8;
    color: #ffffff;
}

.btn-token:hover {
    background: #138496;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(23, 162, 184, 0.3);
    color: #ffffff;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
    color: #888;
}

.empty-content i {
    font-size: 3rem;
    color: #FFD700;
    opacity: 0.5;
    margin-bottom: 1rem;
}

.empty-content h5 {
    color: #ffffff;
    margin-bottom: 0.5rem;
}

/* Modals */
.luxury-modal .modal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    color: #ffffff;
}

.luxury-modal .modal-header {
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.luxury-modal .modal-title {
    color: #FFD700;
    font-weight: 600;
}

.luxury-modal .modal-footer {
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

/* Toast */
.luxury-toast .toast-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.luxury-toast .toast-body {
    background: #2d2d2d;
    color: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .admin-main {
        padding-top: 1rem;
    }
    
    .summary-stats {
        gap: 1rem;
    }
    
    .stat-item {
        font-size: 0.85rem;
    }
    
    .sticky-header {
        padding: 0.75rem 0.5rem;
        font-size: 0.85rem;
    }
    
    .booking-row td {
        padding: 0.75rem 0.5rem;
    }
    
    .customer-name {
        font-size: 0.9rem;
    }
    
    .pickup, .dropoff, .date, .time {
        font-size: 0.8rem;
    }
}

/* Channel badges styles */
.channels-cell {
    min-width: 100px;
}

.channel-badges {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 80px;
}

.channel-badge {
    font-size: 0.7rem;
    padding: 1px 4px;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    text-align: center;
}

.channel-badge.success {
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.channel-badge.failed {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white !important;
    border: 1px solid #25d366;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #128c7e 0%, #075e54 100%);
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
}

@media (max-width: 768px) {
    .channel-badges {
        flex-direction: row;
        gap: 4px;
        justify-content: center;
    }
    
    .action-buttons {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .btn-action {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
        justify-content: center;
    }
    
    .notes-cell {
        max-width: 150px;
    }
    
    .btn-notes {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
    
    .notes-content {
        max-width: 200px;
        font-size: 0.75rem;
    }
}

@media (max-width: 576px) {
    .summary-bar {
        padding: 1rem;
    }
    
    .filter-tabs {
        justify-content: center;
    }
    
    .filter-tab {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: var(--luxury-gradient);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="0.5" fill="%23d4af37" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.luxury-logo {
    text-align: center;
    margin-top: 20px;
}

.hero-logo {
    height: 150px;
    width: auto;
    filter: drop-shadow(0 5px 15px rgba(212, 175, 55, 0.4));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
}

.booking-logo {
    height: 100px;
    width: auto;
    filter: drop-shadow(0 3px 10px rgba(212, 175, 55, 0.3));
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 500px;
}

.service-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    font-size: 1.1rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.luxury-icon {
    font-size: 6rem;
    color: var(--luxury-gold);
    margin-bottom: 1rem;
}

.premium-experience-card {
    background: rgba(26, 26, 26, 0.9) !important;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.premium-text {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
}



/* Services Section */
.services-section {
    background: rgba(255, 255, 255, 0.95);
    color: var(--luxury-black);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--luxury-black);
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--luxury-white);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    border-color: var(--luxury-gold);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--luxury-gold), var(--luxury-dark-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--luxury-black);
    font-size: 2rem;
}

.service-card h4 {
    color: var(--luxury-black);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background: var(--luxury-gradient);
    position: relative;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 49%, var(--luxury-gold) 50%, transparent 51%);
    opacity: 0.1;
}

/* Booking Form */
.booking-section {
    background: var(--luxury-gradient);
    min-height: 100vh;
    padding-top: 100px;
}

.booking-form-card {
    max-width: 100%;
    margin: 0 auto;
    border: 2px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.2), var(--luxury-shadow);
}

/* Confirmation Page */
.confirmation-section {
    background: var(--luxury-gradient);
    min-height: 100vh;
    padding-top: 100px;
}

.success-animation {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.success-animation.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.success-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: bounceIn 1s ease-out;
}

.success-title {
    font-size: 2.5rem;
    color: var(--luxury-white);
    margin-bottom: 0.5rem;
}

.success-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
}

.confirmation-card {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.confirmation-card.fade-in {
    opacity: 1;
    transform: translateY(0);
}

.detail-item {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    font-size: 1rem;
}

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

.confirmation-info {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border: 1px solid rgba(212, 175, 55, 0.3);
}

/* What Happens Next? section - Dark text for high readability */
.confirmation-info .next-steps {
    color: #222 !important; /* Dark gray text */
    font-weight: 500;
}

.confirmation-info .list-unstyled li {
    color: #222 !important; /* Dark gray text for checklist items */
    font-weight: 500;
}

.confirmation-info .list-unstyled li strong {
    color: #222 !important; /* Dark gray for bold text */
}

/* Keep the header and icons as they are */
.confirmation-info h5.luxury-gold {
    color: var(--luxury-gold) !important; /* Keep gold header */
}

.confirmation-info .fas.luxury-gold,
.confirmation-info .text-success,
.confirmation-info .text-warning,
.confirmation-info .text-info {
    /* Keep icon colors unchanged */
}

/* Admin Section */
.admin-section {
    background: var(--luxury-gradient);
    min-height: 100vh;
    padding-top: 100px;
    color: var(--luxury-white);
}

.admin-section .luxury-card {
    background: rgba(255, 255, 255, 0.98);
}

.stat-icon {
    font-size: 2.5rem;
}

.luxury-table {
    background: var(--luxury-white);
}

.luxury-table th {
    background: var(--luxury-black) !important;
    color: var(--luxury-gold) !important;
    border-color: var(--luxury-gold) !important;
    font-weight: 600;
}

.luxury-table td {
    vertical-align: middle;
    color: var(--luxury-black);
}

.luxury-table tbody tr:hover {
    background: rgba(212, 175, 55, 0.1) !important;
}

/* Admin Login */
.admin-login-section {
    background: var(--luxury-gradient);
    min-height: 100vh;
    padding-top: 100px;
}

.login-card {
    max-width: 400px;
    margin: 0 auto;
}

/* Alerts */
.luxury-alert {
    border: none;
    border-radius: 10px;
    font-weight: 500;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.alert-danger {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: var(--luxury-white);
}

.alert-success {
    background: linear-gradient(135deg, #28a745, #1e7e34);
    color: var(--luxury-white);
}

/* Footer */
.luxury-footer {
    background: var(--luxury-dark-black);
    color: var(--luxury-white);
    padding: 3rem 0 2rem;
    border-top: 1px solid var(--luxury-gold);
}

.luxury-divider {
    border-color: var(--luxury-gold);
    opacity: 0.3;
}

.footer-links {
    margin: 0;
    font-size: 0.9rem;
}

.luxury-link {
    color: #d4af37;
    text-decoration: none;
    transition: color 0.3s ease;
}

.luxury-link:hover {
    color: #f4d03f;
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80% {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3);
    }
    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        transform: scale3d(.9, .9, .9);
    }
    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        transform: scale3d(.97, .97, .97);
    }
    100% {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-logo {
        height: 120px;
    }
    
    .navbar-logo {
        height: 35px;
    }
    
    .booking-logo {
        height: 80px;
    }
    

    
    .service-highlights {
        margin-bottom: 2rem;
    }
    
    .highlight-item {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .success-icon {
        font-size: 4rem;
    }
    
    .success-title {
        font-size: 2rem;
    }
    
    .luxury-card {
        padding: 1.5rem;
    }
    
    .table-responsive {
        font-size: 0.875rem;
    }
    
    .payment-amount-section .display-4 {
        font-size: 2.5rem;
    }
}

/* Payment Page Styles */
.payment-section {
    background: var(--luxury-gradient);
    min-height: 100vh;
    padding-top: 100px;
}

.payment-amount-section {
    text-align: center;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.payment-amount-section .display-4 {
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-2px);
}

.security-notice {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

#payment-element {
    margin-bottom: 1.5rem;
}

.payment-loading {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.payment-loading:not([style*="display: none"]) {
    opacity: 1;
}

/* Stripe Element Custom Styles */
.StripeElement {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 12px;
    transition: border-color 0.3s ease;
}

.StripeElement:focus,
.StripeElement--focus {
    border-color: var(--luxury-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.StripeElement--invalid {
    border-color: #dc3545;
}

/* Payment Status Indicators */
.payment-status {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-status.paid {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid #28a745;
}

.payment-status.unpaid {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
    border: 1px solid #ffc107;
}

.payment-status.failed {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid #dc3545;
}

/* Dark theme for admin table */
.admin-table {
    background-color: #333 !important;
    color: #FFFFFF !important;
}

.admin-table th,
.admin-table td,
.admin-table span,
.admin-table a,
.admin-table div {
    background-color: #333 !important;
    color: #FFFFFF !important;
    opacity: 1 !important;
}

/* Apply dark theme to luxury-table as well since it's used in admin */
.luxury-table {
    background-color: #333 !important;
    color: #FFFFFF !important;
}

.luxury-table th,
.luxury-table td,
.luxury-table span,
.luxury-table a,
.luxury-table div {
    background-color: #333 !important;
    color: #FFFFFF !important;
    opacity: 1 !important;
}

/* Optional: Darker borders for separation */
.admin-table th, .admin-table td {
    border-color: #555 !important;
}

.luxury-table th, .luxury-table td {
    border-color: #555 !important;
}

/* Keep row hover highlight */
.admin-table tr:hover {
    background-color: #444 !important;
}

.luxury-table tr:hover {
    background-color: #444 !important;
}

/* Photon autocomplete dropdown styles */
.photon-dd{ 
    position:absolute; 
    top:100%; 
    left:0; 
    right:0; 
    z-index:9999; 
    background:#1f1f1f; 
    border:1px solid #444; 
    border-radius:10px; 
    overflow:hidden; 
    max-height: 300px;
    overflow-y: auto;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.photon-item{ 
    padding:.8rem 1rem; 
    cursor:pointer; 
    color:#fff; 
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: background-color 0.2s ease;
    font-size: 0.9rem;
    line-height: 1.3;
}

.photon-item:hover{ 
    background:#2a2a2a; 
}

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

.payment-status.paid_in_full {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid #28a745;
}

.payment-status.deposit_paid {
    background: rgba(23, 162, 184, 0.2);
    color: #17a2b8;
    border: 1px solid #17a2b8;
}

/* Admin payment action buttons */
.btn-payment {
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    border: 1px solid rgba(0, 123, 255, 0.3);
}

.btn-payment:hover {
    background: rgba(0, 123, 255, 0.2);
    color: #007bff;
}

.btn-payment-full {
    background: rgba(255, 193, 7, 0.1);
    color: #ffc107;
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.btn-payment-full:hover {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

/* Payment Options Page Styles */
.payment-option-card {
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.payment-option-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.5);
}

.premium-option {
    border-color: rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(0, 0, 0, 0.5));
}

.premium-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    color: #000;
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.payment-type-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.payment-option-card:hover .payment-type-icon {
    background: rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.5);
}

.price-display {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--luxury-gold);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.payment-features {
    text-align: left;
}

.payment-features .feature-item {
    padding: 8px 0;
    border: none;
    background: none;
}

.payment-features .feature-item:hover {
    background: none;
    transform: none;
}

.security-section {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem;
}

.security-feature i {
    display: block;
    margin-bottom: 0.5rem;
}

/* Thank You Page Styles */
.success-animation {
    animation: fadeInDown 0.8s ease-out;
}

.success-icon i {
    font-size: 5rem;
    animation: pulse 2s infinite;
}

.success-title {
    font-size: 3rem;
    font-weight: 700;
    margin: 1rem 0;
    background: linear-gradient(45deg, #d4af37, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.success-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CONTRAST FIXES FOR PAYMENT FLOW - BLACK & GOLD BRAND COMPLIANCE */
/* CSS overrides to fix low-contrast text on black background */

/* Root variables for A.P. brand colors */
:root { 
    --ap-gold: #FFD700; 
    --ap-black: #000000; 
}

/* Base text colors - ensure white text on black background */
body, .text-body, .card, .card-body { 
    color: #FFF !important; 
}

/* Headings and key labels in gold */
h1, h2, h3, .section-title, .card-title, .price { 
    color: var(--ap-gold) !important; 
}

/* Fix muted/secondary text - should NOT be grey/transparent on black */
.text-muted, .text-secondary, .text-body-secondary, .small, .form-text, .lead { 
    color: #EDEDED !important; 
    opacity: 1 !important;
}

/* Payment option cards with better contrast */
.payment-option-card, .luxury-card, .pricing-card, .summary-card, .feature-card {
    background: #0A0A0A !important; 
    color: #FFF !important; 
    border: 1px solid rgba(255,215,0,0.25) !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.6) !important;
}

.payment-option-card .price-amount, .pricing-card .price, .summary-card .label, .feature-list li::marker { 
    color: var(--ap-gold) !important; 
}

/* Feature lists with high contrast */
.payment-features .feature-item, .feature-list li { 
    color: #F5F5F5 !important; 
}

/* Badges and tags */
.badge, .tag, .payment-status { 
    background: rgba(255,215,0,0.15) !important; 
    color: var(--ap-gold) !important; 
    border: 1px solid rgba(255,215,0,0.35) !important; 
}

/* Buttons maintain gold-on-black strong contrast */
.btn-primary, .btn-pay, .btn-checkout, .luxury-btn-primary {
    background: var(--ap-gold) !important; 
    color: #000 !important; 
    border: none !important;
}

.btn-outline, .luxury-btn-outline { 
    border-color: var(--ap-gold) !important; 
    color: var(--ap-gold) !important; 
}

.btn-outline:hover, .luxury-btn-outline:hover { 
    background: var(--ap-gold) !important; 
    color: #000 !important; 
}

/* Input placeholders */
::placeholder { 
    color: #C9C9C9 !important; 
    opacity: 1 !important; 
}

/* Remove dark overlays that dim text */
.overlay, .card::before { 
    opacity: 0 !important; 
}

/* Specific payment flow elements */
.success-subtitle, .security-feature small, .premium-badge {
    color: #EDEDED !important;
}

.security-feature h6 {
    color: var(--ap-gold) !important;
}

/* Detail items in booking summary */
.detail-item, .booking-details .detail-item {
    color: #F5F5F5 !important;
}

.detail-item strong {
    color: var(--ap-gold) !important;
}

/* Payment-specific text elements */
.payment-subtitle, .payment-description {
    color: #EDEDED !important;
    opacity: 1 !important;
}

.payment-caption, .security-caption {
    color: #D0D0D0 !important;
    opacity: 1 !important;
}

/* Security features text */
.security-feature h6 {
    color: var(--ap-gold) !important;
}

.security-feature small {
    color: #EDEDED !important;
}

/* ===== GLOBAL CONTRAST OVERRIDES FOR BLACK BACKGROUND ===== */
/* These rules override all low-contrast text across the entire application */

/* Override all muted/secondary/low-contrast text classes */
.text-muted, .text-secondary, .text-body-secondary, .muted, .small, .form-text, 
.caption, .note, .text-black-50, .text-white-50, .opacity-75, .opacity-50 {
    color: #EDEDED !important; 
    opacity: 1 !important;
}

/* Headings that are muted should be gold */
.heading-muted, h1.muted, h2.muted, h3.muted, h4.muted, h5.muted, h6.muted {
    color: var(--ap-gold) !important;
}

/* Override Bootstrap's default muted styles */
.text-muted {
    color: #EDEDED !important;
}

.text-black-50 {
    color: #EDEDED !important;
}

/* Lead text should be high contrast */
.lead {
    color: #F5F5F5 !important;
}

/* Form labels and help text */
.form-label, .form-text, label {
    color: #EDEDED !important;
}

/* Card text and subtitles */
.card-subtitle, .card-text {
    color: #EDEDED !important;
}

/* List group items */
.list-group-item {
    color: #EDEDED !important;
    background-color: rgba(0,0,0,0.3) !important;
}

/* Alert text */
.alert {
    color: #000 !important; /* Dark text on alert backgrounds */
}

/* Placeholder text */
.form-control::placeholder, .form-select::placeholder, input::placeholder, textarea::placeholder {
    color: #C9C9C9 !important;
    opacity: 1 !important;
}

/* Remove any semi-transparent text overlays */
* {
    text-shadow: none !important; /* Remove any text shadows that might reduce contrast */
}

/* Override any remaining low-contrast colors */
.text-light {
    color: #F8F9FA !important;
}

.text-dark {
    color: #EDEDED !important; /* Dark text becomes light on black background */
}

/* Template-specific high contrast classes */
.booking-description, .booking-info, .booking-reference {
    color: #EDEDED !important;
    opacity: 1 !important;
}

.admin-placeholder, .admin-no-actions, .admin-empty-message {
    color: #D0D0D0 !important;
    opacity: 1 !important;
}

.admin-placeholder {
    font-style: italic;
}

/* Additional payment and admin template classes */
.payment-processing, .security-notice-text, .login-description, .admin-notice {
    color: #EDEDED !important;
    opacity: 1 !important;
}

/* Pricing breakdown styles */
.pricing-breakdown {
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
}

.breakdown-item {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.breakdown-subtotal {
    padding: 15px 0;
    border-top: 2px solid rgba(255, 215, 0, 0.3);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
    margin-top: 10px;
}

.breakdown-total {
    padding: 20px 0 10px 0;
    border-top: 2px solid var(--ap-gold);
    margin-top: 10px;
    font-size: 1.2rem;
}

.breakdown-label {
    color: #EDEDED !important;
}

.breakdown-amount {
    color: #F5F5F5 !important;
    font-weight: 500;
}

.breakdown-total .breakdown-amount {
    color: var(--ap-gold) !important;
    font-weight: 700;
}

/* Admin pricing column styles */
.pricing-cell {
    min-width: 150px;
}

.pricing-info .total-amount {
    color: var(--ap-gold);
    font-weight: 600;
    font-size: 0.95rem;
}

.pricing-info .pricing-mode {
    display: block;
    color: #BBBBBB;
    font-size: 0.75rem;
    text-transform: uppercase;
}

.pricing-info .pricing-breakdown {
    display: block;
    color: #999999;
    font-size: 0.7rem;
}

/* Live Quote Panel Styles */
.live-quote-panel {
    background: linear-gradient(135deg, rgba(33, 37, 41, 0.95), rgba(52, 58, 64, 0.95));
    border: 2px solid var(--ap-gold);
    border-radius: 15px;
    padding: 1.5rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.15);
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.quote-header h5 {
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.quote-loading {
    text-align: center;
    padding: 1rem 0;
}

.loading-skeleton {
    margin-bottom: 1rem;
}

.skeleton-line {
    height: 16px;
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 25%, rgba(212, 175, 55, 0.2) 50%, rgba(212, 175, 55, 0.1) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.skeleton-line.short {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.quote-content {
    color: #EDEDED;
}

.quote-breakdown {
    margin-bottom: 1rem;
}

.quote-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-line:last-child {
    border-bottom: none;
}

.quote-line.base-fare {
    font-weight: 500;
}

.quote-line.surcharge {
    color: #FFC107;
    font-size: 0.9rem;
}

.quote-line.discount {
    color: #28A745;
    font-size: 0.9rem;
}

.quote-line.gst {
    font-size: 0.9rem;
    color: #CCCCCC;
}

.quote-line.total {
    border-top: 2px solid var(--ap-gold);
    border-bottom: none;
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-size: 1.1rem;
}

.quote-line.deposit {
    color: #BBBBBB;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    border-bottom: none;
}

.quote-divider {
    border: none;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    margin: 0.5rem 0;
}

.quote-notes {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 0.75rem;
    border-left: 4px solid var(--ap-gold);
}

.quote-notes-list {
    margin: 0;
    padding-left: 1.2rem;
    color: #CCCCCC;
    font-size: 0.85rem;
    line-height: 1.4;
}

.quote-notes-list li {
    margin-bottom: 0.25rem;
}

.quote-error .alert {
    background: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #EDEDED;
    margin: 0;
}

.quote-error .btn-outline-warning {
    color: var(--ap-gold);
    border-color: var(--ap-gold);
    font-size: 0.8rem;
}

.quote-error .btn-outline-warning:hover {
    background: var(--ap-gold);
    color: #000;
}

/* Mobile responsiveness for quote panel */
@media (max-width: 768px) {
    .live-quote-panel {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .quote-line {
        padding: 0.4rem 0;
        font-size: 0.9rem;
    }
    
    .quote-line.total {
        font-size: 1rem;
    }
}

/* Admin recompute button styles */
.btn-recompute {
    background-color: rgba(23, 162, 184, 0.1) !important;
    color: #17A2B8 !important;
    border: 1px solid rgba(23, 162, 184, 0.3) !important;
}

.btn-recompute:hover {
    background-color: rgba(23, 162, 184, 0.2) !important;
    color: #17A2B8 !important;
    transform: scale(1.05);
}

@media (max-width: 576px) {
    .payment-amount-section .display-4 {
        font-size: 2rem;
    }
    
    .payment-features .col-md-4 {
        margin-bottom: 1rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .success-title {
        font-size: 2rem;
    }
    
    .success-icon i {
        font-size: 4rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-logo {
        height: 100px;
    }
    
    .navbar-logo {
        height: 30px;
    }
    
    .booking-logo {
        height: 70px;
    }
    

    
    .service-highlights {
        gap: 0.5rem;
    }
    
    .luxury-card {
        padding: 1rem;
    }
    
    .booking-form-card,
    .confirmation-card,
    .login-card {
        margin: 0 1rem;
    }
}

/* Loading States */
.fade-in {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus States for Accessibility */
.luxury-input:focus,
.luxury-btn-primary:focus,
.luxury-btn-outline:focus {
    outline: 2px solid var(--luxury-gold);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .luxury-nav,
    .luxury-footer,
    .btn {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .luxury-card {
        border: 1px solid #ccc !important;
        box-shadow: none !important;
    }
}


/* Test notification modal styles */
.test-results {
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 8px;
    padding: 1rem;
}

.test-result {
    padding: 8px 12px;
    border-radius: 6px;
    border-left: 4px solid;
}

.test-result.success {
    background: rgba(40, 167, 69, 0.1);
    border-left-color: #28a745;
    color: #28a745;
}

.test-result.failed {
    background: rgba(220, 53, 69, 0.1);
    border-left-color: #dc3545;
    color: #dc3545;
}

.test-result small {
    color: #cccccc;
    font-size: 0.8rem;
}

.luxury-input {
    background: #2d2d2d;
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #ffffff;
}

.luxury-input:focus {
    background: #2d2d2d;
    border-color: #FFD700;
    color: #ffffff;
    box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.form-check-input:checked {
    background-color: #FFD700;
    border-color: #FFD700;
}

/* Geoapify autocomplete dropdown z-index fix */
.geoapify-autocomplete-items, 
.geoapify-autocomplete {
    z-index: 9999 !important;
}

/* Pending Requests Section Styles */
.pending-requests-section {
    margin-bottom: 2rem;
}

.pending-requests-section .card {
    border-radius: 12px;
    overflow: hidden;
}

.pending-requests-section .card-header {
    border-bottom: 2px solid rgba(255, 193, 7, 0.3);
    padding: 1rem 1.5rem;
    font-weight: 600;
}

.pending-requests-section .card-body {
    padding: 1.5rem;
}

.request-group h6 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

.request-item {
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.3s ease;
}

.request-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--luxury-gold) !important;
}

.request-details .mb-2 {
    line-height: 1.4;
}

.request-actions .btn {
    min-width: 120px;
}

.request-actions textarea {
    resize: vertical;
    min-height: 60px;
}

.request-actions .btn-success {
    background: #28a745;
    border-color: #28a745;
}

.request-actions .btn-success:hover {
    background: #218838;
    border-color: #1e7e34;
    transform: translateY(-1px);
}

.request-actions .btn-danger {
    background: #dc3545;
    border-color: #dc3545;
}

.request-actions .btn-danger:hover {
    background: #c82333;
    border-color: #bd2130;
    transform: translateY(-1px);
}
