:root {
  --navy:    #0A2540;
  --navyd:   #071A30;
  --navyl:   #0D3060;
  --blue:    #0F4FA8;
  --dark:    #1C1F24;
  --white:   #F5F7FA;
  --yellow:  #F2C200;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Satoshi', system-ui, sans-serif;
  overflow-x: hidden;
}

/* ── Scrollbar ──────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--navyd); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ── Focus ──────────────────────────────── */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── Navigation ─────────────────────────── */
.nav-bar {
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(7, 26, 48, 0.93);
  border-bottom: 1px solid rgba(15, 79, 168, 0.18);
}

.nav-link {
  font-family: 'Satoshi', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(245, 247, 250, 0.75);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color 0.2s ease;
  padding: 6px 4px;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--yellow);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: scaleX(1); }

/* ── Mobile Menu ────────────────────────── */
#mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  background: rgba(7, 26, 48, 0.98);
  border-top: 1px solid rgba(15, 79, 168, 0.15);
}
#mobile-menu.open { max-height: 360px; }

/* ── Hero ───────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 72px;
  padding-top: 80px;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(15, 79, 168, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(242, 194, 0, 0.06) 0%, transparent 60%),
    linear-gradient(160deg, #071a30 0%, #0a2540 50%, #091e38 100%);
  z-index: 0;
}

.hero-overlay {
  display: none;
}

/* Hero right image panel */
.hero-img-panel {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(15, 79, 168, 0.25);
  box-shadow:
    0 40px 80px rgba(5, 14, 30, 0.6),
    0 0 0 1px rgba(255,255,255,0.03) inset;
}
.hero-img-panel img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.4) translateY(10%);
  transform-origin: center center;
}
.hero-img-panel-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(7, 26, 48, 1.0)  0%,
      rgba(7, 26, 48, 0.88) 10%,
      rgba(7, 26, 48, 0.35) 28%,
      rgba(7, 26, 48, 0.05) 45%,
      rgba(7, 26, 48, 0.2)  70%,
      rgba(7, 26, 48, 0.85) 100%);
}
/* Decorative grid lines */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 79, 168, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 79, 168, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  pointer-events: none;
}

/* Grain texture */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}

/* ── Display Type ───────────────────────── */
.display {
  font-family: 'Bebas Neue', sans-serif;
  line-height: 0.88;
  letter-spacing: 0.015em;
}

/* ── Section Label ──────────────────────── */
.label {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--yellow);
}

/* ── Yellow accent line ─────────────────── */
.accent-line {
  display: block;
  width: 40px;
  height: 3px;
  background: var(--yellow);
  border-radius: 2px;
  margin-top: 14px;
}

/* ── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Satoshi', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  border-radius: 8px;
  padding: 12px 24px;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition:
    background 0.2s ease,
    transform 0.15s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.btn:active { transform: scale(0.97); }

.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(15, 79, 168, 0.3);
}
.btn-blue:hover {
  background: #1259c3;
  border-color: #1259c3;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(15, 79, 168, 0.45);
}

.btn-outline-yellow {
  background: transparent;
  color: var(--yellow);
  border-color: rgba(242, 194, 0, 0.6);
}
.btn-outline-yellow:hover {
  background: rgba(242, 194, 0, 0.07);
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.25);
}
.btn-whatsapp:hover {
  background: #1db954;
  border-color: #1db954;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

/* ── Stats bar ──────────────────────────── */
.stats-bar {
  background: var(--dark);
  border-top: 1px solid rgba(15, 79, 168, 0.15);
  border-bottom: 1px solid rgba(15, 79, 168, 0.15);
}
.stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2.75rem;
  line-height: 1;
  color: var(--yellow);
}
.stat-lbl {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(245, 247, 250, 0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  background: rgba(15, 79, 168, 0.2);
  align-self: stretch;
}

/* ── Model Cards ────────────────────────── */
.model-card {
  background: linear-gradient(160deg, #0e2f54 0%, #081c35 100%);
  border: 1px solid rgba(15, 79, 168, 0.22);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.model-card:hover {
  transform: translateY(-7px);
  border-color: rgba(242, 194, 0, 0.35);
  box-shadow:
    0 24px 48px rgba(5, 14, 30, 0.55),
    0 0 0 1px rgba(242, 194, 0, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.04);
}

.model-img-wrap {
  position: relative;
  overflow: hidden;
  background: #060f1f;
}
.model-img-wrap img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.model-card:hover .model-img-wrap img {
  transform: scale(1.05);
}
.model-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(8, 28, 53, 0.92) 0%,
    rgba(8, 28, 53, 0.15) 55%,
    transparent 100%);
  pointer-events: none;
}

.model-badge {
  display: inline-flex;
  align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--yellow);
  padding: 3px 9px;
  border-radius: 4px;
}

