/* =========================
   DMZ Scuba — main.css
   Balanced cinematic blue theme (CLEAN)
   ========================= */

/* ============================================================
   1) RESET / TOKENS / BASE
   ============================================================ */

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

html, body{
  margin: 0;
  padding: 0;
}

:root{
  /* Brand palette */
  --bg: #050B14;
  --bg-2: #071325;
  --text: #EAF2FF;
  --muted: rgba(234, 242, 255, 0.72);
  --muted-2: rgba(234, 242, 255, 0.55);

  --line: rgba(255,255,255,0.10);

  --accent: #E21B23;
  --accent-2: #B80F16;

  --glow: rgba(85, 185, 255, 0.18);
  --shadow: rgba(0,0,0,0.55);

  /* Layout */
  --max: 1180px;
  --radius: 18px;

  /* Type */
  --font: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
}

body{
  font-family: var(--font);
  background:
    radial-gradient(1200px 600px at 30% 0%, rgba(60, 170, 255, 0.10) 0%, rgba(5, 11, 20, 0) 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
  color: var(--text);
  line-height: 1.55;
}

a{ color: inherit; text-decoration: none; }

a:focus-visible{
  outline: 2px solid rgba(85,185,255,0.65);
  outline-offset: 3px;
  border-radius: 10px;
}

.muted{ color: var(--muted); }
.small{ font-size: 13px; }

.page-main{
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 18px 54px;
}

/* ============================================================
   2) BUTTONS
   ============================================================ */

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  border: 1px solid transparent;
  transition:
    transform 140ms ease,
    box-shadow 140ms ease,
    background 140ms ease,
    border-color 140ms ease,
    opacity 140ms ease;
  user-select: none;
}

.btn.primary{
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 14px 28px rgba(226, 27, 35, 0.18), 0 10px 26px rgba(0,0,0,0.45);
}

.btn.primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(226, 27, 35, 0.22), 0 12px 30px rgba(0,0,0,0.55);
}

.btn.secondary{
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.16);
  box-shadow: 0 10px 22px rgba(0,0,0,0.45);
}

.btn.secondary:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.26);
  background: rgba(255,255,255,0.08);
}

/* ============================================================
   3) HEADER / NAV
   ============================================================ */

.site-header{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 11, 20, 0.70);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow: 0 14px 30px rgba(0,0,0,0.45);
}

.logo img{
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 10px 18px rgba(0,0,0,0.55));
}

.main-nav{
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.main-nav a{
  font-weight: 650;
  color: rgba(234,242,255,0.86);
  padding: 10px 10px;
  border-radius: 12px;
  transition: background 140ms ease, color 140ms ease, transform 140ms ease;
}

.main-nav a:hover{
  background: rgba(255,255,255,0.06);
  color: rgba(234,242,255,1);
}

.main-nav a.is-active{
  background: rgba(255,255,255,0.06);
  color: rgba(234,242,255,1);
}

.main-nav .nav-cta{
  padding: 10px 14px;
  background: rgba(226,27,35,0.12);
  border: 1px solid rgba(226,27,35,0.35);
  color: rgba(234,242,255,0.96);
  box-shadow: 0 10px 22px rgba(0,0,0,0.45);
}

.main-nav .nav-cta:hover{
  background: rgba(226,27,35,0.18);
  border-color: rgba(226,27,35,0.55);
  transform: translateY(-1px);
}

/* ============================================================
   4) HOME HERO
   ============================================================ */

.hero{
  position: relative;
  min-height: 78vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero-bg{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  transform: scale(1.03);
  filter: contrast(1.05) saturate(1.05);
}

.hero-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 24% 40%, rgba(5,11,20,0.18) 0%, rgba(5,11,20,0.72) 58%, rgba(5,11,20,0.92) 100%),
    radial-gradient(1200px 900px at 50% 50%, rgba(0,0,0,0) 55%, rgba(0,0,0,0.55) 100%),
    linear-gradient(180deg, rgba(5,11,20,0.35) 0%, rgba(5,11,20,0.78) 70%, rgba(5,11,20,0.92) 100%);
}

.hero-content{
  position: relative;
  width: 100%;
  max-width: var(--max);
  padding: 64px 18px;
}

.hero-content::before{
  content: "";
  position: absolute;
  left: 12px;
  top: 44px;
  width: min(560px, 92%);
  height: 360px;
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(5,11,20,0.72) 0%, rgba(5,11,20,0.35) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 22px 60px rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  z-index: -1;
}

