/* ==========================================================================
   HUHLITSRITS — HEKOLO HERBAL GEL SRBIJA
   Color Theme: Royal Blue, Ice Blue, Botanical Herbal Green, Crisp White
   Decorative: Blue Flower Background, Floral Button Icons, Refined Typography
   ========================================================================== */

:root {
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Outfit', 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Blue Palette matching Hekolo tube */
  --blue-darkest: #091E3A;
  --blue-deep: #0F2D59;
  --blue-primary: #1D4ED8;
  --blue-vibrant: #2563EB;
  --blue-bright: #3B82F6;
  --blue-light: #60A5FA;
  --blue-sky: #93C5FD;
  --blue-ice: #EBF4FF;
  --blue-soft: #F0F7FF;

  /* Botanical Accents */
  --green-leaf: #16A34A;
  --green-accent: #22C55E;
  --green-light: #DCFCE7;

  /* Neutrals & Text */
  --text-dark: #0F172A;
  --text-body: #334155;
  --text-muted: #64748B;
  --border-light: #E2E8F0;
  --border-blue: #BFDBFE;
  --bg-card: #FFFFFF;
  --bg-card-glass: rgba(255, 255, 255, 0.92);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(15, 45, 89, 0.05);
  --shadow-md: 0 8px 24px rgba(15, 45, 89, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 45, 89, 0.12);
  --shadow-floral: 0 12px 32px rgba(37, 99, 235, 0.28);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: linear-gradient(180deg, #EDF5FF 0%, #F8FAFC 25%, #FFFFFF 50%, #F0F7FF 80%, #E6F0FD 100%);
  color: var(--text-body);
  line-height: 1.65;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

/* ==========================================================================
   BLUE FLOWER DECORATIVE BACKGROUND LAYERS
   ========================================================================== */
.bg-floral-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.bg-blue-flower-tl {
  position: absolute;
  top: -60px;
  left: -80px;
  width: 520px;
  height: 520px;
  opacity: 0.65;
  filter: blur(0.5px);
  animation: floatFloralSlow 24s ease-in-out infinite alternate;
}

.bg-blue-flower-tr {
  position: absolute;
  top: 240px;
  right: -100px;
  width: 480px;
  height: 480px;
  opacity: 0.55;
  filter: blur(0.8px);
  transform: rotate(45deg);
  animation: floatFloralRev 28s ease-in-out infinite alternate;
}

.bg-blue-flower-mid {
  position: absolute;
  top: 1400px;
  left: -120px;
  width: 540px;
  height: 540px;
  opacity: 0.45;
  transform: rotate(20deg);
}

.bg-blue-flower-bottom {
  position: absolute;
  bottom: 300px;
  right: -90px;
  width: 500px;
  height: 500px;
  opacity: 0.5;
  transform: rotate(-30deg);
}

@keyframes floatFloralSlow {
  0% { transform: translateY(0) rotate(0deg); }
  100% { transform: translateY(22px) rotate(8deg); }
}

@keyframes floatFloralRev {
  0% { transform: translateY(0) rotate(45deg); }
  100% { transform: translateY(-24px) rotate(35deg); }
}

/* ==========================================================================
   TOP BARS (SERBIA NOTICE & PROMOTION)
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, #091E3A 0%, #1D4ED8 50%, #0F2D59 100%);
  color: #FFFFFF;
  padding: 9px 16px;
  font-size: 0.88rem;
  font-weight: 600;
  text-align: center;
  position: relative;
  z-index: 101;
  border-bottom: 1px solid rgba(147, 197, 253, 0.3);
}

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

.announcement-badge {
  background: #22C55E;
  color: #064E3B;
  font-size: 0.74rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.trust-bar {
  background: #F0F7FF;
  border-bottom: 1px solid var(--border-blue);
  padding: 7px 16px;
  font-size: 0.82rem;
  color: var(--blue-deep);
  position: relative;
  z-index: 101;
}

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

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(191, 219, 254, 0.7);
  z-index: 100;
  box-shadow: 0 4px 20px rgba(15, 45, 89, 0.05);
}

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

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 48px;
  width: auto;
}

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

.nav-link {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s ease;
  position: relative;
}

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

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

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

/* ==========================================================================
   FLORAL BUTTONS (STIL CVETI / FLORAL FORMAT)
   ========================================================================== */
.btn-floral {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 50%, #3B82F6 100%);
  color: #FFFFFF !important;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow-floral);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
}

.btn-floral::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: 0.6s ease;
}

.btn-floral:hover::before {
  left: 100%;
}

.btn-floral:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 36px rgba(37, 99, 235, 0.38);
  background: linear-gradient(135deg, #1E40AF 0%, #1D4ED8 50%, #2563EB 100%);
}

.btn-floral:active {
  transform: translateY(1px) scale(0.99);
}

.btn-floral-sm {
  padding: 9px 18px;
  font-size: 0.88rem;
  border-radius: 9px;
}

.btn-floral-lg {
  padding: 18px 38px;
  font-size: 1.2rem;
  border-radius: 14px;
}

.btn-flower-icon {
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px;
  color: #FFFFFF;
  flex-shrink: 0;
  transition: transform 0.4s ease;
}

.btn-floral:hover .btn-flower-icon {
  transform: rotate(90deg) scale(1.15);
}

.btn-floral-outline {
  background: transparent;
  color: var(--blue-primary) !important;
  border: 2px solid var(--blue-primary);
  box-shadow: none;
}

.btn-floral-outline .btn-flower-icon {
  background: var(--blue-ice);
  color: var(--blue-primary);
}

.btn-floral-outline:hover {
  background: var(--blue-ice);
  color: var(--blue-deep) !important;
}

/* ==========================================================================
   PAGE CONTAINER & LAYOUT
   ========================================================================== */
.page-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 40px 20px 60px;
  position: relative;
  z-index: 1;
}

