/* ==========================================================================
   ToriSum — Online Travel Agency
   ========================================================================== */

:root {
  --primary: #0b5fff;
  --primary-dark: #073b9c;
  --primary-light: #e8f0ff;
  --accent: #ff7a32;
  --accent-dark: #e0621d;
  --dark: #0b1727;
  --text-muted: #6b7688;
  --bg-soft: #f4f7fc;
  --radius: 16px;
  --shadow-soft: 0 10px 30px rgba(11, 23, 39, 0.08);
  --shadow-hover: 0 20px 40px rgba(11, 95, 255, 0.18);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  color: #333c4d;
  background: #fff;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  color: var(--dark);
  font-weight: 700;
}

a {
  text-decoration: none;
  transition: var(--transition);
}
img {
  max-width: 100%;
}

::selection {
  background: var(--primary);
  color: #fff;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: #eef2f9;
}
::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 10px;
}

.section {
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}

.bg-light-soft {
  background: #cdcfd224;
}
.bg-light-soft-2 {
  background: linear-gradient(
    135deg,
    rgba(255, 122, 50, 0.08) 0%,
    #ffffff 100%
  );
}
.how-section {
  background: linear-gradient(135deg, #eaf5ff 0%, #ffffff 100%);
}
.apply-steps-section {
  background: linear-gradient(135deg, #fff3ec 0%, #fffaf7 100%);
}
#testimonials {
  background: linear-gradient(135deg, #fff3ec 0%, #f4f8ff 100%);
}

/* ===================== Decorative section shapes ===================== */
.section > .container,
.offer-section > .container,
.newsletter-section > .container,
footer > .container {
  position: relative;
  z-index: 1;
}

.shape {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.shape-blob {
  border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  opacity: 0.6;
  animation: blobFloat 11s ease-in-out infinite;
}
.shape-blob.blue {
  background: linear-gradient(135deg, var(--primary-light), transparent 70%);
}
.shape-blob.orange {
  background: linear-gradient(135deg, #ffe4d1, transparent 70%);
}
.shape-blob.white {
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.16),
    transparent 70%
  );
}
@keyframes blobFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(8deg);
  }
}

.shape-dots {
  opacity: 0.6;
  background-image: radial-gradient(
    var(--primary-light) 2px,
    transparent 2.5px
  );
  background-size: 14px 14px;
}
.shape-dots.on-dark {
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.35) 2px,
    transparent 2.5px
  );
}

.shape-ring {
  border: 2px dashed var(--primary-light);
  border-radius: 50%;
  animation: shapeSpin 34s linear infinite;
}
.shape-ring.on-dark {
  border-color: rgba(255, 255, 255, 0.18);
}
@keyframes shapeSpin {
  to {
    transform: rotate(360deg);
  }
}

.shape-icon {
  color: var(--primary-light);
  opacity: 0.7;
  animation: floatY 6s ease-in-out infinite;
}
.shape-icon.on-dark {
  color: rgba(255, 255, 255, 0.15);
}
.shape-icon.orange {
  color: #ffe4d1;
}

.shape-img {
  width: auto;
  height: auto;
  max-width: none;
  opacity: 0.5;
  animation: floatY 8s ease-in-out infinite;
}
.shape-img.on-dark {
  opacity: 0.16;
  filter: brightness(0) invert(1);
}
.shape-img.flip {
  transform: scaleX(-1);
}

/* ===================== Section shape positions ===================== */
.shape-testi-1 {
  width: 140px;
  height: 140px;
  top: 10%;
  right: 10%;
}
.shape-testi-2 {
  width: 90px;
  height: 90px;
  bottom: 12%;
  left: 4%;
}
.shape-testi-3 {
  width: 100px;
  height: 100px;
  top: 18%;
  left: 12%;
}
.shape-testi-4 {
  bottom: 8%;
  right: 18%;
  font-size: 2rem;
}
.shape-testi-5 {
  width: 42px;
  top: 14%;
  right: 22%;
}

.shape-latest-1 {
  width: 235px;
  top: 75px;
  right: 3%;
}
.shape-latest-2 {
  width: 252px;
  left: 35px;
  top: 8%;
}

.shape-destinations-1 {
  width: 130px;
  height: 130px;
  top: 40px;
  left: 5%;
}
.shape-destinations-2 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: 4%;
}
.shape-destinations-3 {
  width: 200px;
  height: 200px;
  top: -50px;
  left: 4%;
}

.shape-stats-1 {
  width: 150px;
  top: 22%;
  left: 8%;
}
.shape-stats-2 {
  width: 130px;
  bottom: 18%;
  right: 20%;
}

.shape-packages-1 {
  width: 330px;
  top: 2%;
  left: 25%;
}
.shape-packages-2 {
  width: 55px;
  bottom: 40px;
  right: 24%;
}

.shape-offers-1 {
  width: 140px;
  top: 10px;
  right: 22%;
}
.shape-offers-2 {
  width: 50px;
  bottom: 20px;
  left: 22%;
}

.shape-how-1 {
  width: 140px;
  top: 12%;
  left: 18%;
}
.shape-how-2 {
  width: 130px;
  bottom: 15%;
  right: 20%;
}

.shape-newsletter-1 {
  width: 60px;
  top: 15px;
  left: 32%;
}
.shape-newsletter-2 {
  width: 130px;
  bottom: 5px;
  right: 24%;
}

.shape-footer-1 {
  width: 200px;
  top: 8%;
  right: 5%;
}
.shape-footer-3 {
  width: 330px;
  top: 40%;
  left: 15px;
  transform: translateY(-50%);
  animation: none;
}

