/* =====================================================
   BuddyTaxi Premium Airport Transfer - style.css
   Design System: Dark Red + Dark Navy + White
   Fonts: Outfit (headings), Kanit (Thai body text)
   ===================================================== */

/* ---- Design Tokens ---- */
:root {
    --primary:        #e51d45;
    --primary-dark:   #b81536;
    --secondary:      #0f172a;
    --accent:         #f59e0b;
    --bg-light:       #f8fafc;
    --bg-dark:        #0f172a;
    --text-primary:   #0f172a;
    --text-muted:     #64748b;
    --white:          #ffffff;
    --border:         #e2e8f0;
    --shadow:         0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md:      0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg:      0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --radius:         12px;
    --font-heading:   'Outfit', 'Kanit', sans-serif;
    --font-body:      'Kanit', 'Outfit', sans-serif;
    --transition-smooth: all 0.3s ease;
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--white);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); }

/* ---- Floating Contact Bar ---- */
.floating-contact-bar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #c8102e;
    display: flex;
    flex-direction: column;
    padding: 10px 5px;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    z-index: 1050;
    box-shadow: -2px 0 10px rgba(0,0,0,0.2);
}

.floating-contact-bar a {
    color: white;
    font-size: 22px;
    margin: 10px 10px;
    text-align: center;
    transition: transform 0.2s;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

.floating-contact-bar a:hover {
    transform: scale(1.25);
    color: white;
}

/* ---- Navbar ---- */
.navbar {
    background: #0f172a !important;
    padding: 14px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    z-index: 1000;
}

.navbar-brand {
    color: var(--white) !important;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-weight: 500;
    padding: 8px 14px !important;
    border-radius: 8px;
    transition: var(--transition-smooth);
}
.nav-link:hover, .nav-link.active {
    color: var(--white) !important;
    background: rgba(229,29,69,0.25);
}

/* ---- Hero Carousel ---- */
.hero-slide {
    height: 580px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
    padding-bottom: 48px;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.55) 100%);
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background: #c8102e !important;
    border-color: #c8102e !important;
    border-radius: 10px;
    padding: 12px 32px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition-smooth);
}
.btn-primary:hover {
    background: #a50d26 !important;
    border-color: #a50d26 !important;
    box-shadow: none;
}

/* ---- SEO Trust Bar ---- */
.seo-trust-bar {
    background: #0f172a;
    color: white;
    padding: 18px 0;
    border-top: 3px solid #c8102e;
}

.seo-trust-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.seo-trust-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    white-space: nowrap;
}

.seo-badge {
    background: #c8102e;
    color: white;
    font-size: 0.85rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
}

.seo-trust-items {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

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

.seo-trust-item i {
    font-size: 1.3rem;
    color: #c8102e;
}

.seo-trust-item div {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.seo-trust-item strong {
    font-size: 0.88rem;
    color: white;
    font-weight: 700;
}

.seo-trust-item span {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
    .seo-trust-inner { flex-direction: column; text-align: center; }
    .seo-trust-items { justify-content: center; gap: 18px; }
    .seo-trust-title { justify-content: center; }
}

/* ---- Booking Section ---- */
.booking-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.booking-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}

.booking-card h2 {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 32px;
}

.form-step {
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 1px dashed var(--border);
}

.form-step:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
}

