:root {
    --primary: #04b1b8;
    --dark: #062C2E;
    --muted: #6A6A6A;
    --gold: #F7C873;
    --radius: 14px;
    --accent: #0d6efd;
}

* {
    box-sizing: border-box
}

a {
    text-decoration: none;
}

body {
    font-family: Inter, system-ui, Arial, sans-serif;
    color: var(--dark);
    background: #f7fbfd
}

/* ========== NAVBAR - محسّن ========== */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: #fff;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid #e9f3f4;
}

.navbar .nav-link {
    color: #666;
    font-weight: 500;
    padding: 8px 16px !important;
    margin: 0 4px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    font-size: 17px;
}

.navbar .nav-link:hover {
    color: var(--primary);
    background: rgba(4, 177, 184, 0.08);
}

.navbar .nav-link.active {
    color: var(--primary) !important;
    font-weight: 600;
    background: rgba(4, 177, 184, 0.12);
}

/* Underline effect للـ active link */
.navbar .nav-link.active::after {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

.brand {
    color: var(--primary);
    font-weight: 800;
    width: 12%;
    transition: transform 0.3s ease;
}

.brand:hover {
    transform: scale(1.05);
}

@media screen and (max-width: 990px) {
    .brand {
        width: 25% !important
    }
    
    .navbar .nav-link {
        padding: 12px 16px !important;
        margin: 4px 0;
    }
}

@media screen and (max-width: 400px) {
    .brand {
        width: 35% !important
    }
}

/* HERO */
.hero {
    position: relative;
    height: 78vh;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -2;
}

/* Dark overlay فوق الفيديو */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: -1;
}

/* Content Overlay Box */
.hero .overlay {
    background: linear-gradient(180deg, rgba(4, 177, 184, 0.14), rgba(4, 177, 184, 0.06));
    backdrop-filter: blur(2px);
    padding: 48px;
    border-radius: 18px;
}

/* Text */
.hero h1 {
    color: #fff;
    font-weight: 800;
}

.hero p {
    color: #f1fbfc;
}

/* Responsive */
@media screen and (max-width: 400px) {
    .hero .overlay {
        padding: 24px;
    }

    .hero .overlay a {
        font-size: 12px;
    }

    .hero h1 {
        font-size: 25px;
    }

    .hero p {
        font-size: 18px;
    }

    .navbar-toggler-icon {
        width: 1em;
        height: 1em;
    }

}

/* Cards */
.trip-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #e9f3f4;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(4, 177, 184, 0.15);
}

.trip-card img {
    height: 240px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.3s ease;
}

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

.price {
    color: var(--primary);
    font-weight: 800;
}

/* Wizard */
.wizard-step.bg-primary {
    background: var(--primary) !important;
    color: white !important;
}

.wizard-step {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    color: var(--primary);
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700;
    transition: 0.2s;
}

.wizard-line {
    height: 6px;
    background: #dff6f6;
    border-radius: 8px;
}

.option-card {
    border-radius: 12px;
    background: #fff;
    padding: 10px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all .15s;
}

.option-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(4, 177, 184, 0.06);
}

.option-card.selected {
    border-color: var(--primary);
    box-shadow: 0 12px 30px rgba(4, 177, 184, 0.08);
}

/* Slider Control Color */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1);
}

.step.person img {
    width: 100%;
    height: 190px;
}

@media screen and (max-width: 995px) {
    .step.person img {
        height: 100px;
    }
}

@media screen and (max-width: 675px) {
    .step.person img {
        height: 80px;
    }
}

.offers-wrapper {
    position: relative;
}

.offers-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 5px 20px 5px;
}

.offers-scroll::-webkit-scrollbar {
    height: 8px;
}

.offers-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.offers-scroll::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 10px;
}

.offers-scroll::-webkit-scrollbar-thumb:hover {
    background: #03999f;
}

.offer {
    min-width: 300px;
    max-width: 320px;
    background: white;
    border-radius: 12px;
    border: 1px solid #eef8f9;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(4, 177, 184, 0.15);
}

.offer-body {
    background: white;
}

.offers-wrapper {
    position: relative;
}

.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
}

.arrow i {
    font-size: 16px;
}

.arrow.left {
    left: -18px;
}

.arrow.right {
    right: -18px;
}

.arrow:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

/* موبايل */
@media (max-width: 768px) {
    .arrow {
        display: none;
    }
}

.offer-media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.offer-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.offer:hover .offer-media img {
    transform: scale(1.05);
}

.badge-discount {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 13px;
    z-index: 2;
    letter-spacing: 0.5px;
}

.price-old {
    text-decoration: line-through;
    color: #999;
    font-size: 0.95rem;
    opacity: 0.8;
}

.price-new {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.25rem;
}

