/* =========================================================
   rukehiltule — Hetbolo Herbal Gel (Srbija)
   Color Palette: Deep Red, Rosewood, Crimson, Soft Rose
   ========================================================= */

:root {
  --color-primary: #9F1239;
  --color-primary-dark: #881337;
  --color-primary-deep: #4C0519;
  --color-primary-light: #BE123C;
  --color-primary-accent: #E11D48;
  --color-rose-soft: #FFF1F2;
  --color-rose-subtle: #FFF7F8;
  --color-rose-border: #FECDD3;
  --color-rose-accent: #FDA4AF;
  --color-text-dark: #1F2937;
  --color-text-muted: #4B5563;
  --color-text-subtle: #6B7280;
  --color-gold: #B45309;
  --color-gold-bg: #FEF3C7;
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-rose-subtle);
  color: var(--color-text-dark);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  line-height: 1.6;
}

/* Ambient Rosewood Tree Background */
.bg-rose-tree {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: 0.18;
  background-image: url('../images/rose-tree-bg.svg');
  background-repeat: no-repeat;
  background-size: contain;
}

.bg-rose-tree-left {
  top: 0;
  left: -80px;
  width: 550px;
  height: 850px;
}

.bg-rose-tree-right {
  top: 950px;
  right: -100px;
  width: 600px;
  height: 900px;
  transform: scaleX(-1);
}

.bg-rose-tree-bottom {
  bottom: 200px;
  left: 5%;
  width: 500px;
  height: 800px;
  opacity: 0.12;
}

/* Top Serbian Announcement Bar */
.announcement-bar {
  background: linear-gradient(90deg, #881337 0%, #9F1239 50%, #881337 100%);
  color: #FFF1F2;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 9px 16px;
  text-align: center;
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(254, 205, 211, 0.25);
  box-shadow: 0 2px 8px rgba(76, 5, 25, 0.12);
}

.announcement-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.announcement-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FDA4AF;
  box-shadow: 0 0 0 0 rgba(253, 164, 175, 0.7);
  animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(253, 164, 175, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(253, 164, 175, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(253, 164, 175, 0); }
}

/* Secondary Trust Bar */
.trust-bar {
  background-color: #4C0519;
  color: #FECDD3;
  font-size: 0.78rem;
  padding: 6px 16px;
  position: relative;
  z-index: 45;
  border-bottom: 1px solid rgba(254, 205, 211, 0.15);
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-items {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Navbar Header */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(254, 205, 211, 0.7);
  z-index: 100;
  box-shadow: 0 4px 20px rgba(136, 19, 55, 0.05);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.logo-link:hover {
  transform: scale(1.02);
}

.logo-img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  text-decoration: none;
  color: var(--color-text-dark);
  font-weight: 700;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
}

/* Tree branch style buttons */
.btn-branch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #BE123C 0%, #9F1239 50%, #881337 100%);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-weight: 800;
  text-decoration: none;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 20px rgba(159, 18, 57, 0.35);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  padding: 12px 28px;
  font-size: 0.95rem;
}

.btn-branch:hover {
  background: linear-gradient(135deg, #E11D48 0%, #BE123C 50%, #9F1239 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(159, 18, 57, 0.45);
}

.btn-branch:active {
  transform: translateY(1px);
  box-shadow: 0 3px 10px rgba(159, 18, 57, 0.3);
}

.btn-branch-sm {
  padding: 8px 18px;
  font-size: 0.85rem;
}

.btn-branch-lg {
  padding: 16px 36px;
  font-size: 1.15rem;
  width: 100%;
}

.branch-icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  flex-shrink: 0;
}

.branch-icon-badge svg {
  width: 16px;
  height: 16px;
  color: #FFFFFF;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--color-primary-deep);
  cursor: pointer;
  padding: 6px;
}

/* Mobile Drawer */
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 24px 20px;
  background-color: #FFFFFF;
  border-bottom: 1px solid var(--color-rose-border);
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav .nav-link {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-rose-subtle);
}

