/* =============================================
   BeauBa Salon - Main Stylesheet
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Jost:wght@300;400;500;600&display=swap');

/* ---- CSS VARIABLES ---- */
:root {
  --gold: #C9A84C;
  --gold-light: #E2C97E;
  --gold-dark: #A07830;
  --bg: #ffffff;
  --bg2: #f8f8f8;
  --bg3: #f0f0f0;
  --card: #ffffff;
  --border: rgba(201, 168, 76, 0.3);
  --text: #111111;
  --text-muted: #555555;
  --white: #111111;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 3px;
}

/* =============================================
   NAVBAR
   ============================================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}

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

.brand-logo {
  display: block;
  width: auto;
  object-fit: contain;
}

.brand-logo-nav {
  height: 56px;
}

.brand-logo-footer {
  height: 72px;
  margin-bottom: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.25s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* ---- NAV SEARCH BAR ---- */
.nav-search {
  display: flex;
  align-items: center;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.nav-search:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.nav-search input {
  background: transparent;
  border: none;
  outline: none;
  padding: 8px 14px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--text);
  width: 180px;
  transition: width 0.3s ease;
}

.nav-search input::placeholder {
  color: var(--text-muted);
}

.nav-search input:focus {
  width: 220px;
}

.search-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  color: var(--text-muted);
  transition: color 0.2s;
}

.search-btn:hover {
  color: var(--gold);
}

.search-btn svg {
  width: 16px;
  height: 16px;
  display: block;
}

@media (max-width: 900px) {
  .nav-search {
    display: none;
  }
}

.btn-booknow {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-booknow:hover {
  background: var(--gold);
  color: #000;
}

/* hide book button on small screens */
@media (max-width: 768px) {
  .btn-booknow {
    display: none;
  }

  .brand-logo-nav {
    height: 44px;
  }

  .menu-toggle {
    display: flex;
    order: -1;
    margin-right: auto;
  }

  nav {
    padding: 18px 24px;
  }
}

/* ---- MOBILE TOGGLE ---- */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---- MOBILE NAV DROPDOWN ---- */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 50vw;
  height: 100vh;
  z-index: 2000;
  background: var(--bg2);
  border-right: 1px solid var(--border);
  flex-direction: column;
  padding: 80px 0 12px 0;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.4);
  transform: translateX(-100%);
  transition: transform 0.3s ease-in-out;
  display: flex !important;
}

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

.mobile-nav a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s;
  padding: 12px 24px;
  border-left: 3px solid transparent;
}

.mobile-nav a:hover {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  border-left-color: var(--gold);
}

/* ---- MOBILE SEARCH ---- */
.mobile-search {
  display: flex;
  align-items: center;
  margin: 0 20px 16px;
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
}

.mobile-search:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.mobile-search input {
  background: transparent;
  border: none;
  outline: none;
  padding: 9px 14px;
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  color: var(--text);
  width: 100%;
}

.mobile-search input::placeholder {
  color: var(--text-muted);
}

.mobile-search .search-btn {
  padding: 8px 12px;
  flex-shrink: 0;
}


/* =============================================
   SHARED COMPONENTS
   ============================================= */

/* ---- RIGHT‑SIDE STICKY ENQUIRY TABS ---- */
.side-buttons {
  position: fixed;
  top: 40%;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1001;
}

/* always visible sticky tabs */
.side-btn {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  background: var(--bg2);
  color: var(--white);
  padding: 12px 10px;
  border-radius: 6px 0 0 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
  transition: padding-right 0.3s, transform 0.3s;
}

.side-btn:hover {
  padding-right: 15px;
  transform: translateX(-5px);
  background: var(--gold);
  color: var(--bg);
}

.book-side-btn {
  background: var(--gold);
  color: var(--bg);
}

.book-side-btn:hover {
  background: var(--gold-light);
  color: #000;
}



