:root {
  --ink: #2E2A4A;
  --lavender: #8A7CC8;
  --coral: #FF8C69;
  --cream: #FCEFE3;
  --white: #FFFFFF;
  --ink-soft: #5A5578;
  --max: 1180px;
  --coral-glow: rgba(255, 140, 105, 0.15);
  --lavender-glow: rgba(138, 124, 200, 0.15);
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: var(--coral);
  color: var(--white);
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--ink);
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coral);
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.16, .8, .24, 1), transform .7s cubic-bezier(.16, .8, .24, 1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger>* {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s cubic-bezier(.16, .8, .24, 1), transform .6s cubic-bezier(.16, .8, .24, 1);
}

.reveal-stagger.in>* {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.in>*:nth-child(1) {
  transition-delay: 0s;
}

.reveal-stagger.in>*:nth-child(2) {
  transition-delay: .07s;
}

.reveal-stagger.in>*:nth-child(3) {
  transition-delay: .14s;
}

.reveal-stagger.in>*:nth-child(4) {
  transition-delay: .21s;
}

.reveal-stagger.in>*:nth-child(5) {
  transition-delay: .28s;
}

.reveal-stagger.in>*:nth-child(6) {
  transition-delay: .35s;
}

.reveal-stagger.in>*:nth-child(7) {
  transition-delay: .42s;
}

.reveal-stagger.in>*:nth-child(8) {
  transition-delay: .49s;
}

.reveal-stagger.in>*:nth-child(9) {
  transition-delay: .56s;
}

.reveal-stagger.in>*:nth-child(10) {
  transition-delay: .63s;
}

.reveal-stagger.in>*:nth-child(11) {
  transition-delay: .70s;
}

.reveal-stagger.in>*:nth-child(12) {
  transition-delay: .77s;
}

@media (prefers-reduced-motion: reduce) {

  .reveal,
  .reveal-stagger>* {
    opacity: 1;
    transform: none;
  }

  html {
    scroll-behavior: auto;
  }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 30px;
  font-size: 14.5px;
  font-weight: 600;
  transition: transform .2s cubic-bezier(.16, .8, .24, 1), box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
  text-decoration: none;
}

.btn-coral {
  background: var(--coral);
  color: var(--white);
  border: none;
}

.btn-coral:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255, 140, 105, 0.4);
  color: var(--white);
}

.btn-ink {
  background: var(--ink);
  color: var(--white);
  border: none;
}

.btn-ink:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(46, 42, 74, 0.28);
  color: var(--white);
}

.btn-line {
  border: 1.5px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-line:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-sm-custom {
  padding: 10px 18px;
  font-size: 13px;
}

/* ============================================
   TOP DISCOUNT BAR
   ============================================ */
.discount-bar {
  background: var(--ink);
  color: var(--white);
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.discount-bar-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.discount-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.discount-bar b {
  color: var(--coral);
  font-family: 'JetBrains Mono', monospace;
}

.discount-bar .sep {
  color: rgba(255, 255, 255, 0.3);
}

.discount-bar-right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-left: auto;
}

.discount-contact-link {
  color: #F0EDF6;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  transition: color 0.15s;
}

.discount-contact-link:hover {
  color: var(--coral);
}

.discount-contact-link svg {
  color: var(--coral);
  flex-shrink: 0;
}

@media (max-width: 991px) {
  .discount-bar-inner {
    justify-content: center;
    text-align: center;
    gap: 8px;
  }

  .discount-bar-left {
    justify-content: center;
    width: 100%;
  }

  .discount-bar-right {
    margin-left: 0;
    justify-content: center;
    width: 100%;
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(46, 42, 74, 0.08);
}

.logo {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.logo:hover {
  opacity: 0.92;
  text-decoration: none;
}

.logo span {
  color: var(--coral);
}

.logo-img {
  height: 42px;
  max-height: 42px;
  width: auto;
  object-fit: contain;
  display: block;
}

.logo-img-footer {
  height: 48px;
  max-height: 48px;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s ease;
  text-decoration: none;
  margin-left: 30px;
}

.nav-links a:hover {
  color: var(--ink);
}

.burger {
  display: none;
  width: 26px;
  height: 20px;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  background: transparent;
  border: none;
}

.burger span {
  display: block;
  height: 2.5px;
  background: var(--ink);
  border-radius: 2px;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 300;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.16, .8, .24, 1);
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.mobile-menu a {
  font-family: 'Sora', sans-serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--ink);
  padding: 14px 0;
  border-bottom: 1px solid rgba(46, 42, 74, 0.08);
  text-decoration: none;
}

.close-x {
  width: 26px;
  height: 26px;
  position: relative;
  background: transparent;
  border: none;
}

.close-x::before,
.close-x::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: var(--ink);
}

.close-x::before {
  transform: rotate(45deg);
}

.close-x::after {
  transform: rotate(-45deg);
}

/* ============================================
   1. HERO
   ============================================ */
.hero {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  position: relative;
  overflow: hidden;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(138, 124, 200, 0.35);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 20px;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--coral);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .4;
  }
}

.hero h1 {
  font-size: clamp(34px, 6vw, 46px);
  margin-bottom: 0;
}

.hero h1 em {
  font-style: normal;
  color: var(--coral);
}

.hero p.lead {
  margin-top: 18px;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

.hero-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 6px;
}

.hero-mini b {
  color: var(--ink);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
}

/* Hero Stack */
.hero-stack {
  position: relative;
  height: 400px;
}

/* ============================================
   SECTION SHELL
   ============================================ */
