/* ==========================================
   BOOKSCLINIC PUBLISHING — style.css
   Logo-matched: Deep Navy + Cyan/Teal
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,600;1,400&display=swap');

/* ========== CSS VARIABLES ========== */
:root {
  --crimson: #00D4E8;
  /* Cyan - logo primary accent */
  --gold: #00B4C8;
  /* Deeper teal */
  --gold-light: #5EEEFF;
  /* Light cyan glow */
  --ink: #0A1628;
  /* Deep navy - logo background */
  --cream: #0D1E32;
  /* Dark navy surface */
  --warm-white: #0A1628;
  /* Dark base */
  --charcoal: #1A2E44;
  /* Mid navy */
  --muted: #7AB8C8;
  /* Muted teal-blue */
  --border: rgba(0, 212, 232, 0.2);
  --text-primary: #E8F4F8;
  /* Light text on dark */
  --text-secondary: rgba(232, 244, 248, 0.65);
  --surface: #0D1E32;
  --surface-hover: #112438;
  --glow: rgba(0, 212, 232, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #0A1628;
  color: #fff;
  overflow-x: hidden;
}

/* ========== SCROLLBAR ========== */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #0D1E32;
}

::-webkit-scrollbar-thumb {
  background: var(--crimson);
  border-radius: 3px;
}

/* ========== NAVBAR ========== */
/* ========== NAVBAR ========== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(6, 13, 26, 0.97);
  padding: 0 5%;
  overflow: visible;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--crimson);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  transition: all .2s;
  position: relative;
}

.nav-links a:hover {
  color: var(--crimson);
  background: rgba(0, 212, 232, 0.06);
}

.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown:hover .drop-menu {
  display: block;
}

.drop-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #0D1E32;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px;
  min-width: 200px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.drop-menu a {
  display: block;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}

.drop-menu a:hover {
  background: rgba(0, 212, 232, 0.06);
  color: var(--crimson);
}

.nav-cta {
  background: var(--crimson) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: #00A8BA !important;
  color: #fff !important;
}

.hamburger {
 display: none; /* Desktop pe hide */
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  z-index: 10000; /* High z-index */
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: .3s;
}



/* ========== RESPONSIVE NAV ========== */
@media (max-width: 900px) {
  .hamburger {
    display: flex !important; /* Mobile pe show */
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    height: calc(100vh - 68px);
    flex-direction: column;
    align-items: stretch;
    background: #060D1A;
    padding: 20px 5% 60px;
    z-index: 9999;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    border-top: 2px solid rgba(0, 212, 232, 0.35);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    transform: translateX(100%);
    opacity: 0;
    pointer-events: none;
    display: flex !important; /* override desktop none */
  }

  .nav-links.open {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links>li {
    display: block;
    width: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }

  .nav-links>li>a {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 15px 20px;
    font-size: 15px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    background: transparent;
    transition: background .15s, color .15s;
    border-radius: 6px;
  }

  .nav-links>li>a:hover,
  .nav-links>li>a:active {
    background: rgba(0, 212, 232, 0.07);
    color: #00D4E8;
  }

  /* CTA button */
  .nav-links>li>a.nav-cta {
    margin: 14px 20px;
    width: calc(100% - 40px);
    text-align: center;
    border-radius: 10px;
    background: linear-gradient(135deg, #00D4E8, #00A8BA) !important;
    color: #060D1A !important;
    font-weight: 700;
    display: block;
  }

  /* Dropdown accordion on mobile */
  .nav-links .dropdown .drop-menu {
    display: block !important;
    position: static !important;
    box-shadow: none !important;
    border: none !important;
    background: rgba(0, 212, 232, 0.03);
    border-top: 1px solid rgba(0, 212, 232, 0.07);
    border-radius: 6px;
    margin: 0 10px;
    padding: 0;
    min-width: unset !important;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
  }

  /* Change .dropdown.active to .dropdown.drop-open */
.nav-links .dropdown.drop-open .drop-menu {
  max-height: 400px;
  padding: 8px 0;
  margin-bottom: 10px;
}
  .nav-links .dropdown .drop-menu a {
    display: block;
    padding: 10px 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  }

  .nav-links .dropdown .drop-menu a:hover {
    color: #00D4E8;
    background: rgba(0, 212, 232, 0.08);
  }
}


/* Hamburger → X animation */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* ========== HERO ========== */
#hero {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #0A1628 0%, #0D1F38 50%, #0A2040 100%);
  padding: 68px 5% 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Playfair Display', serif;
  font-size: clamp(80px, 15vw, 180px);
  font-weight: 900;
  color: rgba(0, 212, 232, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  letter-spacing: -5px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 0;
}

.hero-left {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 212, 232, 0.08);
  border: 1px solid rgba(0, 212, 232, 0.2);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  color: var(--crimson);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: fadeUp .8s ease both;
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--crimson);
  border-radius: 50%;
  display: block;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 4.5vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 20px;
  animation: fadeUp .8s .1s ease both;
}

.hero-title em {
  font-style: italic;
  color: var(--crimson);
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: 36px;
  animation: fadeUp .8s .2s ease both;
}

.hero-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  animation: fadeUp .8s .3s ease both;
}

.stat {
  text-align: left;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
}

.stat-num span {
  color: var(--crimson);
}

.stat-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: .5px;
  margin-top: 2px;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .8s .4s ease both;
}

/* Buttons */
.btn-primary {
  background: var(--crimson);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .3s;
  border: none;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
}

.btn-primary:hover {
  background: #00A8BA;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 212, 232, 0.3);
}

.btn-outline {
  border: 2px solid var(--ink);
  color: #fff;
  padding: 13px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: .3s;
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
  transform: translateY(-2px);
}

/* Hero Book Shelf */
.hero-right {
  position: relative;
  z-index: 2;
  animation: fadeRight .9s .2s ease both;
}

