:root {
  --cyan: #06b6d4;
  --cyan-dark: #0891b2;
  --cyan-light: #cffafe;
  --cyan-xlight: #ecfeff;
  --dark: #0f1a20;
  --dark2: #0a2a35;
  --text: #1e3a42;
  --muted: #6b8f99;
  --border: #e0f2f7;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "DM Sans", sans-serif;
  background: #f0fafc;
  color: var(--text);
  overflow-x: hidden;
}

/* ── SCROLL REVEAL ── */
.sr {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.sr.v {
  opacity: 1;
  transform: none;
}
.sl {
  opacity: 0;
  transform: translateX(-36px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.sl.v {
  opacity: 1;
  transform: none;
}
.srr {
  opacity: 0;
  transform: translateX(36px);
  transition:
    opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}
.srr.v {
  opacity: 1;
  transform: none;
}
.d1 {
  transition-delay: 0.1s !important;
}
.d2 {
  transition-delay: 0.2s !important;
}
.d3 {
  transition-delay: 0.3s !important;
}
.d4 {
  transition-delay: 0.4s !important;
}
.d5 {
  transition-delay: 0.5s !important;
}
.d6 {
  transition-delay: 0.6s !important;
}

/* ── SEC HEADER ── */
.sec-label {
  font-size: 10px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.sec-label::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--cyan);
}
.sec-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(24px, 3.8vw, 46px);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.12;
}
.sec-title em {
  font-style: italic;
  color: var(--cyan);
}
.sec-sub {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.78;
  max-width: 500px;
}

/* ── HERO SLIDER ── */
.hero-swiper {
  width: 100%;
  height: 100vh;
  min-height: 520px;
}
.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}
.hero-swiper .swiper-slide img.hs-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.07);
  transition: transform 9s ease;
}
.hero-swiper .swiper-slide-active img.hs-img {
  transform: scale(1);
}
.hs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    rgba(15, 26, 32, 0.82) 0%,
    rgba(15, 26, 32, 0.35) 55%,
    rgba(15, 26, 32, 0.1) 100%
  );
}
.hs-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 0 6%;
  z-index: 2;
  max-width: 680px;
}
.hs-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(6, 182, 212, 0.2);
  border: 1px solid rgba(6, 182, 212, 0.4);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hs-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 5.5vw, 72px);
  font-weight: 700;
  color: #fff;
  line-height: 1.06;
  margin-bottom: 16px;
}
.hs-title em {
  color: var(--cyan);
  font-style: italic;
}
.hs-text {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.82;
  max-width: 440px;
  margin-bottom: 30px;
}
.hs-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hbtn-p {
  background: var(--cyan);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: all 0.3s;
  border-bottom: 3px solid var(--cyan-dark);
}
.hbtn-p:hover {
  background: var(--cyan-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.4);
}
.hbtn-g {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  backdrop-filter: blur(8px);
  transition: all 0.3s;
}
.hbtn-g:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--cyan);
}
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  transition: all 0.3s;
}
.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  font-size: 15px;
  font-weight: 700;
}
.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background: var(--cyan);
  border-color: var(--cyan);
}
.hero-swiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.4;
  width: 8px;
  height: 8px;
}
.hero-swiper .swiper-pagination-bullet-active {
  background: var(--cyan);
  opacity: 1;
  width: 26px;
  border-radius: 4px;
}
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}
.sc-bar {
  width: 1px;
  height: 44px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.75),
    transparent
  );
  animation: scBar 1.8s ease-in-out infinite;
}
@keyframes scBar {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.sc-txt {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

/* ── STATS ── */
.stats-band {
  background: var(--dark2);
}
.stats-band-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.sb-item {
  padding: 28px 20px;
  text-align: center;
  border-right: 1px solid rgba(6, 182, 212, 0.08);
  border-bottom: 1px solid rgba(6, 182, 212, 0.08);
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.sb-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.sb-item:hover::before {
  transform: scaleX(1);
}
.sb-item:hover {
  background: rgba(6, 182, 212, 0.07);
}
.sb-num {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 5px;
}
.sb-num span {
  color: var(--cyan);
}
.sb-lbl {
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

/* ── PACKAGES ── */
.packages {
  padding: 80px 5%;
  background: #fff;
  position: relative;
}
.packages::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
}
.pkg-swiper {
  padding: 16px 0 52px !important;
}
.pkg-swiper .swiper-slide {
  opacity: 0.42;
  transform: scale(0.82);
  filter: blur(1.5px);
  transition: all 0.6s ease;
}
.pkg-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  filter: none;
}
.pkg-swiper .swiper-slide-prev,
.pkg-swiper .swiper-slide-next {
  opacity: 0.72;
  transform: scale(0.92);
  filter: none;
}
.pkg-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.pkg-card:hover {
  box-shadow: 0 18px 50px rgba(6, 182, 212, 0.16);
  transform: translateY(-4px);
}
.pkg-img {
  position: relative;
  height: 240px;
  overflow: hidden;
}
.pkg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.pkg-card:hover .pkg-img img {
  transform: scale(1.06);
}
.pkg-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 26, 32, 0.7), transparent 55%);
}
.pkg-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--cyan);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 50px;
  z-index: 1;
}
.pkg-body {
  padding: 20px 22px 24px;
}
.pkg-cat {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 5px;
}
.pkg-name {
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.pkg-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.pkg-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.pkg-price {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--cyan);
}
.pkg-btn {
  background: var(--dark);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: all 0.3s;
}
.pkg-btn:hover {
  background: var(--cyan);
}
.pkg-swiper .swiper-button-next,
.pkg-swiper .swiper-button-prev {
  color: var(--cyan);
  background: #fff;
  border: 1.5px solid var(--border);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(6, 182, 212, 0.1);
  transition: all 0.3s;
}
.pkg-swiper .swiper-button-next::after,
.pkg-swiper .swiper-button-prev::after {
  font-size: 14px;
  font-weight: 700;
}
.pkg-swiper .swiper-button-next:hover,
.pkg-swiper .swiper-button-prev:hover {
  background: var(--cyan);
  color: #fff;
  border-color: var(--cyan);
}
.pkg-swiper .swiper-pagination-bullet {
  background: var(--muted);
  opacity: 0.4;
}
.pkg-swiper .swiper-pagination-bullet-active {
  background: var(--cyan);
  opacity: 1;
}