/* ---- MODAL POPUP ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
}

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

.modal-content {
  background: var(--card);
  color: var(--text);
  border-radius: 8px;
  max-width: 700px;
  width: 100%;
  display: flex;
  overflow: hidden;
  position: relative;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
}

.modal-left {
  flex: 1;
  position: relative;
  min-width: 200px;
  background: var(--gold-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
}

.modal-left-text {
  position: relative;
  padding: 24px;
  text-align: center;
  z-index: 1;
}

.modal-left-text h3 {
  margin-bottom: 8px;
  font-size: 24px;
}

.modal-left-text p {
  font-size: 14px;
}

.modal-right {
  flex: 1;
  padding: 32px;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.modal-close:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.modal-content h2 {
  margin-bottom: 16px;
}

.modal-content form input,
.modal-content form select,
.modal-content form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg3);
  color: var(--text);
}

.modal-content form button {
  width: 100%;
}


/* Section header */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 15px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* Page hero (inner pages) */
.page-hero {
  height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: 74px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.22);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5vw, 72px);
  color: white;
  font-weight: 400;
}

.page-hero h1 span {
  color: var(--gold);
  font-style: italic;
}

.page-hero p {
  font-size: 16px;
  color: var(--text-muted);
  margin-top: 12px;
}

/* Buttons */
.btn-primary {
  padding: 14px 32px;
  background: var(--gold);
  color: #000;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
}

.btn-outline {
  padding: 14px 32px;
  background: transparent;
  color: var(--white);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-gold-border {
  padding: 16px 48px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 2px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  display: inline-block;
}

.btn-gold-border:hover {
  background: var(--gold);
  color: #000;
}

/* Fade-in animation */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s, transform 0.6s;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* =============================================
   VISIT US SECTION
   ============================================= */
.visit-us-section {
  padding: 80px 48px;
  background: var(--bg);
  position: relative;
}

.visit-container {
  max-width: 1000px;
  margin: 0 auto;
}

.visit-header {
  text-align: center;
  margin-bottom: 60px;
}

.visit-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: 5px;
  color: goldenrod;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
  position: relative;
  text-shadow: 0 2px 20px rgba(218, 165, 32, 0.3);
}

.visit-subtitle::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, goldenrod, transparent);
  margin: 10px auto 0;
  border-radius: 2px;
}

.visit-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--white);
}

.visit-header h2 span {
  color: #e74c3c;
  font-style: normal;
}

.visit-line {
  width: 40px;
  height: 2px;
  background-color: #e74c3c;
  margin: 16px auto 0;
}

.visit-block {
  display: flex;
  background: var(--card);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  margin-bottom: 40px;
  align-items: stretch;
}

.visit-info {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: rgba(231, 76, 60, 0.1);
  border-radius: 8px;
  color: #e74c3c;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

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

.info-text h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 6px;
}

.info-text p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.visit-socials {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.visit-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.visit-socials a:hover {
  background: #e74c3c;
  border-color: #e74c3c;
  color: white;
}

.visit-socials a svg {
  width: 18px;
  height: 18px;
}

.visit-map {
  flex: 1.2;
  min-height: 400px;
}

@media (max-width: 900px) {
  .visit-block {
    flex-direction: column;
  }

  .visit-map {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .visit-us-section {
    padding: 60px 24px;
  }

  .visit-info {
    padding: 30px 20px;
  }
}

/* =============================================
   FOLLOW US SECTION
   ============================================= */
.follow-us-section {
  padding: 40px;
  text-align: center;
  margin-bottom: 20px;
}

.follow-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--gold);
  margin-bottom: 24px;
}

.social-btns {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-btn {
  min-width: 160px;
  justify-content: center;
}

.social-btn.instagram:hover {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
}

.social-btn.facebook:hover {
  background: #1877F2;
  color: white;
}

.social-btn.twitter:hover {
  background: #1DA1F2;
  color: white;
}

.social-btn.youtube:hover {
  background: #FF0000;
  color: white;
}

.social-btn.linkedin:hover {
  background: #0A66C2;
  color: white;
}

@media (max-width: 768px) {
  .follow-us-section {
    padding: 30px 0;
  }
}

/* =============================================
   FOOTER
   ============================================= */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 60px 80px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 48px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 16px;
  max-width: 260px;
}