/* ----- extra shape positions (converted from inline styles) ----- */
.shape-latest-3 {
  width: 220px;
  height: 220px;
  top: -60px;
  right: 6%;
}
.shape-latest-4 {
  width: 110px;
  height: 110px;
  bottom: 30px;
  left: 4%;
}
.shape-hajjumrah-1 {
  width: 190px;
  height: 190px;
  top: -50px;
  right: 6%;
}
.shape-hajjumrah-2 {
  bottom: 10%;
  left: 8%;
  font-size: 2.2rem;
}
.shape-packages-3 {
  width: 120px;
  height: 120px;
  top: 50px;
  right: 5%;
}
.shape-packages-4 {
  width: 210px;
  height: 210px;
  bottom: -40px;
  left: 3%;
}
.shape-stats-3 {
  top: 50px;
  right: 8%;
  font-size: 3.4rem;
}
.shape-stats-4 {
  width: 100px;
  height: 100px;
  bottom: 40px;
  left: 3%;
}
.shape-offers-3 {
  top: 10px;
  left: 4%;
  font-size: 3rem;
}
.shape-offers-4 {
  width: 90px;
  height: 90px;
  bottom: 10px;
  right: 6%;
}
.shape-how-3 {
  width: 190px;
  height: 190px;
  top: -50px;
  right: 6%;
}
.shape-how-4 {
  width: 110px;
  height: 110px;
  bottom: 20px;
  left: 4%;
}
.shape-testi-6 {
  top: 40px;
  left: 6%;
  font-size: 3.2rem;
}
.shape-testi-7 {
  width: 200px;
  height: 200px;
  bottom: -50px;
  right: 5%;
}
.shape-newsletter-3 {
  width: 220px;
  height: 220px;
  top: -60px;
  right: 8%;
}
.shape-newsletter-4 {
  width: 110px;
  height: 110px;
  bottom: -20px;
  left: 6%;
}

@media (max-width: 767.98px) {
  .shape {
    display: none;
  }
}

.section-head {
  max-width: 640px;
  margin: 0 auto 50px;
}
.section-head .sub-title {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 1px;
  background: var(--primary-light);
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 14px;
  font-size: 0.85rem;
}
.section-head .sub-title.light {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.section-head h2 {
  font-size: 2.3rem;
  margin-bottom: 12px;
}
.section-head p {
  color: var(--text-muted);
  margin: 0;
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  border: none;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(255, 122, 50, 0.35);
  transition: var(--transition);
}
.btn-accent:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255, 122, 50, 0.45);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border: none;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transition: var(--transition);
}
.btn-whatsapp:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.45);
}
.btn-whatsapp i {
  margin-right: 4px;
}

/* ===================== Inner page banner ===================== */
.page-banner {
  position: relative;
  padding: 175px 0 175px;
  background-color: #07142d;
  background-image: linear-gradient(
    rgba(7, 20, 45, 0.72),
    rgba(7, 20, 45, 0.72)
  );
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.page-banner-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 20, 45, 0.72);
  z-index: 1;
}

.page-banner-content {
  position: relative;
  z-index: 2;
}
.page-banner h1 {
  color: #fff;
  font-size: 2.6rem;
  margin-bottom: 14px;
}
.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #dbe4f3;
}
.page-breadcrumb a {
  color: #fff;
  font-weight: 500;
}
.page-breadcrumb a:hover {
  color: var(--accent);
}
.page-breadcrumb i {
  font-size: 0.75rem;
  color: var(--accent);
}
.page-breadcrumb span {
  color: #b9c6dc;
}

/* ===================== Tour details tabs/accordion ===================== */
.detail-tabs-wrap {
  overflow: hidden;
}
.detail-tabs {
  list-style: none;
  display: flex;
  gap: 28px;
  padding: 20px 24px 0;
  margin: 0;
  border-bottom: 1px solid #eef2f9;
}
.detail-tabs .nav-link {
  background: none;
  border: none;
  padding: 0 0 14px;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  border-radius: 0;
}
.detail-tabs .nav-link.active {
  color: var(--primary);
  border-color: var(--primary);
  background: none;
}
.detail-accordion {
  padding: 6px 24px 16px;
}
.detail-accordion .accordion-item {
  border: none;
  border-bottom: 1px solid #eef2f9;
}
.detail-accordion .accordion-item:last-child {
  border-bottom: none;
}
.detail-accordion .accordion-button {
  background: transparent !important;
  box-shadow: none !important;
  padding: 20px 0;
  font-weight: 700;
  color: var(--dark);
  font-size: 1.02rem;
}
.detail-accordion .accordion-button i {
  color: var(--primary);
  width: 22px;
  text-align: center;
  margin-right: 10px;
}
.detail-accordion .accordion-button:not(.collapsed) {
  color: var(--primary);
}
.detail-accordion .accordion-body {
  padding: 0 0 22px 32px;
  color: var(--text-muted);
}
.doc-item-excluded {
  color: var(--text-muted);
}
.doc-item-excluded i {
  color: #dc3545;
}
.tour-policy-content {
  padding: 22px 24px 26px;
}

/* ===================== Blog ===================== */
.blog-card {
  display: block;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  color: inherit;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  color: inherit;
}
.blog-card-img {
  position: relative;
  height: 190px;
  overflow: hidden;
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.1);
}
.blog-cat-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
}
.blog-card-body {
  padding: 20px 22px 24px;
}
.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.blog-meta i {
  color: var(--accent);
  margin-right: 4px;
}
.blog-card-body h5 {
  margin-bottom: 10px;
  font-size: 1.08rem;
}
.blog-card-body p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.blog-readmore {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
}
.blog-readmore i {
  margin-left: 4px;
  transition: var(--transition);
}
.blog-card:hover .blog-readmore i {
  transform: translateX(4px);
}