/* ── ABOUT ── */
.about-sec {
  padding: 80px 5%;
  background: #f0fafc;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-w {
  position: relative;
}
.aif {
  border-radius: 20px;
  overflow: hidden;
}
.aif img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s;
}
.about-img-w:hover .aif img {
  transform: scale(1.04);
}
.ab-border {
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 24px;
  pointer-events: none;
  transition: transform 0.5s;
}
.about-img-w:hover .ab-border {
  transform: translate(6px, 6px);
}
.ab-badge {
  position: absolute;
  bottom: -18px;
  right: -18px;
  background: var(--cyan);
  color: #fff;
  padding: 18px 22px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(6, 182, 212, 0.4);
}
.abb-num {
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}
.abb-lbl {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
  opacity: 0.85;
}
.about-quote {
  background: var(--cyan-xlight);
  border-left: 3px solid var(--cyan);
  border-radius: 0 12px 12px 0;
  padding: 14px 18px;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 20px;
}
.about-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 14px;
}
.abt-feats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 22px 0 30px;
}
.af-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.af-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--cyan-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 13px;
  flex-shrink: 0;
}
.af-txt strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 2px;
}
.af-txt span {
  font-size: 12px;
  color: var(--muted);
}
.read-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cyan);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 50px;
  text-decoration: none;
  border-bottom: 3px solid var(--cyan-dark);
  transition: all 0.2s;
}
.read-btn:hover {
  background: var(--cyan-dark);
  transform: translateY(-2px);
}
.read-btn i {
  transition: transform 0.3s;
}
.read-btn:hover i {
  transform: translateX(4px);
}