.form-step h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-number {
    background: var(--primary);
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* ---- Vehicle Cards ---- */
.vehicle-card {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 16px 12px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    height: 100%;
}

.vehicle-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.vehicle-card.selected {
    border-color: var(--primary);
    background: #fff5f7;
    box-shadow: 0 0 0 3px rgba(229,29,69,0.15);
}

.vehicle-card h5 {
    font-size: 0.9rem;
    font-weight: 600;
    margin: 8px 0 4px;
    color: var(--text-primary);
}

.vehicle-card p {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin: 0;
}

.vehicle-card .badge {
    background: var(--primary);
    color: white;
    font-size: 0.7rem;
    padding: 3px 10px;
    border-radius: 20px;
    margin-top: 6px;
    display: inline-block;
}

/* ---- Price Display Banner ---- */
.price-display {
    background: #0f172a;
    color: white;
    padding: 18px 28px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
    margin: 24px 0;
    font-size: 1rem;
}

.price-display strong {
    font-size: 1.8rem;
    font-family: var(--font-heading);
    color: var(--accent);
}

/* ---- Submit Button ---- */
.btn-submit {
    display: block;
    width: 100%;
    padding: 16px;
    background: #c8102e;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-smooth);
    margin-top: 24px;
    font-family: var(--font-heading);
}

.btn-submit:hover {
    background: #a50d26;
    box-shadow: none;
}

/* ---- Form Controls ---- */
.form-control, .form-select {
    border-radius: 10px;
    border: 1.5px solid var(--border);
    padding: 10px 14px;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(229,29,69,0.15);
    outline: none;
}

.form-label {
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    display: block;
}

/* intl-tel-input bootstrap fix */
.iti { width: 100%; }

/* ---- Rates Section ---- */
.rates-section {
    padding: 70px 0;
    background: var(--white);
}

.rate-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    height: 100%;
}

.rate-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.rate-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.vehicle-icon-rate { font-size: 2.5rem; margin-bottom: 0.5rem; }

.vehicle-specs {
    font-size: 0.83rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.start-price {
    background: var(--bg-light);
    padding: 0.5rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1rem;
}

.start-price .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    font-family: var(--font-heading);
}

.destination-price {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--border);
    font-size: 0.88rem;
}

.destination-price:last-child { border-bottom: none; }
.destination-name { font-weight: 500; }

.price-value {
    font-weight: 600;
    color: #16a34a;
}

.price-original {
    text-decoration: line-through;
    color: #94a3b8;
    font-size: 0.78rem;
    margin-right: 4px;
}

/* ---- Location Tabs ---- */
.location-tabs {
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--border);
    text-align: center;
}

.location-tab {
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    display: inline-block;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition-smooth);
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.location-tab.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.location-tab:hover { color: var(--primary-dark); }

.price-table-container { display: none; }
.price-table-container.active { display: block; }

.extra-fee-card, .terms-card {
    background: var(--bg-light);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-top: 2rem;
    border: 1px solid var(--border);
}

.extra-fee-card h4, .terms-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* ---- Vehicle Showcase Section ---- */
.vehicles-section {
    padding: 70px 0;
    background: var(--bg-light);
}

.vehicle-showcase {
    background: var(--white);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
    height: 100%;
}

.vehicle-showcase:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.vehicle-icon-large {
    font-size: 3.5rem;
    margin-bottom: 14px;
    line-height: 1;
}

.vehicle-showcase h4 { font-weight: 700; margin-bottom: 8px; }
.vehicle-showcase p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }

/* ---- About Section ---- */
.about-section {
    padding: 70px 0;
    background: var(--white);
}

.about-section h2 { font-weight: 700; margin-bottom: 1.5rem; }
.about-section h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--primary); }
.about-section ul { padding-left: 1.3rem; }
.about-section li { margin-bottom: 0.5rem; font-size: 0.95rem; color: var(--text-muted); }