/* Page Container */
.page-wrapper {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

/* =========================================================
   1. HERO SECTION
   ========================================================= */
.hero-section {
  padding: 48px 0 36px;
  text-align: center;
}

.badge-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-rose-soft);
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 9999px;
  border: 1px solid var(--color-rose-border);
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(159, 18, 57, 0.06);
}

.badge-tag svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  font-weight: 900;
  color: var(--color-primary-deep);
  line-height: 1.18;
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  color: var(--color-primary);
  background: linear-gradient(135deg, #BE123C 0%, #9F1239 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  color: var(--color-text-muted);
  max-width: 820px;
  margin: 0 auto 28px;
  line-height: 1.65;
  font-weight: 500;
}

/* Quick Hero Stats */
.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFFFFF;
  padding: 10px 20px;
  border-radius: 12px;
  border: 1px solid var(--color-rose-border);
  box-shadow: 0 4px 14px rgba(159, 18, 57, 0.05);
}

.stat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--color-rose-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: 800;
  font-size: 1rem;
}

.stat-text {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-primary-deep);
}

/* =========================================================
   2. FOUR PILLARS SECTION (4 Stuba Prirodne Pokretljivosti)
   ========================================================= */
.pillars-section {
  padding: 30px 0 50px;
}

.section-head {
  text-align: center;
  margin-bottom: 36px;
}

.section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  color: var(--color-primary-deep);
  margin-bottom: 10px;
}

.section-head p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}

.pillar-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 28px 24px;
  border: 1px solid var(--color-rose-border);
  box-shadow: 0 8px 24px rgba(159, 18, 57, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #BE123C, #FDA4AF);
}

.pillar-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 34px rgba(159, 18, 57, 0.12);
}

.pillar-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--color-rose-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--color-primary);
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--color-primary-deep);
  margin-bottom: 10px;
}

.pillar-desc {
  font-size: 0.94rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* =========================================================
   3. OFFER & ORDER SECTION — OFFER ON THE RIGHT
   ========================================================= */
.offer-order-section {
  padding: 40px 0 60px;
  position: relative;
}

.offer-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: #FFFFFF;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid var(--color-rose-border);
  box-shadow: 0 16px 50px rgba(159, 18, 57, 0.08);
}

/* LEFT COLUMN: ORDER FORM CARD */
.form-side {
  width: 100%;
}

.form-card {
  background: var(--color-rose-subtle);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid var(--color-rose-border);
  box-shadow: 0 6px 20px rgba(159, 18, 57, 0.04);
}

.form-header {
  text-align: center;
  margin-bottom: 20px;
}

.form-promo-badge {
  display: inline-block;
  background: #B45309;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.form-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary-deep);
  line-height: 1.35;
}

.form-price-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  margin: 18px 0 24px;
  padding: 12px;
  background: #FFFFFF;
  border-radius: 12px;
  border: 1px dashed var(--color-rose-border);
}

.price-old {
  font-size: 1.45rem;
  font-weight: 700;
  color: #9CA3AF;
  text-decoration: line-through;
}

.price-new {
  font-size: 2.35rem;
  font-weight: 900;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.price-curr {
  font-size: 1.2rem;
  font-weight: 800;
  margin-left: 2px;
}

.order-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.input-field-group {
  display: flex;
  flex-direction: column;
}

.input-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-primary-deep);
  margin-bottom: 6px;
}

.input-control {
  width: 100%;
  height: 52px;
  background-color: #FFFFFF;
  border: 1.5px solid var(--color-rose-border);
  border-radius: 12px;
  padding: 0 18px;
  font-size: 1.05rem;
  font-family: inherit;
  color: var(--color-text-dark);
  outline: none;
  transition: all 0.25s ease;
}

.input-control::placeholder {
  color: #9CA3AF;
}

.input-control:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(159, 18, 57, 0.15);
}

.input-control.is-invalid {
  border-color: #DC2626 !important;
  background-color: #FEF2F2 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15) !important;
}