.hero-main{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  --hero-line-height: 0.92;
  --hero-font-size: clamp(42px, 6vw, 86px);
}

.hero-text{
  max-width: 620px;
}

.hero-logo{
  height: calc(3 * var(--hero-line-height) * var(--hero-font-size));
  width: auto;
  flex: 0 0 auto;
  margin-top: 6px;
  filter: drop-shadow(0 12px 20px rgba(0,0,0,0.45));
}

.hero h1{
  margin: 0;
  font-weight: 900;
  line-height: var(--hero-line-height);
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: var(--hero-font-size);
  text-shadow: 0 14px 30px rgba(0,0,0,0.55);
}

.hero h1 span{
  color: rgba(85,185,255,0.95);
  text-shadow:
    0 18px 34px rgba(0,0,0,0.60),
    0 0 60px rgba(85,185,255,0.18);
}

.hero-sub{
  margin: 16px 0 22px;
  max-width: 520px;
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(234,242,255,0.80);
  text-shadow: 0 12px 22px rgba(0,0,0,0.55);
}

.hero-sub strong{
  color: rgba(234,242,255,0.95);
  letter-spacing: 0.3px;
}

.hero-buttons{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 780px){
  .hero-main{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .hero-logo{
    margin-top: 0;
  }
}

/* ============================================================
   FEATURED IMAGE STRIP — SINGLE (HOME)
   ============================================================ */

:root{
  --page-pad: 18px; /* matches the padding you use across sections */
}

.featured-strip-single{
  position: relative;
  max-width: var(--max);
  margin: -40px auto 14px;   /* pulls it into the hero (keep this if you like the overlap) */
  padding: 0 var(--page-pad);
  z-index: 2;
}

.featured-strip-single img{
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 14px 34px rgba(0,0,0,0.42);
}

/* IMPORTANT: align overlay to the image edges, not the padded container */
.featured-strip-overlay{
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--page-pad);
  right: var(--page-pad);

  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 24px;
  gap: 6px;
  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(5,11,20,0.06) 0%,
    rgba(5,11,20,0.45) 55%,
    rgba(5,11,20,0.88) 100%
  );

  border-radius: var(--radius);
}