.blog-cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.blog-cat-list li {
  border-bottom: 1px solid #eef2f9;
}
.blog-cat-list li:last-child {
  border-bottom: none;
}
.blog-cat-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  color: #33415a;
  font-weight: 500;
  font-size: 0.92rem;
}
.blog-cat-list a:hover {
  color: var(--primary);
}
.blog-cat-list a span {
  background: var(--bg-soft);
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 12px;
}

.blog-recent-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.blog-recent-item:last-child {
  margin-bottom: 0;
}
.blog-recent-item img {
  width: 60px;
  height: 60px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.blog-recent-item a {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.35;
  margin-bottom: 4px;
}
.blog-recent-item a:hover {
  color: var(--primary);
}
.blog-recent-item small {
  color: var(--text-muted);
  font-size: 0.75rem;
}

/* ===================== Blog article (single post) ===================== */
.blog-article {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 26px 28px;
  margin-bottom: 24px;
}
.blog-article-img {
  border-radius: var(--radius);
  overflow: hidden;
  margin: -26px -28px 22px;
}
.blog-article-img img {
  width: 100%;
  max-height: 380px;
  object-fit: cover;
}
.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-bottom: 18px;
  margin-bottom: 20px;
  border-bottom: 1px solid #eef2f9;
}
.blog-article-meta i {
  color: var(--accent);
  margin-right: 5px;
}
.blog-article-body h4 {
  margin-top: 26px;
  margin-bottom: 10px;
  font-size: 1.15rem;
}
.blog-article-body h4:first-child {
  margin-top: 0;
}
.blog-article-body p {
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.75;
}
.blog-article-body p + h4 {
  margin-top: 26px;
}
.blog-article-body a {
  color: var(--primary);
  font-weight: 600;
}

.blog-tags-share {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding-top: 22px;
  margin-top: 26px;
  border-top: 1px solid #eef2f9;
}
.blog-tags,
.blog-share {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.85rem;
}
.blog-tags span,
.blog-share span {
  color: var(--text-muted);
  font-weight: 600;
  margin-right: 4px;
}
.blog-tags a {
  background: var(--bg-soft);
  color: #33415a;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 500;
}
.blog-tags a:hover {
  background: var(--primary);
  color: #fff;
}
.blog-share a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-soft);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
}
.blog-share a:hover {
  background: var(--primary);
  color: #fff;
}

.author-box {
  display: flex;
  gap: 18px;
  align-items: center;
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 26px;
}
.author-box img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* ===================== Contact page ===================== */
.contact-info-section {
  padding: 0 0 90px;
  margin-top: -70px;
  position: relative;
  z-index: 2;
}
.contact-info-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-hover);
  padding: 32px 24px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
}
.contact-info-card:hover {
  transform: translateY(-8px);
}
.contact-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #fff;
  margin: 0 auto 18px;
}
.contact-icon.blue {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}
.contact-icon.orange {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}
.contact-info-card h6 {
  margin-bottom: 6px;
}
.contact-info-card p {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.contact-info-card a {
  font-weight: 700;
  color: var(--dark);
}
.contact-info-card a:hover {
  color: var(--primary);
}
/* At 992-1399px the card is narrow enough that a long, space-less value
   (an email address especially) doesn't have a natural break point and
   spills out past the card's edge instead of wrapping. Force it to wrap
   onto multiple lines and stay inside the card at this width. */
@media (min-width: 992px) and (max-width: 1399.98px) {
  .contact-info-card a {
    display: block;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
  }
}

.contact-form-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 36px;
  height: 100%;
}
.contact-map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 300px;
  margin-bottom: 24px;
}
.contact-map-col {
  display: flex;
}
.contact-map-col .contact-map-wrap {
  height: auto;
  min-height: 300px;
  margin-bottom: 0;
  flex: 1;
  width: 100%;
}
/* Below ~1700px the container leaves barely any right-hand gutter, so the
   fixed .social-rail + .chat-float-btn/#backToTop (all pinned to the
   viewport's right edge) land directly on top of the map's corner controls.
   Shrink the map itself (not the column) so it clears them; padding on the
   column would grow past the column's own width instead of the intended
   effect, since Bootstrap sizes it via flex-basis:auto + width, not flex-grow. */
