.section-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 20px 0;
}

.section-head .eyebrow {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #b48a5a;
    margin-bottom: 14px;
}

.section-head .section-title {
    font-size: clamp(28px, 5vw, 48px);
    line-height: 1.2;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 18px;
}

.section-head .section-desc {
    font-size: clamp(15px, 2vw, 18px);
    line-height: 1.8;
    color: #666;
    margin: 0;
    max-width: 680px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .section-head {
        margin: 0 auto 40px;
        padding: 10px 0;
    }

    .section-head .eyebrow {
        font-size: 12px;
        letter-spacing: 1.5px;
    }

    .section-head .section-title {
        line-height: 1.3;
    }

    .section-head .section-desc {
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .section-head {
        margin: 0 auto 30px;
    }

    .section-head .section-desc {
        max-width: 100%;
    }
}


.testimonials-section{
  padding: 80px 0;
}

.testimonials-section .section-head{
  text-align: center;
  max-width: 860px;
  margin: 0 auto 50px;
}

.testimonials-section .section-desc{
  max-width: 760px;
  margin: 12px auto 0;
  color: var(--text-light);
  font-size: 16px;
  line-height: 1.9;
}

.review-grid-featured{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.review-card{
  background: var(--background-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.review-card:hover{
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(30, 115, 190, 0.18);
}

.review-top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.author{
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.avatar{
  width: 54px;
  height: 54px;
  min-width: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(30, 115, 190, 0.18);
}

.author-info{
  min-width: 0;
}

.author-info strong{
  display: block;
  color: var(--dark);
  font-size: 18px;
  line-height: 1.45;
  margin-bottom: 4px;
  word-break: break-word;
}

.author-info span{
  display: block;
  color: var(--text-light);
  font-size: 13px;
  line-height: 1.5;
}

.stars{
  color: var(--secondary-color);
  font-size: 15px;
  letter-spacing: 2px;
  white-space: nowrap;
  line-height: 1;
  padding-top: 4px;
}

.review-text{
  margin: 0 0 20px;
  color: var(--text-color);
  font-size: 15px;
  line-height: 1.95;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: calc(1.95em * 5);
}

.tag-row{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.tag-row span{
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--surface);
  color: var(--dark-soft);
  border: 1px solid var(--surface-2);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
}

.tag-row span i{
  color: var(--primary-color);
  font-size: 14px;
  line-height: 1;
}

@media (max-width: 991px){
  .review-grid-featured{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px){
  .testimonials-section{
    padding: 60px 0;
  }

  .review-grid-featured{
    grid-template-columns: 1fr;
  }

  .review-card{
    padding: 20px;
  }

  .review-top{
    flex-direction: column;
    align-items: flex-start;
  }

  .stars{
    letter-spacing: 1px;
    padding-top: 0;
  }

  .review-text{
    min-height: auto;
  }
}


@media (max-width: 560px) {
  .hero-main-title {
    font-size: 18px !important;
    line-height: 1.5;
  }
  
  .eyebrow {
    margin-top: 15px;
  }

  /* 1. إلغاء الإخفاء وإظهار جميع العناصر */
  .hero-card ul li:nth-child(n+3) {
    display: flex; /* أو block حسب تنسيقك */
  }

  /* 2. تحويل القائمة إلى حاوية بسكرول رأسي */
  .hero-card ul {
    display: block;            /* التأكد من أن العناصر تحت بعضها */
    max-height: 160px;         /* تحديد طول معين (يكفي لعرض عنصرين تقريباً) */
    overflow-y: auto;          /* تفعيل التمرير الرأسي */
    padding-right: 5px;        /* مساحة بسيطة لجهة اليمين */
  }

  /* تحسين شكل السكرول بار ليكون نحيفاً وغير مزعج */
  .hero-card ul::-webkit-scrollbar {
    width: 4px;
  }
  .hero-card ul::-webkit-scrollbar-thumb {
    background: #7366ff;
    border-radius: 10px;
  }

  .hero-card {
    margin-bottom: 50px;
  }

  .hero-card-title {
    font-size: 22px !important;
  }
}

.bt-trip-reviews-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background:
        radial-gradient(circle at 12% 18%, rgba(232, 196, 118, .18), transparent 26%),
        radial-gradient(circle at 88% 12%, rgba(67, 112, 92, .12), transparent 28%),
        linear-gradient(180deg, #fff 0%, #fbfaf7 100%);
}

.bt-trip-waves {
    position: absolute;
    left: 0;
    width: 100%;
    height: 95px;
    pointer-events: none;
    background-repeat: repeat-x;
    background-size: 1200px 95px;
    opacity: .78;
}

.bt-trip-waves-top {
    top: -1px;
    background-image: url("data:image/svg+xml,%3Csvg width='1200' height='95' viewBox='0 0 1200 95' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 C150 75 300 -10 450 30 C600 70 750 5 900 30 C1050 55 1120 35 1200 20 L1200 0 L0 0 Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

.bt-trip-waves-bottom {
    bottom: -1px;
    transform: rotate(180deg);
    background-image: url("data:image/svg+xml,%3Csvg width='1200' height='95' viewBox='0 0 1200 95' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 C150 75 300 -10 450 30 C600 70 750 5 900 30 C1050 55 1120 35 1200 20 L1200 0 L0 0 Z' fill='%23ffffff'/%3E%3C/svg%3E");
}

.bt-trip-section-head {
    position: relative;
    z-index: 2;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.bt-trip-review-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin-top: 34px;
}

.bt-trip-review-card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(17, 24, 39, .07);
    box-shadow: 0 16px 45px rgba(15, 23, 42, .07);
    padding: 20px;
    min-height: 292px;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.bt-trip-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 65px rgba(15, 23, 42, .12);
    border-color: rgba(52, 224, 161, .38);
}

.bt-trip-review-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.bt-trip-author {
    display: flex;
    align-items: center;
    min-width: 0;
    gap: 12px;
}

.bt-trip-avatar {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #e94d88, #f5b301);
    color: #fff;
    font-weight: 900;
    font-size: 20px;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .55);
}

.bt-trip-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bt-trip-author-info {
    min-width: 0;
}

.bt-trip-name-line {
    display: flex;
    align-items: center;
    gap: 7px;
    min-width: 0;
}

.bt-trip-name-line strong {
    display: block;
    max-width: 175px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #111827;
    font-size: 15px;
}

.bt-trip-author-info > span {
    display: block;
    margin-top: 4px;
    color: #7b7f8a;
    font-size: 12px;
    font-weight: 700;
}

.bt-trip-verified {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.bt-trip-verified img {
    width: 17px;
    height: 17px;
    display: block;
}

.bt-trip-verified i {
    color: #1a73e8;
    font-size: 17px;
    line-height: 1;
}

.bt-trip-source-logo {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    display: inline-grid;
    place-items: center;
    border-radius: 50%;
    background: #34e0a1;
    overflow: hidden;
    box-shadow: 0 12px 26px rgba(52, 224, 161, .25);
}

.bt-trip-source-logo img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    display: block;
}

.bt-trip-stars {
    color: #f5b301;
    font-size: 17px;
    letter-spacing: 1px;
    margin: 8px 0 12px;
}

.bt-trip-review-text {
    color: #1f2937;
    line-height: 1.75;
    font-size: 14px;
    margin: 0;
    min-height: 74px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bt-trip-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.bt-trip-read-more,
.bt-trip-source-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    border-radius: 999px;
    padding: 8px 13px;
    font-size: 12px;
    line-height: 1;
    text-decoration: none;
    font-weight: 900;
}

.bt-trip-read-more {
    border: 1px solid #111827;
    background: #111827;
    color: #fff;
    cursor: pointer;
}

.bt-trip-read-more:hover {
    background: #8a6a22;
    border-color: #8a6a22;
    color: #fff;
}

.bt-trip-source-link {
    background: rgba(178, 145, 80, .10);
    color: #8a6a22;
    border: 1px solid rgba(178, 145, 80, .22);
}

.bt-trip-source-link:hover {
    background: #fff;
    color: #111827;
    border-color: rgba(17, 24, 39, .18);
}

.bt-trip-tag-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.bt-trip-tag-row span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 10px;
    border-radius: 999px;
    background: #f5f7f4;
    color: #4b5563;
    font-size: 12px;
    font-weight: 800;
}

.bt-trip-tag-row i {
    color: #1a73e8;
}

/* Modal */
.bt-trip-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.bt-trip-modal.active {
    display: flex;
}

.bt-trip-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .68);
    backdrop-filter: blur(5px);
}

.bt-trip-modal-box {
    position: relative;
    z-index: 1;
    width: min(720px, 100%);
    max-height: 86vh;
    overflow: auto;
    border-radius: 28px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .28);
    padding: 24px;
}

.bt-trip-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: #f3f4f6;
    color: #111827;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.bt-trip-modal-head {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-right: 45px;
    margin-bottom: 15px;
}

.bt-trip-modal-head strong {
    display: block;
    font-size: 18px;
    color: #111827;
}

.bt-trip-modal-meta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 6px;
    color: #6b7280;
    font-size: 13px;
    font-weight: 800;
}

