/* ===================================================
   MAYFAIR MASSAGE & THERAPY — Design System
   Sleek, Posh, Sophisticated: Black / Gold / White
   =================================================== */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Colours */
  --black: #0a0c0b; /* Very dark rich charcoal with subtle green tint */
  --black-light: #111512;
  --charcoal: #171d19;
  --charcoal-2: #1e2621;
  --grey-dark: #2a332d;
  --grey: #829288;
  --grey-light: #b5c7bc;
  --white: #f2f7f4;
  --white-true: #ffffff;
  
  /* Primary Accents */
  --gold: #c9a84c;
  --gold-light: #dfc06a;
  --gold-dark: #a88a30;
  --gold-muted: rgba(201, 168, 76, 0.15);
  
  /* The Emerald Elegance */
  --emerald: #9dbca7; /* Soft mid-emerald for accents */
  --emerald-light: #e6f0e9; /* Light wash for backgrounds */
  --emerald-dark: #2c4235; /* Deep rich emerald */
  --emerald-muted: rgba(157, 188, 167, 0.15);

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --font-accent: 'Cormorant Garamond', 'Georgia', serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 7rem;
  --space-3xl: 10rem;

  /* Sizes */
  --max-width: 1200px;
  --header-h: 80px;
  --border-r: 4px;
  --border-r-lg: 8px;

  /* Transitions & Dynamics */
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --transition: 0.4s var(--ease);
  --transform-hover-lift: translateY(-8px) scale(1.02);

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 8px 32px rgba(201, 168, 76, 0.2);
  --shadow-emerald: 0 8px 32px rgba(157, 188, 167, 0.25);
  --shadow-emerald-glow: 0 0 25px rgba(157, 188, 167, 0.35);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
  background-color: var(--black);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold-light);
}

ul,
ol {
  list-style: none;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white-true);
  letter-spacing: 0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  margin-bottom: var(--space-md);
}

h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  margin-bottom: var(--space-sm);
}

h3 {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  margin-bottom: var(--space-xs);
}

p {
  margin-bottom: var(--space-sm);
  color: var(--grey-light);
}

.accent-font {
  font-family: var(--font-accent);
}

.gold-text {
  color: var(--gold);
}

.uppercase {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  font-weight: 600;
}

.subtitle {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--gold);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
}

.section--dark {
  background: var(--charcoal);
}

.section--gold-accent {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--black-light) 100%);
  border-top: 1px solid var(--gold-muted);
  border-bottom: 1px solid var(--gold-muted);
}

.grid {
  display: grid;
  gap: var(--space-lg);
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.text-center {
  text-align: center;
}

/* ---------- Decorative Elements ---------- */
.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: var(--space-sm) auto;
}

.gold-line--left {
  margin-left: 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header .subtitle {
  display: block;
  margin-bottom: var(--space-xs);
}

/* ===================================================
   HEADER / NAVIGATION
   =================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--black);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.97);
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.header__logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white-true);
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.header__logo span {
  color: var(--gold);
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.nav__link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--grey-light);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.5rem 0;
  position: relative;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--gold);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Hamburger â€” mobile only */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 5px;
}