@media (max-width: 768px) {
  .brand-logo-footer {
    height: 56px;
  }
}

.footer-col h4 {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-social-icons {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.footer-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg2);
  color: var(--text-muted);
  transition: all 0.2s ease;
}

.footer-icon:hover {
  color: var(--gold);
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.footer-icon svg {
  width: 18px;
  height: 18px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-muted);
}

/* =============================================
   HOME — CAROUSEL SECTION
   ============================================= */
.carousel-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
  background: var(--bg);
}

.carousel-section .hero-carousel {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.carousel-section .hero-carousel .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.carousel-section .hero-carousel .slide.active {
  opacity: 1;
}

.carousel-section .hero-carousel .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.carousel-section .carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.carousel-section .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}

.carousel-section .dot.active {
  background: var(--gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.carousel-section .dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.carousel-prev,
.carousel-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.carousel-prev:hover,
.carousel-next:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.4);
}

.carousel-prev {
  left: 24px;
}

.carousel-next {
  right: 24px;
}

.carousel-prev svg,
.carousel-next svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 768px) {

  .carousel-prev,
  .carousel-next {
    width: 36px;
    height: 36px;
  }

  .carousel-prev {
    left: 12px;
  }

  .carousel-next {
    right: 12px;
  }
}

/* =============================================
   HOME — INTRO DESCRIPTION
   ============================================= */
.intro-description {
  padding: 40px 20px;
  background: var(--bg);
  text-align: center;
}

.intro-description .container {
  max-width: 1000px;
  margin: 0 auto;
}

.intro-description p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  max-width: 850px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .intro-description {
    padding: 30px 15px;
  }

  .intro-description p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* =============================================
   HOME — ABOUT US STATS
   ============================================= */
.about-us-stats {
  padding: 80px 48px;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-content {
  max-width: 1400px;
  margin: 0 auto;
}

.stats-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 60px;
  text-align: left;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: 12px;
  background: transparent;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: rgba(201, 168, 76, 0.08);
  transform: translateY(-4px);
  border: 1px solid var(--border);
}

.stat-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 24px;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-icon svg {
  width: 100%;
  height: 100%;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1;
}

.stat-label {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.5px;
}

@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .stats-content h2 {
    font-size: 36px;
  }

  .stat-number {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .about-us-stats {
    padding: 60px 24px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stats-content h2 {
    font-size: 28px;
    margin-bottom: 40px;
  }

  .stat-card {
    padding: 24px 16px;
  }

  .stat-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }

  .stat-number {
    font-size: 36px;
  }

  .stat-label {
    font-size: 14px;
  }
}

/* =============================================
   HOME — HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center / cover no-repeat;
  filter: brightness(0.35);
  transform: scale(1.05);
  animation: zoomOut 8s ease forwards;
}

@keyframes zoomOut {
  to {
    transform: scale(1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 40%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 680px;
  animation: fadeUp 1s ease 0.3s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 28px;
  background: rgba(201, 168, 76, 0.08);
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--gold);
  font-style: italic;
}

.hero p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 16px;
}

@media (max-width: 900px) {
  .carousel-section {
    height: 60vh;
  }

  .carousel-section .carousel-dots {
    bottom: 18px;
  }

  .hero {
    height: 70vh;
  }

  .hero-content {
    padding: 0 24px;
    max-width: 520px;
  }
}

/* =============================================
   HOME — WHY CHOOSE
   ============================================= */
.why-section {
  padding: 100px 80px;
  background: var(--bg);
}

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

.why-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 40px 28px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.35s;
}

.why-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  transform: translateY(-6px);
}

.why-card:hover::before {
  transform: scaleX(1);
}

.why-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 20px;
}

.why-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   HOME — SERVICES PREVIEW
   ============================================= */
.services-preview {
  padding: 80px 80px 100px;
  background: var(--bg2);
}

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

.service-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 280px;
  cursor: pointer;
  transition: transform 0.3s;
}