.input-control.is-valid {
  border-color: #059669 !important;
  background-color: #F0FDF4 !important;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15) !important;
}

.input-feedback {
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 5px;
  min-height: 18px;
  display: none;
  padding-left: 4px;
}

.input-feedback.show {
  display: block;
}

.input-feedback.error {
  color: #DC2626;
}

.input-feedback.success {
  color: #059669;
}

/* Security notice */
.form-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px dashed var(--color-rose-border);
  font-size: 0.8rem;
  color: var(--color-text-subtle);
}

.guarantee-icon {
  color: var(--color-primary);
  flex-shrink: 0;
}

/* RIGHT COLUMN: OFFER PRESENTATION (PRODUCT ON THE RIGHT) */
.offer-side {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.product-showcase {
  position: relative;
  display: inline-block;
  padding: 20px;
}

.product-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254, 205, 211, 0.6) 0%, rgba(255, 241, 242, 0) 70%);
  z-index: 0;
}

.offer-img {
  position: relative;
  z-index: 1;
  max-width: 260px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 18px 30px rgba(136, 19, 55, 0.22));
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.offer-img:hover {
  transform: translateY(-6px) scale(1.03);
}

.discount-ribbon {
  position: absolute;
  top: 15px;
  right: 15px;
  background: linear-gradient(135deg, #BE123C 0%, #881337 100%);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 8px 14px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(136, 19, 55, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.3);
  z-index: 2;
}

.offer-feature-list {
  list-style: none;
  margin-top: 24px;
  width: 100%;
  max-width: 380px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
}

.offer-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--color-primary-deep);
  background: var(--color-rose-soft);
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid var(--color-rose-border);
}

.offer-feature-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-primary);
  flex-shrink: 0;
}

/* =========================================================
   4. OFFER COMPOSITION SECTION (Состав офера)
   ========================================================= */
.composition-section {
  padding: 50px 0 60px;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.ingredient-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--color-rose-border);
  box-shadow: 0 6px 20px rgba(159, 18, 57, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ingredient-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(159, 18, 57, 0.1);
}

.ingredient-icon-wrap {
  width: 68px;
  height: 68px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ingredient-icon-wrap img {
  width: 100%;
  height: 100%;
  display: block;
}

.ingredient-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--color-primary-deep);
  margin-bottom: 8px;
}

.ingredient-benefit {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* =========================================================
   5. EDUCATIONAL ARTICLE / JOINT CARE GUIDE
   ========================================================= */
.article-section {
  padding: 40px 0 60px;
}

.article-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 40px 48px;
  border: 1px solid var(--color-rose-border);
  box-shadow: 0 10px 30px rgba(159, 18, 57, 0.04);
}

.article-paragraph {
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--color-text-dark);
  margin-bottom: 22px;
}

.article-paragraph:last-child {
  margin-bottom: 0;
}

.article-highlight-box {
  background: var(--color-rose-soft);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 1rem;
  color: var(--color-primary-deep);
  font-weight: 600;
}

/* =========================================================
   6. CUSTOMER EXPERIENCES (Iskustva korisnika)
   ========================================================= */
.reviews-section {
  padding: 40px 0 60px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}

.review-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 26px;
  border: 1px solid var(--color-rose-border);
  box-shadow: 0 6px 22px rgba(159, 18, 57, 0.05);
}

.review-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.review-author {
  font-weight: 800;
  color: var(--color-primary-deep);
  font-size: 1.02rem;
}

.review-location {
  font-size: 0.82rem;
  color: var(--color-text-subtle);
}