.featured-strip-overlay h2{
  margin: 0 0 6px;
  font-size: clamp(20px, 2.4vw, 30px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.featured-strip-overlay p{
  margin: 0;
  max-width: 520px;
  color: var(--muted);
}

@media (max-width: 780px){
  .featured-strip-single{
    margin: -24px auto 12px; /* slightly less overlap on mobile */
  }

  .featured-strip-single img{
    height: 220px;
  }

  .featured-strip-overlay{
    padding: 20px;
  }
}

/* ============================================================
   HOME INTRO (CENTERED TEXT ABOVE FEATURE CARDS)
   ============================================================ */

.home-intro{
  max-width: var(--max);
  margin: 0 auto;
  padding: 34px 18px 10px;
  text-align: center;
}

.home-intro-inner{
  max-width: 820px;
  margin: 0 auto;
}

.home-intro h2{
  margin: 0 0 8px;
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 14px 30px rgba(0,0,0,0.55);
}

.home-intro p{
  margin: 0 auto;
  color: var(--muted);
  max-width: 72ch;
  text-shadow: 0 10px 22px rgba(0,0,0,0.45);
}

/* ============================================================
   5) FEATURES (HOME)
   ============================================================ */

.features{
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 18px 18px;
}

.feature-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card{
  padding: 18px 18px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
  box-shadow: 0 16px 38px rgba(0,0,0,0.45);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.feature-card:hover{
  transform: translateY(-2px);
  border-color: rgba(85,185,255,0.35);
  background: linear-gradient(180deg, rgba(85,185,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
}

.feature-card h3{
  margin: 0 0 6px;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.feature-card p{
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
}

/* ============================================================
   6) SECTIONS (WHY / CTA)
   ============================================================ */

.why-dmz{
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 18px 6px;
  text-align: center;
}
/* ============================================================
   WHY SECTION — FULL-WIDTH BACKGROUND IMAGE
   ============================================================ */

.why-bg{
  position: relative;
  width: 100%;
  margin-top: 18px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.why-bg-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  filter: brightness(1.18) contrast(1.05) saturate(1.10);
  z-index: 0;
}

/* This controls readability */
/* This controls readability (and brightness) */
.why-bg-overlay{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 50% 35%,
      rgba(5,11,20,0.22) 0%,
      rgba(5,11,20,0.62) 70%,
      rgba(5,11,20,0.76) 100%
    ),
    linear-gradient(180deg,
      rgba(5,11,20,0.50) 0%,
      rgba(5,11,20,0.72) 100%
    );
  z-index: 1;
}


.why-bg-inner{
  position: relative;
  z-index: 2;
  max-width: var(--max);
  margin: 0 auto;
  padding: 54px 18px 54px; /* height of the background section */
}

/* Keep your existing why text styling, but ensure it stays crisp */
.why-bg .why-dmz{
  padding: 0;
  text-align: center;
}

.why-bg .why-dmz h2{
  text-shadow: 0 14px 30px rgba(0,0,0,0.55);
}

.why-bg .why-tagline{
  text-shadow: 0 10px 22px rgba(0,0,0,0.45);
}


.why-dmz h2{
  margin: 0 0 8px;
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.why-tagline{
  margin: 0 auto;
  color: var(--muted);
  max-width: 720px;
}

.cta{
  max-width: var(--max);
  margin: 18px auto 0;
  padding: 34px 18px 54px;
  text-align: center;
}

.cta h2{
  margin: 0 0 8px;
  font-size: clamp(22px, 2.6vw, 34px);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.cta p{
  margin: 0 0 16px;
  color: var(--muted);
}
/* CTA when placed on background image */
.cta-on-bg{
  padding-top: 36px;
}

.cta-on-bg h2,
.cta-on-bg p{
  text-shadow: 0 14px 30px rgba(0,0,0,0.55);
}

/* ============================================================
   7) INTERIOR PAGE HERO (TRAINING / TRAVEL / MEDIA / CONTACT)
   ============================================================ */

.page{
  min-height: 100vh;
}

.page-hero {
  background: linear-gradient(180deg, #071325 0%, #050B14 100%), url('assets/images/hero/hero-travel.jpeg'); /* Adjust image path */
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
}



.page-hero-inner{
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 16px;
  align-items: start;
}

/* Fix: prevent hero logo from rendering at full native size */
.page-hero-logo img{
  width: 100%;
  max-width: 380px;
  height: auto;
  display: block;
}

@media (max-width: 980px){
  .page-hero-logo img{
    max-width: 220px;
    margin: 0 auto;
  }
}

/* Contact/Interior hero logo sizing (prevents huge logo) */
.page-hero-logo{
  width: 100%;
  max-width: 360px;
  height: auto;
  justify-self: end;
  align-self: start;
  filter: drop-shadow(0 18px 34px rgba(0,0,0,0.55));
  opacity: 0.98;
}

@media (max-width: 980px){
  .page-hero-logo{
    justify-self: start;
    max-width: 220px;
    margin-top: 10px;
  }
}

.page-hero-copy h1{
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: clamp(32px, 5vw, 54px);
}

.page-hero-sub{
  margin: 10px 0 14px;
  max-width: 62ch;
  color: var(--muted);
}

.page-hero-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Stat Cards Adjustments */
/* Stat Cards Adjustments for Mobile Look */
.page-hero-card {
  flex-direction: column; /* Stacks content vertically */
  justify-content: center;
  align-items: flex-start; /* Align content to the start */
  gap: 18px; /* Added space between sections */
  padding: 24px; /* Added padding for better spacing */
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.15); /* Slightly lighter border */
  background: rgba(0, 0, 0, 0.65); /* Darker background for contrast */
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35); /* Softer shadow */
  transition: transform 150ms ease, box-shadow 150ms ease; /* Smooth transition */
  text-align: center; /* Center text in each section */
}


/* Stat Grid for Mobile */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr; /* Stack items in one column */
  gap: 18px; /* Increased space between items */
  text-align: center; /* Center the text inside */
}


/* Stat Label Styling */
.stat-label {
  font-size: 16px;
  font-weight: 600;
  color: rgba(234, 242, 255, 0.85); /* Lighter text for contrast */
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Stat Value Styling */
.stat-value {
  font-weight: 700;
  color: rgba(234, 242, 255, 1); /* Stronger contrast */
  font-size: 18px; /* Increased font size for better readability */
  letter-spacing: 0.5px;
  margin-top: 6px; /* Adds space between label and value */
}

.stat-value {
  font-size: 18px;
  font-weight: 700;
  color: rgba(234, 242, 255, 1);
  font-size: 18px;
  font-weight: 700;
  color: rgba(234, 242, 255, 1);
  font-size: 18px;
  font-weight: 700;
  color: rgba(234, 242, 255, 1);
  font-weight: 700; /* Stronger weight for value */
  color: rgba(234, 242, 255, 1); /* Full opacity for better contrast */
  font-size: 16px; /* Increased font size for better legibility */
}




.stat-grid{ display: grid; gap: 12px; }

.stat{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.18);
}

.stat-label{
  font-size: 12px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--muted-2);
}

.stat-value{
  font-weight: 750;
  color: rgba(234,242,255,0.92);
}

/* ============================================================
   8) CONTACT PAGE
   ============================================================ */

.contact-grid{
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 16px;
  align-items: start;
}

.contact-card,
.form-card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
  box-shadow: 0 18px 44px rgba(0,0,0,0.45);
  padding: 18px;
}

.contact-card h2,
.form-card h2{ margin: 0 0 8px; }

.mini-divider{
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 16px 0;
}

.contact-list{
  display: grid;
  gap: 10px;
  margin-top: 14px;
}

.contact-item{
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.18);
}

.contact-item .label{
  color: rgba(234,242,255,0.78);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.2px;
}

.contact-item .value a{
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(85,185,255,0.45);
}

.steps{
  margin: 10px 0 0 18px;
  color: var(--muted);
}

/* Forms */
.form-header{ margin-bottom: 10px; }
.dmz-form{ margin-top: 12px; }

.form-row{
  display: grid;
  gap: 12px;
  margin-bottom: 12px;
}

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

.field label{
  display: inline-block;
  font-weight: 750;
  font-size: 13px;
  letter-spacing: 0.2px;
  margin: 0 0 6px;
  color: rgba(234,242,255,0.90);
}

.field input,
.field select,
.field textarea{
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.22);
  color: var(--text);
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.18);
  transition: border-color 140ms ease, background 140ms ease, box-shadow 140ms ease;
}

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