.sec-head h2 {
  font-size: clamp(26px, 4vw, 38px);
  max-width: 767px;
}

.sec-head p {
  color: var(--ink-soft);
  font-size: 14.5px;
  margin-top: 10px;
  max-width: 460px;
}

.sec-head.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.sec-head.center h2,
.sec-head.center p {
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   2. STATS
   ============================================ */
.stats {
  background: var(--ink);
  color: var(--white);
  padding: 52px 0;
}

.stats b {
  font-family: 'Sora', sans-serif;
  font-size: 32px;
  color: var(--coral);
  display: block;
  margin-bottom: 0;
}

.stats span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
  display: block;
}

.reveal-stagger .stat-col {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s cubic-bezier(.16, .8, .24, 1), transform .6s cubic-bezier(.16, .8, .24, 1);
}

.reveal-stagger.in .stat-col {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 992px) {
  .stat-col {
    position: relative;
  }

  .stat-border::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.25);
  }
}

/* ============================================
   3. CATEGORY CARDS
   ============================================ */
.cat-card {
  background: var(--cream);
  border-radius: 14px;
  padding: 26px 22px;
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.16, .8, .24, 1), box-shadow .3s ease;
  cursor: default;
  height: 100%;
  text-align: left;
}

.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(46, 42, 74, 0.14);
}

.cat-icon {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 4px;
  box-shadow: 0 4px 14px rgba(46, 42, 74, 0.08);
  transition: transform 0.3s cubic-bezier(.16, .8, .24, 1), box-shadow 0.3s ease;
}

.cat-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 3px 6px rgba(46, 42, 74, 0.12));
  transition: transform 0.35s cubic-bezier(.16, .8, .24, 1);
}

.cat-card:hover .cat-icon {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 22px rgba(46, 42, 74, 0.15);
}

.cat-card:hover .cat-icon-img {
  transform: scale(1.12) rotate(3deg);
}

.cat-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.6;
}

.cat-card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.cat-card p {
  font-size: 12.5px;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 16px;
}

.cat-price {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--coral);
  font-weight: 600;
}

/* ============================================
   4. WHY STUDENTS CHOOSE US
   ============================================ */
.why {
  background: var(--cream);
}

.why-card {
  background: var(--white);
  border-radius: 14px;
  padding: 30px 26px;
  height: 100%;
}

.why-num {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  color: var(--lavender);
  margin-bottom: 14px;
}

.why-card h3 {
  font-size: 16.5px;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ============================================
   5. LIVE PRINTING CALCULATOR (INLINE)
   ============================================ */
.calc-section {
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.calc-section::before {
  display: none;
}

.calc-wrapper {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}

.calc-floating-icon {
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  width: 90px;
  height: 90px;
  background: #E8E6FC;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(138, 124, 200, 0.2);
  z-index: 3;
}

.calc-floating-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--ink);
}

.calc-card {
  background: #FFF7F2;
  border: 1px solid rgba(255, 140, 105, 0.2);
  border-radius: 20px;
  padding: 40px 60px 40px 70px;
  position: relative;
  z-index: 2;
}

.calc-header {
  margin-bottom: 30px;
}

.calc-eyebrow {
  color: var(--coral);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.calc-eyebrow::before {
  content: "";
  display: block;
  width: 2px;
  height: 14px;
  background: var(--coral);
}

.calc-heading {
  color: var(--ink);
  font-size: 28px;
  margin: 0;
}

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

.calc-form-group {
  display: flex;
  flex-direction: column;
}

.calc-form-group label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}

.calc-select-wrapper {
  position: relative;
}

.calc-select-wrapper select {
  width: 100%;
  appearance: none;
  background: var(--white);
  border: 1px solid rgba(46, 42, 74, 0.1);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}

.calc-select-wrapper select:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 140, 105, 0.15);
}

.calc-select-wrapper::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 6' fill='none'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%232E2A4A' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.qty-input {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(46, 42, 74, 0.1);
  border-radius: 8px;
  overflow: hidden;
  height: 47px;
}

.qty-btn {
  width: 40px;
  height: 100%;
  background: transparent;
  color: var(--ink);
  font-size: 18px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qty-btn:hover {
  background: rgba(46, 42, 74, 0.05);
}

.qty-input input {
  flex: 1;
  width: 100%;
  text-align: center;
  border: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  -moz-appearance: textfield;
}

.qty-input input::-webkit-outer-spin-button,
.qty-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qty-input input:focus {
  outline: none;
}

.calc-footer {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-top: 30px;
}

.calc-total-box {
  background: var(--white);
  border: 1px solid rgba(46, 42, 74, 0.1);
  border-radius: 8px;
  padding: 12px 24px;
  min-width: 160px;
}

.calc-total-box .label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-soft);
  margin-bottom: 2px;
}

.calc-total-box .price {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--ink);
}

.calc-submit-btn {
  padding: 16px 32px;
  font-size: 15px;
  border-radius: 8px;
}

@media (max-width: 991px) {
  .calc-card {
    padding: 30px;
  }

  .calc-floating-icon {
    display: none;
  }
}

@media (max-width: 767px) {
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .calc-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .calc-total-box {
    text-align: center;
  }

  .calc-submit-btn {
    text-align: center;
  }
}

/* ============================================
   6. PRICING TABLE
   ============================================ */
.pricing-section {
  background: var(--white);
}

/* Redesigned Filter Tabs */
.pricing-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

.pricing-tab {
  padding: 12px 28px;
  border-radius: 30px;
  border: 1px solid rgba(46, 42, 74, 0.1);
  background: var(--white);
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(46, 42, 74, 0.02);
}