.book-shelf {
  position: relative;
  padding: 30px 0;
}

.shelf-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: flex-end;
  margin-bottom: 10px;
}

.book-card {
  position: relative;
  cursor: pointer;
  transition: .4s cubic-bezier(.25, .46, .45, .94);
}

.book-card:hover {
  transform: translateY(-12px) rotate(-2deg);
  z-index: 10;
}

.book-spine {
  width: 65px;
  height: 95px;
  border-radius: 4px 8px 8px 4px;
  box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.2), inset -3px 0 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 8px 5px;
  position: relative;
  overflow: hidden;
}

.book-spine::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 8px;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
}

.book-title {
  font-family: 'Playfair Display', serif;
  font-size: 7px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  line-height: 1.3;
  z-index: 1;
}

.book-author {
  font-size: 5.5px;
  color: rgba(232, 244, 248, 0.7);
  margin-top: 4px;
  text-align: center;
  z-index: 1;
}

.shelf-plank {
  height: 12px;
  background: linear-gradient(180deg, #8B5E3C, #6B4226);
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  margin-bottom: 24px;
  width: 100%;
}

.active-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  transition: .3s;
}

.shelf-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 8px;
}

/* ===== UPDATED REAL BOOK + IMAGE SHELF ===== */

/* REMOVE OLD ROTATION (CLEAN LOOK) */
.book-card:hover {
  transform: translateY(-12px);
}

/* BOOK IMAGE STYLE */
.book-img {
  width: 180px;
  /* pehle 140 tha */
  height: 260px;
  /* pehle 200 tha */
  object-fit: cover;
  border-radius: 10px;
  display: block;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.3);
}

/* HOVER EFFECT */
.book-card:hover .book-img {
  transform: scale(1.05);
}

/* BOOK ALIGNMENT */
.shelf-row {
  justify-content: center;
  align-items: flex-end;
  gap: 40px;
  /* space between 2 books */
  margin-bottom: -20px;
  /* IMPORTANT: book ko shelf pe bithata hai */
}

/* SHELF IMAGE */
.shelf-image {
  display: flex;
  justify-content: center;
}

.shelf-image img {
  margin: 24px 0 0px;
  width: 410px;
  display: block;
}

/* OPTIONAL: CENTER WHOLE BLOCK */
.book-shelf {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ========== ABOUT ========== */
#about {
  background: var(--ink);
  color: #fff
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center
}

.about-left .section-label {
  color: var(--gold-light)
}

.about-left .section-title {
  color: #fff
}

.about-text {
  color: rgba(232, 244, 248, 0.7);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 20px
}

.about-text strong {
  color: #fff
}

.about-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold-light);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 28px 0
}

.about-right {
  position: relative
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  border-radius: 16px;
  overflow: hidden
}

.team-photo {
  background: linear-gradient(135deg, #2C2416, #3D3020);
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  position: relative;
  overflow: hidden
}

.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, rgba(0, 0, 0, 0.5))
}

.team-photo:first-child {
  grid-column: span 2;
  height: 220px
}

/* GRID SAME */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  border-radius: 16px;
  overflow: hidden;
}

/* MAIN BOX */
.team-photo {
  height: 260px;
  /* bada size */
  position: relative;
  overflow: hidden;
  border-radius: 12px;
}

/* IMAGE FULL FIT */
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* IMPORTANT */
  display: block;
  transition: 0.4s;
}

/* HOVER EFFECT (optional) */
.team-photo:hover img {
  transform: scale(1.05);
}

/* OVERLAY (optional dark effect) */
.team-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 60%, rgba(0, 0, 0, 0.4));
}

/* FIRST BOX FULL WIDTH */
.team-photo:first-child {
  grid-column: span 2;
  height: 320px;
  /* main big image */
}

/* ========== SECTION BASE ========== */
section {
  padding: 90px 5%;
}

.container {
  max-width: 1300px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 560px;
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin: 0 auto;
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== ABOUT ========== */
#about {
  background: var(--ink);
  color: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-left .section-label {
  color: var(--gold-light);
}

.about-left .section-title {
  color: #fff;
}

.about-text {
  color: rgba(232, 244, 248, 0.7);
  font-size: 15px;
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-text strong {
  color: #fff;
}

.about-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold-light);
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 28px 0;
}

/* RIGHT SIDE */
.about-right {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* GRID REMOVE COMPLEXITY */
.team-grid {
  width: 100%;
}

/* IMAGE BOX */
.team-photo {
  width: 100%;
  height: 350px;
  /* yahan size control hoga */
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

/* IMAGE PERFECT FIT */
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* MOST IMPORTANT */
  display: block;
}

/* OPTIONAL HOVER */
.team-photo img:hover {
  transform: scale(1.03);
  transition: 0.4s;
}

/* ========== BOOKS ========== */
#books {
  background: #0D1E32;
}

.books-tabs {
  display: flex;
  gap: 8px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: .2s;
  font-family: 'DM Sans', sans-serif;
}

.tab-btn.active {
  background: var(--crimson);
  border-color: var(--crimson);
  color: #fff;
}

.books-slider {
  overflow: hidden;
  padding-top: 20px;
  /* space for hover */
  /* position: relative; */
}

.books-track {
  display: flex;
  gap: 22px;
  transition: transform .6s cubic-bezier(.25, .46, .45, .94);
}

.book-item {

  flex: 0 0 175px;
  cursor: pointer;
  transition: .4s;
}

.book-item:hover {
  transform: translateY(-8px);
}

.book-cover {
  width: 175px;
  height: 252px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  box-shadow: 6px 8px 24px rgba(0, 0, 0, 0.18);
}

.book-cover::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 12px;
  height: 100%;
  background: rgba(0, 0, 0, 0.15);
  z-index: 1;
}

.book-cover-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  padding: 16px;
}

