*
  ══════════════════════════════
  RESET
  &
  ROOT
  ══════════════════════════════
  */
  *,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --cyan: #06b6d4;
  --cyan-d: #0891b2;
  --cyan-dd: #0e7490;
  --cyan-l: #cffafe;
  --cyan-p: #ecfeff;
  --cyan-50: #f0fdfa;
  --dark: #0a0f1e;
  --text: #1e293b;
  --muted: #64748b;
  --gold: #c49a6c;
  --gold-l: #d6bfa4;
  --brown: #2e1d0e;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: #f8fafc;
  color: var(--text);
  overflow-x: hidden;
  width: 100%;
}

/* ══════════════════════════════
   NAVBAR
══════════════════════════════ */
.navbar {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
  padding: 0 6%;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 16px rgba(6, 182, 212, 0.07);
  width: 100%;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(6, 182, 212, 0.25);
}
.nav-logo p {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
  letter-spacing: 0.3px;
}
.nav-logo p span {
  color: var(--cyan);
}

.nav-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 50px;
  border-bottom: 3px solid var(--cyan-d);
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.2s,
    box-shadow 0.2s;
}
.nav-back:hover {
  background: var(--cyan-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(6, 182, 212, 0.45);
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a0f1e 0%, #0d1f35 50%, #0a1628 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(6, 182, 212, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 182, 212, 0.07) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridMove 20s linear infinite;
}
@keyframes gridMove {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 60px;
  }
}
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
}
.o1 {
  width: 500px;
  height: 500px;
  background: rgba(6, 182, 212, 0.12);
  top: -100px;
  right: -100px;
  animation: fl1 8s ease-in-out infinite;
}
.o2 {
  width: 400px;
  height: 400px;
  background: rgba(8, 145, 178, 0.1);
  bottom: -80px;
  left: -80px;
  animation: fl2 10s ease-in-out infinite;
}
@keyframes fl1 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}
@keyframes fl2 {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-20px, 25px);
  }
}

.hero-photo {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 48%;
  overflow: hidden;
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.45) saturate(0.8);
}
.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #0a0f1e 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 6%;
  max-width: 660px;
}
.h-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 182, 212, 0.12);
  border: 1px solid rgba(6, 182, 212, 0.35);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
  width: fit-content;
  opacity: 1; /* default visible — GSAP will animate if loaded */
}
.dot {
  width: 7px;
  height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  animation: dotP 1.6s infinite;
}
@keyframes dotP {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(6, 182, 212, 0);
  }
}

.hero-content h1 {
  font-size: clamp(28px, 4.2vw, 56px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -1px;
}
.hl {
  background: linear-gradient(90deg, var(--cyan), #38bdf8);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.9;
  margin-bottom: 32px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-p {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cyan);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 8px 26px rgba(6, 182, 212, 0.45);
  transition: all 0.25s;
}
.btn-p:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(6, 182, 212, 0.6);
}
.btn-g {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 999px;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  transition: all 0.25s;
}
.btn-g:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.45);
}

.hero-meta-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  padding: 14px 6%;
  background: rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(6, 182, 212, 0.12);
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}
.mi {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}
.mi strong {
  color: rgba(255, 255, 255, 0.88);
}

/* ══════════════════════════════
   STATS BAR
══════════════════════════════ */
.stats-wrap {
  width: 100%;
  background: var(--dark);
}
.stats-inner {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid rgba(6, 182, 212, 0.1);
  /* NO max-width, full 100% */
}
.stat-item {
  padding: 26px 20px;
  text-align: center;
  border-right: 1px solid rgba(6, 182, 212, 0.1);
  transition: background 0.3s;
  cursor: default;
}
.stat-item:last-child {
  border-right: none;
}
.stat-item:hover {
  background: rgba(6, 182, 212, 0.05);
}
.stat-item .num {
  font-size: 28px;
  font-weight: 900;
  color: var(--cyan);
}
.stat-item .lbl {
  font-size: 11.5px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 3px;
}