/* ── WHY CHOOSE US ── */
.why-sec {
  padding: 80px 5%;
  background: #fff;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.why-imgs {
  position: relative;
  height: 420px;
}
.wi1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 300px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(6, 182, 212, 0.12);
}
.wi1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.wi1:hover img {
  transform: scale(1.04);
}
.wi2 {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 52%;
  height: 220px;
  border-radius: 18px;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 12px 40px rgba(6, 182, 212, 0.14);
}
.wi2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}
.wi2:hover img {
  transform: scale(1.04);
}
.why-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.wcard {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1.5px solid var(--border);
  background: #f8fdfe;
  transition: all 0.3s;
}
.wcard:hover {
  border-color: var(--cyan);
  transform: translateX(4px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.08);
}
.wc-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cyan-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 17px;
  flex-shrink: 0;
  transition: all 0.3s;
}
.wcard:hover .wc-icon {
  background: var(--cyan);
  color: #fff;
}
.wc-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 3px;
}
.wc-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}
/* ══ RATINGS SECTION ══ */
.ratings-sec {
  padding: 72px 5%;
  background: #0f1a20 !important;
  position: relative;
  overflow: hidden;
}
.ratings-sec::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(6, 182, 212, 0.09),
    transparent 65%
  );
  pointer-events: none;
}
.ratings-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.rat-brand {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 16px;
}
.rat-brand span {
  color: #06b6d4 !important;
}
.rat-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 3vw, 34px);
  font-weight: 700;
  color: #fff !important;
  line-height: 1.22;
  margin-bottom: 16px;
}
.rat-title em {
  font-style: italic;
  color: #06b6d4 !important;
}
.stars-row {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.star-b {
  width: 48px;
  height: 48px;
  background: #06b6d4;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.star-b svg {
  width: 26px;
  height: 26px;
}
.rat-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6) !important;
  line-height: 1.8;
  margin-bottom: 28px;
}
.rat-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.rb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff !important;
  font-size: 13px;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.2s;
}
.rb-solid {
  background: #06b6d4;
}
.rb-solid:hover {
  background: #0891b2;
  transform: translateY(-2px);
}
.rb-ghost {
  background: rgba(255, 255, 255, 0.07);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
}
.rb-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #06b6d4;
}

/* ── slider ── */
.rev-slider {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  width: 100%;
  max-width: 100%;
}
.rev-track {
  display: flex !important;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.rev-card {
  flex: 0 0 100% !important;
  min-width: 100% !important;
  width: 100% !important;
  box-sizing: border-box !important;
  background: rgba(255, 255, 255, 0.06) !important;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(6, 182, 212, 0.18) !important;
  border-radius: 18px;
  padding: 28px;
  word-break: break-word;
  overflow: hidden;
}
.rev-card:hover {
  border-color: rgba(6, 182, 212, 0.4) !important;
}
.rc-stars {
  color: #06b6d4 !important;
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 14px;
}
.rc-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72) !important;
  line-height: 1.82;
  margin-bottom: 22px;
  font-style: italic;
}
.rc-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.rc-avatar {
  width: 46px !important;
  height: 46px !important;
  min-width: 46px !important;
  max-width: 46px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 2px solid #06b6d4;
  flex-shrink: 0 !important;
  background: #1a3a45;
  display: block !important;
}
.rc-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff !important;
  margin-bottom: 3px;
}
.rc-from {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.42) !important;
}

/* dots */
.rev-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.rev-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.rev-dot.active {
  background: #06b6d4;
  width: 22px;
  border-radius: 4px;
}

/* ── tablet ── */
@media (max-width: 960px) {
  .ratings-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .rev-slider {
    width: 100%;
    max-width: 100%;
  }
  .rev-card {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    width: 100% !important;
    padding: 24px !important;
  }
}