/* ==========================================================================
   SECTION 1: HERO & ARTICLE (NEW RESTRUCTURED LAYOUT)
   ========================================================================== */
.hero-section {
  text-align: center;
  margin-bottom: 45px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #EBF4FF;
  border: 1px solid var(--border-blue);
  color: var(--blue-primary);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 9999px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.section-tag-flower {
  width: 16px;
  height: 16px;
  color: var(--blue-vibrant);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.2vw, 3rem);
  font-weight: 900;
  line-height: 1.22;
  color: var(--blue-darkest);
  margin-bottom: 16px;
}

.hero-title .title-highlight {
  background: linear-gradient(135deg, #1D4ED8 0%, #2563EB 50%, #06B6D4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

/* Informational Article Card */
.article-card {
  background: var(--bg-card-glass);
  border: 1px solid var(--border-blue);
  border-radius: 20px;
  padding: 40px 44px;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
  margin-bottom: 55px;
}

.article-text {
  font-size: 1.1rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-bottom: 22px;
}

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

.article-highlight-box {
  background: linear-gradient(135deg, #F0F7FF 0%, #EBF4FF 100%);
  border-left: 4px solid var(--blue-vibrant);
  border-radius: 0 14px 14px 0;
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 1.05rem;
  color: var(--blue-deep);
  font-weight: 600;
}

/* ==========================================================================
   SECTION 2: SASTAV OFERA (INGREDIENTS OF HEKOLO HERBAL GEL)
   ========================================================================== */
.ingredients-section {
  margin-bottom: 65px;
}

.section-header-center {
  text-align: center;
  margin-bottom: 38px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 900;
  color: var(--blue-darkest);
  margin-bottom: 12px;
}

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

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

.ingredient-card {
  background: #FFFFFF;
  border: 1px solid var(--border-blue);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.ingredient-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-bright);
}

.ingredient-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.ingredient-icon-box {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-ice);
}

.ingredient-icon-box img {
  width: 48px;
  height: 48px;
}

.ingredient-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--blue-deep);
  line-height: 1.2;
}

.ingredient-latin {
  font-size: 0.82rem;
  color: var(--blue-vibrant);
  font-style: italic;
  font-weight: 600;
}

.ingredient-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  flex-grow: 1;
}

.ingredient-pill {
  display: inline-block;
  background: #F0FDF4;
  color: #16A34A;
  border: 1px solid #BBF7D0;
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 6px;
  margin-top: 14px;
  align-self: flex-start;
}