.pricing-tab:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.pricing-tab.active {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 140, 105, 0.25);
}

/* Redesigned Pricing Card & Table */
.pricing-card {
  background: #FFF7F2;
  border: 1px solid rgba(255, 140, 105, 0.2);
  border-radius: 16px;
  padding: 32px;
  margin: 0 auto;
  max-width: 900px;
}

.pricing-card-header {
  color: var(--coral);
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.pricing-table-new {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 500px;
}

.pricing-table-wrapper {
  overflow-x: auto;
  overflow-y: auto;
  max-height: 440px;
  /* limits excessive table height with clean scroll */
  border-radius: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 90, 95, 0.4) rgba(46, 42, 74, 0.05);
}

.pricing-table-wrapper::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.pricing-table-wrapper::-webkit-scrollbar-track {
  background: rgba(46, 42, 74, 0.04);
  border-radius: 6px;
}

.pricing-table-wrapper::-webkit-scrollbar-thumb {
  background: rgba(255, 90, 95, 0.35);
  border-radius: 6px;
}

.pricing-table-wrapper::-webkit-scrollbar-thumb:hover {
  background: var(--coral);
}

.pricing-table-new thead th {
  text-align: left;
  padding: 14px 20px;
  font-size: 14.5px;
  font-weight: 800;
  color: var(--ink);
  font-family: 'Sora', sans-serif;
  border-bottom: 2px solid rgba(255, 140, 105, 0.25);
  position: sticky;
  top: 0;
  background: #FFF7F2;
  z-index: 5;
}

.pricing-table-new tbody tr {
  background: var(--white);
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-table-new tbody tr:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(46, 42, 74, 0.04);
}

.pricing-table-new tbody td {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--ink);
  font-weight: 700;
  border-bottom: 1px solid rgba(46, 42, 74, 0.04);
}

.pricing-table-new tbody tr:first-child td:first-child {
  border-top-left-radius: 12px;
}

.pricing-table-new tbody tr:first-child td:last-child {
  border-top-right-radius: 12px;
}

.pricing-table-new tbody tr:last-child td:first-child {
  border-bottom-left-radius: 12px;
}

.pricing-table-new tbody tr:last-child td:last-child {
  border-bottom-right-radius: 12px;
}

.pricing-table-new tbody tr:last-child td {
  border-bottom: none;
}

.pricing-card-footer {
  margin-top: 20px;
}

/* Custom Quote Contact Box at bottom of pricing tables */
.pricing-custom-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: var(--white);
  padding: 16px 22px;
  border-radius: 12px;
  border: 1px dashed rgba(255, 90, 95, 0.4);
  box-shadow: 0 4px 12px rgba(46, 42, 74, 0.02);
}

.pricing-custom-text strong {
  display: block;
  font-size: 14.5px;
  color: var(--ink);
  font-family: 'Sora', sans-serif;
  margin-bottom: 3px;
}

.pricing-custom-text p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-light);
  line-height: 1.4;
}

.pricing-custom-btn {
  white-space: nowrap;
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.15s, box-shadow 0.15s;
}

.pricing-custom-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(255, 90, 95, 0.3);
}

@media (max-width: 640px) {
  .pricing-custom-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-custom-btn {
    width: 100%;
    justify-content: center;
  }
}

.view-full-link {
  color: #0066FF;
  font-size: 14.5px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.view-full-link:hover {
  text-decoration: underline;
}

.pricing-panel {
  display: none;
}

.pricing-panel.active {
  display: block;
}

/* ============================================
   6.5 FEATURES CARDS
   ============================================ */
.features-cards-section {
  background: var(--white);
}

.fcc-card {
  background: #F8F9FA;
  border-radius: 20px;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(46, 42, 74, 0.05);
}

.fcc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(46, 42, 74, 0.06);
}

.fcc-content h4 {
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.fcc-content p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  font-weight: 600;
  line-height: 1.4;
}

.fcc-img-wrap {
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.fcc-img-wrap img {
  max-width: 100%;
  border-radius: 12px;
  mix-blend-mode: multiply;
}

/* ============================================
   13. GALLERY (IMPROVED)
   ============================================ */
.gallery-section {
  background: var(--cream);
}

.gallery-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  justify-content: center;
}

.gallery-filter-btn {
  padding: 8px 18px;
  border-radius: 30px;
  border: 1.5px solid rgba(46, 42, 74, 0.12);
  background: transparent;
  color: var(--ink-soft);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.gallery-filter-btn:hover {
  border-color: var(--coral);
  color: var(--ink);
}

.gallery-filter-btn.active {
  background: var(--coral);
  border-color: var(--coral);
  color: var(--white);
}

.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 140px;
  gap: 14px;
}

.gal-tile {
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: var(--cream);
}

.gal-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(46, 42, 74, 0.15);
  z-index: 5;
}

.gal-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  z-index: 0;
}

.gal-tile:hover img {
  transform: scale(1.05);
}

/* Gallery overlay on hover */
.gal-tile .gal-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(46, 42, 74, 0.8) 100%);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.gal-tile:hover .gal-overlay {
  opacity: 1;
}

.gal-overlay span {
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
}

.gal-tile .plus-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: 20px;
  font-weight: bold;
  color: var(--ink);
  pointer-events: none;
}

.g-item-5 {
  grid-column: span 2;
  grid-row: span 2;
}

.g-item-6 {
  grid-column: span 1;
  grid-row: span 2;
}

.g-item-11 {
  grid-column: span 2;
}

