/* ═══════════════════════════════════════════
   SALMAN TRAVEL DIARIES — style.css
   ═══════════════════════════════════════════ */

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

:root {
  --navy:      #0d1b2a;
  --navy2:     #162032;
  --navy3:     #1e2d42;
  --gold:      #c9a227;
  --gold-lt:   #e8c96a;
  --gold-dk:   #9a7a1a;
  --green-isl: #0e3320;
  --green-mid: #1a5c38;
  --cream:     #f9f6f1;
  --white:     #ffffff;
  --txt:       #1a1a2e;
  --txt-md:    #4b5563;
  --txt-lt:    #9ca3af;
  --blue:      #1a4fa3;
  --teal:      #0e4d6a;
  --purple:    #5b21b6;
  --radius:    12px;
  --radius-lg: 20px;
  --shadow:    0 4px 24px rgba(0,0,0,0.10);
  --shadow-hv: 0 14px 44px rgba(0,0,0,0.20);
  --trans:     all 0.3s cubic-bezier(0.25,0.8,0.25,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--txt);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }


/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--trans);
}
.navbar.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 12px 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.nav-container {
  display: flex; align-items: center; gap: 1.5rem;
  width: min(1200px, 92vw);
  margin: 0 auto;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--white);
  font-size: 0.95rem;
  margin-right: auto;
  white-space: nowrap;
}
.logo-plane {
  color: var(--gold); font-size: 1.2rem;
  transform: rotate(0deg);
  display: inline-block;
}
.nav-logo strong { color: var(--gold); }

.nav-links {
  display: flex; align-items: center; gap: 1.5rem;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  transition: color 0.2s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.nav-links a:hover           { color: var(--gold); }
.nav-links a:hover::after    { transform: scaleX(1); }

.nav-subscribe {
  display: inline-flex; align-items: center; gap: 7px;
  background: #ff0000;
  color: var(--white);
  padding: 9px 20px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  white-space: nowrap;
  transition: var(--trans);
  box-shadow: 0 3px 14px rgba(255,0,0,0.35);
}
.nav-subscribe:hover { background: #cc0000; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ═══════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh; min-height: 640px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.07); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    155deg,
    rgba(13,27,42,0.88) 0%,
    rgba(13,27,42,0.60) 45%,
    rgba(13,27,42,0.82) 100%
  );
}

/* ── World Map SVG ── */
.hero-map {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  opacity: 0.7;
  pointer-events: none;
}
.city-pulse {
  animation: pulse 2.5s ease-in-out infinite;
}
.city-ring {
  animation: ringExpand 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; r: 5; }
  50%       { opacity: 0.6; r: 7; }
}
@keyframes ringExpand {
  0%   { r: 12; opacity: 0.5; }
  100% { r: 22; opacity: 0; }
}

/* Animated planes along SVG paths */
#animated-plane-1 {
  offset-path: path("M 580,220 Q 480,80 320,200");
  animation: flyRoute1 8s linear infinite;
}
#animated-plane-2 {
  offset-path: path("M 320,200 Q 500,280 720,290");
  animation: flyRoute2 10s linear infinite;
  animation-delay: 4s;
}
@keyframes flyRoute1 {
  0%   { offset-distance: 0%; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { offset-distance: 100%; opacity: 0; }
}
@keyframes flyRoute2 {
  0%   { offset-distance: 0%; opacity: 0; }
  10%  { opacity: 0.85; }
  90%  { opacity: 0.85; }
  100% { offset-distance: 100%; opacity: 0; }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 1.5rem;
  max-width: 820px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(201,162,39,0.18);
  border: 1px solid rgba(201,162,39,0.45);
  color: var(--gold-lt);
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 20px; border-radius: 50px;
  margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 9vw, 6.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}
.hero-title-gold { color: var(--gold); }
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: rgba(255,255,255,0.78);
  font-weight: 300;
  max-width: 580px;
  margin: 0 auto 2.25rem;
  line-height: 1.8;
}
.hero-btns {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; flex-wrap: wrap;
  margin-bottom: 3.25rem;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 9px;
  background: #ff0000; color: var(--white);
  padding: 15px 34px; border-radius: 50px;
  font-size: 0.92rem; font-weight: 600;
  transition: var(--trans);
  box-shadow: 0 4px 22px rgba(255,0,0,0.38);
}
.btn-primary:hover { background: #cc0000; transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,0,0,0.45); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 9px;
  border: 2px solid rgba(255,255,255,0.55);
  color: var(--white);
  padding: 13px 30px; border-radius: 50px;
  font-size: 0.92rem; font-weight: 500;
  transition: var(--trans);
  backdrop-filter: blur(4px);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.hero-stats {
  display: flex; align-items: center; justify-content: center; gap: 2.5rem;
}
.hstat { text-align: center; }
.hstat-n {
  display: inline-block;
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hstat-plus { color: var(--gold); font-size: 1.6rem; font-weight: 700; }
.hstat-l {
  display: block; font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-top: 4px;
}
.hstat-div { width: 1px; height: 44px; background: rgba(255,255,255,0.18); }

.hero-scroll {
  position: absolute; bottom: 2.25rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  animation: bounceDown 2.5s ease-in-out infinite;
}
@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(10px); }
}