.field input:focus,
.field select:focus,
.field textarea:focus{
  border-color: rgba(85,185,255,0.55);
  background: rgba(0,0,0,0.28);
  box-shadow: 0 0 0 4px rgba(85,185,255,0.12);
}

.check{
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
  color: var(--muted);
  font-size: 13px;
}

.check input{
  margin-top: 2px;
  accent-color: rgba(85,185,255,0.95);
}

.form-actions{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.form-note{ margin-top: 12px; }

/* Copy icon button + toast (single source of truth) */
.icon-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.18);
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease, opacity 140ms ease;
}

.icon-btn:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(85,185,255,0.35);
}

.icon-btn:active{
  transform: translateY(0px);
  opacity: 0.9;
}

.icon-btn .icon{
  width: 18px;
  height: 18px;
  fill: rgba(234,242,255,0.86);
}

.icon-btn.is-copied{
  border-color: rgba(85,185,255,0.55);
  background: rgba(85,185,255,0.10);
  box-shadow: 0 0 0 3px rgba(85,185,255,0.14);
}

#dmz-toast{
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  pointer-events: none;
  z-index: 9999;

  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(8, 16, 28, 0.88);
  box-shadow: 0 16px 40px rgba(0,0,0,0.55);
  color: rgba(234,242,255,0.92);
  font-weight: 650;
  letter-spacing: 0.2px;
  transition: opacity 180ms ease, transform 180ms ease;
}

#dmz-toast.show{
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Bubble card (used on Contact page) */
.bubble-card{
  margin-top: 14px;
  padding: 18px 18px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
  box-shadow: 0 16px 38px rgba(0,0,0,0.45);
}

.bubble-card h3{
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: 0.2px;
}