@media (min-width: 992px) and (max-width: 1699.98px) {
  .contact-map-col .contact-map-wrap {
    margin-right: 130px;
  }
}
.contact-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.contact-cta {
  background: linear-gradient(157deg, #64615f47, #ff7a32d1);
  padding: 46px 0;
  color: #fff;
}
.contact-cta h3 {
  color: #fff;
}
.contact-cta p {
  color: #dbe4f3;
}
.contact-cta .btn-light {
  font-weight: 600;
  color: var(--primary);
}
.contact-cta .btn-light:hover {
  color: var(--primary-dark);
}

/* ===================== Visa details page ===================== */
.visa-flag {
  font-size: 1.4em;
  margin-right: 6px;
}
.info-pill {
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  padding: 18px 12px;
  text-align: center;
  height: 100%;
  transition: var(--transition);
}
.info-pill:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.info-pill i {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.info-pill small {
  display: block;
  color: var(--text-muted);
  font-size: 0.78rem;
}
.info-pill strong {
  display: block;
  color: var(--dark);
  font-size: 1rem;
}
.details-block {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 26px 28px;
  margin-bottom: 24px;
}
.details-block h4 {
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eef2f9;
}
.notes-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}
.notes-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}
.notes-list li::before {
  content: "\f058"; /* circle-check */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--primary);
}
.doc-cat {
  color: var(--dark);
  font-size: 1rem;
  margin: 22px 0 12px;
}
.doc-cat:first-of-type {
  margin-top: 0;
}
.docs-needed-list {
  margin: 0 0 6px;
  padding-left: 20px;
  color: var(--text-muted);
}
.docs-needed-list li {
  margin-bottom: 10px;
  line-height: 1.55;
  font-size: 0.94rem;
  padding-left: 6px;
}
.docs-needed-list li::marker {
  color: var(--primary);
  font-weight: 700;
}
/* sticky needs a non-clipping ancestor */
.visa-details-section {
  overflow: visible;
}
.visa-price-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 24px;
  position: sticky;
  top: 90px;
}
.vpc-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid #eef2f9;
  margin-bottom: 16px;
}
.vpc-price {
  margin-bottom: 16px;
}
.vpc-price small {
  color: var(--text-muted);
}
.vpc-price .amount {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.9rem;
  color: var(--primary);
}
.vpc-price .amount span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
}
.vpc-notes {
  list-style: none;
  padding: 16px 0 0;
  margin: 16px 0 0;
  border-top: 1px solid #eef2f9;
}
.vpc-notes li {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.vpc-notes li i {
  color: #16a34a;
  margin-right: 6px;
}

/* ===================== Tourist visa page ===================== */
.doc-item {
  background: #fff;
  border-radius: 12px;
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
  font-weight: 500;
  color: #33415a;
  height: 100%;
  transition: var(--transition);
}
.doc-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}
.doc-item i {
  color: #16a34a;
  margin-right: 8px;
}
.fee-breakdown {
  border: 1px solid #e7ecf5;
  border-radius: 12px;
  overflow: hidden;
}
.fee-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid #eef1f7;
  color: #33415a;
}
.fee-row:last-child {
  border-bottom: none;
}
.fee-row span:first-child {
  font-weight: 500;
}
.fee-row span:first-child i {
  color: var(--primary);
  margin-right: 8px;
  width: 16px;
}
.fee-row span:last-child {
  font-weight: 600;
}
.fee-row.fee-total {
  background: var(--bg-soft);
}
.fee-row.fee-total span {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.05rem;
}
.apply-form-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow-soft);
}
.apply-form-card .form-label {
  font-weight: 500;
  font-size: 0.88rem;
  margin-bottom: 4px;
}
.visa-faq .accordion-item {
  border: none;
  border-radius: var(--radius) !important;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: var(--shadow-soft);
}
.visa-faq .accordion-button {
  font-weight: 600;
  color: var(--dark);
}
.visa-faq .accordion-button:not(.collapsed) {
  background: var(--primary-light);
  color: var(--primary);
  box-shadow: none;
}
.visa-faq .accordion-button:focus {
  box-shadow: none;
}

/* ===================== Preloader ===================== */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.5s ease,
    visibility 0.5s ease;
}
#preloader.loaded {
  opacity: 0;
  visibility: hidden;
}
.loader-plane i {
  font-size: 2.6rem;
  color: var(--accent);
  animation: planeFly 1.4s ease-in-out infinite;
}
@keyframes planeFly {
  0% {
    transform: translateX(-40px) translateY(0) rotate(-10deg);
    opacity: 0.4;
  }
  50% {
    transform: translateX(0) translateY(-14px) rotate(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(40px) translateY(0) rotate(10deg);
    opacity: 0.4;
  }
}

/* ===================== Social Rail ===================== */
.social-rail {
  position: fixed;
  top: 40%;
  right: 0;
  transform: translateY(-50%);
  z-index: 998;
  flex-direction: column;
  background: linear-gradient(135deg, var(--primary), #073b9c);
  border-radius: 10px 0 0 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 23, 39, 0.2);
}
.social-rail a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 55px;
  color: #fdfdfd;
  font-size: 1.3rem;
  transition: var(--transition);
}
.social-rail a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 26px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}
.social-rail a:last-child::after {
  display: none;
}
.social-rail a:hover {
  background: var(--accent);
  color: #fff;
}

/* ===================== Navbar ===================== */
.main-navbar {
  background: #fff;
  padding: 14px 0;
  transition: var(--transition);
  z-index: 1030;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}
.main-navbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 6px 24px rgba(11, 23, 39, 0.1);
}
.navbar-brand {
  font-family: cursive;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.navbar-brand span {
  color: var(--primary);
}
.logo-icon {
  color: var(--accent);
  margin-right: 4px;
}
.navbar-logo {
  height: 48px;
  width: auto;
}
.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 1rem;
  color: var(--dark);
  margin: 0 2px;
  padding: 9px 14px !important;
  border-radius: 30px;
  white-space: nowrap;
  transition: var(--transition);
}
.navbar-nav .nav-link:hover {
  color: var(--primary);
  background: rgba(11, 95, 255, 0.07);
}
.navbar-nav .nav-link.active {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  box-shadow: 0 6px 16px rgba(11, 95, 255, 0.35);
}

/* Cramped between the lg breakpoint and where the 8-item nav has room to
   breathe. This used to stop at 1200px, but the nav (8 links + logo + CTA)
   doesn't actually fit until ~1400px, so 1201-1399px fell back to full-size
   desktop styles and the nav links wrapped/overlapped the logo. */
@media (min-width: 992px) and (max-width: 1399.98px) {
  .navbar-brand {
    font-size: 1.3rem;
  }
  .navbar-logo {
    height: 38px;
  }
  .navbar-nav .nav-link {
    font-size: 0.85rem;
    padding: 8px 8px !important;
    margin: 0;
  }
  .nav-cta .btn-whatsapp {
    padding: 8px 14px !important;
    font-size: 0.85rem;
  }
}

.navbar-nav .dropdown-toggle::after {
  vertical-align: 0.255em;
}
.navbar-nav .dropdown-menu {
  border: none;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  padding: 8px;
  margin-top: 10px;
}
/* ===================== Hero ===================== */
.hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero.hero-compact {
  min-height: 70vh;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 2.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 7s ease-in-out;
  will-change: opacity, transform;
  filter: brightness(0.75) saturate(0.9);
}
.hero-slide-visa {
  background-image: url("https://images.unsplash.com/photo-1476514525535-07fb3b4ae5f1?auto=format&fit=crop&w=1920&q=80");
}
.hero-slide-hajj {
  background-image: url("https://images.unsplash.com/photo-1519817650390-64a93db51149?auto=format&fit=crop&w=1920&q=80");
}

