:root {
  --brand-navy: #0f1e54;
  --brand-navy-light: #1a2d6b;
  --accent-gold: #C9A96E;
  --accent-gold-light: #dcc08a;
  --text-dark: #1a1a1a;
  --text-body: #3a3a3a;
  --text-muted: #6b6b6b;
  --bg-cream: #FAF8F5;
  --bg-light: #f4f2ef;
  --border-subtle: rgba(15, 30, 84, 0.06);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none !important;
  color: var(--accent-gold);
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-gold-light);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: var(--text-body);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.7;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  color: var(--brand-navy);
}

ul {
  padding-left: 2.5rem !important;
}

/* ===== Navbar ===== */
.navbar {
  padding: 16px 0;
  background: #fff !important;
  box-shadow: 0 1px 0 var(--border-subtle);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: padding 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.navbar.scrolled {
  padding: 8px 0 !important;
  box-shadow: 0 1px 20px rgba(15,30,84,0.08) !important;
  background: rgba(255,255,255,0.97) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.navbar.scrolled .navbar-brand img {
  max-height: 44px;
}

.navbar .nav-link {
  color: var(--brand-navy) !important;
  font-size: 1.1rem;
  padding: 8px 14px !important;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover {
  color: var(--accent-gold) !important;
}

/* ===== Hero Banner ===== */
.hero-banner {
  position: relative;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Intro Section ===== */
.hero-section {
  background-color: #fff;
  padding: 72px 0 56px;
  max-width: 820px;
  margin: auto;
}

.hero-heading {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--brand-navy);
  font-size: 2.4rem;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.hero-heading::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent-gold);
  margin: 20px auto 32px;
}

.hero-para {
  margin-top: 16px;
  color: var(--text-body);
  line-height: 1.8;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.01em;
}

/* ===== Section Headings ===== */
.skin-heading {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--brand-navy);
  font-size: 1.9rem;
  line-height: 1.25;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.skin-heading::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--accent-gold);
  margin: 16px auto 32px;
}

/* ===== CTA Bands ===== */
.specials-cta {
  background: var(--brand-navy);
  padding: 3rem 1rem;
  color: white;
}

.specials-cta .cta-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: -0.01em;
  color: #fff;
}

.specials-cta .btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1.5px solid var(--accent-gold);
  transition: all 0.3s ease;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.specials-cta .btn-outline-light:hover {
  background: var(--accent-gold);
  color: var(--brand-navy);
  border-color: var(--accent-gold);
}

a.btn-2.btn-outline-light.rounded-pill.px-4.py-2.fw-semibold {
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all 0.3s ease;
  background: transparent;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

a.btn-2.btn-outline-light.rounded-pill.px-4.py-2.fw-semibold:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
  border-color: rgba(255,255,255,0.5);
}

/* ===== Monthly Focus Intro ===== */
.july-intro {
  background: var(--brand-navy);
  padding: 52px 1rem;
  border-top: none;
  border-bottom: none;
}

.july-intro-heading {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.july-intro-heading::after {
  display: none;
}

.july-intro-date {
  color: var(--accent-gold);
  font-size: 15px;
  font-weight: 600;
  margin-top: 18px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.july-intro-text {
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
  letter-spacing: 0.01em;
}

/* ===== Treatment Sections ===== */
.skin-section {
  padding: 72px 0;
  max-width: 100% !important;
  margin: auto;
  background: #fff;
}

.Glowing-section {
  background: var(--bg-cream);
  padding: 72px 0;
  max-width: 100% !important;
  margin: auto;
}

.skin-section .img-fluid,
.Glowing-section .img-fluid {
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(15, 30, 84, 0.08);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.skin-section .img-fluid:hover,
.Glowing-section .img-fluid:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(15, 30, 84, 0.12);
}

/* Treatment list styling */
.skin-section ul,
.Glowing-section ul {
  margin-top: 20px;
  margin-bottom: 8px;
  list-style: none;
  padding-left: 0 !important;
}

.skin-section li,
.Glowing-section li {
  padding: 12px 0 12px 20px;
  line-height: 1.7;
  font-size: 15px;
  color: var(--text-body);
  font-weight: 300;
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
}

.skin-section li::before,
.Glowing-section li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gold);
}