.hamburger span {
  width: 28px;
  height: 2px;
  background: var(--gold);
  transition: all var(--transition);
  display: block;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Phone bar above nav */
.header__phone-bar {
  background: var(--charcoal);
  text-align: center;
  padding: 0.4rem 0;
  font-size: 0.8rem;
  color: var(--grey-light);
  border-bottom: 1px solid var(--gold-muted);
}

.header__phone-bar a {
  color: var(--gold);
  font-weight: 600;
}

/* ===================================================
   HERO SECTION
   =================================================== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(10, 10, 10, 0.7) 0%,
      rgba(10, 10, 10, 0.55) 40%,
      rgba(10, 10, 10, 0.8) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: var(--space-2xl) var(--space-md);
}

.hero__badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border: 1px solid var(--gold);
  border-radius: 2px;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: var(--space-md);
  font-family: var(--font-body);
  font-weight: 600;
}

.hero h1 {
  margin-bottom: var(--space-sm);
}

.hero__subtitle {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  color: var(--grey-light);
  font-style: italic;
  margin-bottom: var(--space-lg);
  line-height: 1.6;
}

.hero__cta {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
}

/* ===================================================
   BUTTONS
   =================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--border-r);
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
}

.btn--gold {
  background: var(--gold);
  color: var(--black);
}

.btn--gold:hover {
  background: var(--gold-light);
  color: var(--black);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--charcoal);
  color: var(--white);
  border: 1px solid var(--grey-dark);
}

.btn--dark:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
}

.btn--block {
  width: 100%;
}

/* ===================================================
   SERVICE CARDS
   =================================================== */
.service-card {
  background: var(--charcoal);
  border: 1px solid var(--grey-dark);
  border-radius: var(--border-r-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.service-card__image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.service-card:hover .service-card__image img {
  transform: scale(1.08);
}

.service-card__body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__tag {
  display: inline-block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: var(--space-xs);
  font-weight: 600;
}

.service-card__title {
  font-size: 1.2rem;
  margin-bottom: var(--space-xs);
}

.service-card__desc {
  font-size: 0.9rem;
  color: var(--grey-light);
  flex: 1;
  margin-bottom: var(--space-sm);
}

.service-card__footer {
  margin-top: auto;
}

/* ===================================================
   APPROACH / FEATURES SECTION
   =================================================== */
.feature-item {
  text-align: center;
  padding: var(--space-md);
}

.feature-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto var(--space-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.4rem;
}

.feature-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.feature-item p {
  font-size: 0.9rem;
}

/* ===================================================
   TESTIMONIALS
   =================================================== */
.testimonial-card {
  background: var(--charcoal);
  border: 1px solid var(--grey-dark);
  border-radius: var(--border-r-lg);
  padding: var(--space-lg);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold-muted);
  line-height: 1;
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: var(--space-xs);
  letter-spacing: 0.1em;
}

.testimonial-card__text {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--grey-light);
  line-height: 1.7;
  margin-bottom: var(--space-sm);
}

.testimonial-card__author {
  font-weight: 600;
  color: var(--white-true);
  font-size: 0.9rem;
}

/* ===================================================
   PARTNERSHIP SECTION
   =================================================== */
.partnership {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--black-light) 100%);
  border-top: 1px solid var(--gold-muted);
  border-bottom: 1px solid var(--gold-muted);
}

.partnership__inner {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.partnership__text {
  flex: 1;
  min-width: 280px;
}

.partnership__logo {
  flex: 0 0 auto;
}

.partnership__logo img {
  max-width: 200px;
  border-radius: var(--border-r);
}

/* ===================================================
   FAQ ACCORDION
   =================================================== */
.faq-item {
  border-bottom: 1px solid var(--grey-dark);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  cursor: pointer;
  transition: color var(--transition);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white-true);
}

.faq-question:hover {
  color: var(--gold);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding-bottom: var(--space-md);
}

.faq-answer p {
  font-size: 0.95rem;
  color: var(--grey-light);
}

/* ===================================================
   FOOTER
   =================================================== */
.footer {
  background: var(--black);
  border-top: 1px solid var(--gold-muted);
  padding: var(--space-2xl) 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer__brand h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-sm);
}

.footer__brand h3 span {
  color: var(--gold);
}

.footer__brand p {
  font-size: 0.9rem;
}

.footer h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

.footer__links li {
  margin-bottom: 0.5rem;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--grey-light);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold);
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  color: var(--grey-light);
}

.footer__contact-item .icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__bottom {
  border-top: 1px solid var(--grey-dark);
  padding-top: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--grey);
}

.footer__social {
  display: flex;
  gap: var(--space-sm);
}

.footer__social a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--grey-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-light);
  transition: all var(--transition);
}

.footer__social a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ===================================================
   STICKY MOBILE CTA
   =================================================== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: var(--black);
  border-top: 2px solid var(--gold);
  padding: 0.75rem var(--space-md);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.6);
}

.sticky-cta .btn {
  width: 100%;
  padding: 0.85rem;
  font-size: 0.9rem;
}

/* ===================================================
   PAGE HEADER (for sub-pages)
   =================================================== */
.page-header {
  position: relative;
  padding: calc(var(--header-h) + var(--space-3xl)) 0 var(--space-2xl);
  overflow: hidden;
  text-align: center;
}

.page-header__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-header__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.7) 100%);
  z-index: 1;
}

.page-header__content {
  position: relative;
  z-index: 2;
}

.page-header__breadcrumb {
  font-size: 0.8rem;
  color: var(--grey);
  margin-bottom: var(--space-sm);
}