.service-card:hover {
  transform: scale(1.02);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.service-card:hover img {
  transform: scale(1.08);
}

.service-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 700;
  color: #000;
  background: var(--gold);
  padding: 6px 16px;
  display: inline-block;
  border-radius: 4px;
  margin-bottom: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

.service-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  /* Center the label horizontally */
  padding: 24px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
}

.service-card .price {
  font-size: 13px;
  color: gold;
  letter-spacing: 0.5px;
}

.view-all-wrap {
  text-align: center;
  margin-top: 48px;
}

/* =============================================
   HOME — ABOUT STRIP
   ============================================= */
.about-strip {
  padding: 80px;
  background: var(--bg3);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-strip-img {
  border-radius: 12px;
  overflow: hidden;
  height: 500px;
  position: relative;
  background: #ffffff;
}

.about-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-strip-img .n4n-carousel {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.about-strip-img .n4n-carousel .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.about-strip-img .n4n-carousel .slide.active {
  opacity: 1;
}

.about-strip-img .n4n-carousel img {
  object-fit: contain;
  background: #ffffff;
  padding: 0.35rem;
}

.about-strip-img .n4n-carousel .slide:not(:first-child) img {
  transform: scale(1.14);
}

.about-strip-img .n4n-carousel .carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.about-strip-img .n4n-carousel .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(17, 17, 17, 0.22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}

.about-strip-img .n4n-carousel .dot.active {
  background: var(--gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.about-strip-img .n4n-carousel .dot:hover {
  background: rgba(17, 17, 17, 0.45);
}

.about-strip-img .n4n-carousel .carousel-prev,
.about-strip-img .n4n-carousel .carousel-next {
  background: rgba(255, 255, 255, 0.9);
  color: var(--gold-dark);
  border-color: rgba(201, 168, 76, 0.45);
}

.about-strip-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  border-radius: 12px;
  transform: translate(12px, 12px);
  pointer-events: none;
}

.about-strip-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.n4n-heading {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
}

.n4n-title-copy {
  display: inline-block;
}

.n4n-title-badge {
  width: 70px;
  height: 70px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 50%;
  padding: 0.35rem;
  flex-shrink: 0;
  margin-top: 0.2em;
}

.about-strip-content h2 .n4n-product-word {
  color: var(--gold);
  font-style: italic;
}

.about-strip-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.stats-row {
  display: flex;
  gap: 40px;
}

.stat h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  color: var(--gold);
  font-weight: 600;
}

.stat p {
  font-size: 13px;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-top: 4px;
}

/* =============================================
   HOME — MEMBERSHIP PLAN
   ============================================= */
.membership-strip {
  padding: 80px;
  background: linear-gradient(135deg, var(--bg3) 0%, rgba(201, 168, 76, 0.05) 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.membership-strip-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.membership-strip-content h2 span {
  color: var(--gold);
  font-style: italic;
}

.membership-strip-content p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

.membership-strip-img {
  border-radius: 12px;
  overflow: hidden;
  height: 420px;
  position: relative;
}

.membership-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.membership-strip-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  border-radius: 12px;
  transform: translate(12px, 12px);
  pointer-events: none;
  z-index: 2;
}

.membership-carousel {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.membership-carousel .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.membership-carousel .slide.active {
  opacity: 1;
}

.membership-carousel .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.membership-carousel .carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 3;
}

.membership-carousel .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s;
}

.membership-carousel .dot.active {
  background: var(--gold);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.membership-carousel .dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

/* =============================================
   HOME — TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 100px 80px;
  background: var(--bg);
}

.testimonials-grid {
  display: flex;
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
  position: relative;
  padding: 10px 0;
}

.testimonials-track {
  display: flex;
  gap: 20px;
  animation: marquee 20s linear infinite;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.test-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 24px;
  transition: border-color 0.3s;
  flex: 0 0 300px;
  /* Fixed width for each card */
  white-space: normal;
  /* Allow text to wrap inside card */
}

.test-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
}

.stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.test-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.test-author {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
}


.modal-single {
  flex-direction: column !important;
  max-width: 500px !important;
  padding: 32px !important;
}

.modal-single h2 {
  margin-bottom: 12px;
}

.modal-single p {
  margin-bottom: 20px;
  color: var(--text-muted);
}

.modal-single form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.modal-single form input,
.modal-single form select,
.modal-single form textarea {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--bg3);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
}