.bubble-card .steps{
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.bubble-card .steps li{ margin: 6px 0; }

.bubble-card .muted.small{
  margin: 10px 0 0;
}

/* ============================================================
   9) FOOTER
   ============================================================ */

.site-footer{
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px;
  text-align: center;
  color: var(--muted-2);
}

/* ============================================================
   10) MEDIA PAGE
   ============================================================ */

.section{
  max-width: var(--max);
  margin: 0 auto;
  padding: 22px 18px 10px;
}

.section-head{
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.section-head h2{
  margin: 0;
  font-size: 22px;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.section-sub{
  margin: 8px 0 0;
  color: var(--muted);
}

/* Filter Bar Styles */
.filterbar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.chip {
  appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(234, 242, 255, 0.86);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

.chip:hover {
  transform: translateY(-1px);
  border-color: rgba(85, 185, 255, 0.35);
  background: rgba(85, 185, 255, 0.08);
}

.chip.is-active {
  border-color: rgba(85, 185, 255, 0.55);
  background: rgba(85, 185, 255, 0.14);
}

.chip:hover{
  transform: translateY(-1px);
  border-color: rgba(85,185,255,0.35);
  background: rgba(85,185,255,0.08);
}

.chip.is-active{
  border-color: rgba(85,185,255,0.55);
  background: rgba(85,185,255,0.14);
}

/* Media Grid Styles */
.media-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Adjust for 2 columns by default */
  gap: 20px; /* Slightly increase the gap between items */
}

/* Media Card Adjustments */
.media-card {
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.03) 100%);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35); /* Softer shadow */
  display: flex;
  flex-direction: column;
  padding: 16px; /* Adjusted padding for consistency */
  transition: transform 160ms ease, box-shadow 160ms ease; 
  background-color: rgba(5, 11, 20, 0.8); /* Darker background */
}

/* Hover Effect */
.media-card:hover {
  transform: translateY(-3px); /* Slightly deeper hover effect */
  box-shadow: 0 16px 40px rgba(85, 185, 255, 0.35);
  background: linear-gradient(180deg, rgba(85, 185, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-color: rgba(85, 185, 255, 0.55);
}



/* Media thumbnail (non-hover state) */
.media-thumb {
  position: relative;
  display: block;
  height: auto;
  background: rgba(0, 0, 0, 0.20); /* Thumbnail background color */
  border: none !important; /* Force no borders */
  border-radius: var(--radius); /* Rounded corners */
  overflow: hidden;
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.45); /* Regular shadow */
  transition: box-shadow 200ms ease; /* Only transition shadow on hover */
}

/* Media thumbnail hover effect (no borders) */
.media-thumb:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.65) !important; /* Enhanced shadow on hover */
  background: rgba(0, 0, 0, 0.30); /* Slightly darken background */
  border: none !important; /* Ensure no border on hover */
}


/* Cleaned up Media Card Info Section */
.media-body {
  padding: 18px 20px; /* Increased padding for better spacing */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Align items to top */
  align-items: flex-start; /* Align items to left */
  gap: 14px; /* Increased gap between sections */
  background: rgba(0, 0, 0, 0.40); /* Darker background for better contrast */
  border-radius: var(--radius); /* Rounded corners */
  border: none; /* Remove unnecessary border */
}




/* Media Card Info Section */
.media-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  background: rgba(0, 0, 0, 0.30); /* Background for the info section */
  border-radius: var(--radius); /* Rounded corners for the info section */
  border: 1px solid rgba(255, 255, 255, 0.10); /* Border around the title and info */
}


/* Media Card Info Section */
.media-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  background: rgba(0, 0, 0, 0.30); /* Background for the info section */
  border-radius: var(--radius); /* Rounded corners for the info section */
  border: 1px solid rgba(255, 255, 255, 0.10); /* Border around the title and info */
}



/* Media Card Info Section */
.media-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  background: rgba(0, 0, 0, 0.30); /* Background for the info section */
  border-radius: var(--radius); /* Rounded corners for the info section */
  border: 1px solid rgba(255, 255, 255, 0.10); /* Border around the title and info */
}


/* Media Card Info Section */
.media-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  background: rgba(0, 0, 0, 0.30); /* Background for the info section */
  border-radius: var(--radius); /* Rounded corners for the info section */
  border: 1px solid rgba(255, 255, 255, 0.10); /* Border around the title and info */
}

/* Title and Info Section Inside Media Card */
.media-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  background: rgba(0, 0, 0, 0.30); /* Background for the info section */
  border-radius: var(--radius); /* Rounded corners for the info section */
  border: 1px solid rgba(255, 255, 255, 0.10); /* Border around the title and info */
}

/* Title and Description Styling */
.media-body h3 {
  margin: 0 0 10px; /* Increased margin for clarity */
  font-size: 20px; /* Larger font size for better readability */
  font-weight: 700; /* Bold text for emphasis */
  letter-spacing: 0.5px; /* Increased letter-spacing for a more professional look */
  color: rgba(234, 242, 255, 1); /* Full opacity for title */
}