/* ==========================================================================
   SECTION 3: 4 STUBA OČUVANJA POKRETLJIVOSTI (4 PILLARS)
   ========================================================================== */
.pillars-section {
  margin-bottom: 65px;
}

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

.pillar-card {
  background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 100%);
  border: 1px solid var(--border-blue);
  border-radius: 16px;
  padding: 30px 22px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue-bright);
}

.pillar-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--blue-sky);
  margin-bottom: 8px;
  line-height: 1;
}

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

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

/* ==========================================================================
   SECTION 4: MAIN OFFER SECTION (OFFER ON THE LEFT, FORM ON THE RIGHT)
   "измени страницу с офером офер слева"
   ========================================================================== */
.offer-section {
  margin: 60px 0 75px;
  padding: 20px 0;
}

.offer-grid-left {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
  background: var(--bg-card-glass);
  border: 1px solid var(--border-blue);
  border-radius: 28px;
  padding: 45px 40px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
  position: relative;
}

/* LEFT COLUMN: PRODUCT SHOWCASE */
.offer-left-showcase {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.offer-badges-top {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
}

.badge-discount {
  background: #1D4ED8;
  color: #FFFFFF;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 9999px;
  text-transform: uppercase;
}

.badge-natural {
  background: #ECFDF5;
  color: #059669;
  border: 1px solid #A7F3D0;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 9999px;
}

.product-visual-box {
  position: relative;
  width: 100%;
  max-width: 320px;
  margin: 15px auto;
}

/* Blue Floral Glow Halo */
.floral-halo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.35) 0%, rgba(37, 99, 235, 0.15) 50%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
  animation: pulseGlow 5s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
  0% { transform: translate(-50%, -50%) scale(0.9); opacity: 0.7; }
  100% { transform: translate(-50%, -50%) scale(1.1); opacity: 1; }
}

.product-tube-img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
  max-height: 420px;
  filter: drop-shadow(0 16px 30px rgba(15, 45, 89, 0.18));
  transition: transform 0.4s ease;
}

.product-tube-img:hover {
  transform: translateY(-6px) scale(1.02);
}

.product-title-sub {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--blue-darkest);
  margin-top: 10px;
}

.product-subtitle-tag {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* Price Box */
.price-showcase-box {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 16px;
  background: #F0F7FF;
  border: 1px solid var(--border-blue);
  padding: 12px 24px;
  border-radius: 14px;
  width: 100%;
  max-width: 340px;
  margin: 10px auto 16px;
}

.old-price-val {
  font-size: 1.4rem;
  font-weight: 700;
  color: #94A3B8;
  text-decoration: line-through;
}

.new-price-val {
  font-family: var(--font-heading);
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--blue-primary);
  line-height: 1;
}

.price-currency {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--blue-primary);
  margin-left: 4px;
}

.offer-perks-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-body);
  text-align: left;
  margin-top: 10px;
  width: 100%;
  max-width: 320px;
}

.offer-perk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.offer-perk-item svg {
  color: var(--blue-vibrant);
  flex-shrink: 0;
}

/* RIGHT COLUMN: ORDER FORM CARD */
.offer-right-form {
  background: #FFFFFF;
  border: 1px solid var(--border-blue);
  border-radius: 22px;
  padding: 36px 32px;
  box-shadow: var(--shadow-md);
  position: relative;
}

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

.form-title {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--blue-darkest);
  line-height: 1.3;
}

.form-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Form inputs */
.order-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

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

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

.input-control::placeholder {
  color: #94A3B8;
}

.input-control:focus {
  background: #FFFFFF;
  border-color: var(--blue-vibrant);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.18);
}

.input-control.is-invalid {
  border-color: #EF4444 !important;
  background: #FEF2F2 !important;
}

.input-control.is-valid {
  border-color: #22C55E !important;
  background: #F0FDF4 !important;
}

.field-error-msg {
  font-size: 0.8rem;
  font-weight: 600;
  color: #DC2626;
  margin-top: 5px;
  display: none;
}

.field-error-msg.show {
  display: block;
}

.field-error-msg.success {
  color: #16A34A;
}

/* Form Trust & Disclaimers */
.form-trust-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F0F7FF;
  border-radius: 10px;
  padding: 10px 14px;
  margin-top: 18px;
  font-size: 0.8rem;
  color: var(--blue-deep);
  font-weight: 600;
}