.gal-tile.hidden {
  display: none;
}

/* ============================================
   14. PROCESS (4 STEPS)
   ============================================ */
.process-section {
  background: var(--white);
}

.process-timeline {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: flex-start;
  max-width: 1000px;
  margin: 0 auto;
}

.process-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 15px;
}

.process-icon-wrap {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #FFF7F2;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s cubic-bezier(.16, .8, .24, 1), box-shadow 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 4px 14px rgba(255, 140, 105, 0.12);
}

.process-step:hover .process-icon-wrap {
  transform: translateY(-4px);
  background: #FFEFE5;
  box-shadow: 0 10px 24px rgba(255, 140, 105, 0.22);
}

.process-step-num {
  position: absolute;
  top: 0;
  right: -5px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #15112F;
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--white);
  box-sizing: content-box;
  z-index: 2;
}

.process-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(21, 17, 47, 0.12));
  transition: transform 0.35s cubic-bezier(.16, .8, .24, 1);
}

.process-step:hover .process-icon-img {
  transform: scale(1.15) rotate(4deg);
}

.process-step h3 {
  font-size: 16px;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  color: #15112F;
  margin-bottom: 8px;
}

.process-step p {
  font-size: 13.5px;
  color: #4a4a5e;
  line-height: 1.4;
  margin-bottom: 0;
}

.process-connector {
  position: absolute;
  top: 45px;
  /* Center of the icon */
  left: calc(50% + 45px + 10px);
  width: calc(100% - 90px - 20px);
  height: 0;
  border-top: 1.5px dashed #4a4a5e;
  z-index: 1;
}

.process-connector::after {
  content: '';
  position: absolute;
  top: -4px;
  right: -2px;
  border-top: 3.5px solid transparent;
  border-bottom: 3.5px solid transparent;
  border-left: 5px solid #4a4a5e;
}

.process-step:last-child .process-connector {
  display: none;
}

@media (max-width: 768px) {
  .process-timeline {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .process-step {
    width: 100%;
    max-width: 250px;
  }

  .process-connector {
    top: auto;
    bottom: -30px;
    left: 50%;
    width: 0;
    height: 40px;
    border-top: none;
    border-left: 1.5px dashed #4a4a5e;
    transform: translateX(-50%);
  }

  .process-connector::after {
    top: auto;
    bottom: -2px;
    right: auto;
    left: -4px;
    border-top: 5px solid #4a4a5e;
    border-left: 3.5px solid transparent;
    border-right: 3.5px solid transparent;
    border-bottom: none;
  }
}

/* ============================================
   18. WHO WE PRINT FOR
   ============================================ */
.who-print-section {
  background: var(--ink);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.who-print-section::before {
  content: '';
  position: absolute;
  top: -25%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 550px;
  background: radial-gradient(ellipse at center, rgba(255, 107, 74, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
  pointer-events: none;
}

.who-print-section .sec-head h2 {
  color: var(--white);
  font-size: 32px;
  font-weight: 700;
  max-width: 720px;
  margin: 0 auto 16px auto;
  line-height: 1.25;
}

.who-print-section .sec-head p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15.5px;
  max-width: 660px;
  margin: 0 auto;
  line-height: 1.6;
}

.who-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 30px 26px;
  height: 100%;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(12px);
}

.who-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.who-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--ic-bg, rgba(255, 107, 74, 0.15));
  color: var(--ic, var(--coral));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.who-card-icon svg {
  width: 26px;
  height: 26px;
}

.who-card:hover .who-card-icon {
  transform: scale(1.08) rotate(-3deg);
}

.who-card h3 {
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  font-family: 'Sora', sans-serif;
  letter-spacing: -0.01em;
}

.who-card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
  flex-grow: 1;
}

/* ============================================
   20. FAQ (KEEP AS-IS)
   ============================================ */
.faq-list {
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid rgba(46, 42, 74, 0.12);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 4px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15.5px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  color: var(--coral);
  font-size: 20px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  flex-shrink: 0;
  transition: transform .3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item .faq-a {
  padding: 0 4px 20px;
  color: var(--ink-soft);
  font-size: 13.5px;
  line-height: 1.65;
  max-width: 600px;
}

/* ============================================
   22. FOOTER
   ============================================ */
footer {
  background: var(--ink);
  color: #fff;
  padding-top: 60px;
}

.foot-brand p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 340px;
  font-size: 14.5px;
  line-height: 1.6;
}

.foot-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.85);
  padding: 5px 12px;
  border-radius: 20px;
}

.foot-col h4 {
  color: #fff;
  font-size: 16px;
  margin-bottom: 24px;
  font-family: 'Plus Jakarta Sans', sans-serif;
}

.foot-col a {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  margin-bottom: 12px;
  transition: color .2s;
}

.foot-col a:hover {
  color: var(--coral);
}

.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13.5px;
}

/* ============================================
   STICKY CALC FAB
   ============================================ */
.sticky-calc-fab {
  display: none !important;
}

.sticky-calc-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(46, 42, 74, 0.5);
  color: var(--white);
}

.sticky-calc-fab svg {
  width: 18px;
  height: 18px;
  stroke: var(--coral);
  fill: none;
  stroke-width: 2;
}

/* ============================================
   WHATSAPP FAB
   ============================================ */
.wa-fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 250;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(255, 140, 105, 0.5);
  animation: pulse 2.4s ease-in-out infinite;
  border: none;
  cursor: pointer;
}

.wa-fab svg {
  width: 26px;
  height: 26px;
  fill: var(--white);
}