.review-stars {
  color: #E11D48;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.94rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* =========================================================
   7. HOW TO ORDER STEPS (Kako poručiti)
   ========================================================= */
.steps-section {
  padding: 40px 0 60px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.step-card {
  background: #FFFFFF;
  border-radius: 18px;
  padding: 30px 24px;
  text-align: center;
  border: 1px solid var(--color-rose-border);
  position: relative;
}

.step-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #BE123C, #881337);
  color: #FFFFFF;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  box-shadow: 0 4px 14px rgba(159, 18, 57, 0.3);
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-primary-deep);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

/* =========================================================
   8. FOOTER & POLICIES
   ========================================================= */
.footer {
  background-color: #2D0812;
  color: #FECDD3;
  padding: 50px 20px 30px;
  border-top: 3px solid var(--color-primary);
  margin-top: 60px;
}

.footer-container {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: -0.5px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: #FDA4AF;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  font-size: 0.88rem;
}

.footer-links a {
  color: #FFE4E6;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
  cursor: pointer;
}

.footer-links a:hover {
  color: #FDA4AF;
  text-decoration: underline;
}

.footer-separator {
  color: rgba(254, 205, 211, 0.4);
}

.footer-disclaimer {
  max-width: 820px;
  font-size: 0.8rem;
  line-height: 1.6;
  color: #F43F5E;
  opacity: 0.85;
}

.footer-copyright {
  font-size: 0.82rem;
  color: #FDA4AF;
  opacity: 0.7;
}

/* Bottom Rosewood Bar */
.bottom-rose-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 12px;
  background: linear-gradient(90deg, #881337, #BE123C, #881337);
  z-index: 99;
}

/* =========================================================
   9. MODALS (Privatnost, Kolačići, Uslovi, Odricanje)
   ========================================================= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(45, 8, 18, 0.7);
  backdrop-filter: blur(5px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 36px 32px;
  max-width: 680px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  border: 1px solid var(--color-rose-border);
  transform: scale(0.92);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
  transform: scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #9CA3AF;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s ease;
}

.modal-close-btn:hover {
  color: var(--color-primary);
}

.modal-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-primary-deep);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-rose-border);
}

.modal-body {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.modal-body h4 {
  font-family: var(--font-heading);
  color: var(--color-primary-deep);
  font-size: 1.05rem;
  margin: 16px 0 6px;
}

/* =========================================================
   10. THANK YOU PAGE STYLING
   ========================================================= */
.thankyou-wrapper {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 20px;
}

.thankyou-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 48px 40px;
  max-width: 600px;
  width: 100%;
  text-align: center;
  border: 1px solid var(--color-rose-border);
  box-shadow: 0 16px 50px rgba(159, 18, 57, 0.1);
  position: relative;
}

.thankyou-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: linear-gradient(135deg, #BE123C 0%, #881337 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 10px 26px rgba(159, 18, 57, 0.35);
}

.thankyou-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--color-primary-deep);
  margin-bottom: 10px;
}

.thankyou-subtitle {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.thankyou-summary {
  background: var(--color-rose-soft);
  border-radius: 14px;
  padding: 22px 26px;
  margin-bottom: 28px;
  border: 1px solid var(--color-rose-border);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.98rem;
}

.summary-label {
  color: var(--color-text-muted);
  font-weight: 600;
}

.summary-val {
  color: var(--color-primary-deep);
  font-weight: 800;
}

.summary-val.price {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.summary-badge {
  background: #DEF7EC;
  color: #03543F;
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 0.84rem;
  font-weight: 700;
}

.thankyou-prompt {
  font-size: 1rem;
  color: var(--color-text-dark);
  line-height: 1.6;
  margin-bottom: 30px;
}

.phone-alert-note {
  font-weight: 800;
  color: var(--color-primary);
  margin-top: 10px;
  display: block;
}

/* =========================================================
   RESPONSIVE DESIGN
   ========================================================= */
@media (max-width: 960px) {
  .offer-grid-container {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 28px 20px;
  }
  
  /* On tablets and mobile, order form stays clear, offer presentation above or below */
  .offer-side {
    order: -1; /* Show the attractive Hetbolo product right above the form on mobile */
  }

  .nav-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }
}

@media (max-width: 640px) {
  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .stat-item {
    width: 100%;
    justify-content: center;
  }

  .article-card {
    padding: 24px 20px;
  }

  .form-card {
    padding: 24px 18px;
  }

  .price-new {
    font-size: 2rem;
  }

  .thankyou-card {
    padding: 32px 20px;
  }
}