.book-meta {
  margin-top: 12px;
}

.book-meta h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.book-meta p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 3px;
}

.slider-controls {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  justify-content: center;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--crimson);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--crimson);
  font-size: 16px;
  transition: .2s;
}

.slider-btn:hover {
  background: var(--crimson);
  color: #fff;
}

.view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--crimson);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  margin-top: 30px;
  padding: 12px 24px;
  border: 2px solid var(--crimson);
  border-radius: 8px;
  transition: .3s;
}

.view-all:hover {
  background: var(--crimson);
  color: #fff;
}

/* ===== IMAGE FIT FIX (IMPORTANT) ===== */

/* remove old text style effect */
.book-cover-img {
  display: none;
}

/* real image styling */
.book-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* better shadow + premium feel */
.book-cover {
  box-shadow:
    0 15px 30px rgba(0, 0, 0, 0.25),
    /* main shadow */
    0 5px 10px rgba(0, 0, 0, 0.15);
  /* soft depth */
  transform: perspective(800px) rotateX(0deg);
  transition: 0.4s cubic-bezier(.25, .46, .45, .94);
}

/* hover effect improve */
.book-item:hover .book-cover {
  transform: translateY(-6px) scale(1.03);
}

/* spacing thoda improve */
.books-track {
  gap: 26px;
  /* thoda bada */
}

/* optional: slightly bigger books */
.book-item {
  flex: 0 0 185px;
  /* pehle 175 tha */
}

.book-cover {
  width: 185px;
  height: 265px;
}


/* ========== SERVICES ========== */
#services {
  background: #0A1628;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.service-card {
  background: #0D1E32;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  cursor: pointer;
  transition: .4s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--crimson);
  transform: scaleX(0);
  transform-origin: left;
  transition: .4s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(192, 57, 43, 0.1);
  border-color: rgba(0, 212, 232, 0.3);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 212, 232, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: .4s;
}

.service-card:hover .service-icon {
  background: var(--crimson);
  transform: scale(1.05);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--crimson);
  font-size: 13px;
  font-weight: 700;
  margin-top: 18px;
  text-decoration: none;
  opacity: 0;
  transform: translateX(-8px);
  transition: .3s;
}

.service-card:hover .service-link {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================================
   PROCESS SECTION — Complete CSS
   Desktop: horizontal zigzag | Mobile: vertical zigzag
   + Sparks / Particles background
   ============================================================ */

/* ── SPARKS CANVAS (global background layer) ── */
#sparks-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

/* ── PROCESS SECTION WRAPPER ── */
#process {
  position: relative;
  overflow: hidden;
  background: #0d1b2e;
  padding: 80px 5% 90px;
  text-align: center;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  z-index: 1;
}

/* section header */
#process .section-label {
  display: inline-block;
  color: #22d3ee;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 5px 16px;
  border: 1px solid rgba(34, 211, 238, 0.25);
  border-radius: 99px;
  background: rgba(34, 211, 238, 0.07);
}

#process .section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 700;
  color: #fff;
  margin: 10px 0 14px;
  line-height: 1.2;
}

#process .section-sub {
  color: rgba(255, 255, 255, 0.5);
  font-size: 15px;
  max-width: 540px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

/* ── PROGRESS BAR ── */
.pp-progwrap {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  height: 3px;
  overflow: hidden;
  max-width: 1100px;
  margin: 0 auto 44px;
}

.pp-progbar {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, #22d3ee, #818cf8);
  width: 0%;
  transition: width 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ══════════════════════════════════════════════════
   DESKTOP TRACK  (≥ 700px)
══════════════════════════════════════════════════ */
.pp-desktop-track {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 215px;
  margin: 0 auto 44px;
}

.pp-desktop-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
}

.pp-desktop-steps {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* ── Desktop Step ── */
.pp-d-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  cursor: pointer;
  transition: opacity 0.3s;
}

.pp-d-step:nth-child(odd) {
  padding-top: 4px;
}

.pp-d-step:nth-child(even) {
  padding-top: 112px;
}

.pp-d-step:nth-child(odd) .pp-d-label {
  margin-top: 10px;
}

.pp-d-step:nth-child(even) .pp-d-label {
  order: -1;
  margin-bottom: 10px;
}

.pp-d-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #0d1b2e;
  border: 2px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  position: relative;
  z-index: 3;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.25s;
}

.pp-d-step.active .pp-d-circle {
  border-color: #22d3ee;
  box-shadow: 0 0 0 5px rgba(34, 211, 238, 0.15), 0 0 22px rgba(34, 211, 238, 0.2);
  transform: scale(1.12);
}

.pp-d-step.done .pp-d-circle {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.12);
}

.pp-d-tick {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  opacity: 0;
  transition: opacity 0.3s;
}

.pp-d-step.done .pp-d-tick {
  opacity: 1;
}

.pp-d-num {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #0d1b2e;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  font-size: 9px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.pp-d-step.active .pp-d-num {
  background: #22d3ee;
  border-color: #22d3ee;
  color: #0d1b2e;
}

.pp-d-step.done .pp-d-num {
  background: #10b981;
  border-color: #10b981;
  color: #fff;
}

.pp-d-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.3);
  white-space: nowrap;
  transition: color 0.35s;
  letter-spacing: 0.3px;
}

.pp-d-step.active .pp-d-label {
  color: #22d3ee;
}

.pp-d-step.done .pp-d-label {
  color: #10b981;
}

/* ══════════════════════════════════════════════════
   MOBILE TRACK  (< 700px)
══════════════════════════════════════════════════ */
.pp-mobile-track {
  display: none;
  position: relative;
  max-width: 400px;
  margin: 0 auto 36px;
}

.pp-mobile-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: visible;
}

.pp-m-rows {
  position: relative;
  z-index: 1;
}

/* Each mobile row */
.pp-m-row {
  display: flex;
  align-items: center;
  height: 86px;
  cursor: pointer;
}