@keyframes pulse {

  0%,
  100% {
    box-shadow: 0 12px 30px rgba(255, 140, 105, 0.5);
  }

  50% {
    box-shadow: 0 12px 30px rgba(255, 140, 105, 0.8), 0 0 0 8px rgba(255, 140, 105, 0.15);
  }
}

/* ============================================
   MODAL (KEEP EXISTING)
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(46, 42, 74, 0.55);
  backdrop-filter: blur(4px);
  z-index: 400;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.modal-overlay.open {
  display: flex;
}

.modal-custom {
  background: var(--white);
  border-radius: 20px;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
  position: relative;
  margin: auto;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--ink);
  border: none;
  cursor: pointer;
}

.modal-custom h3 {
  font-size: 22px;
  margin-bottom: 4px;
}

.modal-custom .sub {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 22px;
}

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.field select,
.field input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(46, 42, 74, 0.15);
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  background: var(--white);
}

.field select:focus,
.field input:focus {
  outline: none;
  border-color: var(--coral);
}

.seg {
  display: flex;
  background: var(--cream);
  border-radius: 10px;
  padding: 4px;
  gap: 4px;
}

.seg button {
  flex: 1;
  padding: 10px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: all .2s ease;
  border: none;
  cursor: pointer;
}

.seg button.active {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(46, 42, 74, 0.12);
}

.price-box {
  background: var(--ink);
  border-radius: 14px;
  padding: 22px;
  margin: 22px 0;
  color: var(--white);
  text-align: center;
}

.price-box .orig {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: line-through;
}

.price-box .final {
  font-family: 'Sora', sans-serif;
  font-size: 38px;
  color: var(--coral);
}

.price-box .disc-tag {
  display: inline-block;
  background: var(--coral);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-top: 8px;
}

/* About Section */
.about-visual {
  background: var(--cream);
  border-radius: 18px;
  padding: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.av-stat {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
}

.av-stat b {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  color: var(--coral);
  display: block;
}

.av-stat span {
  font-size: 11.5px;
  color: var(--ink-soft);
}

.about-text p {
  color: var(--ink-soft);
  font-size: 14.5px;
  line-height: 1.75;
  margin-bottom: 16px;
}

/* ============================================
   RESPONSIVE OVERRIDES
   ============================================ */
@media (max-width: 980px) {
  .nav-links {
    display: none !important;
  }

  .burger {
    display: flex;
  }

  .hero-stack {
    height: 300px;
    margin-top: 10px;
  }

  .gal-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  
  

  
  
}

@media (max-width: 768px) {
  
  

  
  
}

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

  .wa-fab {
    width: 52px;
    height: 52px;
    bottom: 16px;
    right: 16px;
  }

  .sticky-calc-fab {
    bottom: 16px;
    left: 16px;
    padding: 10px 16px;
    font-size: 12px;
  }

  
  
}

/* ============================================
   15. TESTIMONIALS CAROUSEL (Vanilla JS — Issue 3.1 fix)
   ============================================ */
.testimonial-section {
  position: relative;
}

.testimonial-arrows button {
  transition: all 0.2s ease;
}

.testimonial-arrows button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Slide container: hide overflow so only active slide shows */
.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.ts-card {
  background: white !important;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.03);
}

/* Dot list — replaces .slick-dots */
.ts-dots {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.ts-dots li button {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  background: rgba(46, 42, 74, 0.2);
  font-size: 0;
  line-height: 0;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: none;
  cursor: pointer;
  display: block;
}

/* Active dot — widens to 28px pill, coral colour (matches old Slick active style) */
.ts-dots li.ts-dot-active button {
  width: 28px;
  border-radius: 12px;
  background: var(--coral);
  box-shadow: 0 2px 8px rgba(255, 140, 105, 0.4);
}

/* ============================================
   16. CAPACITY BAR
   ============================================ */
.capacity-bar {
  background-color: var(--ink);
  /* Very dark blue from theme */
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  margin-top: 20px;
}

.capacity-item {
  color: white;
}

.capacity-icon {
  opacity: 0.9;
}

.capacity-num {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--coral);
}

.capacity-label {
  font-size: 13px;
  opacity: 0.85;
}

.capacity-divider {
  width: 1px;
  height: 60px;
  background-color: rgba(255, 255, 255, 0.15);
}

/* ============================================
   17. CONTACT SECTION (NEW DESIGN)
   ============================================ */
.contact-new {
  background: #f8f8f6;
}

.contact-heading {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

.contact-highlight {
  color: var(--coral);
}

.contact-subtext {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 360px;
}

/* Info Cards */
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 10px;
  padding: 14px 16px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.contact-info-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.cic-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #FFF3EE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
}

.cic-icon svg {
  width: 20px;
  height: 20px;
}

.cic-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cic-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
}

.cic-text span {
  font-size: 12px;
  color: var(--ink-soft);
}

.cic-arrow {
  color: #bbb;
  flex-shrink: 0;
}

/* CTA Buttons */
.contact-btn-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-btn-new:hover {
  transform: translateY(-2px);
}

.contact-btn-wa-new {
  background: #25D366;
  color: #fff;
}

.contact-btn-wa-new:hover {
  background: #1ebe5d;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

.contact-btn-call-new {
  background: var(--coral);
  color: #fff;
}

.contact-btn-call-new:hover {
  background: #e87a59;
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 140, 105, 0.35);
}

/* Trust Badges */
.contact-badges {
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  padding-top: 24px;
}

.contact-badge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cb-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #FFF3EE;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
}

.contact-badge strong {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.3;
}

.contact-badge span {
  font-size: 11px;
  color: var(--ink-soft);
}