/* ----- visa.html section shapes ----- */
.shape-visaoverview-1 {
  width: 180px;
  height: 180px;
  top: -40px;
  right: 5%;
}
.shape-visaoverview-2 {
  width: 120px;
  height: 120px;
  bottom: 30px;
  left: 4%;
}
.shape-visaoverview-3 {
  width: 100px;
  height: 100px;
  top: 40px;
  left: 8%;
}
.shape-visaoverview-4 {
  bottom: 12%;
  right: 12%;
  font-size: 2.2rem;
}
.shape-applysteps-1 {
  width: 190px;
  height: 190px;
  top: -50px;
  left: 4%;
}
.shape-applysteps-2 {
  width: 120px;
  height: 120px;
  top: 20%;
  right: 5%;
}
.shape-applysteps-3 {
  bottom: 14%;
  left: 10%;
  font-size: 2.4rem;
}
.shape-applysteps-4 {
  width: 100px;
  height: 100px;
  bottom: 30px;
  right: 12%;
}
.hero-slide.active {
  opacity: 1;
  z-index: 1;
  transform: scale(1.08);
  filter: brightness(1) saturate(1.05);
  animation: heroZoom 16s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.12);
  }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(7, 15, 28, 0.75) 0%,
    rgba(7, 15, 28, 0.55) 45%,
    rgba(7, 15, 28, 0.9) 100%
  );
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-30px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  color: #fff;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 500;
}
.badge-pill i {
  color: var(--accent);
}
.badge-pill.light {
  background: rgba(255, 255, 255, 0.25);
}

.hero-title {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 800;
  margin: 20px 0;
  line-height: 1.25;
}
.hero-title .typed-text {
  background: linear-gradient(90deg, var(--accent), #ffc971);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-subtitle {
  color: #fff;
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto 10px;
}

/* Booking widget */
.booking-widget {
  background: #fff;
  border-radius: var(--radius);
  margin-top: 40px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
  overflow: hidden;
}
.booking-widget-narrow {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}
.booking-tabs {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--bg-soft);
  flex-wrap: wrap;
}
.booking-tabs li {
  flex: 1;
}
.tab-btn {
  width: 100%;
  border: none;
  background: transparent;
  padding: 16px 10px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  font-size: 0.95rem;
  border-bottom: 3px solid transparent;
}
.tab-btn i {
  font-size: 1.1rem;
}
.tab-btn:hover {
  color: var(--primary);
  background: #fff;
}
.tab-btn.active {
  color: var(--primary);
  background: #fff;
  border-bottom-color: var(--primary);
}

.booking-panels {
  padding: 26px;
}
.booking-panel {
  display: none;
  animation: fadeInUp 0.4s ease;
}
.booking-panel.active {
  display: block;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.field-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
  display: block;
  text-align: left;
}
.input-icon {
  position: relative;
}
.input-icon i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  z-index: 2;
}
.input-icon .form-control,
.input-icon .form-select {
  padding-left: 38px;
}

.form-control,
.form-select {
  border-radius: 10px;
  border: 1px solid #e3e8f0;
  padding: 10px 14px;
  font-size: 0.92rem;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-light);
}

.guest-dropdown .dropdown-toggle::after {
  display: none;
}
.guest-menu {
  min-width: 250px;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
  border: none;
}
.counter {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn-count {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--primary);
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  line-height: 1;
  transition: var(--transition);
}
.btn-count:hover {
  background: var(--primary);
  color: #fff;
}
.count-val {
  min-width: 16px;
  text-align: center;
  font-weight: 600;
}

.btn-search {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  padding: 10px 14px;
  border: none;
  box-shadow: 0 8px 20px rgba(11, 95, 255, 0.3);
  transition: var(--transition);
}
.btn-search:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(11, 95, 255, 0.4);
  color: #fff;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  margin-top: 34px;
  color: #e8edf7;
  font-weight: 500;
  font-size: 0.92rem;
}
.trust-strip i {
  color: var(--accent);
  margin-right: 8px;
}

/* ===================== Destinations ===================== */
.destinations-section {
  position: relative;
  background-image: linear-gradient(
    135deg,
    rgba(234, 245, 255, 1) 0%,
    rgba(255, 255, 255, 1) 100%
  );
}
.destinations-section .container {
  position: relative;
  z-index: 1;
}
.destSwiper {
  padding: 30px 4px 55px;
}
.destSwiper .swiper-slide {
  width: 300px;
  height: 440px;
}
.destSwiper .swiper-slide.dest-empty-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.destSwiper .swiper-pagination-bullet {
  background: var(--primary);
  opacity: 0.3;
}
.destSwiper .swiper-pagination-bullet-active {
  opacity: 1;
}
.dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-soft);
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dest-card:hover img {
  transform: scale(1.15);
}
.dest-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(5, 10, 20, 0.9) 100%
  );
  color: #fff;
}
.dest-overlay h5 {
  color: #fff;
  margin-bottom: 6px;
}
.dest-overlay span {
  font-size: 0.85rem;
  color: #dbe4f3;
}
.dest-overlay i {
  color: var(--accent);
  margin-right: 4px;
}

/* ===================== Latest Tour Packages (Swiper) ===================== */
.latest-scroll-wrap {
  position: relative;
  padding: 0 6px;
}
.latestSwiper {
  padding: 6px 4px 46px;
}
.latestSwiper .swiper-slide {
  height: auto;
}
.latestSwiper .swiper-slide.latest-empty-slide {
  width: 100% !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  padding: 30px 20px;
}
.latest-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}
.latest-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.latest-img {
  position: relative;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}