.page-header__breadcrumb a {
  color: var(--gold);
}

/* ===================================================
   SERVICE PAGE â€” detailed layout
   =================================================== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.service-detail--reverse {
  direction: rtl;
}

.service-detail--reverse>* {
  direction: ltr;
}

.service-detail__image {
  border-radius: var(--border-r-lg);
  overflow: hidden;
}

.service-detail__image img {
  border-radius: var(--border-r-lg);
  width: 100%;
  height: auto;
}

.service-detail__content h2 {
  margin-bottom: var(--space-sm);
}

.service-detail__content p {
  margin-bottom: var(--space-sm);
}

.service-detail__content ul {
  margin-bottom: var(--space-md);
}

.service-detail__content ul li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  color: var(--grey-light);
  font-size: 0.95rem;
}

.service-detail__content ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.75rem;
}

/* ===================================================
   PREMIUM / BELIEF CODE HIGHLIGHT
   =================================================== */
.premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--gold-muted);
  border: 1px solid var(--gold);
  border-radius: 2px;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-md);
}

/* ===================================================
   ABOUT PAGE
   =================================================== */
.about-profile {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.about-profile__image {
  border-radius: var(--border-r-lg);
  overflow: hidden;
  border: 2px solid var(--gold-muted);
}

.about-profile__image img {
  width: 100%;
  height: auto;
}

.credentials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

.credential-item {
  background: var(--charcoal);
  padding: var(--space-md);
  border-radius: var(--border-r-lg);
  border: 1px solid var(--grey-dark);
}

.credential-item h3 {
  color: var(--gold);
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

/* ===================================================
   CONTACT PAGE
   =================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.9rem 1rem;
  background: var(--charcoal);
  border: 1px solid var(--grey-dark);
  border-radius: var(--border-r);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
  margin-bottom: var(--space-sm);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  color: var(--grey-light);
  margin-bottom: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.contact-info-card {
  background: var(--charcoal);
  border: 1px solid var(--grey-dark);
  border-radius: var(--border-r-lg);
  padding: var(--space-lg);
  margin-bottom: var(--space-md);
}

.contact-info-card h3 {
  color: var(--gold);
  margin-bottom: var(--space-sm);
}

/* ===================================================
   BOOKING PAGE
   =================================================== */
.booking-card {
  background: var(--charcoal);
  border: 1px solid var(--grey-dark);
  border-radius: var(--border-r-lg);
  padding: var(--space-lg);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
  transition: all var(--transition);
}

.booking-card:hover {
  border-color: var(--gold);
}

.booking-card__info h3 {
  margin-bottom: 0.3rem;
}

.booking-card__info p {
  font-size: 0.9rem;
  margin-bottom: 0;
}

.booking-card__price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
}

/* ===================================================
   ANIMATIONS
   =================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-delay-1 {
  transition-delay: 0.1s;
}

.fade-in-delay-2 {
  transition-delay: 0.2s;
}

.fade-in-delay-3 {
  transition-delay: 0.3s;
}

/* Gold shimmer on hover for images */
.shimmer-hover {
  position: relative;
  overflow: hidden;
}

.shimmer-hover::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.1), transparent);
  transition: left 0.6s ease;
}

.shimmer-hover:hover::after {
  left: 100%;
}

/* ===================================================
   RESPONSIVE â€” Tablet (â‰¤1024px)
   =================================================== */