.skin-section li:last-child,
.Glowing-section li:last-child {
  border-bottom: none;
}

.skin-section li b,
.Glowing-section li b {
  color: var(--brand-navy);
  font-weight: 600;
}

/* ===== Other Sections ===== */
.protect-section {
  padding: 72px 0;
  max-width: 1200px;
  margin: auto;
}

.Loyalty-section {
  background-color: #fff;
  padding: 72px 0;
  max-width: 1200px;
  margin: auto;
}

.skin-header-2 {
  color: var(--brand-navy);
}

.skin-list {
  color: var(--text-body);
  font-size: 17px;
}

.skin-span {
  font-weight: 600;
  color: var(--brand-navy);
}

.highlight-box {
  background-color: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.offer-banner {
  width: 100%;
  height: auto;
}

.card-img-top {
  height: 200px;
  object-fit: cover;
}

.loyalty-badge {
  font-weight: bold;
  color: #fff;
  background-color: var(--brand-navy);
  padding: 3px 10px;
  border-radius: 5px;
  font-size: 14px;
}


/* ===== Final CTA Section ===== */
.cta-final {
  background: var(--brand-navy);
  padding: 80px 1rem 72px;
  color: #fff;
}

.cta-final-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 12px;
}

.cta-final-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.cta-final-heading::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  background: var(--accent-gold);
  margin: 20px auto 28px;
}

.cta-final-text {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 640px;
  margin: 0 auto 36px;
}

.cta-final-text a {
  color: var(--accent-gold) !important;
  font-weight: 500;
}

.cta-final-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.cta-btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-gold);
  color: var(--brand-navy) !important;
  padding: 14px 36px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: all 0.3s ease;
}

.cta-btn-whatsapp:hover {
  background: var(--accent-gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.3);
  color: var(--brand-navy) !important;
}

.cta-btn-whatsapp i {
  font-size: 18px;
}

.cta-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #fff !important;
  padding: 14px 36px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none !important;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
}

.cta-btn-call:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
  transform: translateY(-1px);
}

.cta-btn-call i {
  font-size: 14px;
}

/* ===== Terms Section ===== */
.terms-section {
  background: var(--bg-cream);
  padding: 40px 1rem;
  border-top: 1px solid var(--border-subtle);
}

.terms-heading {
  font-family: 'Inter', sans-serif;
  font-size: 11px !important;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 18px;
}

.terms-item {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 6px;
  text-align: center;
  font-weight: 300;
}

.terms-item i {
  color: var(--accent-gold);
  font-size: 9px;
  margin-right: 6px;
  vertical-align: middle;
}

/* ===== Scroll Reveal ===== */
.skin-section .container,
.Glowing-section .container {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.skin-section .container.visible,
.Glowing-section .container.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 576px) {
  .cta-final {
    padding: 52px 1rem 48px;
  }
  .cta-final-heading {
    font-size: 1.7rem;
  }
  .cta-final-text {
    font-size: 15px;
  }
  .cta-btn-whatsapp,
  .cta-btn-call {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
  .skin-header-2 {
    margin-top: 20px;
  }
  .hero-section {
    padding: 40px 0 32px;
  }
  .Glowing-section, .skin-section {
    padding: 48px 0;
  }
  .hero-heading {
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .hero-heading::after {
    margin: 14px auto 20px;
  }
  .skin-heading {
    font-size: 1.5rem;
    line-height: 1.3;
    margin-bottom: 10px;
  }
  .skin-heading::after {
    margin: 10px auto 20px;
  }
  .hero-para {
    font-size: 15px;
  }
  .specials-cta {
    padding: 2rem 1rem;
  }
  .july-intro {
    padding: 36px 1rem;
  }
  .banner-image {
    height: auto;
  }
}

@media (min-width: 768px) {
  .row.align-items-center .col-md-6:first-child {
    padding-right: 30px;
  }
  .row.align-items-center .col-md-6:last-child {
    padding-left: 30px;
  }
}