.modal-single form select {
  cursor: pointer;
}

/* =============================================
   ABOUT PAGE
   ============================================= */
.about-main {
  padding: 100px 80px;
}

.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 100px;
}

.about-story img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

.about-story h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-story h2 span {
  color: var(--gold);
}

.about-story p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

.team-section {
  text-align: center;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s;
}

.team-card:hover {
  transform: translateY(-6px);
}

.team-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.team-card-body {
  padding: 24px;
}

.team-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 6px;
}

.team-card .role {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* =============================================
   SERVICES PAGE
   ============================================= */
.services-content-area {
  padding: 80px;
  background: var(--bg);
}

.service-tab-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 48px;
}

.tab-btn {
  padding: 12px 40px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s;
}

.tab-btn:first-child {
  border-radius: 4px 0 0 4px;
}

.tab-btn:last-child {
  border-radius: 0 4px 4px 0;
}

.tab-btn.active {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

.search-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 600px;
  margin: 0 auto 48px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 20px;
}

.search-bar input {
  background: none;
  border: none;
  outline: none;
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  width: 100%;
}

.search-bar input::placeholder {
  color: var(--text-muted);
}

.search-bar svg {
  color: var(--text-muted);
  flex-shrink: 0;
}

.services-accordion {
  max-width: 900px;
  margin: 0 auto;
}

.acc-item {
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
  background: var(--card);
}

.acc-header {
  display: flex;
  align-items: center;
  padding: 16px 24px;
  cursor: pointer;
  transition: background 0.2s;
}

.acc-header:hover {
  background: rgba(201, 168, 76, 0.06);
}

.acc-img {
  width: 70px;
  height: 70px;
  border-radius: 6px;
  overflow: hidden;
  margin-right: 20px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.acc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.acc-title {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
}

.acc-arrow {
  color: var(--gold);
  transition: transform 0.3s;
  margin-left: 15px;
}

.acc-item.open .acc-arrow {
  transform: rotate(180deg);
}

.acc-body {
  display: none;
  padding: 0 28px 24px;
}

.acc-item.open .acc-body {
  display: block;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 15px;
  color: var(--text-muted);
  border-bottom: 1px dashed var(--border);
  padding: 12px 0;
  /* Added vertical gap */
  transition: color 0.2s;
}

.service-time {
  font-size: 13px;
  color: var(--gold);
  font-weight: 500;
  margin-left: 20px;
}

.service-name:hover {
  color: var(--gold);
}

.service-list-nested {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nested-category h4 {
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 6px;
}

.nested-category p {
  font-size: 13px;
  color: var(--text-muted);
}

.nested-category ul {
  list-style: none;
  padding-left: 10px;
}

.nested-category ul li {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 6px;
  position: relative;
}

.nested-category ul li::before {
  content: '•';
  color: var(--gold);
  position: absolute;
  left: -12px;
}

.service-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.service-row-name {
  font-size: 14px;
  color: var(--text);
}

.service-row-price {
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
}

/* Service Grid for Page */
.services-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.services-page-grid .service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  height: auto;
  /* Allow content to dictate height */
}

.services-page-grid .service-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold);
}

.services-page-grid .service-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.services-page-grid .service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.services-page-grid .service-card:hover .service-card-img img {
  transform: scale(1.1);
}

.services-page-grid .service-card-content {
  padding: 24px;
  text-align: center;
}

.services-page-grid .service-card-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 12px;
}

.services-page-grid .service-card-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.gallery-area {
  padding: 80px;
  background: var(--bg);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 24px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Jost', sans-serif;
  font-size: 13px;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  color: #000;
  border-color: var(--gold);
}

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

.gallery-item {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 1;
}