/* Right Panel */
.contact-right-panel {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.09);
}

.contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
}

/* Map Bottom Badges */
.map-bottom-badges {
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.mbb-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.mbb-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mbb-item strong {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
}

.mbb-item span {
  font-size: 11px;
  color: var(--ink-soft);
}

.mbb-divider {
  width: 1px;
  height: 40px;
  background: rgba(0, 0, 0, 0.07);
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .contact-subtext {
    max-width: 100%;
  }

  .contact-badges {
    gap: 16px;
  }

  .map-bottom-badges {
    flex-wrap: wrap;
    gap: 12px;
    padding: 16px !important;
  }

  .mbb-divider {
    display: none;
  }

  .mbb-item {
    flex: 0 0 calc(50% - 6px);
  }
}

/* ============================================
   18. STUDENT PACKAGES (NEW DESIGN)
   ============================================ */
.packages-new-section {
  background: var(--ink);
  position: relative;
  overflow: hidden;
}

.packages-new-section .eyebrow {
  color: var(--coral);
}

.packages-new-section .sec-head p {
  color: rgba(255, 255, 255, 0.7);
}

/* Package Card Base */
.pkg-card {
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 200px;
}

.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

/* Light card (Starter & Project) */
.pkg-light {
  background: #fff;
}

/* Featured (Semester) */
.pkg-featured {
  background: var(--coral);
}

/* Popular badge */
.pkg-popular-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--ink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* Body (left side text) */
.pkg-body {
  flex: 1;
  min-width: 0;
}

.pkg-name {
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 14px;
}

.pkg-featured .pkg-name {
  color: #fff;
}

/* Features list */
.pkg-features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.pkg-features-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
}

.pkg-featured .pkg-features-list li {
  color: rgba(255, 255, 255, 0.9);
}

.pkg-features-list li svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  stroke: var(--coral);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pkg-featured .pkg-features-list li svg {
  stroke: #fff;
}

/* Price */
.pkg-price {
  font-family: 'Sora', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 14px;
}

.pkg-featured .pkg-price {
  color: #fff;
}

/* Buttons */
.pkg-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.pkg-btn-outline {
  border: 2px solid var(--coral);
  color: var(--coral);
  background: transparent;
}

.pkg-btn-outline:hover {
  background: var(--coral);
  color: #fff;
}

.pkg-btn-white {
  background: #fff;
  color: var(--coral);
  border: 2px solid #fff;
}

.pkg-btn-white:hover {
  background: transparent;
  color: #fff;
  border-color: #fff;
}

/* Image wrap (right side illustration) */
.pkg-img-wrap {
  flex-shrink: 0;
  width: 110px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* --- Stacked papers for Starter --- */
.pkg-img-papers {
  position: relative;
  width: 90px;
  height: 110px;
}

.paper-sheet {
  position: absolute;
  width: 72px;
  height: 90px;
  background: #f0f0f0;
  border-radius: 3px;
  border: 1px solid #ddd;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
}

.paper-sheet.p1 {
  bottom: 0;
  left: 0;
  transform: rotate(-8deg);
  background: #e8e8e8;
}

.paper-sheet.p2 {
  bottom: 4px;
  left: 6px;
  transform: rotate(-3deg);
  background: #f0f0f0;
}

.paper-sheet.p3 {
  bottom: 8px;
  left: 10px;
  transform: rotate(2deg);
  background: #f8f8f8;
}

.paper-sheet.p4 {
  bottom: 12px;
  left: 14px;
  transform: rotate(6deg);
  background: #fff;
}

/* --- Certificate mockup for Semester --- */
.pkg-img-certificate {
  width: 95px;
  height: 120px;
  background: linear-gradient(135deg, #2c2558 0%, #1a1640 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.pkg-img-certificate::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 140, 105, 0.15);
}

.cert-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 12px;
  width: 100%;
}

.cert-star {
  font-size: 22px;
  color: var(--coral);
}

.cert-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 60px;
}

.cert-lines div {
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
}

.cert-lines div:first-child {
  width: 100%;
}

.cert-lines div:nth-child(2) {
  width: 75%;
}

.cert-lines div:last-child {
  width: 50%;
}

.cert-badge {
  background: var(--coral);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 10px;
  font-family: 'JetBrains Mono', monospace;
}

/* --- Book mockup for Project --- */
.pkg-img-book {
  display: flex;
  height: 120px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  border-radius: 3px 8px 8px 3px;
  overflow: hidden;
}

.book-spine {
  width: 16px;
  background: linear-gradient(135deg, #1a1640 0%, #2c2558 100%);
  flex-shrink: 0;
}

.book-cover {
  width: 80px;
  background: linear-gradient(135deg, #2c2558 0%, #1a1640 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px;
}

.book-star {
  font-size: 18px;
  color: var(--coral);
}

.book-title {
  font-size: 9px;
  font-weight: 800;
  color: var(--coral);
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-family: 'Sora', sans-serif;
}

@media (max-width: 767px) {
  .pkg-card {
    flex-direction: column;
    text-align: center;
  }

  .pkg-img-wrap {
    width: 100%;
    justify-content: center;
    margin-top: 16px;
  }

  .pkg-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   19. SERVICES GRID SECTION
   ============================================ */
.services-grid-section {
  background: #fff;
}

.sgs-header h2 {
  font-size: clamp(22px, 3vw, 32px);
}

.sgs-view-all {
  font-size: 14px;
  font-weight: 600;
  color: #3b82f6;
  text-decoration: none;
  white-space: nowrap;
  margin-top: 8px;
  flex-shrink: 0;
  gap: 4px;
  transition: gap 0.2s ease;
}

.sgs-view-all:hover {
  gap: 8px;
  color: #2563eb;
}

/* Grid: 7 columns on desktop, 4 on tablet, 3 on mobile */
.sgs-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}

@media (max-width: 1024px) {
  .sgs-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 640px) {
  .sgs-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
}

/* Individual card */
.sgs-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  padding: 20px 12px 18px;
  background: #fff;
  border: 1.5px solid #f0f0f0;
  border-radius: 14px;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  text-align: center;
}

.sgs-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.06);
}