#btTripModalStars {
    color: #f5b301;
    letter-spacing: 1px;
}

.bt-trip-modal-body {
    color: #1f2937;
    line-height: 1.9;
    font-size: 15px;
    white-space: pre-line;
}

body.bt-trip-modal-open {
    overflow: hidden;
}

@media (max-width: 991px) {
    .bt-trip-review-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .bt-trip-reviews-section {
        padding: 60px 0;
    }

    .bt-trip-review-grid {
        grid-template-columns: 1fr;
    }

    .bt-trip-modal-box {
        padding: 20px;
        border-radius: 22px;
    }
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.destination-copy {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    background: rgba(0, 0, 0, 0.48);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 18px;
    padding: 14px 18px;
    z-index: 2;
}

.destination-copy a {
    text-decoration: none;
}

.destination-copy h3 {
    margin: 0;
    color: #fff;
}


/* =========================
   Search Section
========================= */
.trust-bar {
    position: relative;
    z-index: 20;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 0;
}

.trust-bar .container {
    position: relative;
    z-index: 30;
}

.trust-bar .bt-search-wrap {
    position: relative;
    z-index: 30;
    transform: translateY(-45%);
}

.trust-bar .bt-search-form {
    position: relative;
    z-index: 40;
}

/* =========================
   Destinations Section Background
========================= */
.destinations-home {
    position: relative;
    overflow: hidden;
    margin-top: 0 !important;
    padding: 95px 0 110px;
    background:
        radial-gradient(circle at 12% 18%, rgba(207, 160, 92, 0.16), transparent 28%),
        radial-gradient(circle at 88% 10%, rgba(30, 115, 190, 0.10), transparent 30%),
        linear-gradient(135deg, #fffaf2 0%, #f7fbff 52%, #eef7f4 100%);
    isolation: isolate;
}

/* دائرة كبيرة يمين أعلى */
.destinations-home::before {
    content: "";
    position: absolute;
    top: -70px;
    right: -110px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: rgba(207, 160, 92, 0.10);
    z-index: -1;
}

/* انحناءة سفلية */
.destinations-home::after {
    content: "";
    position: absolute;
    bottom: -120px;
    left: -5%;
    width: 110%;
    height: 190px;
    background: #ffffff;
    border-radius: 50% 50% 0 0;
    z-index: -1;
    opacity: 0.95;
}

/* عناصر زخرفية إضافية */
.destinations-home .container {
    position: relative;
    z-index: 2;
}

.destinations-home .container::before {
    content: "";
    position: absolute;
    left: -90px;
    bottom: 30px;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: rgba(30, 115, 190, 0.08);
    z-index: -1;
}

.destinations-home .container::after {
    content: "";
    position: absolute;
    right: 12%;
    top: 10px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.4);
    z-index: -1;
}

/* عنوان السكشن */
.destinations-home .section-head {
    position: relative;
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
}

.destinations-home .section-head::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -22px;
    transform: translateX(-50%);
    width: 90px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(207, 160, 92, 0.75), transparent);
}