/* ── mobile ── */
@media (max-width: 580px) {
  .ratings-sec {
    padding: 48px 4%;
  }
  .ratings-grid {
    gap: 28px;
  }
  .rat-btns {
    flex-direction: column;
  }
  .rb {
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }
  .rev-slider {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  .rev-card {
    flex: 0 0 100% !important;
    min-width: 100% !important;
    width: 100% !important;
    padding: 18px !important;
    border-radius: 14px;
    box-sizing: border-box !important;
  }
  .rc-text {
    font-size: 13px !important;
    line-height: 1.7 !important;
  }
  .rc-avatar {
    width: 40px !important;
    height: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
  }
  .rev-dots {
    margin-top: 14px;
  }
}

/* ── SERVICES ── */
.services-sec {
  padding: 80px 5%;
  background: #f0fafc;
}
.srv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 44px;
}
.srv-card {
  background: #fff;
  border-radius: 18px;
  padding: 30px 26px;
  border: 1.5px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
}
.srv-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  transform: scaleX(0);
  transition: transform 0.5s;
}
.srv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(6, 182, 212, 0.1);
  border-color: rgba(6, 182, 212, 0.25);
}
.srv-card:hover::after {
  transform: scaleX(1);
}
.srv-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--cyan-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  font-size: 22px;
  margin-bottom: 18px;
  transition: all 0.3s;
}
.srv-card:hover .srv-icon {
  background: var(--cyan);
  color: #fff;
}
.srv-title {
  font-family: "Playfair Display", serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.srv-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.75;
}

/* ── GALLERY ── */
.gallery-sec {
  padding: 80px 5%;
  background: #fff;
}
.gal-swiper {
  margin-top: 44px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(6, 182, 212, 0.1);
}
.gal-swiper .swiper-slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}
.gal-swiper .swiper-button-next,
.gal-swiper .swiper-button-prev {
  color: #fff;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  transition: all 0.3s;
}
.gal-swiper .swiper-button-next::after,
.gal-swiper .swiper-button-prev::after {
  font-size: 15px;
  font-weight: 700;
}
.gal-swiper .swiper-button-next:hover,
.gal-swiper .swiper-button-prev:hover {
  background: var(--cyan);
}
.gal-swiper .swiper-pagination-bullet {
  background: #fff;
  opacity: 0.45;
}
.gal-swiper .swiper-pagination-bullet-active {
  background: var(--cyan);
  opacity: 1;
}