@media (max-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-profile {
    grid-template-columns: 280px 1fr;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-detail--reverse {
    direction: ltr;
  }
}

/* ===================================================
   RESPONSIVE â€” Mobile (â‰¤768px)
   =================================================== */
@media (max-width: 768px) {
  :root {
    --header-h: 65px;
  }

  .hamburger {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: var(--black);
    border-left: 1px solid var(--gold-muted);
    padding: calc(var(--header-h) + var(--space-lg)) var(--space-md) var(--space-md);
    transition: right var(--transition);
    z-index: 999;
  }

  .nav.open {
    right: 0;
  }

  .nav__list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .nav__link {
    display: block;
    padding: var(--space-sm) 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--grey-dark);
    width: 100%;
  }

  .nav__link::after {
    display: none;
  }

  /* Mobile menu overlay */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
  }

  .nav-overlay.active {
    display: block;
  }

  /* Grids */
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer {
    text-align: center;
  }

  .footer h4 {
    text-align: center;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer__links {
    text-align: center;
    padding-left: 0;
    list-style: none;
  }

  .footer__links li {
    display: block;
    margin-bottom: 0.5rem;
  }

  .footer__contact-item {
    justify-content: center;
    text-align: center;
    margin-bottom: 1rem;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-sm);
  }

  /* About */
  .about-profile {
    grid-template-columns: 1fr;
  }

  .about-profile__image {
    max-width: 300px;
    margin: 0 auto;
  }

  .credentials-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Sticky CTA */
  .sticky-cta {
    display: block;
  }

  /* Extra bottom padding for sticky CTA */
  body {
    padding-bottom: 70px;
  }

  /* Section spacing reduction */
  .section {
    padding: var(--space-xl) 0;
  }

  /* Hero adjustments */
  .hero {
    min-height: 85vh;
  }

  .hero__content {
    padding: var(--space-lg) var(--space-sm);
  }

  /* Partnership */
  .partnership__inner {
    flex-direction: column;
    text-align: center;
  }

  /* Booking cards */
  .booking-card {
    flex-direction: column;
    text-align: center;
  }

  /* Page header */
  .page-header {
    padding: calc(var(--header-h) + var(--space-xl)) 0 var(--space-xl);
  }
}

/* ===================================================
   RESPONSIVE â€” Small mobile (â‰¤480px)
   =================================================== */
@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .hero__cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .container {
    padding: 0 var(--space-sm);
  }
}

/* ===================================================
   UTILITY â€” Accessibility
   =================================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Focus styles */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Map embed */
.map-embed {
  width: 100%;
  height: 300px;
  border-radius: var(--border-r-lg);
  overflow: hidden;
  border: 1px solid var(--grey-dark);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===================================================
   NEWSLETTER POPUP MODAL
   =================================================== */
.newsletter-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  animation: fadeOverlay 0.3s ease;
}

.newsletter-overlay.active {
  display: flex;
}

@keyframes fadeOverlay {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.newsletter-popup {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--black-light) 100%);
  border: 1px solid var(--gold);
  border-radius: var(--border-r-lg);
  padding: var(--space-xl);
  max-width: 480px;
  width: 90%;
  position: relative;
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.15), var(--shadow-lg);
  animation: popIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.newsletter-popup__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: 1px solid var(--grey-dark);
  color: var(--grey-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.newsletter-popup__close:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.newsletter-popup__icon {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
}

.newsletter-popup h3 {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: var(--space-xs);
}

.newsletter-popup .subtitle {
  text-align: center;
  display: block;
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.newsletter-popup .newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter-form input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: var(--charcoal);
  border: 1px solid var(--grey-dark);
  border-radius: var(--border-r);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: border-color var(--transition);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--gold);
}

.newsletter-form input::placeholder {
  color: var(--grey);
}

.newsletter-popup__note {
  text-align: center;
  font-size: 0.75rem !important;
  color: var(--grey) !important;
  margin-top: var(--space-xs);
  margin-bottom: 0;
}

/* ===================================================
   BLOG CARDS
   =================================================== */
.blog-card {
  background: var(--charcoal);
  border: 1px solid var(--grey-dark);
  border-radius: var(--border-r-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.blog-card__image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__category {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.3rem 0.8rem;
  background: rgba(10, 10, 10, 0.85);
  border: 1px solid var(--gold);
  border-radius: 2px;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  font-weight: 600;
  z-index: 1;
}

.blog-card__body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card__date {
  font-size: 0.75rem;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-xs);
}

.blog-card__title {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
  line-height: 1.4;
}

.blog-card__title a {
  color: var(--white-true);
  transition: color var(--transition);
}

.blog-card__title a:hover {
  color: var(--gold);
}

.blog-card__excerpt {
  font-size: 0.85rem;
  color: var(--grey-light);
  flex: 1;
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.blog-card__link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.blog-card__link:hover {
  color: var(--gold-light);
  gap: 0.6rem;
}

/* Blog newsletter inline form */
.blog-newsletter {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--black-light) 100%);
  border: 1px solid var(--gold-muted);
  border-radius: var(--border-r-lg);
  padding: var(--space-xl);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.blog-newsletter h3 {
  margin-bottom: var(--space-xs);
}

.blog-newsletter .newsletter-inline-form {
  display: flex;
  gap: 0.75rem;
  margin-top: var(--space-md);
}

.blog-newsletter .newsletter-inline-form input {
  flex: 1;
  padding: 0.85rem 1rem;
  background: var(--charcoal);
  border: 1px solid var(--grey-dark);
  border-radius: var(--border-r);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
}

.blog-newsletter .newsletter-inline-form input:focus {
  outline: none;
  border-color: var(--gold);
}

/* ===================================================
   REFERRAL PROMO BANNER
   =================================================== */
.referral-promo {
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--black-light) 100%);
  border: 2px solid var(--gold);
  border-radius: var(--border-r-lg);
  padding: var(--space-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.referral-promo::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.referral-promo__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  background: var(--gold);
  color: var(--black);
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-md);
}