.price-row {
    display: flex;
    gap: 10px;
    align-items: center;
}



/* ========================================
   الإضافة للـ CSS - ضيفها في ملف style.css
   ======================================== */

/* ========== FEEDBACK SECTION ========== */
.feedback-slider-wrapper {
    overflow-x: auto;
    padding-bottom: 15px;
}

.feedback-slider {
    display: flex;
    gap: 20px;
    scroll-behavior: smooth;
}

.feedback-card {
    flex: 0 0 320px;
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.feedback-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #06d6de);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.feedback-card:hover::before {
    transform: scaleX(1);
}

.feedback-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(4, 177, 184, 0.15);
    border-color: var(--primary);

}

.feedback-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #06d6de);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(4, 177, 184, 0.25);
}

.feedback-info {
    flex: 1;
}

.feedback-card .name {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1.1rem;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.feedback-card .rating {
    color: #ffa500;
    margin: 0;
    font-size: 1.05rem;
    letter-spacing: 2px;
}

.feedback-card .comment {
    font-size: 1rem;
    color: #000000;
    line-height: 1.7;
    margin-top: 12px;
    position: relative;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.feedback-card .comment::before {
    content: '"';
    position: absolute;
    top: -8px;
    left: -8px;
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.15;
    font-family: Georgia, serif;
}

#feedback .btn {
    background-color: var(--primary);
    width: 12%;
    transition: all 0.3s ease;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
}

#feedback .btn:hover {
    background-color: #03999f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 177, 184, 0.3);
}

@media screen and (max-width: 775px) {
    #feedback .btn {
        width: 25%;
    }
    
    .feedback-card {
        flex: 0 0 280px;
    }
}



/* ========== FOOTER ==========  */

footer {
    background: #041217;
    color: #cfeff1
}

footer a {
    color: var(--primary);
    transition: color 0.3s ease;
}

footer a:hover {
    color: #06d4dd;
}

@media(max-width:767px) {
    .hero {
        height: 56vh;
        padding: 28px
    }

    .hero .overlay {
        padding: 22px
    }
}

.map-container {
    width: 80%;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin: auto;
    border: var(--primary) 5px solid;
}

@media screen and (max-width: 550px) {
    .map-container {
        width: 90%;
        height: 350px;
    }
}


/************************************** TRIPS PAGE **************************************/

/* ========== HERO TRIPS ========== */
.hero-trips {
    position: relative;
    height: 50vh;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url(../images/sean-oulashin.jpg);
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-trips::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(6, 44, 46, 0.55), rgba(6, 44, 46, 0.75));
    z-index: 0;
}

.hero-trips h1 {
    position: relative;
    font-size: 32px;
    font-weight: 700;
    margin-inline: -100px;
}

@media screen and (max-width: 768px) {
    .hero-trips h1 {
        font-size: 28px;
        margin-inline: -95px;
    }
}

/* ========== DESCRIPTION SECTION ========== */
.desc {
    background-color: #effaff;
    color: #fff;
    text-align: center;
    padding-block: 100px;
}

.desc h5 {
    font-size: 20px;
}

.text-trip {
    width: 60%;
    margin: auto;
    font-size: 16px;
    line-height: 1.9;
    opacity: .95;
}

@media (max-width: 768px) {
    .text-trip {
        width: 90%;
    }
}

/* ========== GRID WRAPPER ========== */
.bt-grid {
    margin-top: 40px;
    font-family: Inter, system-ui, Arial, sans-serif;
}

/* ========== TRIP TILE ========== */
.bt-grid .tile {
    position: relative;
    display: block;
    min-height: 240px;
    height: 350px;
    border-radius: var(--radius);
    overflow: hidden;
    background: #000;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.18);
    transition: transform .35s ease, box-shadow .35s ease;
}

.bt-grid .tile:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

/* IMAGE */
.bt-grid .tile .media {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .6s ease;
}

.bt-grid .tile:hover .media {
    transform: scale(1.08);
}

/* DARK GRADIENT */
.bt-grid .tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 44, 46, 0.85), rgba(6, 44, 46, 0.15));
    z-index: 1;
}

/* CONTENT */
.bt-grid .tile .overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 26px;
    pointer-events: none;
}

.bt-grid .tile h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: .3px;
}

.bt-grid .tile p {
    font-size: 14px;
    margin: 0;
    opacity: .9;
    max-width: 85%;
}

/* META */
.bt-grid .meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 14px;
}

.bt-grid .meta .badge {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    border-radius: 999px;
    padding: .35rem .6rem;
    font-weight: 600;
}

/* SIZE VARIANTS */
.tile.h-lg {
    min-height: 340px;
}

.tile.h-md {
    min-height: 280px;
}