.model-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--white);
  letter-spacing: 0.03em;
}

/* ── Why eeveo cards ────────────────────── */
.why-card {
  background: linear-gradient(140deg, rgba(15, 79, 168, 0.1) 0%, rgba(10, 37, 64, 0.5) 100%);
  border: 1px solid rgba(15, 79, 168, 0.2);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.25s, background 0.25s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.why-card:hover {
  border-color: rgba(242, 194, 0, 0.3);
  background: linear-gradient(140deg, rgba(15, 79, 168, 0.15) 0%, rgba(10, 37, 64, 0.7) 100%);
  transform: translateY(-4px);
}

.why-icon {
  width: 52px;
  height: 52px;
  background: rgba(15, 79, 168, 0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
  border: 1px solid rgba(15, 79, 168, 0.25);
}

/* ── Contact ────────────────────────────── */
.contact-card {
  background: linear-gradient(140deg, rgba(15, 79, 168, 0.1) 0%, rgba(8, 26, 48, 0.6) 100%);
  border: 1px solid rgba(15, 79, 168, 0.2);
  border-radius: 14px;
  padding: 24px 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: border-color 0.25s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.contact-card:hover {
  border-color: rgba(242, 194, 0, 0.3);
  transform: translateY(-3px);
}
.contact-icon-box {
  width: 46px;
  height: 46px;
  background: rgba(15, 79, 168, 0.2);
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(15, 79, 168, 0.25);
}

/* ── Divider ────────────────────────────── */
.hdivider {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(15, 79, 168, 0.3) 25%,
    rgba(242, 194, 0, 0.25) 50%,
    rgba(15, 79, 168, 0.3) 75%,
    transparent 100%);
}

/* ── Animations ─────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fu  { animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; }
.d1  { animation-delay: 0.05s; }
.d2  { animation-delay: 0.18s; }
.d3  { animation-delay: 0.32s; }
.d4  { animation-delay: 0.48s; }

/* Scroll-reveal (JS-driven) */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s cubic-bezier(0.16,1,0.3,1), transform 0.65s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── Spin animation ─────────────────────── */
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Footer ─────────────────────────────── */
.footer-bar {
  background: var(--navyd);
  border-top: 1px solid rgba(15, 79, 168, 0.18);
}

/* ── Hamburger animation ─────────────────── */
.ham-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}
#hamburger.open .ham-line:nth-child(1) { transform: translateY(6px) rotate(45deg); }
#hamburger.open .ham-line:nth-child(2) { opacity: 0; transform: scaleX(0); }
#hamburger.open .ham-line:nth-child(3) { transform: translateY(-6px) rotate(-45deg); width: 22px; }
/* ═══════════════════════════════════════════
   blog.css — Styles for blog.html & article.html
   ═══════════════════════════════════════════ */

/* ── Page header ────────────────────────── */
.page-header {
  padding-top: 120px;
  padding-bottom: 64px;
  position: relative;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 15% 50%, rgba(15, 79, 168, 0.14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 60% at 85% 20%, rgba(242, 194, 0, 0.05) 0%, transparent 55%),
    linear-gradient(160deg, #071a30 0%, #0a2540 60%, #071e38 100%);
  z-index: 0;
}
.page-header-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 79, 168, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 79, 168, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  z-index: 0;
  pointer-events: none;
}
.page-header-content {
  position: relative;
  z-index: 1;
}

/* ── Article cards (blog index) ─────────── */
.article-card {
  background: linear-gradient(160deg, #0d2d50 0%, #081b33 100%);
  border: 1px solid rgba(15, 79, 168, 0.2);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
.article-card:hover {
  transform: translateY(-6px);
  border-color: rgba(242, 194, 0, 0.3);
  box-shadow:
    0 20px 44px rgba(5, 14, 30, 0.5),
    0 0 0 1px rgba(242, 194, 0, 0.1);
}
.article-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.article-card:hover .article-card-img {
  transform: scale(1.04);
}
.article-card-img-wrap {
  overflow: hidden;
  position: relative;
}
.article-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 28, 53, 0.6) 0%, transparent 60%);
  pointer-events: none;
}

.article-tag {
  display: inline-flex;
  align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dark);
  background: var(--yellow);
  padding: 3px 9px;
  border-radius: 4px;
}
.article-tag-outline {
  display: inline-flex;
  align-items: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--yellow);
  border: 1px solid rgba(242, 194, 0, 0.4);
  padding: 3px 9px;
  border-radius: 4px;
}

