/* ═══════════════════════════════════════════════════════════════════════════ */
/* GLOBAL STYLES & RESET                                                      */
/* ═══════════════════════════════════════════════════════════════════════════ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #fff;
  color: #1A1A1A;
  line-height: inherit;
  overflow-x: hidden;
  max-width: 100vw;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
}

svg {
  display: block;
  vertical-align: middle;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* NAVIGATION                                                                  */
/* ═══════════════════════════════════════════════════════════════════════════ */

.nav-bar {
  background: #432267;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: box-shadow 0.3s;
}

.nav-bar.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.ham-btn {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 26px;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-menu {
  display: flex;
  align-items: center;
  flex: 1;
  padding: 14px 0;
}

.nav-links-wrap {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* FOOTER                                                                      */
/* ═══════════════════════════════════════════════════════════════════════════ */

.footer-grid {
  display: grid;
  grid-template-columns: 38% 22% 40%;
  gap: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 80px 48px;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* HOMEPAGE HERO                                                               */
/* ═══════════════════════════════════════════════════════════════════════════ */

.hero-anim {
  animation: heroSlide 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.hero-anim-2 {
  animation: heroSlide 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

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

/* ═══════════════════════════════════════════════════════════════════════════ */
/* REVEAL & ANIMATIONS                                                         */
/* ═══════════════════════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.journey-card {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.journey-card:hover {
  box-shadow: 0 8px 32px rgba(67, 34, 103, 0.14);
  transform: translateY(-4px);
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* CONTACT PAGE STYLES                                                         */
/* ═══════════════════════════════════════════════════════════════════════════ */

.contact-hero {
  position: relative;
  height: 340px;
  overflow: hidden;
  background: #1a0d26;
}

.contact-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  display: block;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(20, 8, 36, 0.62) 0%, rgba(20, 8, 36, 0.72) 100%);
}

.contact-hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 12px;
}

.contact-hero-breadcrumb {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  font-family: 'DM Sans', sans-serif;
}

.contact-hero-breadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-hero-breadcrumb a:hover {
  color: #FEED01;
}

.contact-hero h1 {
  font-size: 52px;
  font-weight: 800;
  color: #fff;
  font-family: 'Playfair Display', serif;
  line-height: 1.1;
}

.hero-rule {
  width: 52px;
  height: 3px;
  background: #FEED01;
  border-radius: 2px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* CONTACT FORM & SECTION                                                      */
/* ═══════════════════════════════════════════════════════════════════════════ */

.contact-section {
  background: #fff;
  padding: 80px 80px 88px;
}

.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 44% 56%;
  gap: 72px;
  align-items: start;
}

.contact-left h2 {
  font-size: 34px;
  font-weight: 700;
  color: #1A1A1A;
  line-height: 1.25;
  margin-bottom: 14px;
}

.contact-left p {
  font-size: 15px;
  color: #5C5C5C;
  line-height: 1.75;
  margin-bottom: 40px;
  font-family: 'DM Sans', sans-serif;
}

.contact-detail-block {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(67, 34, 103, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-detail-label {
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.13em;
  color: #432267;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 4px;
  display: block;
}

.contact-detail-value {
  font-size: 15px;
  color: #1A1A1A;
  line-height: 1.65;
  font-family: 'DM Sans', sans-serif;
}

.contact-detail-value a {
  color: #1A1A1A;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-detail-value a:hover {
  color: #432267;
}

.contact-form-wrap {
  background: #F9F7F4;
  padding: 44px 40px;
  border: 1px solid rgba(67, 34, 103, 0.08);
}

.contact-form-wrap h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 6px;
  font-family: 'Playfair Display', serif;
}

.contact-form-wrap .form-sub {
  font-size: 16px;
  color: #1A1A1A;
  margin-bottom: 28px;
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 12px;
  font-weight: 600;
  color: #1A1A1A;
  letter-spacing: 0.05em;
  font-family: 'DM Sans', sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #CBCBCB;
  border-radius: 8px;
  font-size: 14.5px;
  color: #1A1A1A;
  background: #fff;
  font-family: 'DM Sans', sans-serif;
  outline: none !important;
  box-shadow: none !important;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #CBCBCB !important;
  outline: none !important;
  box-shadow: none !important;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #B0A8BA;
}

.send-btn {
  width: 100%;
  padding: 14px 24px;
  background: #3B1C62;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(59, 28, 98, 0.3);
  margin-top: 6px;
}

.send-btn:hover {
  background: #2d1650;
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(59, 28, 98, 0.42);
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* MAP SECTION                                                                 */
/* ═══════════════════════════════════════════════════════════════════════════ */

.map-section {
  width: 100%;
  line-height: 0;
  padding-bottom: 100px;
}

.map-section iframe {
  width: 100%;
  height: 550px;
  border: none;
  display: block;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* SOCIAL & CONTACT STRIPS                                                     */
/* ═══════════════════════════════════════════════════════════════════════════ */

.social-strip {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(67, 34, 103, 0.12);
}

.social-strip-label {
  font-size: 13px;
  font-weight: 700;
  color: #432267;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 14px;
  display: block;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #3B1C62;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.social-icon:hover {
  background: #FCE205;
  transform: translateY(-2px);
}

.social-icon:hover svg * {
  stroke: #3B1C62 !important;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* GALLERY STYLES                                                              */
/* ═══════════════════════════════════════════════════════════════════════════ */

.gallery-item {
  opacity: 1;
  transform: scale(1);
  transition: all 0.3s ease-in-out;
}

.gallery-item.hidden {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}

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

.gallery-item img {
  transition: transform 0.3s ease;
}

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

.overlay {
  opacity: 0;
  transition: opacity 0.3s ease;
  background: rgba(0, 0, 0, 0.6);
}

.lightbox {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* TOURS PAGE                                                                  */
/* ═══════════════════════════════════════════════════════════════════════════ */

.hero-strip {
  background: none;
  padding: 0;
}

.hero-strip-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.hero-strip h1 {
  font-size: 40px;
  font-weight: 800;
  color: #1A1A1A;
  line-height: 1.15;
  margin-bottom: 32px;
  padding: 52px 0 0;
}

.ud-wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
}

.tabs-row {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
  flex-wrap: wrap;
  padding-top: 32px;
}

.tab-pill {
  padding: 8px 20px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: 1.5px solid #e8e0f5;
  background: #fff;
  color: #555;
  font-family: 'DM Sans', sans-serif;
}

.tab-pill.active {
  background: #432267;
  color: #fff;
  border-color: #432267;
}

.tab-pill:hover:not(.active) {
  border-color: #432267;
  color: #432267;
}

.tours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding-bottom: 72px;
}

.tour-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(67, 34, 103, 0.08);
  transition: box-shadow 0.25s, transform 0.25s;
  border: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  box-shadow: 0 8px 32px rgba(67, 34, 103, 0.16);
  transform: translateY(-3px);
}

.tc-img {
  position: relative;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
  display: block;
  text-decoration: none;
}

.tc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.tour-card:hover .tc-img img {
  transform: scale(1.06);
}

.tc-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.06em;
  font-family: 'DM Sans', sans-serif;
  text-transform: uppercase;
}

.tc-badge-best {
  background: #FEED01;
  color: #432267;
}

.tc-badge-hot {
  background: #ff4757;
  color: #fff;
}

.tc-badge-new {
  background: #2ed573;
  color: #1A1A1A;
}

.tc-body {
  padding: 14px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tc-type {
  font-size: 10px;
  font-weight: 700;
  color: #432267;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
  font-family: 'DM Sans', sans-serif;
}

.tc-title {
  font-size: 15px;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 10px;
  line-height: 1.3;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  display: block;
}

.tc-title:hover {
  color: #432267;
}

.tc-meta {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 12px;
  color: #888;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 5px;
}

.tc-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid #f5f3fa;
}

.tc-price {
  font-size: 16px;
  font-weight: 800;
  color: #432267;
  font-family: 'DM Sans', sans-serif;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.tc-price small {
  font-size: 16px;
  font-weight: 800;
  color: #432267;
  display: inline;
}

.tc-actions {
  display: flex;
  gap: 6px;
  align-items: center;
}

.tc-wa-btn {
  font-size: 12px;
  font-weight: 700;
  color: #432267;
  background: #f0eafa;
  padding: 7px 18px;
  border-radius: 20px;
  border: 1.5px solid #e0d5f5;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.tc-wa-btn:hover {
  background: #432267;
  color: #fff;
  border-color: #432267;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* PRIVACY & TERMS PAGES                                                       */
/* ═══════════════════════════════════════════════════════════════════════════ */

.hero-section {
  background-size: cover;
  background-position: center;
  padding: 60px 40px 120px 40px;
  text-align: center;
  color: #fff;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-section h1 {
  font-size: 52px;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
  font-family: 'Playfair Display', Georgia, serif;
}

.hero-section p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.05em;
}

.content-wrapper {
  max-width: 920px;
  margin: 0 auto;
  padding: 60px 40px;
  background: #fff;
}

.content-section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #000;
}

.content-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.content-section h2 {
  color: #000;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'DM Sans', sans-serif;
}

.content-section p {
  color: #000;
  font-size: 17px;
  line-height: 1.85;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 12px;
}

.content-section p:last-child {
  margin-bottom: 0;
}

.content-section a {
  color: #000;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.content-section a:hover {
  color: #000;
}

.content-section ul {
  margin-left: 30px;
  color: #000;
  font-size: 17px;
  line-height: 1.85;
  font-family: 'DM Sans', sans-serif;
  list-style: disc;
  margin-bottom: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════════ */
/* RESPONSIVE DESIGN                                                           */
/* ═══════════════════════════════════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .tours-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 900px) {
  .ham-btn {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-inner {
    padding: 0 16px;
  }

  .nav-logo img {
    height: 60px !important;
  }

  .nav-menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 0 12px;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-links-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .nav-links-wrap a {
    display: block !important;
    padding: 10px 16px;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    white-space: normal !important;
  }

  .nav-actions {
    padding: 8px 16px;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
  }

  .contact-section {
    padding: 40px 20px 48px !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
  }

  .contact-hero h1 {
    font-size: 36px !important;
  }

  .map-section {
    padding-bottom: 48px !important;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 36px !important;
    padding: 40px 20px 32px !important;
  }

  .hero-section {
    padding: 60px 20px;
  }

  .hero-section h1 {
    font-size: 32px;
  }

  .content-wrapper {
    padding: 40px 20px;
  }

  .ud-wrap {
    padding: 0 16px;
  }

  .hero-strip-inner {
    padding: 0 16px;
  }

  .hero-strip h1 {
    font-size: 28px;
    padding-top: 32px;
    margin-bottom: 20px;
  }

  .tours-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .tabs-row {
    gap: 6px;
    padding-top: 20px;
  }

  .tab-pill {
    padding: 7px 14px;
    font-size: 12px;
  }

  /* Hero */
  .hero-slide, .hero-img{width:100%!important;max-width:100%!important;}
  .hero-section{overflow:hidden;width:100%;}

  /* Destinations row */
  .dest-row, .trending-row{display:flex;flex-wrap:wrap;justify-content:center;gap:16px;padding:0 12px;overflow:hidden;}
  .dest-item{width:calc(33% - 12px)!important;min-width:80px;}

  /* Tour cards */
  .journey-card, .tour-card{width:100%!important;max-width:100%!important;min-width:unset!important;}
  .journey-scroll, .tours-scroll{display:flex;flex-direction:column;gap:20px;overflow-x:hidden!important;padding:0 16px;}

  /* Verticals section */
  .verticals-row, .verticals-grid{display:flex;flex-direction:column!important;gap:20px;padding:0 16px;}
  .vertical-card{width:100%!important;min-width:unset!important;}
  .vertical-card h3{white-space:normal!important;font-size:20px;}

  /* Trust/Reassurance cards */
  .trust-row, .reassurance-grid, .reviews-row{display:flex;flex-direction:column;gap:16px;padding:0 16px;overflow:hidden;}
  .trust-card, .reassurance-card, .review-card{width:100%!important;min-width:unset!important;}

  /* General overflow fix */
  body, html{overflow-x:hidden;max-width:100vw;}
  section{overflow-x:hidden;max-width:100%;}
}

@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 28px;
  }

  .content-section h2 {
    font-size: 16px;
  }

  .content-section p {
    font-size: 15px;
  }

  .tours-grid {
    grid-template-columns: 1fr;
  }
}