/* Icon container with coloured bg */
.sgs-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.sgs-card:hover .sgs-icon {
  transform: scale(1.08);
}

.sgs-icon svg,
.sgs-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

/* Label */
.sgs-card span {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.4;
}

/* Subtitle */
.sgs-sub {
  font-size: 11px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.3;
}

/* ============================================
   20. BINDING CARDS (NEW IMAGE-BASED DESIGN)
   ============================================ */
.binding-new-section {
  background: #f7f8fc;
}

.binding-new-section .sec-head p {
  color: var(--ink-soft);
  max-width: 580px;
  margin: 12px auto 0;
  font-size: 15px;
  line-height: 1.65;
}

/* Grid — 4 columns on desktop */
.binding-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

@media (max-width: 1100px) {
  .binding-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .binding-cards-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

/* Card */
.bng-card {
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(46, 42, 74, 0.07);
  border: 1px solid rgba(46, 42, 74, 0.06);
  display: flex;
  flex-direction: column;
  transition: transform 0.28s cubic-bezier(.16, .8, .24, 1), box-shadow 0.28s ease;
}

.bng-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(46, 42, 74, 0.14);
}

/* Featured card (Hard Binding) */
.bng-card-featured {
  box-shadow: 0 8px 32px rgba(21, 128, 61, 0.18);
  border-color: rgba(21, 128, 61, 0.15);
}

/* Image Section */
.bng-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: #e8ecf0;
}

.bng-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.bng-card:hover .bng-img-wrap img {
  transform: scale(1.06);
}

/* Gradient overlay on image */
.bng-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.35) 100%);
  pointer-events: none;
}

/* Popular Badge */
.bng-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--coral);
  color: #fff;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  font-family: 'JetBrains Mono', monospace;
  box-shadow: 0 3px 10px rgba(255, 140, 105, 0.4);
}

/* Price Tag on image */
.bng-price-tag {
  position: absolute;
  bottom: 14px;
  right: 14px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 30px;
  backdrop-filter: blur(6px);
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

/* Body */
.bng-body {
  padding: 22px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

/* Icon Circle */
.bng-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--ic-bg);
  color: var(--ic);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bng-icon-circle svg {
  width: 22px;
  height: 22px;
}

/* Text block */
.bng-text {
  flex: 1;
}

.bng-title {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 6px;
}

.bng-desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* Order Button */
.bng-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  font-size: 13.5px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: 'Plus Jakarta Sans', sans-serif;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  margin-top: 4px;
}

.bng-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.bng-btn:hover {
  background: var(--coral);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(255, 140, 105, 0.35);
}

.bng-btn:hover svg {
  transform: translateX(3px);
}

@media (max-width: 480px) {
  .bng-img-wrap {
    height: 190px;
  }
}

/* =========================================================
   QUOTE FORM MODAL
   ========================================================= */

/* Enlarged modal box for the quote form */
.modal-custom.modal-quote {
  max-width: 700px;
  width: 95%;
  max-height: 92vh;
  overflow-y: auto;
  padding: 36px 36px 28px;
  scroll-behavior: smooth;
}

/* Scrollbar styling inside modal */
.modal-custom.modal-quote::-webkit-scrollbar {
  width: 6px;
}

.modal-custom.modal-quote::-webkit-scrollbar-track {
  background: transparent;
}

.modal-custom.modal-quote::-webkit-scrollbar-thumb {
  background: var(--coral);
  border-radius: 4px;
}

/* ── Header ── */
.quote-modal-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #f0eef8;
}

.quote-modal-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--coral-glow);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-modal-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--coral);
}

.quote-modal-title {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 4px;
}

.quote-modal-sub {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0;
}

/* ── Form layout ── */
.qf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

@media (max-width: 520px) {
  .qf-row {
    grid-template-columns: 1fr;
  }

  .modal-custom.modal-quote {
    padding: 24px 18px 20px;
  }
}

.qf-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 14px;
}

.qf-group.qf-full {
  grid-column: 1 / -1;
}

/* ── Labels ── */
.qf-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', monospace;
}

.qf-label svg {
  width: 14px;
  height: 14px;
  stroke: var(--coral);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.qf-req {
  color: var(--coral);
  font-weight: 700;
}

.qf-opt {
  color: var(--ink-soft);
  font-weight: 400;
  text-transform: none;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 11.5px;
  letter-spacing: 0;
}

/* ── Inputs ── */
.qf-input {
  width: 100%;
  background: #faf9ff;
  border: 1.5px solid #e5e1f5;
  border-radius: 10px;
  padding: 11px 14px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.qf-input::placeholder {
  color: #bbb8cc;
}

.qf-input:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255, 140, 105, 0.12);
  background: #fff;
}

.qf-input.is-error {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.qf-textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.6;
}

/* ── Error text ── */
.qf-err {
  font-size: 11.5px;
  color: #e53e3e;
  font-weight: 500;
  display: block;
  /* Collapse when empty — no reserved space */
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  transition: max-height 0.2s ease, opacity 0.2s ease, margin-top 0.2s ease;
}