.gallery-item:nth-child(4n+1) {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

/* =============================================
   CONTACT / BOOKING PAGE
   ============================================= */
.contact-area {
  padding: 80px;
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}

.contact-info h2 span {
  color: var(--gold);
}

.contact-info>p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}

.contact-detail h4 {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Booking form */
.booking-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 48px;
}

.booking-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--white);
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.form-group label span {
  color: var(--gold);
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg2);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  transition: border-color 0.2s;
  outline: none;
}

.form-input:focus {
  border-color: var(--gold);
}

.form-input::placeholder {
  color: var(--text-muted);
}

select.form-input {
  cursor: pointer;
}

select.form-input option {
  background: var(--bg2);
}

.input-icon-wrap {
  position: relative;
}

.input-icon-wrap .input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
}

.input-icon-wrap .form-input {
  padding-left: 42px;
}

.form-submit {
  width: 100%;
  padding: 16px;
  background: var(--gold);
  color: #000;
  font-family: 'Jost', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s;
  margin-top: 8px;
}

.form-submit:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.success-msg {
  display: none;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--gold);
  border-radius: 8px;
  padding: 16px 20px;
  color: var(--gold);
  font-size: 14px;
  text-align: center;
  margin-top: 16px;
}

/* =============================================
   FRANCHISE PAGE
   ============================================= */
.franchise-hero .hero-content-overlay {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.franchise-hero p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--white);
  padding: 0 20px;
}

.franchise-hero h1 {
  font-size: 64px;
}

.elevate-section {
  padding: 80px 24px;
  background: var(--bg);
  text-align: center;
}

.elevate-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.elevate-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  margin-bottom: 24px;
  color: var(--text);
  font-weight: 500;
}

.elevate-section p {
  font-size: 16px;
  color: black;
  line-height: 1.8;
}

.why-franchise-section {
  padding: 80px 24px;
  background: var(--bg2);
}

.why-franchise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.why-franchise-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  margin-bottom: 40px;
  color: var(--text);
}

.franchise-list {
  list-style: none;
}

.franchise-list li {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}

.franchise-list .icon {
  color: #cc0000;
  font-size: 24px;
  line-height: 1.2;
  font-family: 'Georgia', serif;
}

.franchise-list h3 {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}

.franchise-list p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

.why-franchise-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 8px;
}

.support-offer-section {
  padding: 80px 24px;
  background: var(--bg);
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.enquiry-box {
  background: var(--bg2);
  padding: 48px 32px;
  text-align: center;
  border-radius: 8px;
}

.enquiry-box h3 {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 24px;
  color: var(--text);
}

.btn-dark {
  background: #111;
  color: #fff;
  border-radius: 4px;
  padding: 14px 32px;
}

.btn-dark:hover {
  background: #000;
  color: #fff;
  box-shadow: none;
  transform: none;
}

.support-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  margin-bottom: 40px;
  color: var(--text);
}

.support-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.support-item {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
  align-items: flex-start;
  line-height: 1.5;
}

.support-item .icon {
  color: #cc0000;
  font-size: 20px;
  line-height: 1.2;
  font-family: 'Georgia', serif;
}

/* =============================================
   RESPONSIVE — TABLET (max 1100px)
   ============================================= */