.destinations-home .destination-grid {
    position: relative;
    z-index: 2;
}

.bt-trip-video-wrap {
    margin: 0 0 34px;
    padding: 24px;
    border-radius: 28px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid rgba(226, 232, 240, .9);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
}

.bt-trip-video-head {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 22px;
}

.bt-trip-video-head h3 {
    margin: 6px 0 8px;
    font-size: 28px;
    line-height: 1.25;
    font-weight: 800;
    color: #0f172a;
}

.bt-trip-video-head p {
    margin: 0;
    color: #64748b;
    line-height: 1.8;
}

.bt-trip-video-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.bt-trip-video-card {
    overflow: hidden;
    border-radius: 24px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    box-shadow: 0 18px 38px rgba(15, 23, 42, .07);
    transition: transform .25s ease, box-shadow .25s ease;
}

.bt-trip-video-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 55px rgba(15, 23, 42, .12);
}

.bt-trip-video-thumb {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0f172a;
}

.bt-trip-video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease, opacity .35s ease;
}

.bt-trip-video-card:hover .bt-trip-video-thumb img {
    transform: scale(1.06);
    opacity: .88;
}

.bt-trip-video-play {
    position: absolute;
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: 58px;
    height: 58px;
    border-radius: 999px;
    background: #ef4444;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
    box-shadow: 0 16px 34px rgba(239, 68, 68, .35);
}