.form-trust-note svg {
  flex-shrink: 0;
  color: var(--blue-primary);
}

.form-legal-disclaimer {
  font-size: 0.74rem;
  color: #94A3B8;
  line-height: 1.45;
  text-align: center;
  margin-top: 14px;
}

/* ==========================================================================
   SECTION 5: ISKUSTVA KORISNIKA (COMMUNITY FEEDBACK)
   ========================================================================== */
.reviews-section {
  margin-bottom: 65px;
}

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

.review-card {
  background: #FFFFFF;
  border: 1px solid var(--border-blue);
  border-radius: 18px;
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue-ice);
  color: var(--blue-primary);
  font-family: var(--font-heading);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  border: 1px solid var(--border-blue);
}

.review-user-name {
  font-weight: 800;
  color: var(--blue-darkest);
  font-size: 1rem;
}

.review-user-city {
  font-size: 0.8rem;
  color: var(--text-muted);
}

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

.review-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  font-style: italic;
  flex-grow: 1;
}

/* ==========================================================================
   SECTION 6: FAQ (ČESTO POSTAVLJANA PITANJA)
   ========================================================================== */
.faq-section {
  margin-bottom: 65px;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: #FFFFFF;
  border: 1px solid var(--border-blue);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.25s ease;
}

.faq-question {
  width: 100%;
  padding: 18px 22px;
  text-align: left;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--blue-darkest);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question-icon {
  font-size: 1.3rem;
  color: var(--blue-vibrant);
  transition: transform 0.25s ease;
}

.faq-answer {
  padding: 0 22px 18px;
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.6;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question-icon {
  transform: rotate(45deg);
}

/* ==========================================================================
   PAGE: THANK YOU (THANKS.HTML)
   ========================================================================== */
.thankyou-wrapper {
  max-width: 680px;
  margin: 40px auto 70px;
  background: #FFFFFF;
  border: 1px solid var(--border-blue);
  border-radius: 24px;
  padding: 45px 36px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  position: relative;
}

.thankyou-flower-crest {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--blue-ice);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-primary);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

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

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

.thankyou-order-card {
  background: #F0F7FF;
  border: 1px solid var(--border-blue);
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 28px;
  text-align: left;
}

.order-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px dashed #BFDBFE;
  font-size: 0.95rem;
}

.order-detail-row:last-child {
  border-bottom: none;
}

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

.order-detail-val {
  color: var(--blue-darkest);
  font-weight: 800;
}

.order-price-val {
  color: var(--blue-primary);
  font-size: 1.35rem;
  font-weight: 900;
}

.thankyou-call-notice {
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 30px;
  font-size: 0.95rem;
  color: #065F46;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: #091E3A;
  color: #CBD5E1;
  padding: 55px 20px 30px;
  position: relative;
  z-index: 10;
  border-top: 1px solid rgba(147, 197, 253, 0.2);
}

.footer-container {
  max-width: 1140px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 28px;
}

.footer-logo-box {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.footer-brand span {
  color: #60A5FA;
}

.footer-tagline {
  font-size: 0.85rem;
  color: #94A3B8;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-link {
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: #60A5FA;
}

.footer-bottom {
  font-size: 0.78rem;
  color: #64748B;
  line-height: 1.6;
  text-align: center;
}

.footer-disclaimer-text {
  max-width: 860px;
  margin: 0 auto 16px;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */
@media (max-width: 960px) {
  .offer-grid-left {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 35px 24px;
  }

  .nav-menu {
    display: none;
  }

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

  .mobile-nav-drawer {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: #FFFFFF;
    padding: 20px;
    border-bottom: 1px solid var(--border-blue);
  }
}

@media (max-width: 640px) {
  .page-container {
    padding: 24px 14px 45px;
  }

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

  .offer-grid-left {
    padding: 24px 16px;
  }

  .offer-right-form {
    padding: 24px 18px;
  }

  .trust-inner {
    justify-content: center;
    text-align: center;
  }

  .hero-title {
    font-size: 1.85rem;
  }

  .section-title {
    font-size: 1.6rem;
  }
}