/* ══════════════════════════════
   PAGE + LAYOUT
══════════════════════════════ */
.page {
  width: 100%;
  padding: 0;
}
.page-inner {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 0;
  align-items: start;
}

/* ══════════════════════════════
   ARTICLE
══════════════════════════════ */
.article {
  background: #fff;
  width: 100%;
  border-right: 1px solid #e2e8f0;
}
.article-header {
  background: linear-gradient(135deg, var(--dark) 0%, #0d1f35 100%);
  padding: 40px 6%;
  position: relative;
  overflow: hidden;
}
.article-header::after {
  content: "";
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.08);
}
.art-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.3);
  color: var(--cyan);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.article-header h1 {
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px;
  /* prevent overflow on tablet/small screens */
  word-break: break-word;
  overflow-wrap: break-word;
}
.art-meta-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.art-meta-row span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.48);
  display: flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.article-body {
  padding: 44px 6%;
}

.lead-text {
  font-size: 17px;
  color: #374151;
  line-height: 2;
  padding: 20px 22px;
  background: var(--cyan-p);
  border-left: 5px solid var(--cyan);
  border-radius: 0 12px 12px 0;
  margin-bottom: 32px;
}
.divider {
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    #a5f3fc 25%,
    #a5f3fc 75%,
    transparent
  );
  margin: 32px 0;
}

.sec {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 36px 0 14px;
}
.sec-icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-d));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.32);
}
.sec h2 {
  font-size: 20px;
  font-weight: 800;
  color: var(--cyan-d);
}

p {
  font-size: 15.5px;
  line-height: 2.05;
  color: #374151;
  margin-bottom: 12px;
}

.warn {
  background: #fff7ed;
  border: 1.5px solid #fed7aa;
  border-radius: 14px;
  padding: 16px 20px;
  margin: 20px 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.warn p {
  margin: 0;
  font-size: 14px;
  color: #92400e;
  line-height: 1.85;
}
.warn strong {
  color: #c2410c;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}
.g-box {
  background: var(--cyan-50);
  border: 1.5px solid #a5f3fc;
  border-radius: 14px;
  padding: 20px;
  transition: all 0.22s;
}
.g-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(6, 182, 212, 0.12);
}
.g-box h4 {
  font-size: 11px;
  font-weight: 800;
  color: var(--cyan-d);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.g-box ul {
  padding-left: 16px;
}
.g-box li {
  font-size: 14px;
  color: #374151;
  line-height: 2;
  list-style: disc;
}

.info-box {
  background: var(--cyan-p);
  border: 1.5px solid #a5f3fc;
  border-radius: 14px;
  padding: 20px 22px;
  margin: 18px 0;
}
.ib-head {
  font-size: 11px;
  font-weight: 800;
  color: var(--cyan-d);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.info-box p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
}
.info-box ul {
  padding-left: 18px;
}
.info-box li {
  font-size: 14px;
  color: #374151;
  line-height: 2.1;
  list-style: disc;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin: 20px 0;
}
.step {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: var(--cyan-50);
  border-radius: 12px;
  padding: 15px 17px;
  border: 1px solid #cffafe;
  transition: all 0.2s;
}
.step:hover {
  box-shadow: 0 5px 18px rgba(6, 182, 212, 0.1);
}
.step-n {
  min-width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--cyan), var(--cyan-d));
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  flex-shrink: 0;
  box-shadow: 0 3px 10px rgba(6, 182, 212, 0.3);
}
.step-b {
  font-size: 14px;
  color: #374151;
  line-height: 1.9;
  padding-top: 6px;
}

