/* =============================================================
   OLA HAIR BRAIDING — Main Stylesheet
   Design: Dark (#0a0a0a) + Electric Pink (#e91e63) + Gold (#d4af37)
   Fonts: Playfair Display (headings) + Montserrat (body)
   ============================================================= */

/* ---- CSS CUSTOM PROPERTIES ---- */
:root {
  --pink: #e91e63;
  --pink-light: #f06292;
  --pink-dark: #ad1457;
  --pink-glow: rgba(233, 30, 99, 0.35);
  --gold: #d4af37;
  --dark: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #222222;
  --dark-card: #141414;
  --light: #f8f4f1;
  --light-2: #ede8e4;
  --white: #ffffff;
  --text-muted: #888888;
  --text-body: #cccccc;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Montserrat', 'Helvetica Neue', sans-serif;
  --font-script: 'Dancing Script', cursive;

  --nav-height: 80px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 12px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.6);
  --shadow-pink: 0 8px 30px rgba(233, 30, 99, 0.3);
  --shadow-pink-lg: 0 20px 60px rgba(233, 30, 99, 0.4);

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s ease;
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  font-size: 16px;
  overflow-x: hidden; /* Prevent horizontal wiggle */
}

body {
  font-family: var(--font-sans);
  background-color: var(--dark);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
}

/* ---- CURSOR GLOW ---- */
.cursor-glow {
  position: fixed;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(233, 30, 99, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  will-change: transform;
}

/* ---- PRELOADER ---- */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-inner {
  text-align: center;
}

.preloader-logo {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--pink), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0.2em;
  margin-bottom: 0.5rem;
}

.preloader-text {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--dark-4);
  border-radius: var(--radius-full);
  margin: 1.5rem auto 0;
  overflow: hidden;
}

.preloader-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--pink), var(--gold));
  border-radius: var(--radius-full);
  animation: preloaderFill 1.8s ease forwards;
}

@keyframes preloaderFill {
  to {
    width: 100%;
  }
}

/* ---- HEADER / NAV ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  height: var(--nav-height);
  transition: all var(--transition);
}

.site-header.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(233, 30, 99, 0.2), var(--shadow-md);
  height: 68px;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 5vw, 3rem);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform var(--transition);
}

.nav-logo img {
  height: 55px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: all var(--transition);
  display: block;
}

.site-header.scrolled .nav-logo img {
  height: 42px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  transition: color var(--transition-fast);
  padding: 4px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--pink);
  transition: width var(--transition);
}

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

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  background: transparent;
  border: 1.5px solid var(--pink);
  color: var(--pink) !important;
  padding: 0.5rem 1.3rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.nav-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--pink);
  transform: translateY(100%);
  transition: transform var(--transition);
  z-index: -1;
}

.nav-cta:hover {
  color: var(--white) !important;
  box-shadow: var(--shadow-pink);
}

.nav-cta:hover::before {
  transform: translateY(0);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  z-index: 10;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: var(--radius-full);
  transition: all var(--transition);
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- SEARCH BAR ---- */
.search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--white);
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}

.search-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--pink);
}

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.search-form-wrap {
  width: 100%;
  max-width: 600px;
  transform: translateY(30px);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.open .search-form-wrap {
  transform: translateY(0);
}

.search-input-group {
  position: relative;
  margin-bottom: 2rem;
}

.search-input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  padding: 1.5rem 0;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 3rem);
  color: var(--white);
  outline: none;
  transition: border-color 0.3s;
}

.search-input:focus {
  border-color: var(--pink);
}

.search-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--white);
  transition: all 0.2s;
}

.search-close:hover {
  background: var(--pink);
  transform: rotate(90deg);
}

@media (max-width: 600px) {
  body {
    padding-bottom: 70px;
  }
}