.referral-promo h2 {
  position: relative;
  z-index: 1;
}

.referral-promo p {
  position: relative;
  z-index: 1;
}

.referral-promo__percentage {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 8vw, 5rem);
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin: var(--space-sm) 0;
  position: relative;
  z-index: 1;
}

.referral-promo__details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  max-width: 500px;
  margin: var(--space-md) auto;
  position: relative;
  z-index: 1;
}

.referral-promo__detail-item {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid var(--gold-muted);
  border-radius: var(--border-r-lg);
  padding: var(--space-md);
}

.referral-promo__detail-item h4 {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 0.3rem;
}

.referral-promo__detail-item p {
  font-size: 0.85rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .newsletter-popup {
    padding: var(--space-lg);
    width: 95%;
  }

  .blog-newsletter .newsletter-inline-form {
    flex-direction: column;
  }

  .referral-promo__details {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .newsletter-popup {
    padding: var(--space-md);
  }
}

/* ===================================================
   CHATBOT WIDGET
   =================================================== */
.chatbot-toggle {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  z-index: 1500;
  transition: all var(--transition);
  animation: chatPulse 3s ease infinite;
}

.chatbot-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(201, 168, 76, 0.5);
}

@keyframes chatPulse {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  }

  50% {
    box-shadow: 0 4px 30px rgba(201, 168, 76, 0.6);
  }
}

.chatbot-toggle__badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: #e74c3c;
  border-radius: 50%;
  border: 2px solid var(--black);
  animation: badgeBounce 2s ease infinite;
}

@keyframes badgeBounce {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }
}

.chatbot-window {
  display: none;
  position: fixed;
  bottom: 160px;
  right: 24px;
  width: 380px;
  max-height: 500px;
  background: var(--charcoal);
  border: 1px solid var(--gold);
  border-radius: var(--border-r-lg);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.6), 0 0 40px rgba(201, 168, 76, 0.1);
  z-index: 1500;
  flex-direction: column;
  overflow: hidden;
  animation: slideUp 0.3s ease;
}