@media (max-width: 1100px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (max 900px)
   ============================================= */
@media (max-width: 900px) {

  /* ---- NAVBAR ---- */
  nav {
    padding: 16px 20px;
    position: fixed;
  }

  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
    order: -1;
    margin-right: auto;
  }

  .btn-booknow {
    display: none;
  }

  /* ---- MOBILE NAV DRAWER ---- */
  .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 75vw;
    max-width: 320px;
    height: 100vh;
    z-index: 2000;
    background: var(--bg2);
    border-right: 1px solid var(--border);
    flex-direction: column;
    padding: 80px 0 24px;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex !important;
    overflow-y: auto;
  }

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

  .mobile-nav a {
    font-size: 15px;
    padding: 14px 24px;
    color: var(--text);
    border-left: 3px solid transparent;
  }

  .mobile-nav a:hover {
    color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
    border-left-color: var(--gold);
  }

  /* ---- SECTIONS PADDING ---- */
  .why-section,
  .services-preview,
  .testimonials,
  .about-us-stats,
  .locator-section,
  .instagram-section,
  .about-main,
  .services-content-area,
  .gallery-area {
    padding: 56px 20px;
  }

  .about-strip,
  .membership-strip {
    padding: 56px 20px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    width: 100%;
  }

  .stat {
    text-align: center;
  }

  .contact-area {
    padding: 56px 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .booking-form {
    order: 1;
  }

  .contact-info {
    order: 2;
  }

  /* ---- PAGE HERO (Inner Pages) ---- */
  .page-hero {
    height: 30vh;
    min-height: 200px;
    margin-top: 60px;
  }

  .page-hero h1 {
    font-size: clamp(32px, 8vw, 42px);
  }

  .page-hero p {
    font-size: 14px;
    margin-top: 8px;
  }

  /* ---- HERO CAROUSEL ---- */
  .carousel-section {
    height: 40vh;
    min-height: 240px;
  }

  .carousel-section .carousel-dots {
    bottom: 16px;
  }

  /* ---- SECTION HEADERS ---- */
  .section-header {
    margin-bottom: 40px;
  }

  .section-header h2 {
    font-size: clamp(28px, 7vw, 40px);
  }

  /* ---- WHY CHOOSE ---- */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .why-card {
    padding: 28px 20px;
  }

  /* ---- SERVICES CARDS ---- */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    height: 220px;
  }

  /* ---- ABOUT STRIP ---- */
  .about-strip-img {
    height: 260px;
  }

  .about-strip-content h2 {
    font-size: 32px;
  }

  .stats-row {
    gap: 20px;
    flex-wrap: wrap;
  }

  .stat h4 {
    font-size: 30px;
  }

  /* ---- MEMBERSHIP ---- */
  .membership-strip-img {
    height: 260px;
  }

  .membership-strip-content h2 {
    font-size: 32px;
  }

  /* ---- TESTIMONIALS ---- */
  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* ---- STATS ---- */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-number {
    font-size: 36px;
  }

  /* ---- FOOTER ---- */
  footer {
    padding: 48px 20px 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  /* ---- GALLERY ---- */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-item:nth-child(4n+1) {
    grid-column: span 1;
    aspect-ratio: 1;
  }

  /* ---- CONTACT / FORM ---- */
  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-form {
    padding: 24px 16px;
  }

  /* ---- TEAM ---- */
  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* ---- ABOUT PAGE ---- */
  .about-story {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 60px;
  }

  .about-story img {
    height: 260px;
  }

  .about-story h2 {
    font-size: 32px;
  }

  /* ---- SERVICES PAGE ---- */
  .service-tab-bar {
    flex-wrap: wrap;
    gap: 8px;
  }

  .tab-btn {
    padding: 10px 20px;
    font-size: 13px;
    flex: 1 1 auto;
    text-align: center;
    border-radius: 4px !important;
  }

  /* ---- FRANCHISE PAGE ---- */
  .why-franchise-grid,
  .support-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .support-list-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .why-franchise-img img {
    height: 280px;
  }

  .franchise-hero h1 {
    font-size: 40px;
  }

  /* ---- MODAL ---- */
  .modal-content {
    flex-direction: column;
    max-width: 95vw;
  }

  .modal-left {
    min-width: unset;
    height: 120px;
  }

  .modal-right {
    padding: 20px;
  }

  .modal-single {
    padding: 24px 16px !important;
  }
}

/* =============================================
   RESPONSIVE — SMALL MOBILE (max 480px)
   ============================================= */