.media-body p {
  margin: 0 0 12px; /* More spacing below text */
  color: var(--muted); /* Muted color for better readability */
  font-size: 15px; /* Slightly larger text */
  line-height: 1.6; /* Improved line-height for better readability */
}

.media-meta {
  display: flex;
  gap: 12px; /* Increased gap for cleaner separation */
  flex-wrap: wrap;
  color: rgba(234, 242, 255, 0.75); /* Slightly brighter text */
  font-size: 14px; /* Larger font size for meta info */
}



/* Media Thumbnail Hover Effects */
.media-thumb:hover {
  transform: translateY(-2px); /* Hover effect */
  box-shadow: 0 16px 40px rgba(85, 185, 255, 0.35); /* Hover shadow */
}

/* Faux Thumbnail (for placeholder content) */
.media-thumb-faux {
  display: grid;
  place-items: center;
  color: rgba(234, 242, 255, 0.65); /* Text color */
  font-weight: 800;
  text-transform: uppercase;
  background: radial-gradient(900px 520px at 30% 0%, rgba(60, 170, 255, 0.12) 0%, rgba(5, 11, 20, 0) 60%),
              linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(0, 0, 0, 0.18) 100%);
}

/* Media Badge Styling */
.media-badge {
  position: absolute;
  top: 14px; /* Slightly adjusted position for alignment */
  left: 14px;
  padding: 8px 12px; /* Increased padding for balance */
  font-size: 13px; /* Slightly larger font size */
  font-weight: 800; /* Slightly more bold */
  letter-spacing: 0.5px; /* Increased letter-spacing */
  background: rgba(0, 0, 0, 0.35); /* Darker background for better contrast */
  color: rgba(234, 242, 255, 0.92); /* Brighter text */
  border-radius: 999px; /* Circular badge */
  border: 1px solid rgba(255, 255, 255, 0.18); /* Subtle border for clarity */
}

/* Card Hover Effect */

}

/* Media Card Body */
.media-body {
  padding: 14px 16px 16px;
}

.media-body h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.media-body p {
  margin: 0 0 10px;
  color: var(--muted); /* Text color */
  font-size: 14.5px;
}

.media-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: rgba(234, 242, 255, 0.60);
  font-size: 12.5px;
}


/* Media Card Body */
.media-body {
  padding: 14px 16px 16px;
}

.media-body h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.media-body p {
  margin: 0 0 10px;
  color: var(--muted); /* Text color */
  font-size: 14.5px;
}

.media-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: rgba(234, 242, 255, 0.60);
  font-size: 12.5px;
}


/* Media Thumb on Hover */
.media-thumb:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(85, 185, 255, 0.35); /* Adjust shadow for hover effect */
}

/* Faux Thumbnail Placeholder Styling */
.media-thumb-faux {
  display: grid;
  place-items: center;
  color: rgba(234, 242, 255, 0.85); /* Lighter text */
  font-weight: 800;
  text-transform: uppercase;
  font-size: 20px; /* Larger text */
  letter-spacing: 0.4px; /* Increased letter-spacing */
  background: linear-gradient(180deg, rgba(5, 11, 20, 0.22) 0%, rgba(5, 11, 20, 0.45) 100%); /* Subtle gradient */
  text-shadow: 0 8px 20px rgba(0, 0, 0, 0.4); /* Added shadow for better visibility */
}


/* Media Badge Styles */
.media-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.4px;
  background: rgba(0,0,0,0.28);
  color: rgba(234,242,255,0.75);
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.16);
}


.media-card:hover{
  transform: translateY(-2px);
  border-color: rgba(85,185,255,0.35);
  background: linear-gradient(180deg, rgba(85,185,255,0.08) 0%, rgba(255,255,255,0.03) 100%);
}

.media-thumb{
  position: relative;
  display: block;
  height: auto;
  background: rgba(0,0,0,0.20);
}

.media-thumb-faux{
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(234,242,255,0.65);
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  background:
    radial-gradient(900px 520px at 30% 0%, rgba(60,170,255,0.12) 0%, rgba(5,11,20,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0.18) 100%);
}

.media-badge{
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.4px;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(0,0,0,0.28);
}

.media-body{
  padding: 14px 16px 16px;
}

.media-body h3{
  margin: 0 0 6px;
  font-size: 18px;
}

.media-body p{
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14.5px;
}

.media-meta{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: rgba(234,242,255,0.60);
  font-size: 12.5px;
}