/* ========== SEARCH BAR ========== */
.search {
    right: 100px;
}

.search input.form-control:focus {
    box-shadow: 0 0 0 .25rem rgba(4, 177, 184, .25);
}

#q {
    border-radius: 999px;
    padding-left: 18px;
}

/* ========== EMPTY STATE ========== */
#empty {
    font-size: 18px;
    opacity: .7;
}

/* ========== MOBILE ========== */
@media (max-width: 576px) {
    .bt-grid .tile {
        min-height: 200px;
    }

    .bt-grid .tile h3 {
        font-size: 18px;
    }
}

/* reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}


/************************************** TRIP DETAILS PAGE **************************************/

/* ========== LOADING STATE ========== */
.loading-state {
    text-align: center;
    padding: 100px 20px;
}

.loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

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

/* ========== TRIP DETAIL HERO ========== */
.trip-detail-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.trip-detail-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(6, 44, 46, 0.85), rgba(6, 44, 46, 0.3));
    z-index: 1;
}

.trip-hero-content {
    position: relative;
    z-index: 2;
    color: white;
    width: 100%;
    padding: 40px 0;
}

.trip-detail-hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.trip-detail-hero .subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* ========== DETAILS SECTION ========== */
.details-section {
    margin-top: -80px;
    position: relative;
    z-index: 3;
}

.details-card {
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    padding: 40px;
}

/* ========== INFO BADGES ========== */
.info-badge {
    background: #effaff;
    color: var(--primary);
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-right: 15px;
    margin-bottom: 15px;
    border: 2px solid var(--primary);
    transition: all 0.3s ease;
}

.info-badge:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.info-badge i {
    font-size: 1.1rem;
}

/* ========== PRICE BOX ========== */
.price-box {
    background: linear-gradient(135deg, var(--primary), #02868c);
    color: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(4, 177, 184, 0.3);
}

.price-box .price-label {
    opacity: 0.9;
    font-size: 0.95rem;
}

.price-box .price-amount {
    font-size: 3rem;
    font-weight: 800;
    margin: 10px 0;
}

.btn-book {
    background: white;
    color: var(--primary);
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-book:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
    color: var(--primary);
}

/* ========== SECTION TITLES ========== */
.detail-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.detail-section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

/* ========== DESCRIPTION ========== */
.description-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
}

/* ========== HIGHLIGHT BOX ========== */
.highlight-box {
    background: #f0fcfd;
    border-left: 4px solid var(--primary);
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
}

/* ========== FADE IN ANIMATION ========== */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