/* ---- Reviews Section ---- */
.reviews-section {
    padding: 70px 0;
    background: var(--bg-light);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.reviews-header h2 {
    margin: 0;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
}

.reviews-stats {
    display: flex;
    align-items: center;
    gap: 12px;
}

.average-rating {
    display: flex;
    align-items: center;
    gap: 8px;
}

.stars { color: #f59e0b; font-size: 22px; letter-spacing: 2px; }
.rating-number { font-size: 1.3rem; font-weight: 700; color: var(--text-primary); }
.review-count { color: var(--text-muted); font-size: 0.85rem; }

.btn-write-review {
    background: #c8102e;
    color: white;
    border: none;
    padding: 10px 22px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition-smooth);
}

.btn-write-review:hover {
    background: #a50d26;
}

.reviews-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.review-card {
    background: white;
    border-radius: 14px;
    padding: 22px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.review-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.review-rating { color: #f59e0b; font-size: 1rem; }
.review-name { color: var(--text-muted); font-size: 0.82rem; margin-bottom: 10px; }
.review-message { color: #475569; line-height: 1.55; margin: 10px 0; font-size: 0.9rem; }
.review-date { color: #94a3b8; font-size: 0.78rem; margin-top: 10px; }

.loading-spinner {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
    font-size: 1rem;
}

/* ---- Gallery Carousel ---- */
.customer-gallery-section {
    padding: 70px 0;
    background: var(--white);
}

.gallery-header {
    text-align: center;
    margin-bottom: 30px;
}

.gallery-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.gallery-header h2 i { color: var(--primary); margin-right: 10px; }
.gallery-header p { color: var(--text-muted); font-size: 0.95rem; }

.gallery-carousel-wrapper {
    position: relative;
    margin: 0 auto;
    padding: 0 52px;
    max-width: 1400px;
}

.gallery-carousel-viewport {
    overflow: hidden;
    border-radius: 14px;
}

.gallery-carousel-track {
    display: flex;
    gap: 16px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.gallery-item {
    flex: 0 0 calc(25% - 12px);
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    box-shadow: var(--shadow);
    transition: var(--transition-smooth);
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    padding: 20px 10px 10px;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.gallery-item-overlay .caption {
    color: white;
    font-size: 14px;
    text-align: center;
}

.gallery-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: white;
    border: none;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.gallery-btn:hover:not(:disabled) {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 16px rgba(229,29,69,0.4);
}

.gallery-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.gallery-prev { left: 4px; }
.gallery-next { right: 4px; }

.no-images {
    text-align: center;
    padding: 40px;
    color: var(--text-muted);
    font-size: 0.95rem;
    width: 100%;
}

/* ---- Modal (Review & Image) ---- */
/* Custom modals (reviewModal, imageModal) toggled via JS display property */
#reviewModal, #imageModal {
    position: fixed;
    z-index: 1100;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
    /* display is controlled via JS: none / flex */
    align-items: center;
    justify-content: center;
}

#reviewModal .modal-content, #imageModal .modal-content {
    background: white;
    padding: 32px;
    border-radius: 16px;
    width: 90%;
    max-width: 520px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

#reviewModal .modal-close, #imageModal .modal-close {
    position: absolute;
    right: 20px; top: 16px;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
    color: var(--text-muted);
    line-height: 1;
    background: none;
    border: none;
}

.modal-close:hover { color: var(--secondary); }

.image-modal-content {
    max-width: 90%;
    max-height: 90%;
    padding: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.image-modal-close {
    position: absolute;
    top: -40px; right: 0;
    color: white;
    font-size: 32px;
}

/* ---- Star Rating Selector ---- */
.star-rating {
    display: flex;
    gap: 5px;
    cursor: pointer;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.star-rating span {
    font-size: 30px;
    color: #d1d5db;
    transition: color 0.2s;
}

.star-rating span.active,
.star-rating span:hover { color: #f59e0b; }

/* ---- Form Group (modal) ---- */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; margin-bottom: 5px; font-weight: 600; font-size: 0.9rem; color: var(--text-primary); }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 9px 13px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-size: 0.9rem;
    font-family: var(--font-body);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-actions { display: flex; gap: 12px; justify-content: flex-end; margin-top: 16px; }

.message-response {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.9rem;
}

.message-response.success {
    background: #dcfce7;
    color: #15803d;
    border: 1px solid #bbf7d0;
}

.message-response.error {
    background: #fee2e2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

/* ---- Footer ---- */
.footer {
    background: var(--bg-dark);
    color: rgba(255,255,255,0.85);
    padding: 60px 0 0;
}

.footer h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 16px;
    font-size: 1rem;
}

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

.footer ul li { margin-bottom: 8px; font-size: 0.9rem; }

.footer ul a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    transition: color 0.2s;
}

.footer ul a:hover { color: var(--primary); }

.footer-bottom {
    background: rgba(0,0,0,0.3);
    margin-top: 40px;
    padding: 16px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.5);
    border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--primary); }

/* ---- Additional Info Block ---- */
.additional-info {
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-top: 12px;
}

.additional-info h5 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
}

/* ---- Responsive Adjustments ---- */
@media (max-width: 991px) {
    .gallery-item { flex: 0 0 calc(50% - 8px); }
    .hero-slide { height: 420px; }
    .booking-card { padding: 24px; }
}

@media (max-width: 768px) {
    .reviews-header { flex-direction: column; gap: 16px; text-align: center; }
    .reviews-list { grid-template-columns: 1fr; }
    .modal-content { width: 95%; padding: 22px; }
    .gallery-header h2 { font-size: 1.4rem; }
    .gallery-carousel-wrapper { padding: 0 42px; }
    .gallery-btn { width: 36px; height: 36px; font-size: 15px; }
    .price-display { flex-direction: column; align-items: flex-start; }
    .hero-slide { height: 340px; }
}

@media (max-width: 575px) {
    .gallery-item { flex: 0 0 100%; }
    .gallery-carousel-wrapper { padding: 0 38px; }
    .floating-contact-bar a { font-size: 18px; margin: 8px 7px; }
}

/* =====================================================
   Tours Page Specific Styling (BuddyTaxi Premium)
   ===================================================== */
.tours-hero {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e293b 100%);
    color: var(--white);
    padding: 80px 0;
    border-bottom: 3px solid var(--primary);
}

.title-underline {
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
    margin-top: 10px;
}

.tour-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid var(--border);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.tour-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.tour-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.tour-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.tour-card:hover .tour-image img {
    transform: scale(1.05);
}

.tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(4px);
    color: white;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: var(--shadow);
}

.tour-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.tour-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-family: var(--font-heading);
}