/* ---- MOBILE BOTTOM NAV ---- */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 600px) {
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    height: 70px;
    border-top: 1px solid rgba(233, 30, 99, 0.2);
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.5);
  }

  .mb-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    gap: 4px;
    transition: all 0.2s;
  }

  .mb-nav-item.active,
  .mb-nav-item:hover {
    color: var(--pink);
  }

  .mb-nav-item svg {
    width: 22px;
    height: 22px;
  }

  .mb-nav-item-book {
    position: relative;
    top: -15px;
    height: 85px;
  }

  .mb-book-circle {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(233, 30, 99, 0.5);
    border: 4px solid var(--dark);
    margin-bottom: 2px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .mb-nav-item:hover .mb-book-circle {
    transform: scale(1.1);
  }
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: none;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::after {
  opacity: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(233, 30, 99, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-pink-lg);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

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

.btn-white {
  background: var(--white);
  color: var(--dark);
}

.btn-white:hover {
  background: var(--light-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.78rem;
}

/* ---- SECTION UTILITIES ---- */
.section-dark {
  background-color: var(--dark);
}

.section-light {
  background-color: var(--light);
  color: var(--dark-2);
}

.section-light .section-title,
.section-light h2,
.section-light h3 {
  color: var(--dark-2);
}

.section-light .section-sub,
.section-light p {
  color: #555;
}

section {
  padding: clamp(60px, 10vw, 120px) 0;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink);
  background: rgba(233, 30, 99, 0.1);
  border: 1px solid rgba(233, 30, 99, 0.25);
  border-radius: var(--radius-full);
  padding: 0.35rem 1rem;
  margin-bottom: 1rem;
}

.section-tag.light {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.25);
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--pink);
}

.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

/* ---- HERO SECTION ---- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(10, 10, 10, 0.55) 0%,
      rgba(10, 10, 10, 0.3) 40%,
      rgba(10, 10, 10, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding: 0 clamp(1rem, 5vw, 3rem);
}

.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pink-light);
  background: rgba(233, 30, 99, 0.12);
  border: 1px solid rgba(233, 30, 99, 0.3);
  border-radius: var(--radius-full);
  padding: 0.4rem 1.2rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
}

.title-line.accent {
  color: var(--pink);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-dots {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.3);
  border: none;
  transition: all var(--transition);
  cursor: pointer;
}

.hero-dot.active {
  background: var(--pink);
  width: 24px;
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-full);
  animation: scrollWheel 1.8s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  100% {
    transform: translateY(10px);
    opacity: 0;
  }
}

/* ---- STYLES CAROUSEL SECTION ---- */
.styles-section {
  padding: 0;
  background: var(--dark-2);
  overflow: hidden;
  border-top: 1px solid rgba(233, 30, 99, 0.15);
  border-bottom: 1px solid rgba(233, 30, 99, 0.15);
}

.styles-track-wrapper {
  overflow: hidden;
  cursor: grab;
}

.styles-track-wrapper:active {
  cursor: grabbing;
}

.styles-track {
  display: flex;
  gap: 1.5rem;
  padding: 2.5rem 0;
  animation: infiniteScroll 30s linear infinite;
  will-change: transform;
}

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

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

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

.style-card {
  flex: 0 0 260px;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px dashed rgba(233, 30, 99, 0.4);
  transition: all var(--transition);
  cursor: pointer;
}

.style-card:hover {
  border-color: var(--pink);
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-pink-lg);
}

.style-card-img {
  aspect-ratio: 1/1;
  overflow: hidden;
}

.style-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.style-card-label {
  padding: 0.8rem 1rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--dark-card);
}

/* ---- ABOUT / WHY CHOOSE US ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px dashed rgba(233, 30, 99, 0.4);
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  object-fit: cover;
  height: 500px;
  transition: transform 0.6s ease;
}

.about-img-main:hover img {
  transform: scale(1.03);
}

.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px solid var(--pink);
  box-shadow: var(--shadow-pink-lg);
}

.about-img-accent img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(233, 30, 99, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.badge-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.badge-txt {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
}

.about-content .section-tag {
  margin-bottom: 1.2rem;
}

.about-content .section-title {
  margin-bottom: 1.5rem;
}

.about-text {
  color: var(--text-body);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about-features {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  color: var(--pink);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.about-feature strong {
  display: block;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 2px;
}

.about-feature p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- SERVICES SECTION ---- */
.section-light .section-tag {
  background: rgba(233, 30, 99, 0.08);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
  margin-bottom: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px dashed rgba(233, 30, 99, 0.35);
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.service-card:hover {
  border-color: var(--pink);
  transform: translateY(-8px);
  box-shadow: var(--shadow-pink), 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}

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

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

.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(233, 30, 99, 0.9) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card-overlay span {
  color: var(--white);
  font-weight: 700;
  font-size: 1.1rem;
}

.service-card:hover .service-card-overlay {
  opacity: 1;
}

.service-card-body {
  padding: 1.2rem;
}

.service-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-2);
  margin-bottom: 0.4rem;
}