/* ── TOUR MODAL ── */
.t-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.t-modal.open {
  display: flex;
}
.tm-bg {
  position: absolute;
  inset: 0;
  background: rgba(10, 8, 6, 0.88);
  backdrop-filter: blur(12px);
}
.tm-box {
  position: relative;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  animation: tmIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes tmIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(24px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}
.tm-img {
  width: 100%;
  height: 290px;
  object-fit: cover;
  display: block;
}
.tm-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.55);
  border: none;
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
  z-index: 2;
}
.tm-close:hover {
  background: rgba(239, 68, 68, 0.8);
}
.tm-body {
  padding: 26px 30px 30px;
}
.tm-cat {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cyan);
  font-weight: 700;
  margin-bottom: 6px;
}
.tm-title {
  font-family: "Playfair Display", serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.tm-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 22px;
}
.tm-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 22px;
}
.tmi {
  background: #f8fdfe;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
}
.tmi-l {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.tmi-v {
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
}
.tm-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.tmb {
  flex: 1;
  min-width: 130px;
  font-size: 14px;
  font-weight: 700;
  padding: 13px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: "DM Sans", sans-serif;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.tmb-p {
  background: var(--cyan);
  color: #fff;
}
.tmb-p:hover {
  background: var(--cyan-dark);
}
.tmb-g {
  background: transparent;
  color: var(--muted);
  border: 1.5px solid var(--border);
}
.tmb-g:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .about-grid,
  .why-grid,
  .ratings-grid {
    grid-template-columns: 1fr;
  }
  .why-imgs {
    height: 240px;
  }
  .srv-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-band-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .gal-swiper .swiper-slide img {
    height: 320px;
  }
}
@media (max-width: 580px) {
  .srv-grid,
  .abt-feats,
  .tm-meta {
    grid-template-columns: 1fr;
  }
  .gal-swiper .swiper-slide img {
    height: 220px;
  }
}
/* FOOTER */
.footer-main {
  background: #fff;
  padding: 56px 5% 0;
  border-top: 1px solid var(--border);
}
.footer-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 44px;
}
.f-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.f-brand-row img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--cyan);
}
.fb-name {
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
}
.fb-sub {
  font-size: 10px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.f-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 18px;
  max-width: 280px;
}
.f-contacts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.f-ct {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text);
}
.f-ct i {
  color: var(--cyan);
  width: 15px;
  text-align: center;
}
.f-socs {
  display: flex;
  gap: 8px;
}
.fsoc {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.3s;
}
.fsoc:hover {
  transform: translateY(-3px);
}
.fcol-title {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
  font-weight: 700;
}
.fcol-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fcol-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 5px;
}
.fcol-links a::before {
  content: "›";
  color: var(--cyan);
}
.fcol-links a:hover {
  color: var(--cyan);
}
.f-divider {
  border-top: 1px solid var(--border);
}
.f-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 18px 0 22px;
}
.f-copy {
  font-size: 12px;
  color: var(--muted);
}
.fbl {
  display: flex;
  gap: 18px;
}
.fbl a {
  font-size: 12px;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.fbl a:hover {
  color: var(--cyan);
}
.footer-strip {
  background: var(--cyan);
  padding: 12px 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-strip span,
.footer-strip a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
}
.footer-strip a:hover {
  color: #fff;
  text-decoration: underline;
}

/* WA FLOAT */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  text-decoration: none;
}
.wa-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.45);
  position: relative;
  z-index: 2;
  transition: transform 0.3s;
}
.wa-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: waPls 2s ease-out infinite;
  z-index: -1;
}
@keyframes waPls {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
.wa-tip {
  position: absolute;
  bottom: 50%;
  right: 66px;
  transform: translateY(50%) translateX(8px);
  background: #fff;
  color: #1a1a1a;
  padding: 7px 12px;
  border-radius: 8px;
  font-size: 13px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.wa-tip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #fff;
  border-right: none;
}
.wa-float:hover .wa-circle {
  transform: scale(1.1);
}
.wa-float:hover .wa-tip {
  opacity: 1;
  transform: translateY(50%) translateX(0);
}

/* RESPONSIVE */
@media (max-width: 960px) {
  .nav-links,
  .nav-book {
    display: none;
  }
  .ham-btn {
    display: flex;
  }
  .about-grid,
  .why-grid,
  .reviews-grid,
  .footer-cols {
    grid-template-columns: 1fr;
  }
  .why-imgs {
    height: 240px;
  }
  .srv-grid {
    grid-template-columns: 1fr 1fr;
  }
  .stats-band-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .gal-swiper .swiper-slide img {
    height: 320px;
  }
}
@media (max-width: 580px) {
  .srv-grid,
  .abt-feats,
  .tm-meta {
    grid-template-columns: 1fr;
  }
  .stats-band-inner {
    grid-template-columns: 1fr 1fr;
  }
  .hs-content {
    padding: 0 5%;
  }
  .gal-swiper .swiper-slide img {
    height: 240px;
  }
}
/* ── Footer full width ── */
.footer-bg {
  width: 100%;
  background: #ffffff;
  padding: 40px 0 0 0;
}

/* ── Card: full width with inner padding ── */
.footer-card {
  background: #ffffff;
  width: 100%;
  padding: 48px 6% 36px;
  position: relative;
  overflow: hidden;
}
/* ornamental circles */
.footer-card::before,
.footer-card::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  border: 65px solid rgba(195, 148, 100, 0.1);
  top: 50%;
  pointer-events: none;
}
.footer-card::before {
  left: -130px;
  transform: translateY(-50%);
}
.footer-card::after {
  right: -130px;
  transform: translateY(-50%);
}

/* ── Logo ── */
.logo-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #2e1d0e;
}
.logo-sub {
  font-size: 10px;
  letter-spacing: 0.26em;
  color: #9a7458;
  text-transform: uppercase;
  margin-top: 3px;
}

/* ── Contact ── */
.contact-label {
  font-size: 11px;
  color: #9a7458;
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-bottom: 3px;
  text-transform: uppercase;
}
.contact-value {
  font-size: 14px;
  color: #2e1d0e;
  font-weight: 500;
}

/* ── CTA heading ── */
.cta-heading {
  font-family: "Playfair Display", serif;
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  color: #2e1d0e;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* ── Buttons ── */
.btn-primary {
  background: #06b6d4;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.25s;
  white-space: nowrap;
}
.btn-primary:hover {
  background: #0891b2;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.38);
}
.btn-secondary {
  background: #fff;
  color: #2e1d0e;
  font-weight: 500;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 50px;
  border: 1.5px solid #d6bfa4;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
  white-space: nowrap;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: #c49a6c;
}

/* ── Divider ── */
.divider {
  border: none;
  border-top: 1px solid #ddd0c0;
  margin: 28px 0 22px;
}

/* ── Available tag ── */
.available-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #6b5040;
  font-weight: 500;
}
.available-dot {
  width: 22px;
  height: 22px;
  background: #06b6d4;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.available-dot i {
  font-size: 10px;
  color: #fff;
}