@media (max-width: 480px) {
  .carousel-section {
    height: 50vh;
    min-height: 240px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .stat-card {
    padding: 16px 10px;
  }

  .stat-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 12px;
  }

  .stat-number {
    font-size: 24px;
  }

  .stat-label {
    font-size: 13px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item:nth-child(4n+1) {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }

  .about-strip-img,
  .membership-strip-img {
    height: 220px;
  }

  .section-header h2 {
    font-size: clamp(26px, 8vw, 36px);
  }

  .why-card {
    padding: 24px 16px;
  }

  .service-card {
    height: 200px;
  }

  .stats-row {
    flex-direction: column;
    gap: 16px;
  }

  .locator-grid {
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-gold-border {
    padding: 12px 24px;
    font-size: 13px;
  }

  .mobile-nav {
    width: 85vw;
  }
}

/* =============================================
   FRANCHISE PAGE (tablet)
   ============================================= */
@media (max-width: 900px) {

  .why-franchise-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .support-list-grid {
    grid-template-columns: 1fr;
  }
}

/* ---- FRANCHISE DETAILED CONTENT ---- */
.franchise-detailed-content {
  text-align: left;
  max-width: 900px;
  margin: 0 auto;
  color: var(--text);
  line-height: 1.8;
}

.franchise-detailed-content p {
  margin-bottom: 24px;
  font-size: 16px;
  color: var(--text-muted);
  font-weight: bold;
}

.franchise-detailed-content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--gold);
  margin-top: 48px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

.franchise-detailed-content h4 {
  font-size: 18px;
  color: var(--white);
  margin-top: 32px;
  margin-bottom: 16px;
  font-weight: 600;
}

.franchise-detailed-content ul {
  list-style: none;
  margin-bottom: 32px;
  padding-left: 0;
  font-weight: bold;
}

.franchise-detailed-content ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text-muted);
  font-weight: bold;
}

.franchise-detailed-content ul li::before {
  content: '»';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: bold;
  font-size: 18px;
  line-height: 1.5;
}

/* =============================================
   SALON LOCATOR PAGE
   ============================================= */
.locator-hero {
  height: 60vh;
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('salon-interior.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.locator-hero-inner {
  max-width: 800px;
}

.locator-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.locator-hero p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.locator-hero p span {
  color: var(--gold);
  font-weight: 600;
}

.city-selection {
  padding: 60px 0;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
}

.city-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.city-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 100px;
}

.city-img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 12px;
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.city-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
  transition: all 0.3s ease;
}

.city-item span {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}

.city-item.active .city-img,
.city-item:hover .city-img {
  border-color: var(--gold);
  transform: translateY(-5px);
}

.city-item.active .city-img img,
.city-item:hover .city-img img {
  filter: grayscale(0%);
}

.city-item.active span {
  color: var(--gold);
}

.location-details-section {
  padding: 80px 60px;
  background: var(--bg);
}

.city-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  color: var(--white);
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 15px;
}

.locator-main-container {
  display: grid;
  grid-template-columns: 350px 1fr;
  gap: 40px;
  align-items: start;
}

.branch-sidebar {
  background: var(--card);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.branch-link {
  padding: 20px 24px;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s ease;
  border-left: 4px solid transparent;
}

.branch-link:last-child {
  border-bottom: none;
}

.branch-link:hover {
  background: rgba(201, 168, 76, 0.05);
}

.branch-link.active {
  background: #8B0000;
  /* Dark red background for active branch as in ref */
  color: white;
  border-left-color: var(--gold);
}

.branch-detail-box {
  background: white;
  /* White background for details as in ref */
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.branch-detail-box h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: black;
  margin-bottom: 30px;
}

.detail-row {
  display: flex;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

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

.detail-icon {
  width: 24px;
  height: 24px;
  color: black;
  flex-shrink: 0;
}

.detail-text p,
.detail-text a {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  color: #444;
  text-decoration: none;
  line-height: 1.5;
}

.clickable-row a {
  color: #8B0000;
  font-weight: 500;
}

.clickable-row a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .locator-main-container {
    grid-template-columns: 1fr;
  }

  .locator-hero h1 {
    font-size: 48px;
  }

  .city-grid {
    justify-content: flex-start;
    padding: 0 20px;
  }

  .branch-detail-box {
    padding: 24px;
  }
}