.pp-m-row:nth-child(odd) {
  flex-direction: row;
}

.pp-m-row:nth-child(even) {
  flex-direction: row-reverse;
}

.pp-m-circ-wrap {
  flex-shrink: 0;
  width: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-m-circ {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #0d1b2e;
  border: 2px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  position: relative;
  z-index: 2;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.25s;
}

.pp-m-row.active .pp-m-circ {
  border-color: #22d3ee;
  box-shadow: 0 0 0 4px rgba(34, 211, 238, 0.18), 0 0 16px rgba(34, 211, 238, 0.15);
  transform: scale(1.1);
}

.pp-m-row.done .pp-m-circ {
  border-color: #10b981;
}

.pp-m-tick {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  opacity: 0;
  transition: opacity 0.3s;
}

.pp-m-row.done .pp-m-tick {
  opacity: 1;
}

.pp-m-num {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #0d1b2e;
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  font-size: 8px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.pp-m-row.active .pp-m-num {
  background: #22d3ee;
  border-color: #22d3ee;
  color: #0d1b2e;
}

.pp-m-row.done .pp-m-num {
  background: #10b981;
  border-color: #10b981;
  color: #fff;
}

/* Mini card beside circle */
.pp-m-mini {
  flex: 1;
  margin: 0 8px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  text-align: left;
  transition: background 0.3s, border-color 0.3s;
}

.pp-m-row.active .pp-m-mini {
  background: rgba(34, 211, 238, 0.07);
  border-color: rgba(34, 211, 238, 0.25);
}

.pp-m-row.done .pp-m-mini {
  background: rgba(16, 185, 129, 0.05);
  border-color: rgba(16, 185, 129, 0.18);
}

.pp-m-name {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s;
}

.pp-m-row.active .pp-m-name {
  color: #22d3ee;
}

.pp-m-row.done .pp-m-name {
  color: #10b981;
}

.pp-m-desc {
  font-size: 11px;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.22);
  line-height: 1.4;
  transition: color 0.3s;
}

.pp-m-row.active .pp-m-desc {
  color: rgba(255, 255, 255, 0.5);
}

/* ── Detail Card ── */
.pp-detail-card {
  max-width: 1100px;
  margin: 0 auto 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 22px 26px;
  min-height: 90px;
  text-align: left;
  transition: border-color 0.3s, background 0.3s;
}

.pp-detail-card.active-card {
  border-color: rgba(34, 211, 238, 0.22);
  background: rgba(34, 211, 238, 0.04);
}

.pp-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.pp-card-icon {
  font-size: 28px;
  line-height: 1;
}

.pp-card-title {
  font-size: 16px;
  font-weight: 600;
  color: #22d3ee;
}

.pp-card-body {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

@keyframes ppFadeUp {
  from {
    opacity: 0;
    transform: translateY(7px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pp-detail-card.pp-anim {
  animation: ppFadeUp 0.3s ease forwards;
}

/* ── Controls ── */
.pp-controls {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.pp-btn {
  padding: 9px 18px;
  border-radius: 9px;
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  outline: none;
}

.pp-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #22d3ee;
}

.pp-btn:active {
  transform: scale(0.97);
}

.pp-btn.pp-primary {
  background: #22d3ee;
  color: #0d1b2e;
  border-color: #22d3ee;
  font-weight: 700;
}

.pp-btn.pp-primary:hover {
  background: #5eead4;
}

.pp-btn:disabled {
  opacity: 0.3;
  pointer-events: none;
}

.pp-counter {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.pp-speed {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
}

.pp-speed select {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  border-radius: 7px;
  padding: 5px 10px;
  cursor: pointer;
  outline: none;
}

/* ══════════════════════════════════════════════════
   MOBILE RESPONSIVE  (< 700px)
══════════════════════════════════════════════════ */
@media (max-width: 700px) {

  #process {
    padding: 60px 16px 70px;
  }

  /* swap tracks */
  .pp-desktop-track {
    display: none !important;
  }

  .pp-mobile-track {
    display: block;
  }

  .pp-detail-card {
    padding: 16px 14px;
  }

  .pp-card-icon {
    font-size: 22px;
  }

  .pp-card-title {
    font-size: 14px;
  }

  .pp-card-body {
    font-size: 12.5px;
  }

  .pp-controls {
    gap: 8px;
  }

  .pp-btn {
    padding: 8px 13px;
    font-size: 12px;
  }

  .pp-speed {
    margin-top: 4px;
  }
}

/* ===== PROCESS TRACK ===== */
.process-track {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  height: 220px;
}

/* SVG connector line sits behind everything */
.connector-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* Steps row */
.steps-row {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 2;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(100% / 7);
}

/* ODD steps go TOP, EVEN go BOTTOM */
.step:nth-child(odd) {
  padding-top: 0;
}

.step:nth-child(even) {
  padding-top: 110px;
}

.circle {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: #0d1b2e;
  border: 2.5px solid #22d3ee;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 0 18px rgba(34, 211, 238, 0.25), inset 0 0 12px rgba(34, 211, 238, 0.07);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
}

.circle:hover {
  transform: scale(1.12);
  border-color: #818cf8;
  box-shadow: 0 0 28px rgba(129, 140, 248, 0.45);
}

/* Label BELOW for odd (top), ABOVE for even (bottom) — like image 1 */
.step:nth-child(odd) .step-label {
  margin-top: 10px;
}

.step:nth-child(even) .step-label {
  order: -1;
  margin-bottom: 10px;
}

.step-label {
  font-size: 13px;
  font-weight: 600;
  color: #e2e8f0;
  white-space: nowrap;
}

/* ===== MOBILE ===== */
@media (max-width: 700px) {
  .process-track {
    height: auto;
  }

  .connector-svg {
    display: none;
  }

  .steps-row {
    position: static;
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .step {
    width: auto;
    padding-top: 0 !important;
  }

  .step:nth-child(even) .step-label {
    order: 0;
    margin-bottom: 0;
    margin-top: 10px;
  }
}

/* ========== WHY US ========== */
#why {
  background: #0D1E32;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 50px;
}

.trust-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.trust-card {
  background: #0D1E32;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  transition: .3s;
}

.trust-card:hover {
  border-color: var(--crimson);
  box-shadow: 0 8px 24px rgba(0, 212, 232, 0.08);
}

.trust-card .icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.trust-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.trust-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.reviews-box {
  background: #0D1E32;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}

.reviews-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.g-logo {
  font-size: 22px;
  font-weight: 900;
  background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stars {
  color: #FBBC05;
  font-size: 18px;
}

.rating-num {
  font-size: 26px;
  font-weight: 900;
  font-family: 'Playfair Display', serif;
  color: #fff;
}

.review-card {
  background: #0D1E32;
  border-radius: 10px;
  padding: 16px;
  margin-bottom: 12px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.reviewer-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--crimson);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.reviewer-name {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}

.reviewer-stars {
  color: #FBBC05;
  font-size: 11px;
}

.review-text {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
}

/* ========== AUTHORS ========== */
#authors {
  background: #0A1628;
}

.authors-track-wrap {
  overflow: hidden;
  margin-top: 50px;
}

.authors-track {
  display: flex;
  gap: 24px;
  animation: scrollTrack 30s linear infinite;
}

.authors-track:hover {
  animation-play-state: paused;
}

.author-card {
  flex: 0 0 260px;
  background: #0D1E32;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: .3s;
}

.author-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.author-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--crimson), #8B0000);
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #fff;
  font-weight: 700;
  border: 3px solid var(--gold-light);
}

.author-name {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.author-book {
  font-size: 12px;
  color: var(--crimson);
  font-weight: 600;
  margin-bottom: 10px;
}

.author-quote {
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6;
  font-style: italic;
}

.author-stars {
  color: #FBBC05;
  font-size: 13px;
  margin-top: 10px;
}

/* ========== DISTRIBUTION — MAP + PLATFORMS ========== */

#distribution { background: #0A1628; }

/* Map container */
.dist-map-wrap {
  width: 100%;
  max-width: 1000px;
  margin: 50px auto 28px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(0, 212, 232, 0.15);
  box-shadow:
    0 0 0 1px rgba(0, 212, 232, 0.06),
    0 25px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(0, 212, 232, 0.08);
}

.dist-map-container {
  position: relative;
  width: 100%;
  aspect-ratio: 2/1;
  background: #0d1e32;
}

/* Real world map image */
.dist-world-map-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.5;
  filter: 
    brightness(0.7) 
    contrast(1.2) 
    drop-shadow(0 0 20px rgba(0, 212, 232, 0.1));
}

/* LEFT SIDE COUNTRIES PANEL */
.dist-countries-panel {
    position: absolute;
    left: 20px;
    top: 89%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row-reverse;
    gap: 12px;
    z-index: 10;
    background: rgba(6, 13, 26, 0.85);
    backdrop-filter: blur(10px);
    padding: 20px 16px;
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 232, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    flex-wrap: wrap;
    align-items: flex-end;
    align-content: flex-end;
    justify-content: flex-end;
}

.dist-country-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 6px 10px;
  border-radius: 8px;
}

.dist-country-item:hover {
  background: rgba(0, 212, 232, 0.1);
  transform: translateX(5px);
}

.dist-country-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #00D4E8;
  box-shadow: 0 0 10px rgba(0, 212, 232, 0.8);
  animation: dotPulse 2s ease-in-out infinite;
}

.dist-country-item[data-country="usa"] .dist-country-dot { animation-delay: 0s; }
.dist-country-item[data-country="uk"] .dist-country-dot { animation-delay: 0.3s; }
.dist-country-item[data-country="brazil"] .dist-country-dot { animation-delay: 0.6s; }
.dist-country-item[data-country="safrica"] .dist-country-dot { animation-delay: 0.9s; }
.dist-country-item[data-country="australia"] .dist-country-dot { animation-delay: 1.2s; }
.dist-country-item[data-country="japan"] .dist-country-dot { animation-delay: 1.5s; }
.dist-country-item[data-country="dubai"] .dist-country-dot { animation-delay: 1.8s; }

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.dist-country-name {
  font-size: 13px;
  font-weight: 600;
  color: rgba(232, 244, 248, 0.9);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.dist-country-item:hover .dist-country-name {
  color: #00D4E8;
}

/* SVG Overlay for animations */
.dist-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

/* SVG text helpers */
.dist-orig-lbl {
  font-size: 24px;
  font-weight: 700;
  fill: #00D4E8;
  text-shadow: 0 0 20px rgba(0, 212, 232, 0.8);
}
.dist-orig-sub {
  font-size: 11px;
  fill: rgba(0, 212, 232, 0.8);
}

/* Animated distribution lines */
.dist-line {
  stroke-dasharray: 10 5;
  stroke-linecap: round;
  animation: distDash 2.5s linear infinite;
  filter: drop-shadow(0 0 4px rgba(0, 212, 232, 0.5));
}
.dist-line-fast {
  stroke-dasharray: 8 4;
  stroke-linecap: round;
  animation: distDash 1.8s linear infinite;
  filter: drop-shadow(0 0 4px rgba(34, 211, 238, 0.5));
}
@keyframes distDash { to { stroke-dashoffset: -40; } }

/* Pulsing origin dot */
.dist-pulse {
  animation: distPulse 2s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(0, 212, 232, 1));
}
@keyframes distPulse {
  0%, 100% { r: 7; opacity: 1; }
  50%       { r: 16; opacity: 0.3; }
}

/* Respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .dist-line, .dist-line-fast { animation: none; }
  .dist-pulse, .dist-country-dot { animation: none; }
}

/* Stats row */
.dist-stats-row {
  display: flex;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto 36px;
  border: 1px solid rgba(0, 212, 232, 0.12);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(0, 212, 232, 0.03);
}
.dist-stat-item {
  flex: 1;
  text-align: center;
  padding: 16px 10px;
  border-right: 1px solid rgba(0, 212, 232, 0.1);
}
.dist-stat-item:last-child { border-right: none; }
.dist-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}
.dist-stat-num span { color: #00D4E8; }
.dist-stat-lbl {
  font-size: 11px;
  color: rgba(232, 244, 248, 0.5);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Platform grid title */
.dist-platforms-title {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(232, 244, 248, 0.4);
  text-align: center;
  margin-bottom: 18px;
}

/* ========== PLATFORM GRID ========== */
.dist-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.dist-tile {
  background: rgba(13, 30, 50, 0.9);
  border: 1px solid rgba(0, 212, 232, 0.12);
  border-radius: 14px;
  padding: 18px 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), 0 1px 3px rgba(0, 0, 0, 0.2);
}
.dist-tile:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: rgba(0, 212, 232, 0.5);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 212, 232, 0.1);
}
.dist-tile-icon { font-size: 26px; line-height: 1; display: block; }
.dist-tile-name {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(232, 244, 248, 0.6);
  text-align: center;
  line-height: 1.3;
  transition: color 0.3s;
}
.dist-tile:hover .dist-tile-name { color: #00D4E8; }

/* Platform accent hovers */
.dist-tile[data-p="amazon"]:hover  { border-color: rgba(255,153,0,.5); }
.dist-tile[data-p="amazon"]:hover .dist-tile-name  { color: #FF9900; }
.dist-tile[data-p="flipkart"]:hover { border-color: rgba(47,116,212,.4); }
.dist-tile[data-p="flipkart"]:hover .dist-tile-name { color: #2F74D4; }
.dist-tile[data-p="google"]:hover  { border-color: rgba(66,133,244,.4); }
.dist-tile[data-p="google"]:hover .dist-tile-name  { color: #4285F4; }
.dist-tile[data-p="kindle"]:hover .dist-tile-name  { color: #00A6FF; }
.dist-tile[data-p="kobo"]:hover    { border-color: rgba(224,0,76,.4); }
.dist-tile[data-p="kobo"]:hover .dist-tile-name    { color: #E0004C; }

/* Note */
.dist-note {
  font-size: 14px;
  color: rgba(232, 244, 248, 0.5);
  padding: 16px 24px;
  border: 1px solid rgba(0, 212, 232, 0.1);
  border-radius: 12px;
  background: rgba(0, 212, 232, 0.03);
  line-height: 1.6;
  text-align: center;
  max-width: 900px;
  margin: 24px auto 0;
}
.dist-note strong { color: #00D4E8; font-weight: 600; }

/* ── RESPONSIVE ── */

@media (max-width: 768px) {
  .dist-map-wrap { 
    margin-top: 36px; 
    border-radius: 12px;
  }
  
  .dist-map-container {
    aspect-ratio: 2/1.3;
  }
  
  /* Mobile: Countries panel on top */
  .dist-countries-panel {
        top: 43%;
    display: flex;
    align-content: space-around;
    flex-direction: column-reverse;
    flex-wrap: wrap;
    align-items: flex-start;
            left: 10px;
        top: 12x;
        transform: none;
        padding: 12px;
        gap: 0px;
        max-width: 200px;
  }
  
  .dist-country-item {
    padding: 4px 8px;
  }
  
  .dist-country-name {
    font-size: 5px;
  }
  
  .dist-country-dot {
    width: 8px;
    height: 8px;
  }
  
  .dist-grid { 
    grid-template-columns: repeat(2, 1fr); 
    max-width: 400px; 
    gap: 12px; 
  }
  
  .dist-stats-row { max-width: 340px; }
  .dist-stat-num { font-size: 20px; }
  .dist-orig-lbl { font-size: 16px; }
}

@media (max-width: 480px) {
  .dist-countries-panel {
    
    max-width: 150px;
    /* padding: 10px; */
  }
  
  .dist-country-item {
    padding: 3px 6px;
  }
  
  .dist-country-name {
    font-size: 9px;
  }
}

@media (max-width: 400px) {
  .dist-grid { 
    max-width: 100%;
    gap: 10px;
  }
  .dist-tile { 
    padding: 14px 10px; 
  }
  .dist-tile-icon { 
    font-size: 22px; 
  }
  .dist-tile-name { 
    font-size: 10px; 
  }
}
/* ===== SECTION ===== */
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 50px;
}

.pkg-box {
  background: rgba(0,212,232,0.05);
  border: 1px solid rgba(0,212,232,0.2);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
  text-decoration: none;
  transition: 0.3s;
  color: #fff;
}

.pkg-box:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, #00D4E8, #007A8A);
  color: #060D1A;
}

/* ========== CONTACT ========== */
#contact {
  background: linear-gradient(135deg, #E8F4F8, #D0EEF5);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  margin-top: 50px;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}

.contact-info p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 30px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail:last-child {
  border: none;
}

.cd-icon {
  width: 44px;
  height: 44px;
  background: rgba(0, 212, 232, 0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.cd-label {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.cd-value {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

.contact-form {
  background: #0D1E32;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #fff;
  background: #0D1E32;
  transition: .2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--crimson);
  background: #0D1E32;
  box-shadow: 0 0 0 3px rgba(0, 212, 232, 0.08);
}

.form-group textarea {
  height: 100px;
  resize: none;
}

.form-btns {
  display: flex;
  gap: 12px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25D366;
  color: #fff;
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  transition: .3s;
}

.whatsapp-btn:hover {
  background: #1ea855;
  transform: translateY(-2px);
}

/* ========== FOOTER ========== */
footer {
  background: #060D1A;
  padding: 60px 5% 30px;
  color: rgba(232, 244, 248, 0.6);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand .logo-text {
  color: #fff;
}

.footer-brand .logo-text span {
  color: rgba(232, 244, 248, 0.4);
}

.footer-tagline {
  font-size: 13px;
  color: rgba(232, 244, 248, 0.45);
  line-height: 1.7;
  margin: 14px 0 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-link {
  width: 34px;
  height: 34px;
  background: rgba(0, 212, 232, 0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(232, 244, 248, 0.5);
  font-size: 14px;
  text-decoration: none;
  transition: .2s;
}

.social-link:hover {
  background: var(--crimson);
  color: #fff;
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: rgba(232, 244, 248, 0.8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(232, 244, 248, 0.45);
  text-decoration: none;
  font-size: 13px;
  transition: .2s;
}

.footer-links a:hover {
  color: var(--gold-light);
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer-contact-item span:first-child {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.footer-contact-item a,
.footer-contact-item p {
  font-size: 13px;
  color: rgba(232, 244, 248, 0.5);
  text-decoration: none;
  transition: .2s;
}

.footer-contact-item a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 212, 232, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(232, 244, 248, 0.25);
}

/* ========== WHATSAPP FLOAT ========== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: .3s;
  animation: pulse 2s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
}

/* ========== ANIMATIONS ========== */
@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scrollTrack {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ========== RESPONSIVE ========== */


/* ── Global overflow fix ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 30px;
  }

  .process-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {

  /* ── Overflow fix on every section ── */
  section,
  nav,
  footer,
  #hero {
    max-width: 100vw;
    overflow-x: hidden;
  }

  /* ── HERO: stack vertically, shelf on top ── */
  #hero {
    padding: 68px 5% 40px;
    align-items: flex-start;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 0 20px;
  }

  /* Show hero-right (book shelf) on mobile, place it ABOVE hero-left */
  .hero-right {
    display: flex !important;
    order: -1;
    justify-content: center;
    animation: none;
    width: 100%;
    overflow: hidden;
  }

  /* Book shelf full size on mobile */
  .book-shelf {
    transform: none;
    transform-origin: top center;
    width: 100%;
    padding: 10px 0 0;
  }

  .shelf-row {
    gap: 20px;
    justify-content: center;
  }

  .book-img {
    width: 140px;
    height: 200px;
  }

  .shelf-image img {
    width: 320px;
  }

  /* Hero text sizing */
  .hero-title {
    font-size: clamp(28px, 8vw, 42px);
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .hero-stats {
    gap: 16px;
    flex-wrap: wrap;
  }

  .stat-num {
    font-size: 22px;
  }

  .hero-btns {
    flex-direction: column;
    gap: 10px;
  }

  .hero-btns a,
  .hero-btns button {
    width: 100%;
    justify-content: center;
  }

  /* ── GRIDS ── */
  .about-grid,
  .why-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .packages-grid,
  .trust-cards,
  .form-row {
    grid-template-columns: 1fr;
  }

  .process-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ── ABOUT: show image on mobile ── */
  .about-right {
    display: flex !important;
    width: 100%;
  }

  .team-grid {
    width: 100%;
  }

  .team-photo {
    height: 220px;
    width: 100%;
  }

  /* ── FOOTER ── */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  /* ── AUTHORS TRACK ── */
  .authors-track {
    gap: 14px;
  }

  .author-card {
    flex: 0 0 200px;
    padding: 18px;
  }

  /* ── DIST GRID ── */
  .dist-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .dist-card {
    height: 80px;
    padding: 14px;
  }

  .dist-card img {
    width: 100px;
    height: 40px;
  }

  /* ── PACKAGES ── */
  .pkg-card.featured {
    transform: scale(1) !important;
  }

  /* ── CONTACT ── */
  .contact-form {
    padding: 24px 18px !important;
  }

  /* ── BOOKS SLIDER ── */
  .book-item {
    flex: 0 0 140px;
  }

  .book-cover {
    width: 140px;
    height: 200px;
  }

  /* ── PROCESS ── */
  #process {
    padding: 50px 4% 60px;
  }

  .pp-desktop-track {
    display: none !important;
  }

  .pp-mobile-track {
    display: block;
  }

  /* ── SECTION PADDING ── */
  section {
    padding: 60px 5%;
  }
}

/* Extra small phones */
@media (max-width: 400px) {
  .hero-stats {
    gap: 10px;
  }

  .stat-num {
    font-size: 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .dist-grid {
    grid-template-columns: 1fr;
  }

  .book-shelf {
    transform: none;
  }

  .book-img {
    width: 120px;
    height: 175px;
  }

  .shelf-image img {
    width: 280px;
  }
}

/* ========== LOGO-THEME ENHANCEMENTS ========== */

/* Cyan glow on primary buttons */
.btn-primary {
  background: linear-gradient(135deg, #00D4E8, #00A8BA) !important;
  color: #060D1A !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 20px rgba(0, 212, 232, 0.3) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #5EEEFF, #00D4E8) !important;
  box-shadow: 0 8px 30px rgba(0, 212, 232, 0.5) !important;
  color: #060D1A !important;
}

/* Nav links on dark bg */
.nav-links a {
  color: rgba(232, 244, 248, 0.85) !important;
}

.nav-links a:hover {
  color: #00D4E8 !important;
  background: rgba(0, 212, 232, 0.1) !important;
}

.nav-cta {
  background: linear-gradient(135deg, #00D4E8, #00A8BA) !important;
  color: #060D1A !important;
}

/* Drop menu dark */
.drop-menu {
  background: #0D1E32 !important;
  border: 1px solid rgba(0, 212, 232, 0.2) !important;
}

.drop-menu a {
  color: rgba(232, 244, 248, 0.8) !important;
}

/* Section titles on dark bg */
.section-title {
  color: #E8F4F8;
}

.section-label {
  color: #00D4E8;
}

.section-sub {
  color: #7AB8C8;
}

/* Hero text */
.hero-title {
  color: #E8F4F8;
}

.hero-title em {
  color: #00D4E8;
  text-shadow: 0 0 30px rgba(0, 212, 232, 0.4);
}

.hero-subtitle {
  color: rgba(232, 244, 248, 0.7);
}

/* Stat numbers */
.stat-num {
  color: #E8F4F8;
}

.stat-num span {
  color: #00D4E8;
}

.stat-label {
  color: #7AB8C8;
}

/* Tab buttons */
.tab-btn {
  border-color: rgba(0, 212, 232, 0.3) !important;
  color: #7AB8C8 !important;
}

.tab-btn.active {
  background: linear-gradient(135deg, #00D4E8, #00A8BA) !important;
  color: #060D1A !important;
  border-color: transparent !important;
}

/* Slider btn */
.slider-btn {
  border-color: #00D4E8 !important;
  color: #00D4E8 !important;
}

.slider-btn:hover {
  background: #00D4E8 !important;
  color: #060D1A !important;
}

/* Package card featured */
.pkg-card.featured {
  background: linear-gradient(135deg, #00D4E8 0%, #007A8A 100%) !important;
}

/* Contact form */
.contact-form {
  background: #0D1E32 !important;
  border: 1px solid rgba(0, 212, 232, 0.15);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: #0A1628 !important;
  border-color: rgba(0, 212, 232, 0.2) !important;
  color: #E8F4F8 !important;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #00D4E8 !important;
  box-shadow: 0 0 0 3px rgba(0, 212, 232, 0.12) !important;
}

.form-group label {
  color: #E8F4F8 !important;
}

/* Contact info */
.contact-info h3 {
  color: #E8F4F8;
}

.contact-info p {
  color: #7AB8C8;
}

.cd-value {
  color: #E8F4F8;
}

/* About section text */
.about-text {
  color: rgba(232, 244, 248, 0.75) !important;
}

.about-tagline {
  color: #5EEEFF !important;
  border-color: #00D4E8 !important;
}

/* Logo icon */
.logo-icon {
  background: linear-gradient(135deg, #00D4E8, #007A8A) !important;
  color: #060D1A !important;
}

/* Scrollbar */
::-webkit-scrollbar-thumb {
  background: linear-gradient(#00D4E8, #007A8A) !important;
}

/* Hero bg watermark text */
.hero-bg-text {
  color: rgba(0, 212, 232, 0.05) !important;
}

/* Book items meta text */
.book-meta h4 {
  color: #E8F4F8;
}

.book-meta p {
  color: #7AB8C8;
}

/* Contact section bg */
#contact {
  background: linear-gradient(135deg, #0A1628, #0D1E32) !important;
}

#contact .contact-info h3 {
  color: #E8F4F8;
}

/* Package features */
.pkg-features li {
  color: #7AB8C8 !important;
  border-color: rgba(0, 212, 232, 0.1) !important;
}

.pkg-features li::before {
  color: #00D4E8 !important;
}

/* Footer links hover */
.footer-links a:hover {
  color: #5EEEFF !important;
}

/* Process steps numbers glow */
.step-num {
  background: linear-gradient(135deg, #00D4E8, #007A8A) !important;
  color: #060D1A !important;
}

/* Genre buttons */
.genre-btn.active {
  background: linear-gradient(135deg, #00D4E8, #00A8BA) !important;
  color: #060D1A !important;
}

/* Testimonial cards */
.testimonial-card {
  background: #0D1E32 !important;
  border: 1px solid rgba(0, 212, 232, 0.1) !important;
}

/* Service cards */
.service-card {
  background: #0D1E32 !important;
  border: 1px solid rgba(0, 212, 232, 0.08) !important;
}

.service-card:hover {
  border-color: rgba(0, 212, 232, 0.3) !important;
  box-shadow: 0 8px 30px rgba(0, 212, 232, 0.1) !important;
}

/* Stars rating */
.stars {
  color: #00D4E8 !important;
}

/* ========== CALCULATOR ========== */
#calculator {
  background: var(--surface);
  color: #fff;
}

.calc-wrapper {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  max-width: 900px;
  margin: 40px auto 0;
  background: rgba(6, 13, 26, 0.4);
  border: 1px solid rgba(0, 212, 232, 0.15);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .calc-wrapper {
    grid-template-columns: 1fr;
    padding: 24px;
  }
}

.calc-box .form-group {
  margin-bottom: 20px;
}

.calc-box label {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.calc-box select,
.calc-box input {
  width: 100%;
  background: #0A1628;
  border: 1px solid rgba(0, 212, 232, 0.2);
  color: #fff;
  padding: 14px;
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: all .3s;
}

.calc-box select:focus,
.calc-box input:focus {
  border-color: var(--crimson);
  box-shadow: 0 0 10px rgba(0, 212, 232, 0.1);
}

.calc-result {
  background: linear-gradient(145deg, #0D1E32, #0A1628);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid rgba(0, 212, 232, 0.1);
  display: flex;
  flex-direction: column;
}

.calc-result h3 {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 24px;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  font-size: 15px;
  color: rgba(232, 244, 248, 0.8);
}

.res-value {
  font-weight: 600;
  font-size: 16px;
  color: #fff;
}

.royalty-highlight {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px dashed rgba(0, 212, 232, 0.2);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.royalty-highlight .highlight {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: var(--gold-light);
  text-shadow: 0 0 15px rgba(94, 238, 255, 0.2);
}

.calc-note {
  font-size: 12px;
  color: rgba(232, 244, 248, 0.4);
  line-height: 1.5;
}