.callout-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.callout-card{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
  box-shadow: 0 16px 38px rgba(0,0,0,0.45);
  padding: 18px;
}

.callout-card h2{
  margin: 0 0 8px;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.callout-card p{
  margin: 0 0 12px;
  color: var(--muted);
}

.micro-note{
  margin: 12px 0 0;
  color: rgba(234,242,255,0.60);
  font-size: 12.5px;
}

.photo-grid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.photo{
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
  box-shadow: 0 14px 30px rgba(0,0,0,0.45);
  display: block;
  min-height: 140px;
  transition: transform 160ms ease, border-color 160ms ease;
}

.photo:hover{
  transform: translateY(-2px);
  border-color: rgba(85,185,255,0.35);
}

.photo-faux{
  height: 100%;
  min-height: 140px;
  display: grid;
  place-items: center;
  color: rgba(234,242,255,0.60);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  background:
    radial-gradient(900px 520px at 30% 0%, rgba(60,170,255,0.12) 0%, rgba(5,11,20,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0.18) 100%);
}

/* ============================================================
   11) TRAVEL — INTERACTIVE GLOBE (POC)
   ============================================================ */

.globe-wrap{
  position: relative;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
  box-shadow: 0 16px 38px rgba(0,0,0,0.45);
  overflow: hidden;
  padding: 10px;

  /* UX + input reliability */
  cursor: grab;
  overscroll-behavior: contain;
  touch-action: none;
}

.globe-wrap:active{ cursor: grabbing; }

.globe-wrap canvas{
  display: block;
  width: 100%;
  height: 100%;
  border-radius: calc(var(--radius) - 10px);
}

.globe-hint{
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 10px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(5,11,20,0.62);
  color: rgba(234,242,255,0.75);
  font-weight: 650;
  font-size: 12px;
  letter-spacing: 0.2px;
  pointer-events: none;
}

/* Hide extra globe instruction tiles on mobile (as you requested earlier) */
@media (max-width: 768px) {
  .globe-instructions,
  .globe-help,
  .globe-overlay-text {
    display: none !important;
  }

  .globe-wrap{
    aspect-ratio: 1 / 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
  }

  .globe-wrap canvas{
    width: 100%;
    height: 100%;
  }
}

/* Destination spotlight */
.destination-shell{
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.03) 100%);
  box-shadow: 0 16px 38px rgba(0,0,0,0.45);
  padding: 18px;
}

.destination-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.destination-grid{
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.destination-card{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background: rgba(0,0,0,0.18);
  padding: 16px;
}

.iso-placeholder{
  margin-top: 12px;
  height: 260px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.10);
  background:
    radial-gradient(900px 520px at 30% 0%, rgba(60,170,255,0.12) 0%, rgba(5,11,20,0) 60%),
    linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(0,0,0,0.18) 100%);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 30px rgba(0,0,0,0.45);
}

.iso-label{
  font-weight: 900;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: rgba(234,242,255,0.70);
}

.iso-placeholder.is-pulse{ animation: isoPulse 520ms ease; }

@keyframes isoPulse{
  0%   { transform: scale(1); }
  45%  { transform: scale(1.02); }
  100% { transform: scale(1); }
}

.dest-bullets{
  margin: 10px 0 0;
  padding-left: 18px;
  color: rgba(234,242,255,0.80);
}

.dest-bullets li{
  margin: 7px 0;
  color: var(--muted);
}

.destination-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ============================================================
   12) RESPONSIVE
   ============================================================ */

@media (max-width: 980px){
  .feature-grid{ grid-template-columns: 1fr; }
  .main-nav{ gap: 8px; }
  .logo img{ width: 48px; height: 48px; }
  .hero-content{ padding: 54px 18px; }

  .contact-grid{ grid-template-columns: 1fr; }
  .form-row.two{ grid-template-columns: 1fr; }

  .page-hero-inner{ grid-template-columns: 1fr; }
  .media-grid{ grid-template-columns: 1fr; }
  .callout-grid{ grid-template-columns: 1fr; }
  .photo-grid{ grid-template-columns: repeat(2, 1fr); }

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

@media (max-width: 780px){
  .featured-strip-single img{ height: 220px; }
  .featured-strip-overlay{ padding: 20px; }
}

@media (max-width: 560px){
  .nav-container{ padding: 12px 14px; }
  .main-nav a{ padding: 9px 10px; }
  .hero{ min-height: 74vh; }
  .hero-sub{ max-width: 92%; }

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