.latest-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.latest-card:hover .latest-img img {
  transform: scale(1.1);
}
.latest-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 12px;
  border-radius: 20px;
  animation: pulseBadge 1.8s ease-in-out infinite;
}
@keyframes pulseBadge {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
.latest-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.latest-body h5 {
  font-size: 1.02rem;
  margin: 8px 0 12px;
}
.latest-body .pkg-footer {
  margin-top: auto;
}
.added-ago {
  color: var(--text-muted);
  font-size: 0.8rem;
}
.added-ago i {
  margin-right: 4px;
}

.latest-pagination {
  position: static;
  margin-top: 4px;
}
.latest-pagination .swiper-pagination-bullet {
  background: var(--primary-light);
  opacity: 1;
  width: 9px;
  height: 9px;
}
.latest-pagination .swiper-pagination-bullet-active {
  background: var(--primary);
  width: 24px;
  border-radius: 6px;
  transition: var(--transition);
}

.latest-nav {
  position: absolute;
  top: 31%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: var(--shadow-soft);
  color: var(--primary);
  z-index: 3;
  transition: var(--transition);
}
.latest-nav:hover {
  background: var(--primary);
  color: #fff;
}
.latest-nav.prev {
  left: -14px;
}
.latest-nav.next {
  right: -14px;
}
.latest-nav.swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
}
.latest-nav.swiper-button-disabled:hover {
  background: #fff;
  color: var(--primary);
}
@media (max-width: 575.98px) {
  .latest-nav {
    display: none;
  }
}

/* ===================== Stats / Why choose us ===================== */
.stats-section {
  background: linear-gradient(135deg, #f4f8ff 0%, #eef4ff 100%);
}
.feature-row {
  display: flex;
  gap: 18px;
  margin-bottom: 24px;
}
.feature-icon {
  min-width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.feature-row h6 {
  margin-bottom: 6px;
  font-size: 1.05rem;
}
.feature-row p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.92rem;
}

.stat-box {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
}
.stat-box:hover {
  background: var(--primary-dark);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.stat-box i,
.stat-box h3,
.stat-box p {
  color: #fff;
}
.stat-box i {
  font-size: 1.8rem;
  margin-bottom: 10px;
  transition: var(--transition);
}
.stat-box h3 {
  font-size: 2rem;
  margin-bottom: 4px;
  transition: var(--transition);
}
.stat-box p {
  margin: 0;
  opacity: 0.85;
  transition: var(--transition);
}

/* ===================== Packages ===================== */
.pkg-sidebar-section {
  overflow: visible;
}
.pkg-sidebar {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 22px;
  position: sticky;
  top: 90px;
}
.pkg-sidebar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid #eef2f9;
}
.pkg-sidebar-head h6 {
  margin: 0;
}
.btn-reset-filter {
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 6px 14px;
  border-radius: 20px;
  transition: var(--transition);
}
.btn-reset-filter:hover {
  background: var(--primary-dark);
}
.pkg-sidebar-group {
  margin-bottom: 24px;
}
.pkg-sidebar-group h6 {
  font-size: 0.95rem;
  margin-bottom: 12px;
}
.price-range-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
}
.price-range-labels small {
  display: block;
  color: var(--text-muted);
  font-size: 0.72rem;
}
.price-range-labels strong {
  color: var(--primary);
  font-size: 0.95rem;
}
.price-range-slider {
  position: relative;
  height: 20px;
}
.price-range-track {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 4px;
  background: #e3e8f0;
  border-radius: 2px;
  transform: translateY(-50%);
}
.price-range-fill {
  position: absolute;
  height: 100%;
  background: var(--primary);
  border-radius: 2px;
}
.price-range-slider input[type="range"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 20px;
  margin: 0;
  background: transparent;
  pointer-events: none;
  -webkit-appearance: none;
  appearance: none;
}
.price-range-slider input[type="range"]::-webkit-slider-thumb {
  pointer-events: auto;
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--primary);
  cursor: pointer;
  margin-top: -7px;
}
.price-range-slider input[type="range"]::-moz-range-thumb {
  pointer-events: auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid #fff;
  box-shadow: 0 0 0 1px var(--primary);
  cursor: pointer;
}
.price-range-slider input[type="range"]::-webkit-slider-runnable-track,
.price-range-slider input[type="range"]::-moz-range-track {
  background: transparent;
  height: 4px;
}
.pkg-search input {
  border-radius: 30px;
  padding-top: 11px;
  padding-bottom: 11px;
}
.pkg-filter {
  display: inline-flex;
  gap: 10px;
  background: var(--bg-soft);
  padding: 6px;
  border-radius: 40px;
  flex-wrap: wrap;
  justify-content: center;
}
.filter-btn {
  border: none;
  background: transparent;
  padding: 9px 22px;
  border-radius: 30px;
  font-weight: 600;
  color: var(--text-muted);
  transition: var(--transition);
  font-size: 0.9rem;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--primary);
  color: #fff;
}

#latest .latest-card {
  cursor: pointer;
}
.pkg-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  height: 100%;
  transition: var(--transition);
  cursor: pointer;
}
/* Hover-lift is triggered from the grid column (which never moves) instead of
   .pkg-card itself, so the translateY below can't shift the box out from
   under a stationary cursor and re-trigger :hover in a flicker loop. */