/* ═══════════════════════════════════════════
   SECTION WRAPPERS
   ═══════════════════════════════════════════ */
.vsection       { padding: 96px 0; }
.section-dark   { background: var(--navy); }
.section-cream  { background: var(--cream); }


/* ── Section Header ── */
.sec-head { text-align: center; margin-bottom: 3.5rem; }

.sec-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.73rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
}
.sec-head h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 700; color: var(--txt);
  margin-bottom: 0.8rem; line-height: 1.2;
}
.sec-head.light h2  { color: var(--white); }
.sec-head p {
  max-width: 620px; margin: 0 auto 1.4rem;
  color: var(--txt-md); font-size: 0.95rem; line-height: 1.85;
}
.sec-head.light p   { color: rgba(255,255,255,0.62); }

.sec-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-size: 0.86rem; font-weight: 600;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.sec-link:hover         { border-color: var(--gold); }
.sec-link.light         { color: var(--gold-lt); }
.sec-link.light:hover   { border-color: var(--gold-lt); }


/* ═══════════════════════════════════════════
   GRIDS
   ═══════════════════════════════════════════ */
.grid { display: grid; gap: 1.5rem; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }


/* ═══════════════════════════════════════════
   VIDEO CARDS
   ═══════════════════════════════════════════ */
.vcard {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: var(--trans);
  display: flex; flex-direction: column;
}
.vcard:hover { transform: translateY(-8px); box-shadow: var(--shadow-hv); }
.vcard.dark  { background: var(--navy2); }

/* Thumbnail */
.vthumb {
  position: relative; aspect-ratio: 16/9;
  overflow: hidden; background: #0a0e18;
  flex-shrink: 0;
}
.vthumb img { transition: transform 0.55s ease; }
.vcard:hover .vthumb img { transform: scale(1.06); }

/* Play overlay */
.vplay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.28);
  opacity: 0; transition: opacity 0.3s;
}
.vplay i {
  width: 54px; height: 54px;
  background: rgba(255,255,255,0.94);
  color: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem; padding-left: 5px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  transition: transform 0.2s;
}
.vplay.large i { width: 68px; height: 68px; font-size: 1.4rem; }
.vcard:hover .vplay       { opacity: 1; }
.vcard:hover .vplay i     { transform: scale(1.12); }
.feat-thumb:hover .vplay  { opacity: 1; }
.feat-thumb:hover .vplay i{ transform: scale(1.12); }