/* ── Featured article card ──────────────── */
.featured-card {
  background: linear-gradient(160deg, #0d2d50 0%, #081b33 100%);
  border: 1px solid rgba(15, 79, 168, 0.25);
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
  display: grid;
  grid-template-columns: 1fr;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}
@media (min-width: 768px) {
  .featured-card {
    grid-template-columns: 1fr 1fr;
  }
}
.featured-card:hover {
  transform: translateY(-5px);
  border-color: rgba(242, 194, 0, 0.3);
  box-shadow: 0 28px 56px rgba(5, 14, 30, 0.55);
}
.featured-card-img-wrap {
  overflow: hidden;
  position: relative;
  min-height: 280px;
}
.featured-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.featured-card:hover .featured-card-img {
  transform: scale(1.04);
}

/* ── Article page layout ────────────────── */
.article-hero {
  padding-top: 96px;
  position: relative;
  overflow: hidden;
}
.article-hero-cover {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}
.article-hero-cover-wrap {
  position: relative;
  overflow: hidden;
}
.article-hero-cover-gradient {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--navy) 0%, transparent 100%);
  pointer-events: none;
}

/* ── Article body typography ────────────── */
.article-body {
  max-width: 740px;
  margin: 0 auto;
  padding: 0 24px;
}

.article-body h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  letter-spacing: 0.02em;
  color: var(--white);
  line-height: 1.05;
  margin: 2.6em 0 0.7em;
}

.article-body h3 {
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin: 2em 0 0.6em;
}

.article-body p {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1rem, 2vw, 1.075rem);
  line-height: 1.85;
  color: rgba(245, 247, 250, 0.72);
  margin: 0 0 1.5em;
}

.article-body a {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(242, 194, 0, 0.4);
  transition: text-decoration-color 0.2s;
}
.article-body a:hover {
  text-decoration-color: var(--yellow);
}

.article-body ul,
.article-body ol {
  font-family: 'Barlow', sans-serif;
  font-size: clamp(1rem, 2vw, 1.075rem);
  line-height: 1.85;
  color: rgba(245, 247, 250, 0.72);
  margin: 0 0 1.5em 1.5em;
}
.article-body li {
  margin-bottom: 0.4em;
}
.article-body ul li::marker { color: var(--yellow); }
.article-body ol li::marker { color: var(--yellow); font-weight: 700; }

/* ── Pullquote ───────────────────────────── */
.pullquote {
  border-left: 3px solid var(--yellow);
  margin: 2.5em 0;
  padding: 8px 0 8px 28px;
}
.pullquote p {
  font-family: 'Satoshi', sans-serif !important;
  font-size: clamp(1.15rem, 2.5vw, 1.35rem) !important;
  font-weight: 500 !important;
  font-style: italic;
  color: rgba(245, 247, 250, 0.88) !important;
  line-height: 1.65 !important;
  margin: 0 0 0.5em !important;
}
.pullquote cite {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--yellow);
  font-style: normal;
}

/* ── Article images ─────────────────────── */

/* Full-width image (breaks out of text column) */
.img-full {
  width: 100%;
  max-width: 960px;
  margin: 2.5em auto;
  display: block;
}
.img-full img {
  width: 100%;
  border-radius: 12px;
  display: block;
}

/* Inline image — centred within text column */
.img-inline {
  margin: 2em 0;
}
.img-inline img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

/* Float left/right (desktop) */
.img-float-left {
  float: left;
  width: 42%;
  margin: 0.4em 2em 1.5em 0;
  border-radius: 10px;
  overflow: hidden;
}
.img-float-right {
  float: right;
  width: 42%;
  margin: 0.4em 0 1.5em 2em;
  border-radius: 10px;
  overflow: hidden;
}
.img-float-left img,
.img-float-right img {
  width: 100%;
  display: block;
  border-radius: 10px;
}
@media (max-width: 640px) {
  .img-float-left,
  .img-float-right {
    float: none;
    width: 100%;
    margin: 1.5em 0;
  }
}

/* Image caption */
figcaption {
  font-family: 'Barlow', sans-serif;
  font-size: 12px;
  color: rgba(245, 247, 250, 0.38);
  text-align: center;
  margin-top: 8px;
  letter-spacing: 0.02em;
}

/* Clearfix for floats */
.clearfix::after {
  content: '';
  display: table;
  clear: both;
}

/* ── Video embed ────────────────────────── */
.video-wrap {
  margin: 2.5em 0;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  background: #060f1f;
  border: 1px solid rgba(15, 79, 168, 0.2);
}
.video-wrap iframe,
.video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── Divider inside article ─────────────── */
.article-divider {
  border: none;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(15, 79, 168, 0.3) 30%,
    rgba(242, 194, 0, 0.2) 50%,
    rgba(15, 79, 168, 0.3) 70%,
    transparent 100%);
  margin: 3em 0;
}

/* ── Author / meta bar ──────────────────── */
.article-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 13px;
  color: rgba(245, 247, 250, 0.45);
}
.article-meta .dot {
  width: 3px;
  height: 3px;
  background: rgba(245, 247, 250, 0.25);
  border-radius: 50%;
  flex-shrink: 0;
}