/* ========== RESPONSIVE - TRIP DETAILS ========== */
@media (max-width: 768px) {
    .trip-detail-hero h1 {
        font-size: 2rem;
    }

    .trip-detail-hero .subtitle {
        font-size: 1rem;
    }

    .details-card {
        padding: 25px;
    }

    .price-box .price-amount {
        font-size: 2.5rem;
    }

    .info-badge {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}

/* ========== PAYMENT PAGE STYLES ========== */
.checkout-box {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.order-summary {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 100px;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(4, 177, 184, 0.15);
}

.btn-primary {
    background: var(--primary);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #03999f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(4, 177, 184, 0.3);
}

/* Back to top button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(4, 177, 184, 0.3);
}

.back-to-top:hover {
    background: #03999f;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(4, 177, 184, 0.4);
}

.back-to-top.show {
    display: flex;
}
.childrenYaers {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);

}



    /* ========================================
       SUCCESS PAGE STYLES - مخصوص للصفحة دي
       ======================================== */
    
    .success-page {
      min-height: 75vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 60px 20px;
    }

    /* أنيميشن الدائرة الخضراء */
    .success-animation {
      margin-bottom: 40px;
    }

    .checkmark-circle {
      width: 130px;
      height: 130px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--primary), #06d6de);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 15px 50px rgba(4, 177, 184, 0.35);
      animation: scaleIn 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      z-index: 11111;
      position: relative;
    }


    @keyframes scaleIn {
      0% {
        opacity: 0;
        transform: scale(0);
      }
      100% {
        opacity: 1;
        transform: scale(1);
      }
    }

    /* علامة الصح */
    .checkmark {
      width: 65px;
      height: 65px;
      position: relative;
    }

    .checkmark::after {
      content: '';
      position: absolute;
      left: 18px;
      top: 15px;
      width: 20px;
      height: 38px;
      border: solid white;
      border-width: 0 6px 6px 0;
      transform: rotate(45deg);
      animation: checkmark-draw 0.5s ease 0.4s both;
    }

    @keyframes checkmark-draw {
      0% {
        height: 0;
        opacity: 0;
      }
      100% {
        height: 38px;
        opacity: 1;
      }
    }

    /* الكارت الأبيض */
    .success-card {
      background: white;
      border-radius: 24px;
      padding: 50px 45px;
      max-width: 750px;
      width: 100%;
      box-shadow: 0 15px 60px rgba(0, 0, 0, 0.12);
      animation: slideUp 0.7s ease 0.3s both;
      margin-top: -100px;
    }

        @media screen and (max-width: 768px) {
        .checkmark-circle {
            width: 90px;
            height: 90px;
        }
        .success-card {
            margin-top: -70px;
        }

    }

    @keyframes slideUp {
      0% {
        opacity: 0;
        transform: translateY(40px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .success-title {
      font-size: 2.8rem;
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 12px;
      line-height: 1.2;
    }

    .success-subtitle {
      font-size: 1.3rem;
      color: #777;
      margin-bottom: 0;
    }

    /* تفاصيل الحجز */
    .booking-details {
      background: linear-gradient(135deg, #f8fcfd 0%, #effafc 100%);
      border-radius: 16px;
      padding: 30px;
      margin: 35px 0;
      border: 2px solid #dff3f5;
    }

    .detail-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 0;
      border-bottom: 1px solid #e0f2f4;
    }

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

    .detail-label {
      font-weight: 600;
      color: #555;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 1.05rem;
    }

    .detail-label i {
      color: var(--primary);
      width: 22px;
      font-size: 1.1rem;
    }

    .detail-value {
      font-weight: 700;
      color: var(--dark);
      text-align: right;
      font-size: 1.05rem;
    }

    /* قسم الخطوات القادمة */
    /* .next-steps {
      background: linear-gradient(135deg, #fffef5 0%, #fffbeb 100%);
      border-radius: 16px;
      padding: 30px;
      border-left: 5px solid var(--gold);
      margin-top: 30px;
    }

    .next-steps h5 {
      font-weight: 800;
      color: var(--dark);
      margin-bottom: 20px;
      font-size: 1.35rem;
    }

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

    .steps-list li {
      padding: 14px 0 14px 38px;
      position: relative;
      color: #444;
      line-height: 1.7;
      font-size: 1.02rem;
    }

    .steps-list li::before {
      content: '✓';
      position: absolute;
      left: 0;
      top: 14px;
      width: 26px;
      height: 26px;
      background: var(--primary);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: bold;
      box-shadow: 0 3px 10px rgba(4, 177, 184, 0.3);
    } */

    /* الأزرار */
    .action-buttons {
      display: flex;
      gap: 18px;
      margin-top: 35px;
    }

    .action-buttons .btn {
      flex: 1;
      padding: 18px 30px;
      font-weight: 700;
      border-radius: 14px;
      font-size: 1.1rem;
      transition: all 0.3s ease;
      border: none;
    }

    .action-buttons .btn-primary {
      background: var(--primary);
      box-shadow: 0 6px 20px rgba(4, 177, 184, 0.3);
    }

    .action-buttons .btn-primary:hover {
      background: #03999f;
      transform: translateY(-3px);
      box-shadow: 0 10px 30px rgba(4, 177, 184, 0.4);
    }

    .action-buttons .btn-outline-primary {
      border: 3px solid var(--primary);
      color: var(--primary);
      background: white;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    }

    .action-buttons .btn-outline-primary:hover {
      background: var(--primary);
      color: white;
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(4, 177, 184, 0.3);
    }

    /* Alert تحذير الإيميل */
    .success-card .alert-info {
      background: #e8f5f7;
      border: 2px solid var(--primary);
      border-radius: 14px;
      display: flex;
      gap: 16px;
      align-items: flex-start;
      padding: 20px;
    }

    .success-card .alert-info i {
      font-size: 1.6rem;
      color: var(--primary);
      margin-top: 2px;
    }

    .success-card .alert-info strong {
      font-size: 1.1rem;
      color: var(--dark);
    }

    /* Contact Support */
    .contact-support {
      margin-top: 30px;
      padding-top: 25px;
      border-top: 2px solid #f0f0f0;
    }

    .contact-support p {
      margin: 0;
      color: #888;
      font-size: 0.98rem;
    }

    .contact-support a {
      color: var(--primary);
      font-weight: 600;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .contact-support a:hover {
      color: #03999f;
      text-decoration: underline;
    }

    /* Responsive للموبايل */
    @media (max-width: 768px) {
      .success-page {
        padding: 40px 15px;
      }

      .success-title {
        font-size: 2.2rem;
      }

      .success-subtitle {
        font-size: 1.1rem;
      }

      .success-card {
        padding: 35px 25px;
      }




      .action-buttons {
        flex-direction: column;
      }

      .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
      }

      .detail-value {
        text-align: left;
        padding-left: 32px;
      }

      .booking-details,
      .next-steps {
        padding: 20px;
      }
    }