/* When error has text, reveal it smoothly */
.qf-err:not(:empty) {
  max-height: 40px;
  opacity: 1;
  margin-top: 4px;
}

/* ── File drop zone ── */
.qf-file-hidden {
  display: none !important;
}

.qf-file-drop {
  border: 2px dashed #d8d4f0;
  border-radius: 12px;
  padding: 24px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: #faf9ff;
  position: relative;
}

.qf-file-drop:hover,
.qf-file-drop.dragover {
  border-color: var(--coral);
  background: #fff8f5;
}

.qf-file-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  pointer-events: none;
}

.qf-file-icon svg {
  width: 36px;
  height: 36px;
  stroke: var(--lavender);
}

.qf-file-text {
  font-size: 14px;
  color: var(--ink-soft);
}

.qf-file-text strong {
  color: var(--coral);
}

.qf-file-types {
  font-size: 11.5px;
  color: #b0adc8;
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}

/* ── File preview after selection ── */
.qf-file-preview {
  margin-top: 10px;
}

.qf-file-preview-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff8f5;
  border: 1.5px solid #fdd5c0;
  border-radius: 10px;
  padding: 10px 14px;
}

.qf-fp-icon {
  width: 22px;
  height: 22px;
  stroke: var(--coral);
  flex-shrink: 0;
}

.qf-fp-name {
  flex: 1;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.qf-fp-size {
  font-size: 12px;
  color: var(--ink-soft);
  flex-shrink: 0;
}

.qf-fp-remove {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #fde0d6;
  color: #c53030;
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  transition: background 0.2s;
}

.qf-fp-remove:hover {
  background: #fc8181;
  color: #fff;
}

/* ── Action buttons ── */
.qf-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
}

@media (max-width: 440px) {
  .qf-actions {
    grid-template-columns: 1fr;
  }
}

.qf-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s, filter 0.15s;
}

.qf-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.qf-btn:hover {
  transform: translateY(-2px);
}

.qf-btn:active {
  transform: translateY(0);
}

.qf-btn-email {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 4px 16px rgba(46, 42, 74, 0.25);
}

.qf-btn-email:hover {
  box-shadow: 0 8px 24px rgba(46, 42, 74, 0.35);
  filter: brightness(1.08);
}

.qf-btn-wa {
  background: #25D366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

.qf-btn-wa:hover {
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  filter: brightness(1.06);
}

.qf-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* Loading spinner inside button */
.qf-btn .qf-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-radius: 50%;
  animation: qf-spin 0.7s linear infinite;
}

@keyframes qf-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── Status message ── */
.qf-status {
  margin-top: 14px;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  animation: qf-fadein 0.3s ease;
}

@keyframes qf-fadein {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.qf-status.success {
  background: #f0fff4;
  border: 1.5px solid #9ae6b4;
  color: #276749;
}

.qf-status.error {
  background: #fff5f5;
  border: 1.5px solid #feb2b2;
  color: #c53030;
}

/* ── Custom Select (Paper Type) ── */
.qf-select-wrap {
  position: relative;
  display: block;
}

.qf-select-wrap .qf-select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 36px;
  cursor: pointer;
}

.qf-select-wrap .qf-select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  stroke: var(--coral);
  pointer-events: none;
  transition: transform 0.2s;
}

.qf-select-wrap .qf-select:focus+.qf-select-arrow {
  transform: translateY(-50%) rotate(180deg);
}

/* ── Copies number input — hide spinner arrows ── */
.qf-copies-input::-webkit-inner-spin-button,
.qf-copies-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qf-copies-input {
  -moz-appearance: textfield;
}

/* =========================================================
   TESTIMONIALS SECTION
   ========================================================= */
.testimonial-section {
  background: linear-gradient(180deg, var(--cream) 0%, rgba(252, 239, 227, 0.45) 100%);
  overflow: hidden;
  position: relative;
}

.testimonial-section .eyebrow {
  color: var(--coral);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.testimonial-arrows button {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  cursor: pointer;
}

.testimonial-arrows .testi-prev {
  border: 1px solid rgba(46, 42, 74, 0.15);
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 2px 8px rgba(46, 42, 74, 0.04);
}

.testimonial-arrows .testi-prev:hover {
  background: var(--coral-glow);
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-2px);
}

.testimonial-arrows .testi-next {
  border: none;
  background: var(--coral);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(255, 140, 105, 0.35);
}

.testimonial-arrows .testi-next:hover {
  background: #ff7854;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(255, 140, 105, 0.45);
}

.ts-card {
  background: var(--white) !important;
  border: 1px solid rgba(46, 42, 74, 0.08) !important;
  border-radius: 20px !important;
  box-shadow: 0 16px 40px rgba(46, 42, 74, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ts-card:hover {
  box-shadow: 0 20px 48px rgba(46, 42, 74, 0.1);
}

.ts-quote-mark {
  color: var(--coral);
  font-family: Georgia, serif;
  font-size: 56px;
  line-height: 0.5;
  margin-bottom: 16px;
  opacity: 0.9;
}

.ts-text {
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.65;
}

.ts-stars {
  color: var(--coral);
  font-size: 18px;
  letter-spacing: 3px;
}

.ts-author {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}

.ts-role {
  font-size: 13px;
  color: var(--ink-soft);
}

/* Duplicate Slick dots block removed (Issue 3.1 fix)
   Vanilla carousel dot styles are in the section above (.ts-dots) */