/* ── Tour badges ── */
.tour-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1.5px solid #d6bfa4;
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: #3a2a18;
  white-space: nowrap;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
  cursor: default;
}
.tour-badge:hover {
  border-color: #06b6d4;
  box-shadow: 0 4px 14px rgba(6, 182, 212, 0.22);
  transform: translateY(-2px);
}
.tour-badge i {
  color: #c49a6c;
  font-size: 13px;
}

/* ── Social icons ── */
.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  flex-shrink: 0;
}
.social-btn:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.fb {
  background: #1877f2;
}
.ig {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
}
.tt {
  background: #010101;
}
.wa {
  background: #25d366;
}

/* ── Bottom strip full width ── */
.bottom-strip {
  background: #06b6d4;
  width: 100%;
  padding: 13px 6%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.bottom-strip span,
.bottom-strip a {
  font-size: 12.5px;
  color: #fff;
  text-decoration: none;
  opacity: 0.88;
  transition: opacity 0.2s;
}
.bottom-strip a:hover {
  opacity: 1;
  text-decoration: underline;
}

/* ── WhatsApp float ── */
.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 999;
  text-decoration: none;
}
.wa-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  transition:
    transform 0.3s,
    box-shadow 0.3s;
  position: relative;
  z-index: 2;
}
.wa-circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  animation: pulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}
.wa-tip {
  position: absolute;
  bottom: 50%;
  right: 68px;
  transform: translateY(50%) translateX(8px);
  background: #fff;
  color: #1a1a1a;
  padding: 8px 13px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.3s,
    transform 0.3s;
}
.wa-tip::after {
  content: "";
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: #fff;
  border-right: none;
}
.wa-float:hover .wa-circle {
  transform: scale(1.12);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}
.wa-float:hover .wa-tip {
  opacity: 1;
  transform: translateY(50%) translateX(0);
}

/* ── Animations ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fu {
  animation: fadeUp 0.55s ease forwards;
  opacity: 0;
}
.d1 {
  animation-delay: 0.08s;
}
.d2 {
  animation-delay: 0.18s;
}
.d3 {
  animation-delay: 0.28s;
}
.d4 {
  animation-delay: 0.38s;
}
.d5 {
  animation-delay: 0.48s;
}

/* ══════════════════════════════
       RESPONSIVE LAYOUT
    ══════════════════════════════ */

/* TOP ROW */
.top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
  z-index: 1;
}
.left-col {
  flex: 1 1 320px;
}
.right-col {
  flex: 1 1 260px;
  text-align: right;
}

/* BOTTOM ROW */
.bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.badges-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* CONTACT ROW */
.contact-row {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
}

/* SOCIALS ROW */
.socials-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  align-items: center;
  flex-wrap: wrap;
}

/* ── TABLET (max 768px) ── */
@media (max-width: 768px) {
  .footer-card {
    padding: 36px 5% 28px;
  }
  .right-col {
    text-align: left;
    flex: 1 1 100%;
  }
  .right-col .btn-wrap {
    justify-content: flex-start;
  }
  .cta-heading {
    font-size: 22px;
  }
  .bottom-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .bottom-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* ── MOBILE (max 480px) ── */
@media (max-width: 480px) {
  .footer-card {
    padding: 28px 4% 24px;
  }
  .contact-row {
    flex-direction: column;
    gap: 14px;
  }
  .left-col {
    flex: 1 1 100%;
  }
  .logo-title {
    font-size: 20px;
  }
  .cta-heading {
    font-size: 20px;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  .badges-wrap {
    gap: 6px;
  }
  .tour-badge {
    font-size: 12px;
    padding: 7px 12px;
  }
  .footer-card::before,
  .footer-card::after {
    display: none;
  }
}