.service-card-body p {
  font-size: 0.82rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 0.8rem;
}

.service-price {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.service-price strong {
  color: var(--pink);
  font-size: 1rem;
}

/* ---- PRICING TABLE ---- */
.pricing-table {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(233, 30, 99, 0.15);
}

.pricing-header {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  padding: 1.5rem 2rem;
}

.pricing-header h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}

.pricing-grid {
  padding: 1.5rem 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.pricing-item {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding: 1rem 1rem 1rem 0;
  border-bottom: 1px dashed rgba(233, 30, 99, 0.2);
}

.pricing-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark-2);
  white-space: nowrap;
  flex-shrink: 0;
}

.pricing-dots {
  flex: 1;
  border-bottom: 2px dotted rgba(233, 30, 99, 0.3);
  min-width: 20px;
  margin-bottom: 3px;
}

.pricing-val {
  font-size: 0.8rem;
  color: #666;
  flex-shrink: 0;
  max-width: 200px;
}

.pricing-cta {
  padding: 1.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(233, 30, 99, 0.1);
}

/* ---- GALLERY SECTION ---- */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.gallery-filter {
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-fast);
  cursor: pointer;
}

.gallery-filter:hover {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.2);
}

.gallery-filter.active {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
  box-shadow: var(--shadow-pink);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.5rem, 1.5vw, 1rem);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 2px dashed rgba(233, 30, 99, 0.3);
  aspect-ratio: 1/1;
  cursor: pointer;
  transition: all var(--transition);
}

.gallery-item:nth-child(3n) {
  grid-row: span 1;
}

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

.gallery-item:hover {
  border-color: var(--pink);
  box-shadow: var(--shadow-pink);
  z-index: 1;
}

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

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item-overlay span {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.gallery-item.hidden {
  display: none;
}

/* ---- CTA SECTION ---- */
.cta-section {
  position: relative;
  padding: clamp(80px, 12vw, 160px) 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.cta-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 0.8s ease;
}

.cta-section:hover .cta-bg {
  transform: scale(1);
}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(173, 20, 87, 0.88) 0%, rgba(233, 30, 99, 0.75) 100%);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 clamp(1rem, 5vw, 3rem);
}

.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-title em {
  font-style: italic;
  color: var(--gold);
}

.cta-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
}

/* ---- TESTIMONIALS (Google Reviews Style) ---- */
.testimonials-section {
  padding-bottom: clamp(60px, 10vw, 100px);
  background: var(--dark);
  position: relative;
}

.review-header-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.review-header-line {
  flex: 1;
  height: 2px;
  background: var(--pink);
  max-width: 60px;
}

.review-header-wrap h2 {
  font-family: var(--font-sans);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--pink);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin: 0;
}

.google-rating-summary {
  text-align: center;
  margin-bottom: 4rem;
}

.summary-excellent {
  font-family: var(--font-sans);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.summary-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  color: #fbbc04; /* Google Star Color */
  margin-bottom: 0.4rem;
}

.summary-stars svg {
  width: 32px;
  height: 32px;
}

.summary-count {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.8rem;
}

.google-logo-main {
  height: 32px;
  width: auto;
  margin: 0 auto;
}

.testimonials-track-container {
  overflow: hidden; /* Change to hidden for auto-scroll */
  padding: 1rem 0 3rem;
  width: 100%;
}

.testimonials-grid {
  display: flex;
  gap: 1.5rem;
  padding: 0;
  width: max-content;
  animation: scrollTestimonials 50s linear infinite;
  will-change: transform;
}

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