.tour-duration {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.tour-duration i {
    color: var(--primary);
}

.tour-price {
    font-size: 1.7rem;
    font-weight: 800;
    color: #16a34a;
    margin-bottom: 16px;
    font-family: var(--font-heading);
}

.tour-price small {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: normal;
}

.tour-description {
    color: #475569;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.btn-book-tour {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition-smooth);
    width: 100%;
    text-align: center;
    text-decoration: none;
    font-family: var(--font-heading);
    display: inline-block;
}

.btn-book-tour:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* =====================================================
   Preloader Screen & Facebook Floating Button
   ===================================================== */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0c0f12; /* Premium deep dark background */
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.preloader-logo {
    width: 110px;
    height: 110px;
    object-fit: contain;
    border-radius: 20px;
    border: 3px solid var(--primary);
    box-shadow: 0 0 25px rgba(229, 29, 69, 0.35);
    animation: preloader-pulse 1.8s infinite ease-in-out;
}

.preloader-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: preloader-spin 0.9s linear infinite;
}

@keyframes preloader-pulse {
    0%, 100% {
        transform: scale(0.96);
        box-shadow: 0 0 20px rgba(229, 29, 69, 0.25);
    }
    50% {
        transform: scale(1.04);
        box-shadow: 0 0 35px rgba(229, 29, 69, 0.55);
    }
}

@keyframes preloader-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Floating contact Facebook button */
.floating-contact-bar .facebook-btn {
    background-color: #1877f2;
}

.floating-contact-bar .facebook-btn:hover {
    background-color: #166fe5;
    transform: scale(1.1);
}

/* =====================================================
   Privacy Policy & Terms of Service Styles
   ===================================================== */
.policy-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: var(--white);
    padding: 80px 0;
    border-bottom: 3px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(229, 29, 69, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.policy-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
    margin-bottom: 80px;
}

.policy-section {
    margin-bottom: 35px;
}

.policy-section h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-section h3 i {
    color: var(--primary);
}

.policy-section p {
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.policy-section ul {
    padding-left: 20px;
    color: #475569;
    font-size: 0.98rem;
    line-height: 1.7;
    margin-bottom: 15px;
}

.policy-section li {
    margin-bottom: 8px;
}