.row > [class*="col"]:has(> .pkg-card):hover > .pkg-card {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.pkg-img {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.pkg-card:hover .pkg-img img {
  transform: scale(1.1);
}
.pkg-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
}
.wish-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #ff4d6d;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.wish-btn:hover {
  background: #ff4d6d;
  color: #fff;
  transform: scale(1.1);
}
.wish-btn.active i {
  font-weight: 900;
}
.pkg-body {
  padding: 20px 20px 0;
}
.pkg-loc {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 600;
}
.pkg-loc i {
  margin-right: 4px;
}
.pkg-body h5 {
  margin: 8px 0 12px;
  font-size: 1.1rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.pkg-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.pkg-meta .rating {
  color: #f5a623;
  font-weight: 600;
}
.pkg-meta .rating i {
  margin-right: 3px;
}
.pkg-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px dashed #e3e8f0;
  padding-top: 14px;
  padding-bottom: 14px;
}
.price small {
  display: block;
  font-size: 0.72rem;
  color: var(--text-muted);
}
.price strong {
  font-size: 1.2rem;
  color: var(--dark);
}
.btn-outline-book {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  border: none;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  padding: 7px 18px;
  font-size: 0.85rem;
  box-shadow: 0 6px 16px rgba(255, 122, 50, 0.3);
  transition: var(--transition);
}
.btn-outline-book:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(255, 122, 50, 0.4);
}

/* ===================== Offer / Countdown ===================== */
.offer-section {
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.offer-box {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  border-radius: 24px;
  padding: 50px;
  position: relative;
  overflow: hidden;
}
.offer-box::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  top: -100px;
  right: -80px;
}
.offer-box h2 {
  color: #fff;
  font-size: 2rem;
  margin: 14px 0;
}
.offer-box p {
  color: #dbe4f3;
}
.countdown {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cd-box {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(6px);
  border-radius: 14px;
  padding: 18px 22px;
  text-align: center;
  min-width: 85px;
}
.cd-box span {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  font-family: "Poppins", sans-serif;
}
.cd-box small {
  color: #dbe4f3;
  font-size: 0.75rem;
}

/* ===================== Steps ===================== */
.steps-row {
  position: relative;
}
.step-box {
  text-align: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 20px;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: var(--transition);
  height: 100%;
}
.step-box:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.step-num {
  position: absolute;
  top: 14px;
  right: 18px;
  font-weight: 800;
  font-size: 1.4rem;
  color: #eef2f9;
}
.step-box i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 16px;
  display: inline-block;
}
.step-box:hover i {
  animation: bounce 0.6s ease;
}
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.step-box h6 {
  margin-bottom: 8px;
}
.step-box p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin: 0;
}

/* ===================== Testimonials ===================== */
.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-soft);
  position: relative;
}
.quote-ico {
  font-size: 1.8rem;
  color: var(--primary-light);
  margin-bottom: 16px;
}
.testi-card p {
  font-size: 1.1rem;
  color: var(--dark);
  font-style: italic;
  margin-bottom: 20px;
}
.testi-card img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  border: 3px solid var(--primary-light);
}
.testi-card h6 {
  margin-bottom: 6px;
}
.stars {
  color: #f5a623;
}
.carousel-control-prev,
.carousel-control-next {
  width: auto;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}
.ctrl-ico {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--shadow-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.ctrl-ico:hover {
  background: var(--primary);
  color: #fff;
}
.testi-indicators {
  position: static;
  margin-top: 24px;
}
.testi-indicators button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary-light);
  opacity: 1;
}
.testi-indicators button.active {
  background: var(--primary);
  width: 24px;
  border-radius: 6px;
  transition: var(--transition);
}

/* ===================== Newsletter ===================== */
.newsletter-section {
  background: linear-gradient(157deg, #64615f47, #ff7a32d1);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.newsletter-section h3 {
  color: #fff;
}
.newsletter-section p {
  color: #ffe6d6;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.newsletter-form .form-control {
  flex: 1;
  min-width: 220px;
  border-radius: 30px;
  padding: 12px 22px;
  border: none;
}
.newsletter-form .btn {
  border-radius: 30px;
  padding: 12px 28px;
}

/* ===================== Footer ===================== */
footer {
  background: var(--dark);
  color: #a9b4c7;
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}

footer .navbar-brand {
  font-size: 2.2rem;
  color: #fff;
}
footer .navbar-brand img {
  height: 70px;
  width: 70px;
}

footer p {
  font-size: 0.92rem;
  line-height: 1.7;
}
.footer-title {
  color: #fff;
  margin-bottom: 18px;
  font-size: 1.05rem;
}
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: #a9b4c7;
  font-size: 0.92rem;
}
.footer-links a:hover {
  color: var(--accent);
  padding-left: 4px;
}
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-contact li {
  margin-bottom: 14px;
  font-size: 0.92rem;
  display: flex;
  gap: 10px;
}
.footer-contact i {
  color: var(--accent);
  margin-top: 3px;
}
.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 18px;
}
.social-icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.social-icons a:hover {
  background: var(--accent);
  transform: translateY(-4px);
}
footer hr {
  border-color: rgba(255, 255, 255, 0.1);
  margin-top: 30px;
}
.footer-bottom {
  font-size: 0.85rem;
  color: #8592a8;
}
.payment-icons {
  display: flex;
  gap: 14px;
  font-size: 1.5rem;
  color: #8592a8;
}

/* ===================== Floating buttons ===================== */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  left: 26px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  z-index: 999;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  animation: pulse 2s infinite;
}
.whatsapp-float:hover {
  color: #fff;
  transform: scale(1.1);
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

#backToTop {
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 1.1rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  box-shadow: 0 10px 24px rgba(11, 95, 255, 0.35);
}
#backToTop.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#backToTop:hover {
  background: var(--primary-dark);
}

/* ===================== Live Chat ===================== */
.chat-float-btn {
  position: fixed;
  bottom: 92px;
  right: 26px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-size: 1.5rem;
  z-index: 999;
  box-shadow: 0 10px 24px rgba(11, 95, 255, 0.4);
  transition: var(--transition);
}
.chat-float-btn:hover {
  transform: scale(1.08);
}
.chat-float-btn.is-open {
  display: none;
}