@keyframes scrollTestimonials {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Move half the width (duplicated set) */
  }
}

.testimonial-card {
  background: #ffffff;
  width: 360px; /* Fixed width for consistent animation */
  flex-shrink: 0;
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s ease;
}

@media (max-width: 600px) {
  .testimonial-card {
    width: 300px;
  }
  
  .review-header-wrap h2 {
    font-size: 1.4rem;
  }
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.card-user {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.user-info strong {
  display: block;
  color: #333333;
  font-size: 0.95rem;
  font-weight: 700;
}

.user-info span {
  display: block;
  font-size: 0.75rem;
  color: #777777;
}

.google-g-icon {
  width: 20px;
  height: 20px;
}

.card-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
}

.card-stars {
  display: flex;
  gap: 2px;
  color: #fbbc04;
}

.card-stars svg {
  width: 16px;
  height: 16px;
}

.verified-icon {
  color: #1a73e8; /* Google Verified Blue */
  width: 14px;
  height: 14px;
}

.testimonial-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #444444;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.read-more {
  font-size: 0.8rem;
  color: #777777;
  text-decoration: none;
  font-weight: 600;
}

.read-more:hover {
  text-decoration: underline;
}

.reviews-footer {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

@media (max-width: 1200px) {
  .testimonials-grid {
    justify-content: flex-start;
  }
}

/* ---- CONTACT SECTION ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.contact-info .section-title {
  color: var(--dark-2);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  color: var(--dark-2);
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-item span {
  font-size: 0.9rem;
  color: #666;
}

.contact-social {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.social-link {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--pink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--pink-dark);
  transform: translateY(-3px);
  box-shadow: var(--shadow-pink);
}

.contact-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 3px dashed rgba(233, 30, 99, 0.4);
  box-shadow: var(--shadow-lg);
}

.contact-image img {
  width: 100%;
  object-fit: cover;
  display: block;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(233, 30, 99, 0.2);
}

.footer-top {
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.footer-logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: var(--font-script);
  font-size: 1.1rem;
  color: var(--pink-light);
  margin-bottom: 0.8rem;
}

.footer-about {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(233, 30, 99, 0.12);
  border: 1px solid rgba(233, 30, 99, 0.2);
  color: var(--pink-light);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.footer-social-link:hover {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-pink);
}

.footer-links-col h4,
.footer-booking h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(233, 30, 99, 0.2);
}

.footer-links-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links-col a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links-col a::before {
  content: '→';
  color: var(--pink);
  font-size: 0.7rem;
  opacity: 0;
  transition: all var(--transition-fast);
  transform: translateX(-5px);
}

.footer-links-col a:hover {
  color: var(--white);
}

.footer-links-col a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.footer-booking p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1.5rem 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.heart {
  color: var(--pink);
  display: inline-block;
  animation: heartbeat 1.2s ease-in-out infinite;
}

@keyframes heartbeat {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }
}

/* ---- ICON UTILITIES ---- */
.feature-icon,
.contact-icon,
.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon svg,
.contact-icon svg,
.contact-card-icon svg {
  width: 100%;
  height: 100%;
  max-width: 24px;
  max-height: 24px;
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.testimonial-stars svg {
  width: 16px;
  height: 16px;
}


/* ---- SCROLL TO TOP ---- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  background: var(--pink);
  color: var(--white);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-pink);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  z-index: 500;
  border: none;
  cursor: pointer;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--pink-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-pink-lg);
}

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

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

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

@media (max-width: 900px) {

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .about-images {
    order: -1;
  }

  .about-img-accent {
    bottom: -15px;
    right: 10px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

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

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

@media (max-width: 991px) {
  .nav-links {
    position: fixed;
    inset: 0 0 0 25%;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2rem;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2500;
    border-left: 1px solid rgba(233, 30, 99, 0.15);
  }

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

  .nav-link,
  .nav-cta {
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
  }

  .nav-toggle {
    display: flex;
    z-index: 1100;
    cursor: pointer;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: translateX(-15px);
  }

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-bottom .container {
    justify-content: center;
    text-align: center;
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 4.5rem);
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
}