/* Badge */
.vbadge {
  position: absolute; top: 10px; left: 10px;
  background: var(--navy); color: var(--gold);
  font-size: 0.66rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 50px;
}
.badge-blue   { background: var(--blue);   color: #fff; }
.badge-green  { background: var(--green-mid); color: #fff; }
.badge-gold   { background: var(--gold);   color: var(--navy); }
.badge-purple { background: var(--purple); color: #fff; }

/* Card info text */
.vinfo {
  padding: 1.1rem 1.2rem 1.3rem;
  flex: 1;
}
.vinfo h3 {
  font-size: 0.93rem; font-weight: 600;
  margin-bottom: 0.38rem; line-height: 1.45;
  color: var(--txt);
}
.vcard.dark .vinfo h3  { color: var(--white); }
.vinfo p {
  font-size: 0.79rem; color: var(--txt-lt); line-height: 1.55;
}
.vcard.dark .vinfo p   { color: rgba(255,255,255,0.48); }

/* Clickable thumbnail wrapper */
.vcard-link { display: block; }
.vcard-link:hover { text-decoration: none; }

/* Share row — hidden until card is hovered */
.vshare {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.85rem;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.22s ease, transform 0.22s ease;
  pointer-events: none;
}
.vcard:hover .vshare {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Individual share buttons */
.sbtn {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem;
  flex-shrink: 0;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
  outline: none;
}
.sbtn:hover { transform: scale(1.2); }
.sbtn:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.sbtn-wa   { background: #25D366; color: #fff; }
.sbtn-wa:hover   { box-shadow: 0 4px 12px rgba(37,211,102,0.45); }
.sbtn-x    { background: #000; color: #fff; }
.sbtn-x:hover    { box-shadow: 0 4px 12px rgba(0,0,0,0.55); }
.sbtn-fb   { background: #1877F2; color: #fff; }
.sbtn-fb:hover   { box-shadow: 0 4px 12px rgba(24,119,242,0.45); }
.sbtn-copy { background: var(--gold); color: var(--navy); }
.sbtn-copy:hover { box-shadow: 0 4px 12px rgba(201,162,39,0.45); }

/* Copied feedback state */
.sbtn-copy.copied { background: #22c55e; color: #fff; }


/* ═══════════════════════════════════════════
   MASJID NABAWI — Islamic Art Cards
   ═══════════════════════════════════════════ */
.nabawi-art {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

/* Islamic diamond grid pattern overlay */
.na-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient( 45deg, rgba(201,162,39,0.09) 0, rgba(201,162,39,0.09) 1px, transparent 0, transparent 50%),
    repeating-linear-gradient(-45deg, rgba(201,162,39,0.09) 0, rgba(201,162,39,0.09) 1px, transparent 0, transparent 50%);
  background-size: 24px 24px;
}

/* Colour variants */
.nabawi-art-2 { background: linear-gradient(145deg, #0a2518 0%, #134229 55%, #0d3020 100%); }
.nabawi-art-3 { background: linear-gradient(145deg, #0e1e3a 0%, #1a3560 55%, #0a2a40 100%); }
.nabawi-art-4 { background: linear-gradient(145deg, #2a1500 0%, #4a2a00 55%, #3a1e00 100%); }

/* Gold border glow on hover */
.nabawi-art::after {
  content: '';
  position: absolute; inset: 0;
  border: 2px solid rgba(201,162,39,0);
  border-radius: inherit;
  transition: border-color 0.3s;
}
.vcard:hover .nabawi-art::after { border-color: rgba(201,162,39,0.5); }

.na-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 8px; text-align: center;
  padding: 1rem;
}
.na-icon {
  font-size: 2.8rem;
  color: rgba(201,162,39,0.85);
  filter: drop-shadow(0 0 12px rgba(201,162,39,0.4));
  margin-bottom: 4px;
}
.na-ep {
  font-size: 0.78rem; font-weight: 700;
  color: var(--gold); letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(201,162,39,0.15);
  border: 1px solid rgba(201,162,39,0.35);
  padding: 3px 12px; border-radius: 50px;
}
.na-sub {
  font-size: 0.8rem; color: rgba(255,255,255,0.7);
  font-weight: 400;
}


/* ═══════════════════════════════════════════
   GRADIENT THUMBNAIL CARDS (Flights, Walking)
   ═══════════════════════════════════════════ */
.vthumb.vgrad {
  display: flex; align-items: center; justify-content: center;
}
.vgrad-icon {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  color: rgba(255,255,255,0.82); z-index: 1;
}
.vgrad-icon i    { font-size: 2.8rem; }
.vgrad-icon span {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.grad-flight { background: linear-gradient(145deg, #0a1e44 0%, #1a4080 55%, #0f3060 100%); }
.grad-walk   { background: linear-gradient(145deg, #1a0e34 0%, #3a2080 55%, #0e2e40 100%); }


/* ═══════════════════════════════════════════
   CTA CARD
   ═══════════════════════════════════════════ */
.cta-card {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, #1a0606, #300000);
  border: 1px solid rgba(255,60,60,0.18);
  min-height: 220px;
}
.cta-inner { text-align: center; padding: 2.5rem 1.5rem; }
.cta-yt    { font-size: 3.2rem; color: #ff0000; display: block; margin-bottom: 1rem; }
.cta-inner h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.5rem; }
.cta-inner p  { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-bottom: 1.4rem; line-height: 1.6; }

/* ── Airlines Reviewed Strip ─────────────────── */
.airlines-strip {
  background: rgba(0,0,0,0.25);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.75rem 0;
  overflow: hidden;
}
.airlines-label {
  text-align: center;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 1.2rem;
}
.airlines-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.airlines-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  animation: marquee-scroll 35s linear infinite;
}
.airlines-track:hover { animation-play-state: paused; }
@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.al-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 14px 20px;
  min-width: 110px;
  transition: var(--trans);
  cursor: default;
  flex-shrink: 0;
}
.al-card:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(201,162,39,0.4);
  transform: translateY(-3px);
}
.al-card img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  transition: opacity 0.2s;
}
.al-card:hover img { opacity: 1; filter: none; }
.al-card span {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  text-align: center;
}
.btn-sub {
  display: inline-block; background: #ff0000; color: var(--white);
  padding: 10px 26px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600;
  transition: var(--trans);
}
.btn-sub:hover { background: #cc0000; transform: translateY(-2px); }


/* ═══════════════════════════════════════════
   QUOTE CARD
   ═══════════════════════════════════════════ */
.quote-card {
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
  min-height: 220px;
}
.quote-inner { padding: 2.5rem 1.75rem; text-align: center; }
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5.5rem; color: var(--gold);
  line-height: 0.55; display: block; margin-bottom: 1.25rem;
}
.quote-inner p {
  color: rgba(255,255,255,0.78); font-size: 0.92rem;
  line-height: 1.75; font-style: italic; margin-bottom: 0.9rem;
}
.quote-inner span { color: var(--gold); font-size: 0.78rem; font-weight: 600; }


/* ═══════════════════════════════════════════
   VIRAL SHORTS SECTION
   ═══════════════════════════════════════════ */
.shorts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.short-card {
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--trans);
}
.short-card:hover { transform: translateY(-8px) scale(1.02); }

.short-inner {
  position: relative;
  aspect-ratio: 9/16;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.06);
}
.short-pattern {
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(255,255,255,0.04) 28px, rgba(255,255,255,0.04) 29px),
    repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(255,255,255,0.04) 28px, rgba(255,255,255,0.04) 29px);
}

/* Shorts colour themes */
.short-madinah  { background: linear-gradient(180deg, #0a2518 0%, #1a5c38 50%, #0a1e10 100%); }
.short-bali     { background: linear-gradient(180deg, #0a2040 0%, #1a5080 50%, #0a300a 100%); }
.short-pakistan { background: linear-gradient(180deg, #1a1000 0%, #4a3000 50%, #2a1800 100%); }
.short-flight   { background: linear-gradient(180deg, #0a1040 0%, #1a2888 50%, #0a1030 100%); }

/* Shorts with real image background */
.short-img {
  background: #0a0e18;
  overflow: hidden;
}
.short-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.5s;
}
.short-card:hover .short-bg-img { opacity: 0.5; transform: scale(1.06); }
.short-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}
.short-title {
  position: absolute; bottom: 80px; left: 0; right: 0;
  text-align: center;
  color: var(--white);
  font-size: 0.9rem; font-weight: 600;
  padding: 0 1rem;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.short-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; gap: 12px; text-align: center;
  padding: 1.5rem;
}
.short-icon {
  font-size: 3rem; color: rgba(255,255,255,0.85);
  filter: drop-shadow(0 0 14px rgba(255,255,255,0.3));
}
.short-label {
  font-size: 0.95rem; font-weight: 600;
  color: var(--white); line-height: 1.35;
}

.short-play {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.3);
  opacity: 0; transition: opacity 0.3s; z-index: 3;
}
.short-play i {
  width: 56px; height: 56px;
  background: rgba(255,255,255,0.94);
  color: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; padding-left: 5px;
}
.short-card:hover .short-play { opacity: 1; }

.short-badge {
  position: absolute; bottom: 50px; left: 12px;
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.8);
  font-size: 0.68rem; font-weight: 600;
  padding: 4px 10px; border-radius: 50px;
  backdrop-filter: blur(6px); z-index: 2;
}
.shorts-tag {
  position: absolute; bottom: 12px; left: 12px;
  display: flex; align-items: center; gap: 6px;
  background: #ff0000;
  color: var(--white);
  font-size: 0.68rem; font-weight: 700;
  padding: 4px 10px; border-radius: 50px; z-index: 2;
}


/* ═══════════════════════════════════════════
   FEATURED ROW — Pakistan and World
   ═══════════════════════════════════════════ */
.featured-row {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 2rem;
  align-items: start;
}
.feat-thumb {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 16/9;
  display: block;
  box-shadow: var(--shadow);
  transition: var(--trans);
}
.feat-thumb:hover { transform: translateY(-5px); box-shadow: var(--shadow-hv); }
.feat-thumb img   { transition: transform 0.6s ease; }
.feat-thumb:hover img { transform: scale(1.05); }

.feat-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(10,18,32,0.95));
  padding: 3rem 1.75rem 1.75rem;
}
.feat-overlay h3 {
  color: var(--white); font-family: 'Playfair Display', serif;
  font-size: 1.5rem; margin: 0.6rem 0 0.45rem;
}
.feat-overlay p  { color: rgba(255,255,255,0.68); font-size: 0.86rem; }

.feat-side { display: flex; flex-direction: column; gap: 1rem; }

.dest-item {
  display: flex; align-items: center; gap: 1rem;
  background: var(--white);
  border-radius: var(--radius); padding: 1rem 1.25rem;
  box-shadow: var(--shadow); transition: var(--trans);
}
.section-dark .dest-item { background: var(--navy3); }
.dest-item:hover { transform: translateX(5px); }
.dest-item i {
  width: 44px; height: 44px;
  background: rgba(201,162,39,0.12);
  color: var(--gold); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.dest-item div { display: flex; flex-direction: column; gap: 2px; }
.dest-item strong { font-size: 0.88rem; color: var(--txt); }
.section-dark .dest-item strong { color: var(--white); }
.dest-item span  { font-size: 0.76rem; color: var(--txt-lt); }

.btn-explore {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--gold); color: var(--navy);
  padding: 13px 26px; border-radius: 50px;
  font-size: 0.86rem; font-weight: 600;
  transition: var(--trans); margin-top: 0.5rem;
}
.btn-explore:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(201,162,39,0.32);
}

.world-stats { display: flex; gap: 1rem; }
.wstat {
  flex: 1; background: var(--navy3);
  border: 1px solid rgba(201,162,39,0.18);
  border-radius: var(--radius); padding: 1.4rem;
  text-align: center;
}
.section-cream .wstat { background: var(--white); }
.wstat span {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; font-weight: 700; color: var(--gold);
  line-height: 1.1;
}
.wstat small { font-size: 0.74rem; color: var(--txt-lt); }
.world-text {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem; line-height: 1.8;
}
.section-cream .world-text { color: var(--txt-md); }


/* ═══════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════ */
.about-sec {
  padding: 96px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 5rem; align-items: center;
}
.about-left { display: flex; justify-content: center; }
.about-avatar { text-align: center; }
.about-avatar a {
  display: block;
  width: 220px; height: 220px;
  border-radius: 50%; overflow: hidden;
  border: 4px solid var(--gold);
  box-shadow: 0 8px 44px rgba(201,162,39,0.32);
  margin: 0 auto 1.25rem;
  transition: var(--trans);
}
.about-avatar a:hover { transform: scale(1.04); box-shadow: 0 14px 56px rgba(201,162,39,0.48); }
.avatar-fallback {
  width: 100%; height: 100%;
  background: var(--navy2);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 5rem;
}
.avatar-tag {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--navy);
  color: var(--gold);
  font-size: 0.76rem; font-weight: 600;
  padding: 7px 18px; border-radius: 50px;
}

.about-right .sec-tag { margin-bottom: 0.6rem; }
.about-right h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 0.85rem;
}
.about-line {
  width: 56px; height: 3px;
  background: var(--gold); border-radius: 2px;
  margin-bottom: 1.4rem;
}
.about-right p {
  color: var(--txt-md); font-size: 0.95rem;
  line-height: 1.85; margin-bottom: 1rem;
}
.about-tags {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
  margin-bottom: 2rem;
}
.about-tags span {
  background: var(--white);
  border: 1px solid rgba(201,162,39,0.3);
  color: var(--txt); font-size: 0.78rem;
  padding: 5px 14px; border-radius: 50px;
  transition: var(--trans);
}
.about-tags span:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }


/* ═══════════════════════════════════════════
   BLOG SECTION
   ═══════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--trans);
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-hv); }

.blog-card-thumb {
  display: block;
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--navy);
}
.blog-thumb-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.blog-card:hover .blog-thumb-img { transform: scale(1.06); }

.blog-thumb-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #0d2a1a 0%, #1a5c38 50%, #0a3060 100%);
  display: flex; align-items: center; justify-content: center;
}
.blog-thumb-placeholder i {
  font-size: 4rem;
  color: rgba(201,162,39,0.35);
}

.blog-cat-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold); color: var(--navy);
  font-size: 0.67rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
  z-index: 2;
}

/* Text overlay on thumbnail */
.blog-thumb-text {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(13,27,42,0.88));
  padding: 2rem 1.1rem 0.9rem;
  z-index: 2;
}
.blog-thumb-country {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600;
  color: var(--gold-lt); letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 4px;
}
.blog-thumb-text p {
  color: rgba(255,255,255,0.9);
  font-size: 0.84rem; font-weight: 600;
  line-height: 1.3; margin: 0;
}

.blog-card-body {
  padding: 1.6rem 1.75rem 1.85rem;
  flex: 1; display: flex; flex-direction: column;
}
.blog-card-meta {
  display: flex; gap: 1.1rem;
  margin-bottom: 0.85rem;
  font-size: 0.76rem; color: var(--txt-lt);
}
.blog-card-meta i { color: var(--gold); margin-right: 4px; }
.blog-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; font-weight: 700;
  line-height: 1.4; margin-bottom: 0.7rem;
  color: var(--txt);
}
.blog-card-body h3 a { color: inherit; transition: color 0.2s; }
.blog-card-body h3 a:hover { color: var(--gold); }
.blog-card-body p {
  font-size: 0.88rem; color: var(--txt-md);
  line-height: 1.75; margin-bottom: 1.2rem; flex: 1;
}
.blog-read-more {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--gold); font-size: 0.84rem; font-weight: 600;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s, gap 0.2s;
  align-self: flex-start;
}
.blog-read-more:hover { border-color: var(--gold); gap: 11px; }

/* Coming soon card */
.blog-coming-soon {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy2) 100%);
  border: 1px dashed rgba(201,162,39,0.3);
  min-height: 320px;
}
.blog-soon-inner { text-align: center; padding: 2.5rem 2rem; }
.blog-soon-icon {
  font-size: 3rem; color: var(--gold);
  opacity: 0.5; display: block; margin-bottom: 1.2rem;
}
.blog-coming-soon h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 0.6rem; }
.blog-coming-soon p  { color: rgba(255,255,255,0.45); font-size: 0.85rem; line-height: 1.7; margin-bottom: 1.5rem; }

@media (max-width: 820px) {
  .blog-grid { grid-template-columns: 1fr; }
}


/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer { background: var(--navy); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 3.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-size: 1rem; font-weight: 600;
  margin-bottom: 0.8rem;
}
.footer-logo i { color: var(--gold); font-size: 1.2rem; }
.footer-brand p {
  color: rgba(255,255,255,0.42);
  font-size: 0.84rem; line-height: 1.75; margin-bottom: 1.4rem;
}
.social-row { display: flex; gap: 0.75rem; }
.social-yt {
  width: 42px; height: 42px;
  background: rgba(255,0,0,0.14);
  border: 1px solid rgba(255,0,0,0.28);
  color: #ff5555; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; transition: var(--trans);
}
.social-yt:hover { background: #ff0000; border-color: #ff0000; color: #fff; transform: translateY(-2px); }

.social-fb {
  width: 42px; height: 42px;
  background: rgba(24,119,242,0.14);
  border: 1px solid rgba(24,119,242,0.28);
  color: #5599ff; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--trans);
}
.social-fb:hover { background: #1877F2; border-color: #1877F2; color: #fff; transform: translateY(-2px); }

.social-ig {
  width: 42px; height: 42px;
  background: rgba(225,48,108,0.12);
  border: 1px solid rgba(225,48,108,0.28);
  color: #e1306c; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem; transition: var(--trans);
}
.social-ig:hover { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: transparent; color: #fff; transform: translateY(-2px); }

.social-tt {
  width: 42px; height: 42px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.75); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--trans);
}
.social-tt:hover { background: #010101; border-color: #69C9D0; color: #fff; transform: translateY(-2px); }

/* Footer contact email */
.footer-contact {
  display: flex; align-items: center; gap: 8px;
  margin-top: 1rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
}
.footer-contact i { color: var(--gold); font-size: 0.85rem; flex-shrink: 0; }
.footer-contact a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--gold); }

/* About section contact email */
.about-contact {
  display: flex; align-items: center; gap: 9px;
  margin-top: 1rem;
  font-size: 0.88rem;
}
.about-contact i { color: var(--gold); font-size: 0.9rem; flex-shrink: 0; }
.about-contact a {
  color: var(--txt-md);
  transition: color 0.2s;
}
.about-contact a:hover { color: var(--gold); }

/* About section social row */
.about-social {
  display: flex; gap: 0.75rem;
  margin-top: 1.25rem;
}
.about-social .social-fb,
.about-social .social-ig,
.about-social .social-tt {
  background: var(--white);
  border-color: rgba(201,162,39,0.25);
}

.footer-col h4 {
  color: var(--white); font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col ul li { margin-bottom: 0.65rem; }
.footer-col ul a {
  color: rgba(255,255,255,0.42); font-size: 0.83rem;
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--gold); }
.footer-col p {
  color: rgba(255,255,255,0.42); font-size: 0.83rem;
  line-height: 1.75; margin-bottom: 1.1rem;
}
.footer-sub-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: #ff0000; color: var(--white);
  padding: 11px 22px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  transition: var(--trans);
}
.footer-sub-btn:hover { background: #cc0000; transform: translateY(-2px); }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem;
  padding: 1.6rem 0;
  color: rgba(255,255,255,0.28); font-size: 0.78rem;
}
.heart { color: #ff5555; }


/* ═══════════════════════════════════════════
   FADE-IN ANIMATION (JS driven)
   ═══════════════════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .grid-4     { grid-template-columns: repeat(2, 1fr); }
  .shorts-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-row { grid-template-columns: 1fr; }
  .feat-side  { display: grid; grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 260px 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav-links, .nav-subscribe { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 58px; left: 0; right: 0;
    background: rgba(13,27,42,0.98);
    backdrop-filter: blur(14px);
    padding: 1.5rem 2rem 2rem;
    gap: 1.25rem; z-index: 999;
  }
  .hamburger { display: flex; }
  .vsection  { padding: 64px 0; }
  .grid-3    { grid-template-columns: 1fr; }
  .grid-2    { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-line { margin: 0 auto 1.4rem; }
  .about-tags { justify-content: center; }
  .hero-stats { gap: 1.5rem; }
  .feat-side  { grid-template-columns: 1fr; }
  .world-stats { flex-direction: row; }
}

@media (max-width: 560px) {
  .grid-4      { grid-template-columns: 1fr; }
  .shorts-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns   { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-outline { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .world-stats { flex-direction: column; }
}

@media (max-width: 400px) {
  .shorts-grid { grid-template-columns: 1fr; }
}