.chat-identity-card {
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
}
.chat-identity-card .modal-body {
  padding: 34px;
}
.chat-identity-head {
  text-align: center;
  margin-bottom: 22px;
}
.chat-identity-head i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.chat-widget {
  position: fixed;
  bottom: 92px;
  right: 26px;
  width: 340px;
  max-width: calc(100vw - 40px);
  height: 460px;
  max-height: calc(100vh - 130px);
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 20px 50px rgba(11, 23, 39, 0.25);
  display: none;
  flex-direction: column;
  overflow: hidden;
  z-index: 1000;
}
.chat-widget.show {
  display: flex;
}
.chat-widget-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.chat-widget-agent {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-widget-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  flex-shrink: 0;
}
.chat-widget-agent strong {
  display: block;
  font-size: 0.92rem;
}
.chat-widget-agent small {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  color: #dbe4f3;
}
.chat-online-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  display: inline-block;
}
.chat-widget-header button {
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
}
.chat-widget-header button:hover {
  background: rgba(255, 255, 255, 0.3);
}
.chat-widget-body {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 16px;
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  gap: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) transparent;
}
.chat-widget-body::-webkit-scrollbar {
  width: 5px;
}
.chat-widget-body::-webkit-scrollbar-track {
  background: transparent;
}
.chat-widget-body::-webkit-scrollbar-thumb {
  background: var(--primary);
  border-radius: 3px;
}
.chat-msg {
  max-width: 80%;
  padding: 9px 14px;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.45;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: pre-wrap;
}
.chat-msg.agent {
  background: #fff;
  color: #33415a;
  align-self: flex-start;
  box-shadow: var(--shadow-soft);
  border-bottom-left-radius: 4px;
}
.chat-msg.user {
  background: var(--primary);
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 4px;
}
.chat-msg-text {
  margin: 0;
}
.chat-msg-time {
  display: block;
  font-size: 0.68rem;
  opacity: 0.65;
  margin-top: 4px;
}
.chat-widget-footer {
  display: flex;
  gap: 8px;
  padding: 12px;
  border-top: 1px solid #eef2f9;
  flex-shrink: 0;
}
.chat-widget-footer input {
  flex: 1;
  border: 1px solid #e3e8f0;
  border-radius: 20px;
  padding: 8px 16px;
  font-size: 0.88rem;
  outline: none;
}
.chat-widget-footer input:focus {
  border-color: var(--primary);
}
.chat-widget-footer button {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: #fff;
  flex-shrink: 0;
}
.chat-widget-footer button:hover {
  background: var(--primary-dark);
}

@media (max-width: 480px) {
  .chat-widget {
    right: 20px;
    left: 20px;
    width: auto;
  }
  .whatsapp-float,
  #backToTop,
  .chat-float-btn {
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
  }
  .whatsapp-float {
    bottom: 16px;
    left: 16px;
  }
  #backToTop {
    bottom: 16px;
    right: 16px;
  }
  .chat-float-btn {
    bottom: 72px;
    right: 16px;
  }
}

/* ===================== AOS fallback tuning ===================== */
[data-aos] {
  pointer-events: auto;
}

/* ===================== Responsive ===================== */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 2.2rem;
  }
  .booking-panels {
    padding: 18px;
  }
  .navbar-collapse {
    background: #fff;
    padding: 16px;
    border-radius: 14px;
    margin-top: 12px;
    box-shadow: var(--shadow-soft);
  }
  .nav-cta {
    margin-top: 14px;
  }
  .offer-box {
    padding: 30px;
  }
  .offer-box h2 {
    font-size: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .section {
    padding: 60px 0;
  }
  .hero {
    min-height: auto;
    padding-top: 40px;
  }
  .hero-title {
    font-size: 1.8rem;
  }
  .trust-strip {
    gap: 16px;
    font-size: 0.8rem;
  }
  .navbar-brand {
    font-size: 1.25rem;
  }
  .navbar-logo {
    height: 36px;
  }
  .cd-box {
    min-width: 65px;
    padding: 12px;
  }
  .cd-box span {
    font-size: 1.4rem;
  }
  .booking-tabs li {
    flex: 0 0 50%;
  }
  .tab-btn {
    padding: 12px 6px;
    font-size: 0.82rem;
    gap: 6px;
  }
  .tab-btn i {
    font-size: 0.95rem;
  }
}
/*========= Cookies Css ========*/
.cookies-card {
  position: fixed;
  left: 20px;
  bottom: 16px;
  max-width: 270px;
  padding: 16px;
  background: var(--primary-dark);
  box-shadow: rgba(226, 156, 5, 0.63) 0px 2px 8px 0px;
  border: 2px solid var(--primary);
  border-radius: 12px;
  z-index: 555;
  transition: right 0.4s ease;
}
.cookies-card__image {
  width: 145px;
  height: 85px;
  object-fit: contain;
  margin-bottom: 8px;
}
.cookies-card__content,
.cookies-card__content a.text--base {
  color: #fff;
}
.cookies-card__content a.text--base {
  text-decoration: underline;
}
.cookies-card__content a.text--base:hover {
  color: var(--primary-light);
}
.cookies-card .btn--base {
  background: var(--primary);
  color: #fff;
  border: none;
}
.cookies-card__btn .btn.btn-base {
  width: 124px;
}
@media (max-width: 1400px) {
  .cookies-card {
    max-width: 320px;
  }
}
@media (max-width: 767px) {
  .cookies-card {
    right: 10px;
    left: 10px;
    max-width: none;
    flex-direction: column;
  }
  .cookies-card__btn {
    margin-top: 7px;
  }
}
.cookies-card.hide {
  right: -500px !important;
}
.radius--10px {
  border-radius: 10px;
}
/* end cookie */