.chatbot-window.active {
  display: flex;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chatbot-header {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-header__info {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.chatbot-header__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.chatbot-header__name {
  color: var(--black);
  font-weight: 600;
  font-size: 0.9rem;
}

.chatbot-header__status {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.7rem;
}

.chatbot-header__close {
  background: none;
  border: none;
  color: var(--black);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 0.3rem;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.chatbot-header__close:hover {
  opacity: 1;
}

.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-height: 320px;
  min-height: 200px;
}

.chatbot-msg {
  max-width: 85%;
  padding: 0.7rem 1rem;
  border-radius: 12px;
  font-size: 0.85rem;
  line-height: 1.5;
  animation: msgFade 0.3s ease;
}

@keyframes msgFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chatbot-msg--bot {
  background: var(--grey-dark);
  color: var(--white);
  align-self: flex-start;
  border-bottom-left-radius: 4px;
}

.chatbot-msg--user {
  background: var(--gold);
  color: var(--black);
  align-self: flex-end;
  border-bottom-right-radius: 4px;
  font-weight: 500;
}

.chatbot-msg a {
  color: var(--gold);
  text-decoration: underline;
}

.chatbot-msg--bot a {
  color: var(--gold-light);
}

.chatbot-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  padding: 0 1rem 0.75rem;
}

.chatbot-quick-btn {
  padding: 0.45rem 0.85rem;
  background: transparent;
  border: 1px solid var(--gold-muted);
  border-radius: 20px;
  color: var(--gold);
  font-size: 0.75rem;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.chatbot-quick-btn:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.chatbot-input {
  display: flex;
  border-top: 1px solid var(--grey-dark);
  padding: 0.5rem;
  gap: 0.5rem;
}

.chatbot-input input {
  flex: 1;
  padding: 0.6rem 0.85rem;
  background: var(--black-light);
  border: 1px solid var(--grey-dark);
  border-radius: 20px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.chatbot-input input:focus {
  outline: none;
  border-color: var(--gold);
}

.chatbot-input input::placeholder {
  color: var(--grey);
}

.chatbot-input button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.chatbot-input button:hover {
  background: var(--gold-light);
}

.chatbot-typing {
  display: flex;
  gap: 4px;
  padding: 0.7rem 1rem;
  align-self: flex-start;
}

.chatbot-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grey);
  animation: typing 1.2s infinite;
}

.chatbot-typing span:nth-child(2) {
  animation-delay: 0.2s;
}

.chatbot-typing span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing {

  0%,
  100% {
    opacity: 0.3;
    transform: translateY(0);
  }

  50% {
    opacity: 1;
    transform: translateY(-4px);
  }
}

@media (max-width: 768px) {
  .chatbot-toggle {
    bottom: 80px;
    right: 16px;
    width: 54px;
    height: 54px;
  }

  .chatbot-window {
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    max-height: 70vh;
    border-radius: var(--border-r-lg) var(--border-r-lg) 0 0;
  }
}

/* ===================================================
   BLOG ARTICLE CONTENT
   =================================================== */
.blog-article h2 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
  font-size: clamp(1.4rem, 3vw, 1.8rem);
}

.blog-article h3 {
  margin-top: var(--space-md);
  margin-bottom: var(--space-xs);
  color: var(--gold);
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
}

.blog-article p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--grey-light);
  margin-bottom: var(--space-sm);
}

.blog-article ul,
.blog-article ol {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: var(--space-md);
}

.blog-article ol {
  list-style: decimal;
}

.blog-article li {
  font-size: 0.95rem;
  color: var(--grey-light);
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.blog-article__meta {
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--grey-dark);
}

.blog-article table {
  width: 100%;
  border-collapse: collapse;
}

.blog-article table th,
.blog-article table td {
  padding: 0.6rem;
  text-align: left;
  font-size: 0.9rem;
}

/* Blog card hover for <a> tag cards */
a.blog-card {
  display: block;
  transition: all var(--transition);
}

a.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
}

/* ===================================================
   PHASE 4: RIMAN-INSPIRED LIGHT & LUMINOUS REDESIGN
   Overriding previous Dark/Gold theme globally.
   =================================================== */

:root {
  /* Reversed Colours for Light Theme */
  --black: #FAFAF8; /* Main body background is now warm white */
  --black-light: #F3F1ED; /* Alt background */
  --charcoal: #FFFFFF; /* Pure white background sections & cards */
  --charcoal-2: #F7F5F0; /* Cream background */
  --grey-dark: #E8E5DF; /* Light borders */
  --grey: #9E9E9E; /* Muted text */
  --grey-light: #5A5A5A; /* Regular text */
  --white: #1C1C1C; /* Main text (inverted from white to dark) */
  --white-true: #0A0A0A; /* Headings (inverted to dark) */
  
  --gold: #B8956A; /* Refined soft organic gold */
  --gold-light: #D4B896;
  --gold-dark: #96754D;
  --gold-muted: rgba(184, 149, 106, 0.15);

  --font-heading: 'Cormorant Garamond', 'Playfair Display', serif;
}

/* === SPECIFIC OVERRIDES FOR LEGIBILITY AND LIGHT AESTHETIC === */

/* Top Promotional Banner (New) */
.promo-banner {
    background: var(--gold);
    color: #FFFFFF;
    text-align: center;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    z-index: 1001; /* Above sticky header */
}
.promo-banner a {
    color: #FFFFFF;
    text-decoration: underline;
    font-weight: 600;
    margin-left: 10px;
}
.promo-banner a:hover {
    color: var(--black);
}

/* Adjust header to sit below promo banner if static, or sticky */
.header {
    background: rgba(250, 250, 248, 0.95) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--grey-dark);
}
.header.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
}

/* Hero Section: Make overlay light so dark text is readable across all pages */
.hero__overlay, .page-header__overlay {
    background: linear-gradient(
        180deg,
        rgba(250, 250, 248, 0.5) 0%,
        rgba(250, 250, 248, 0.85) 50%,
        rgba(250, 250, 248, 1) 100%
    ) !important;
}