.verdict {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0e7490, #0891b2 50%, #06b6d4);
  border-radius: 20px;
  padding: 36px;
  margin-top: 36px;
  color: #fff;
  text-align: center;
}
.verdict::before,
.verdict::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}
.verdict::before {
  width: 200px;
  height: 200px;
  top: -60px;
  right: -50px;
}
.verdict::after {
  width: 240px;
  height: 240px;
  bottom: -80px;
  left: -50px;
}
.verdict h3 {
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.verdict > p {
  font-size: 15px;
  color: #cffafe;
  line-height: 2;
  margin: 0;
  position: relative;
  z-index: 1;
}
.v-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
  position: relative;
  z-index: 1;
}
.pill {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}
.pill:hover {
  background: rgba(255, 255, 255, 0.24);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.tag {
  background: var(--cyan-p);
  color: var(--cyan-dd);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 999px;
  border: 1px solid #a5f3fc;
  cursor: default;
  transition: background 0.2s;
}
.tag:hover {
  background: var(--cyan-l);
}

/* ══════════════════════════════
   SIDEBAR
══════════════════════════════ */
.sidebar {
  background: #f1f5f9;
  border-left: 1px solid #e2e8f0;
  padding: 24px 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 68px;
  height: calc(100vh - 68px);
  overflow-y: auto;
  overflow-x: hidden;
  width: 100%;
  min-width: 0;
}
.sidebar::-webkit-scrollbar {
  width: 4px;
}
.sidebar::-webkit-scrollbar-track {
  background: #e2e8f0;
}
.sidebar::-webkit-scrollbar-thumb {
  background: #a5f3fc;
  border-radius: 4px;
}
.sidebar::-webkit-scrollbar-thumb:hover {
  background: var(--cyan-d);
}

.s-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  overflow: hidden;
  width: 100%;
  min-width: 0;
  flex-shrink: 0; /* never shrink — show full height */
}
.s-head {
  background: linear-gradient(135deg, var(--dark), #0d1f35);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.s-head span {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}
.s-body {
  padding: 12px 16px;
  width: 100%;
}

.fact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 9px 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 13px;
}
.fact-row:last-child {
  border-bottom: none;
}
.fk {
  color: var(--muted);
}
.fv {
  font-weight: 700;
  color: var(--text);
}
.fv.ok {
  color: #16a34a;
}
.fv.warn-c {
  color: #d97706;
}

.rel-art {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 11px 0;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: all 0.2s;
}
.rel-art:last-child {
  border-bottom: none;
}
.rel-art:hover .rel-title {
  color: var(--cyan-d);
}
.rel-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--cyan-p), var(--cyan-l));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.rel-cat {
  font-size: 10px;
  color: var(--cyan-d);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
}
.rel-title {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  transition: color 0.2s;
}
.rel-date {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

.newsletter {
  background: linear-gradient(135deg, #0a0f1e, #0d2035);
  border-radius: 18px;
  padding: 22px;
}
.newsletter h3 {
  font-size: 15px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.newsletter p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  margin-bottom: 14px;
}
.nl-input {
  width: 100%;
  padding: 10px 13px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(6, 182, 212, 0.22);
  border-radius: 9px;
  color: #fff;
  font-size: 13px;
  outline: none;
  margin-bottom: 9px;
  transition: border 0.2s;
}
.nl-input::placeholder {
  color: rgba(255, 255, 255, 0.32);
}
.nl-input:focus {
  border-color: var(--cyan);
}
.nl-btn {
  width: 100%;
  padding: 10px;
  background: var(--cyan);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  border: none;
  border-radius: 9px;
  cursor: pointer;
  transition: all 0.2s;
}
.nl-btn:hover {
  background: var(--cyan-d);
}

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer-bg {
  width: 100%;
  background: #ffffff;
  padding: 40px 0 0;
}

.footer-card {
  background: #ffffff;
  width: 100%;
  padding: 48px 6% 36px;
  position: relative;
  overflow: hidden;
}
.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-title {
  font-size: clamp(18px, 2.5vw, 24px);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brown);
}
.logo-sub {
  font-size: 10px;
  letter-spacing: 0.26em;
  color: #9a7458;
  text-transform: uppercase;
  margin-top: 3px;
}

.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: var(--brown);
  font-weight: 500;
}
.contact-value a {
  color: var(--brown);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-value a:hover {
  color: var(--cyan-d);
}

.cta-heading {
  font-size: clamp(20px, 2.8vw, 28px);
  font-weight: 700;
  color: var(--brown);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

/* Footer buttons */
.btn-primary-f {
  background: var(--cyan);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}
.btn-primary-f:hover {
  background: var(--cyan-d);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(6, 182, 212, 0.38);
}
.btn-secondary-f {
  background: #fff;
  color: var(--brown);
  font-weight: 500;
  font-size: 14px;
  padding: 13px 28px;
  border-radius: 50px;
  border: 1.5px solid var(--gold-l);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  white-space: nowrap;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.btn-secondary-f:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-color: var(--gold);
}

.footer-hr {
  border: none;
  border-top: 1px solid #ddd0c0;
  margin: 28px 0 22px;
}

.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: var(--cyan);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.available-dot i {
  font-size: 10px;
  color: #fff;
}

.tour-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 50px;
  border: 1.5px solid var(--gold-l);
  background: #fff;
  font-size: 13px;
  font-weight: 500;
  color: #3a2a18;
  white-space: nowrap;
  cursor: default;
  transition:
    border-color 0.25s,
    box-shadow 0.25s,
    transform 0.25s;
}
.tour-badge:hover {
  border-color: var(--cyan);
  box-shadow: 0 4px 14px rgba(6, 182, 212, 0.22);
  transform: translateY(-2px);
}
.tour-badge i {
  color: var(--gold);
  font-size: 13px;
}

.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;
  flex-shrink: 0;
  transition:
    transform 0.3s,
    box-shadow 0.3s;
}
.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
  );
}
.wa-s {
  background: #25d366;
}