.bt-trip-video-duration {
    position: absolute;
    right: 10px;
    bottom: 10px;
    padding: 5px 9px;
    border-radius: 999px;
    background: rgba(15, 23, 42, .82);
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
}

.bt-trip-video-body {
    padding: 16px 16px 10px;
}

.bt-trip-video-body h4 {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 800;
    color: #0f172a;
}

.bt-trip-video-body h4 a {
    color: inherit;
    text-decoration: none;
}

.bt-trip-video-body h4 a:hover {
    color: #ef4444;
}

.bt-trip-video-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
    color: #64748b;
    font-size: 12px;
    font-weight: 600;
}

.bt-trip-video-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.bt-trip-video-modal-btn {
    width: calc(100% - 32px);
    margin: 0 16px 16px;
    border: none;
    border-radius: 999px;
    padding: 11px 16px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
    box-shadow: 0 12px 26px rgba(239, 68, 68, .22);
}

.bt-trip-video-modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(239, 68, 68, .30);
}

.bt-video-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 18px;
}

.bt-video-lightbox.is-open {
    display: flex;
}

.bt-video-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, .78);
    backdrop-filter: blur(8px);
}

.bt-video-lightbox-dialog {
    position: relative;
    z-index: 2;
    width: min(960px, 100%);
    border-radius: 24px;
    background: #ffffff;
    padding: 18px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .35);
}

.bt-video-lightbox-dialog h3 {
    margin: 0 44px 14px 0;
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
}

.bt-video-lightbox-close {
    position: absolute;
    top: 12px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: none;
    background: #f1f5f9;
    color: #0f172a;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
}

.bt-video-lightbox-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 18px;
    background: #020617;
}

.bt-video-lightbox-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 991px) {
    .bt-trip-video-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .bt-trip-video-wrap {
        padding: 16px;
        border-radius: 22px;
    }

    .bt-trip-video-grid {
        grid-template-columns: 1fr;
    }

    .bt-trip-video-head h3 {
        font-size: 23px;
    }

    .bt-video-lightbox-dialog {
        padding: 14px;
        border-radius: 20px;
    }

.footer-top-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px 30px;
    margin-bottom: 34px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 24px;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.22),
        rgba(255, 255, 255, 0.12)
    );
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

}