/* Ensure buttons stand out on light backgrounds */
.btn--gold {
    background: var(--gold) !important;
    color: #FFFFFF !important;
}
.btn--gold:hover {
    background: var(--gold-dark) !important;
}
.btn--outline {
    border-color: var(--white-true) !important;
    color: var(--white-true) !important;
}
.btn--outline:hover {
    background: var(--white-true) !important;
    color: #FFFFFF !important;
}

/* Chatbot Restyling */
#chatbot-toggle {
    background: var(--charcoal) !important;
    color: var(--gold) !important;
    border: 1px solid var(--grey-dark) !important;
    box-shadow: var(--shadow-md) !important;
    bottom: 20px !important;
    right: 20px !important;
}
#chatbot-window {
    background: var(--charcoal) !important;
    border: 1px solid var(--grey-dark) !important;
    box-shadow: var(--shadow-lg) !important;
    bottom: 90px !important;
}
#chatbot-header {
    background: var(--charcoal-2) !important;
    color: var(--white-true) !important;
    border-bottom: 1px solid var(--grey-dark) !important;
}
.msg.bot { background: var(--charcoal-2) !important; color: var(--grey-light) !important; border: 1px solid var(--grey-dark); }
.msg.user { background: var(--gold-muted) !important; color: var(--white-true) !important; }

/* Sticky Book Now Sliding Icon */
.floating-book-now {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold);
    color: #FFFFFF;
    padding: 15px 10px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    cursor: pointer;
    z-index: 1001; /* Above header */
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .floating-book-now {
        padding: 10px 6px;
        font-size: 0.7rem;
        gap: 6px;
    }
    .floating-book-now svg {
        width: 16px;
        height: 16px;
    }
}
.floating-book-now:hover {
    background: var(--gold-dark);
    padding-right: 20px;
    color: #FFFFFF !important;
}
.floating-book-now span {
    display: inline-block;
    transform: rotate(180deg);
}

/* Ensure mobile sticky CTA from previous design doesn't clash */
.sticky-cta {
    display: none !important;
}

/* Keep images looking soft */
img {
    border-radius: 2px;
}


/* ===================================================
   PHASE 5: ELEGANT EMERALD DYNAMICS
   =================================================== */

/* Dynamic Cards */
.service-card {
    transition: var(--transition);
    border: 1px solid var(--grey-dark);
}

.service-card:hover {
    transform: var(--transform-hover-lift);
    box-shadow: var(--shadow-emerald-glow);
    border-color: var(--emerald);
}

/* Emerald Badges & Highlights */
.riman-badge {
    background-color: var(--emerald-light);
    color: var(--emerald-dark);
    border: 1px solid var(--emerald);
}

/* K-Beauty Steps Enhancements */
.kbeauty-step {
    transition: var(--transition);
    border-left: 2px solid var(--grey-dark);
    padding-left: var(--space-md);
}

.kbeauty-step:hover {
    border-left-color: var(--emerald);
    background-color: rgba(230, 240, 233, 0.03); /* Extremely subtle emerald wash */
}

/* Refined Buttons */
.btn--gold {
    background-color: var(--gold);
    color: var(--black);
}
.btn--gold:hover {
    background-color: var(--gold-light);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}



/* ===================================================
   FINAL UI PERFECTION: GLOBAL FOOTER CENTERING 
   =================================================== */
@media (max-width: 768px) {
  .footer {
    text-align: center !important;
    padding: var(--space-xl) var(--space-md) !important;
  }
  .footer h4 {
    text-align: center !important;
    margin-bottom: var(--space-sm) !important;
  }
  .footer__grid {
    grid-template-columns: 1fr !important;
    gap: var(--space-xl) !important;
  }
  .footer__links {
    text-align: center !important;
    padding-left: 0 !important;
    list-style: none !important;
    display: inline-block !important;
    width: 100% !important;
  }
  .footer__links li {
    display: block !important;
    margin-bottom: 0.5rem !important;
  }
  .footer__contact-item {
    justify-content: center !important;
    text-align: center !important;
    margin-bottom: 0.8rem !important;
  }
  .footer__bottom {
    flex-direction: column !important;
    text-align: center !important;
    gap: var(--space-sm) !important;
    margin-top: var(--space-xl) !important;
  }
  .footer__social {
    justify-content: center !important;
  }
}