/* TOP / BOTTOM 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 {
  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-f {
  display: flex;
  gap: 36px;
  flex-wrap: wrap;
  margin: 16px 0;
}
.socials-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  align-items: center;
  flex-wrap: wrap;
}

/* BOTTOM STRIP */
.bottom-strip {
  background: var(--cyan);
  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: waPulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  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);
}

/* ══════════════════════════════
   FOOTER 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
══════════════════════════════ */
@media (max-width: 1100px) {
  .page-inner {
    grid-template-columns: 1fr 300px;
  }
}
@media (max-width: 900px) {
  .page-inner {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
    max-height: none;
    overflow: visible;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    padding: 28px 4%;
  }
  .newsletter {
    grid-column: 1/-1;
  }
  .hero-photo {
    display: none;
  }
  .hero-content {
    max-width: 100%;
  }
  .stats-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .article {
    border-right: none;
  }
}
@media (max-width: 768px) {
  .navbar {
    padding: 0 4%;
  }
  .hero-content {
    padding: 0 4%;
  }
  .article-body {
    padding: 28px 4%;
  }
  .article-header {
    padding: 32px 4%;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .sidebar {
    grid-template-columns: 1fr;
    padding: 24px 4%;
  }
  .footer-card {
    padding: 36px 4% 28px;
  }
  .right-col {
    text-align: left;
    flex: 1 1 100%;
  }
  .right-col .btn-wrap {
    justify-content: flex-start !important;
  }
  .bottom-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .hero-meta-bar {
    gap: 14px;
  }
  .hero-btns {
    flex-direction: column;
  }
  .btn-p,
  .btn-g {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item .num {
    font-size: 22px;
  }
  .contact-row-f {
    flex-direction: column;
    gap: 14px;
  }
  .footer-card::before,
  .footer-card::after {
    display: none;
  }
  .btn-primary-f,
  .btn-secondary-f {
    width: 100%;
    text-align: center;
  }
  .cta-heading {
    font-size: 20px;
  }
}
