/* =========================================================
   CHM Beauty - Clean Final CSS
   ========================================================= */

/* ------------------------------
   01. Variables & Reset
------------------------------ */

:root {
  --color-bg: #f8f3ef;
  --color-surface: #fffdfb;
  --color-soft: #fffaf6;
  --color-soft-2: #fff7f1;
  --color-white: #ffffff;

  --color-text: #1d1d1d;
  --color-text-soft: #444444;
  --color-muted: #555555;

  --color-primary: #b70e17;
  --color-primary-dark: #711e2a;
  --color-accent: #ff6f23;
  --color-accent-soft: #c84426;

  --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  --gradient-soft:
    radial-gradient(circle at 78% 28%, rgba(255, 111, 35, 0.18), transparent 34%),
    radial-gradient(circle at 90% 45%, rgba(183, 14, 23, 0.12), transparent 30%),
    linear-gradient(135deg, #fffdfb, #fff7f1);

  --shadow-soft: 0 20px 50px rgba(130, 52, 24, 0.08);
  --shadow-medium: 0 28px 80px rgba(130, 52, 24, 0.10);
  --shadow-strong: 0 30px 90px rgba(130, 52, 24, 0.12);

  --radius-page: 34px;
  --radius-section: 38px;
  --radius-card: 28px;
  --radius-pill: 999px;

  --container-xl: min(1200px, calc(100% - 40px));
  --container-lg: min(1180px, calc(100% - 40px));
  --container-md: min(1000px, calc(100% - 40px));
}

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

html,
body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Times New Roman", Times, serif;
  background: var(--color-bg);
  color: var(--color-text);
}

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

a {
  color: inherit;
}

/* ------------------------------
   02. Global Layout
------------------------------ */

.page-wrapper {
  width: min(1440px, calc(100% - 40px));
  margin: 24px auto;
  border-radius: var(--radius-page);
  overflow: hidden;
  background: var(--gradient-soft);
  box-shadow: var(--shadow-strong);
}

.section-container {
  width: var(--container-lg);
  margin: 0 auto;
  padding: 64px;
  border-radius: var(--radius-section);
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 111, 35, 0.10), transparent 28%),
    linear-gradient(135deg, #fffdfb, #fff6f0);
  box-shadow: var(--shadow-medium);
}

.section-heading {
  width: 100%;
  max-width: 100%;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading span,
.small-label {
  display: inline-block;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: rgba(183, 14, 23, 0.07);
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
}

.section-heading h2 {
  margin: 18px 0;
  color: #1f1f1f;
  font-size: clamp(36px, 4vw, 58px);
  text-align: center;
  white-space: nowrap;
}

.section-heading p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--color-muted);
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}

.section-divider {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin: 10px 0;
}

.section-divider::before,
.section-divider::after {
  content: "";
  width: 90px;
  height: 1px;
  background: #e8c8bb;
}

.section-divider span {
  color: var(--color-primary);
  font-size: 18px;
}

/* ------------------------------
   03. Buttons
------------------------------ */

.primary-btn,
.secondary-btn,
.header-btn,
.booking-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  transition: 0.35s ease;
  white-space: nowrap;
}

.primary-btn,
.secondary-btn {
  padding: 20px 34px;
  border-radius: var(--radius-pill);
  font-size: 16px;
}

.primary-btn,
.header-btn {
  color: var(--color-white);
  background: var(--gradient-primary);
  box-shadow: 0 18px 36px rgba(199, 44, 22, 0.28);
}

.secondary-btn {
  color: #9f0d16;
  border: 1px solid rgba(159, 13, 22, 0.45);
  background: rgba(255, 255, 255, 0.6);
}

.primary-btn:hover,
.secondary-btn:hover,
.header-btn:hover,
.booking-btn:hover {
  transform: translateY(-4px);
}

/* ------------------------------
   04. Header & Navbar
------------------------------ */

.site-header {
  position: relative;
  z-index: 50;
  width: 100%;
  min-height: 130px;
  display: grid;
  grid-template-columns: 440px 1fr auto;
  align-items: center;
  gap: 42px;
  padding: 22px 70px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
}

.logo img,
.header-logo img {
  width: 95px;
  max-width: 95px;
  height: auto;
  object-fit: contain;
}

.logo h1,
.logo h2 {
  margin: 0;
  color: #9f0d16;
  font-family: Georgia, serif;
  font-size: 40px;
  line-height: 0.95;
}

.logo span {
  display: block;
  margin-top: 8px;
  color: #222;
  font-size: 14px;
  letter-spacing: 2px;
}

.main-nav {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(183, 14, 23, 0.12);
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(130, 52, 24, 0.08);
}

.main-nav a {
  position: relative;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  color: #222;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: 0.35s ease;
}

.main-nav a:hover {
  color: var(--color-primary);
  background: rgba(255, 111, 35, 0.10);
  transform: translateY(-2px);
}

.main-nav a.active {
  color: var(--color-white);
  background: var(--gradient-primary);
  box-shadow: 0 10px 24px rgba(183, 14, 23, 0.25);
}

.header-btn {
  padding: 18px 28px;
  border-radius: 28px;
  font-size: 15px;
}

/* Optional class used by JS on scroll */
.header-scrolled {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* ------------------------------
   05. Hero
------------------------------ */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 520px;
  align-items: center;
  gap: 70px;
  min-height: 580px;
  padding: 65px 90px 85px;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 620px;
}

.hero-content h2 {
  color: #202020;
  font-size: clamp(48px, 5vw, 64px);
  font-weight: 500;
  line-height: 1.08;
}

.hero-content h2 span {
  color: var(--color-primary);
}

.hero-content p {
  max-width: 570px;
  color: #2f2f2f;
  font-size: 21px;
  line-height: 1.8;
}

.title-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 22px;
}

.title-line span {
  width: 64px;
  height: 2px;
  background: var(--color-accent-soft);
}

.title-line i {
  width: 9px;
  height: 9px;
  background: var(--color-accent-soft);
  transform: rotate(45deg);
}

.hero-actions {
  display: flex;
  gap: 22px;
  margin-top: 38px;
}

.hero-visual,
.hero-image {
  justify-self: center;
}

.hero-image {
  width: 700px;
  height: 560px;
  overflow: visible;
}

.hero-image img {
  width: 650px;
  height: auto;
  border-radius: 0;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  animation: none;
  transform: none;
  transition: none;
}

.glow-ring {
  display: none;
}

/* ------------------------------
   06. Services
------------------------------ */

.services {
  padding: 110px 0;
  background: var(--color-white);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.service-card {
  position: relative;
  width: 320px;
  padding: 18px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: var(--color-white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  transition: 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-image {
  height: 220px;
  margin-bottom: 24px;
  overflow: hidden;
  border-radius: 22px;
}

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

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

.service-number {
  display: inline-flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--gradient-primary);
  font-weight: 700;
}

.service-card h3 {
  margin-bottom: 16px;
  color: #1f1f1f;
  font-size: 22px;
}

.service-card p {
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}

.service-card a {
  display: inline-block;
  margin-top: 14px;
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
}

/* ------------------------------
   07. About
------------------------------ */

.about {
  padding: 110px 0;
  background: var(--color-soft);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-text h2 {
  color: #1f1f1f;
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.12;
}

.about-text h2::first-letter {
  color: var(--color-primary-dark);
}

.about-text p {
  margin-bottom: 18px;
  color: var(--color-text-soft);
  font-size: 17px;
  line-height: 1.9;
}

.about-social {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 35px;
}

.about-social .social-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  border: 1px solid rgba(183, 14, 23, 0.18);
  border-radius: var(--radius-pill);
  color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 12px 30px rgba(130, 52, 24, 0.08);
  font-family: Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.3s ease;
}

.about-social .social-btn i {
  font-size: 22px;
}

.about-social .social-btn:hover {
  color: var(--color-white);
  background: var(--gradient-primary);
  transform: translateY(-5px);
}

.about-image-box {
  position: relative;
  min-height: 540px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-image-box img {
  position: relative;
  z-index: 2;
  width: min(390px, 85%);
  height: 480px;
  border-radius: 34px;
  object-fit: cover;
  box-shadow: 0 30px 70px rgba(130, 52, 24, 0.18);
}

.about-glow {
  position: absolute;
  width: 470px;
  height: 470px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 111, 35, 0.18), transparent 62%),
    conic-gradient(from 140deg, transparent, rgba(183, 14, 23, 0.25), rgba(255, 111, 35, 0.25), transparent);
  filter: blur(2px);
  animation: rotateRing 14s linear infinite;
}

.floating-card {
  position: absolute;
  z-index: 4;
  min-width: 145px;
  padding: 18px 20px;
  border: 1px solid rgba(183, 14, 23, 0.10);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 45px rgba(130, 52, 24, 0.12);
  text-align: center;
}

.floating-card strong {
  display: block;
  color: var(--color-primary);
  font-family: "Times New Roman", Georgia, serif;
  font-size: 20px;
}

.floating-card span {
  color: #333;
  font-size: 13px;
}

.card-one {
  top: 70px;
  right: 20px;
}

.card-two {
  left: 25px;
  bottom: 130px;
}

.card-three {
  right: 0;
  bottom: 90px;
}

.about-signoff {
  margin-top: 34px;
  padding: 24px 28px;
  border: 1px solid rgba(183, 14, 23, 0.10);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(183, 14, 23, 0.06), rgba(255, 111, 35, 0.08));
}

.about-signoff span {
  display: block;
  margin-bottom: 10px;
  color: #333;
  font-family: Georgia, serif;
  font-size: 24px;
  font-style: italic;
}

.about-signoff strong {
  display: block;
  color: var(--color-primary);
  font-family: "Times New Roman", Georgia, serif;
  font-size: 36px;
}

/* ------------------------------
   08. Quote Banner
------------------------------ */

.quote-banner {
  padding: 40px 0 110px;
  background: var(--color-white);
}

.quote-banner-box {
  position: relative;
  width: var(--container-lg);
  height: 460px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: var(--radius-section);
  box-shadow: 0 28px 80px rgba(130, 52, 24, 0.14);
}

.quote-banner-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 12s ease-in-out infinite alternate;
}

.quote-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(30, 12, 8, 0.72), rgba(183, 14, 23, 0.32), rgba(255, 111, 35, 0.08));
}

.quote-content {
  position: absolute;
  inset: 0;
  max-width: 900px;
  margin: auto;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.quote-content h2 {
  color: var(--color-white);
  font-size: clamp(30px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.25;
}

.quote-content p {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
  line-height: 1.7;
}

/* ------------------------------
   09. Studio Carousel
------------------------------ */

.studio-section {
  padding: 120px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(183, 14, 23, 0.10), transparent 35%),
    radial-gradient(circle at 80% 70%, rgba(255, 111, 35, 0.10), transparent 32%),
    linear-gradient(135deg, #fffdfb, #fff7f1);
}

.studio-heading {
  width: var(--container-md);
  margin: 0 auto 60px;
  text-align: center;
}

.studio-heading span {
  display: inline-block;
  margin-bottom: 22px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  color: var(--color-primary);
  background: rgba(183, 14, 23, 0.07);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.studio-heading h2 {
  margin-bottom: 18px;
  color: var(--color-primary-dark);
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(42px, 6vw, 76px);
}

.studio-heading h2 span {
  color: var(--color-primary-dark);
}

.studio-heading p {
  color: var(--color-text-soft);
  font-size: 19px;
  line-height: 1.8;
}

.studio-carousel {
  position: relative;
  width: var(--container-lg);
  margin: 0 auto;
}

.studio-track {
  position: relative;
  height: 520px;
}

.studio-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.86) translateX(70px);
  transition: 0.7s ease;
}

.studio-slide.active {
  z-index: 3;
  opacity: 1;
  transform: scale(1) translateX(0);
}

.studio-slide.prev-slide,
.studio-slide.next-slide {
  z-index: 2;
  opacity: 0.45;
}

.studio-slide.prev-slide {
  transform: scale(0.82) translateX(-320px);
}

.studio-slide.next-slide {
  transform: scale(0.82) translateX(320px);
}

.studio-slide img {
  width: 100%;
  height: 100%;
  border: 1px solid rgba(183, 14, 23, 0.12);
  border-radius: 34px;
  object-fit: cover;
  box-shadow: 0 35px 90px rgba(130, 52, 24, 0.18);
}

.studio-btn {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  color: var(--color-white);
  background: var(--gradient-primary);
  box-shadow: 0 18px 40px rgba(183, 14, 23, 0.25);
  cursor: pointer;
  font-size: 28px;
  transform: translateY(-50%);
}

.studio-btn.prev {
  left: -20px;
}

.studio-btn.next {
  right: -20px;
}

.studio-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
}

.studio-dots span {
  width: 11px;
  height: 11px;
  border-radius: var(--radius-pill);
  background: rgba(183, 14, 23, 0.25);
  cursor: pointer;
  transition: 0.3s ease;
}

.studio-dots span.active {
  width: 34px;
  background: var(--gradient-primary);
}

/* ------------------------------
   10. Before / After Section
------------------------------ */

.before-after {
  padding: 120px 0;
  background: var(--color-soft);
}

.ba-container {
  width: var(--container-lg);
  margin: 0 auto;
  padding: 60px;
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  align-items: center;
  gap: 55px;
  border-radius: var(--radius-section);
  background:
    radial-gradient(circle at 15% 20%, rgba(183, 14, 23, 0.08), transparent 30%),
    linear-gradient(135deg, #fffdfb, #fff5ee);
  box-shadow: var(--shadow-medium);
}

.ba-text span {
  display: block;
  margin-bottom: 20px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  color: var(--color-primary);
  background: rgba(183, 14, 23, 0.07);
  font-weight: 700;
  text-align: center;
}

.ba-text h2 {
  margin-bottom: 18px;
  color: var(--color-primary-dark);
  font-family: "Times New Roman", Georgia, serif;
  font-size: clamp(38px, 5vw, 64px);
  text-align: center;
}

.ba-text h2 em {
  color: var(--color-primary);
  font-style: normal;
}

.ba-text p {
  margin-bottom: 30px;
  color: var(--color-text-soft);
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}

.ba-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(130, 52, 24, 0.18);
  cursor: ew-resize;
  user-select: none;
}

.ba-img {
  position: absolute;
  inset: 0;
}

.ba-slider img,
.ba-after img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-after {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}

.ba-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 4;
  width: 2px;
  background: var(--color-white);
}

.ba-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: 66px;
  height: 66px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 50%;
  color: var(--color-primary);
  background: var(--color-white);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
  font-size: 32px;
  transform: translate(-50%, -50%);
}

.ba-label,
.label {
  position: absolute;
  top: 26px;
  z-index: 6;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  color: var(--color-white);
  font-size: 14px;
  font-weight: 700;
}

.ba-label.before,
.label.before {
  left: 26px;
  background: #2b2422;
}

.ba-label.after,
.label.after {
  right: 26px;
  background: var(--gradient-primary);
}

/* Before/After archive cards */

.filter-section {
  width: var(--container-lg);
  margin: 50px auto 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.filter-btn {
  padding: 13px 24px;
  border: 0;
  border-radius: var(--radius-pill);
  color: var(--color-primary-dark);
  background: transparent;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--color-white);
  background: var(--gradient-primary);
  box-shadow: 0 12px 28px rgba(183, 14, 23, 0.18);
}

.results-grid {
  width: min(1000px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 280px);
  gap: 24px;
}

.result-card {
  display: flex;
  flex-direction: column;
  height: auto;
  overflow: hidden;
  border: 1px solid rgba(183, 14, 23, 0.08);
  border-radius: 26px;
  background: var(--color-white);
  box-shadow: 0 22px 55px rgba(130, 52, 24, 0.10);
  transition: 0.35s ease;
}

.result-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 65px rgba(183, 14, 23, 0.14);
}

.result-card .ba-slider {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 26px 26px 0 0;
  box-shadow: none;
}

.result-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.result-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.55s ease;
}

.result-card:hover .result-image img,
.result-card:hover .ba-slider img {
  transform: scale(1.06);
}

.result-content {
  display: block;
  min-height: 0;
  padding: 14px 18px 16px;
  text-align: center;
}

.result-content h3 {
  margin: 0 0 6px;
  color: #1f1f1f;
  font-size: 18px;
  line-height: 1.25;
}

.result-content p {
  margin: 0;
  color: var(--color-muted);
  font-size: 14px;
  line-height: 1.4;
}

.result-content a {
  color: var(--color-primary);
  font-size: 28px;
  text-decoration: none;
}

.handle {
  width: 48px;
  height: 48px;
  font-size: 20px;
}

.ba-cta {
  width: var(--container-lg);
  margin: 50px auto 70px;
  padding: 34px 48px;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 30px;
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 10% 20%, rgba(183, 14, 23, 0.08), transparent 28%),
    linear-gradient(135deg, #fffdfb, #fff7f1);
  box-shadow: 0 24px 65px rgba(130, 52, 24, 0.10);
}

.cta-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--color-primary);
  background: rgba(183, 14, 23, 0.07);
  font-size: 34px;
}

.ba-cta h2 {
  margin-bottom: 10px;
  color: #1f1f1f;
  font-size: 34px;
}

.ba-cta p {
  color: var(--color-text-soft);
  font-size: 17px;
}

.ba-cta a {
  padding: 18px 34px;
  border-radius: var(--radius-pill);
  color: var(--color-white);
  background: var(--gradient-primary);
  box-shadow: 0 18px 36px rgba(199, 44, 22, 0.25);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

/* ------------------------------
   11. Booking CTA
------------------------------ */

.booking-cta {
  padding: 80px 0 120px;
  background: var(--color-soft);
}

.booking-card {
  position: relative;
  width: var(--container-xl);
  margin: auto;
  padding: 28px 40px;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, #b70e17 0%, #d84a1b 45%, #ff7a2f 100%);
  box-shadow: 0 25px 60px rgba(183, 14, 23, 0.18);
}

.booking-card::before,
.booking-card::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(rgba(255, 255, 255, 0.16), transparent 70%);
}

.booking-card::before {
  width: 300px;
  height: 300px;
  left: -120px;
  top: -120px;
}

.booking-card::after {
  width: 350px;
  height: 350px;
  right: -180px;
  bottom: -180px;
}

.booking-icon,
.booking-content,
.booking-btn {
  position: relative;
  z-index: 2;
}

.booking-icon {
  width: 78px;
  height: 78px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  color: var(--color-white);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.35);
  font-size: 32px;
}

.booking-content h2 {
  margin-bottom: 8px;
  color: var(--color-white);
  font-family: Georgia, serif;
  font-size: 28px;
}

.booking-content p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.7;
}

.booking-btn {
  gap: 10px;
  padding: 18px 34px;
  border-radius: var(--radius-pill);
  color: var(--color-primary);
  background: var(--color-white);
}

/* ------------------------------
   12. Testimonials
------------------------------ */

.testimonials {
  padding: 120px 0;
  background: var(--color-white);
}

.center {
  max-width: 800px;
  margin: 0 auto 70px;
  text-align: center;
}

.testimonial-slider {
  position: relative;
  width: var(--container-xl);
  margin: auto;
}

.testimonial-window {
  width: 100%;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.testimonial-card {
  flex: 0 0 calc((100% - 60px) / 3);
  min-width: 0;
  padding: 35px;
  border: 1px solid rgba(183, 14, 23, 0.08);
  border-radius: var(--radius-card);
  background: var(--color-white);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
  transition: 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(183, 14, 23, 0.12);
}

.quote-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--color-primary);
  background: rgba(183, 14, 23, 0.07);
}

.stars {
  margin-bottom: 20px;
  color: #ff9b2f;
  font-size: 20px;
  letter-spacing: 2px;
}

.testimonial-card p {
  margin-bottom: 30px;
  color: var(--color-text-soft);
  line-height: 1.9;
}

.client strong {
  display: block;
  margin-bottom: 4px;
  color: #222;
}

.client span {
  color: #777;
  font-size: 14px;
}

/* ------------------------------
   13. FAQ
------------------------------ */

.faq-section {
  padding: 70px 0;
  margin-top: -20px;
  background: var(--color-soft);
}

#faq .section-heading span {
  display: block;
  color: var(--color-primary-dark);
  font-size: 30px;
}

.faq-wrapper {
   width: min(850px, 100%);
 margin: 0 auto;
  display: grid;
  grid-template-columns: 270px 1fr;
  align-items: start;
  gap: 24px;
}

.faq-image {
  position: sticky;
  top: 120px;
}

.faq-image img {
  width: 100%;
  height: 220px;
  display: block;
  object-fit: cover;
  border-radius: 22px;
}

.faq-contact-card {
  position: relative;
  width: 90%;
  margin: -20px auto 0;
  padding: 20px;
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.065);
}

.faq-contact-card h3 {
  margin-bottom: 8px;
  color: var(--color-primary);
  font-size: 22px;
}

.faq-contact-card p {
  margin-bottom: 16px;
  color: var(--color-muted);
  line-height: 1.65;
}

.faq-contact-card a {
  display: inline-block;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  color: var(--color-white);
  background: var(--gradient-primary);
  font-weight: 700;
  text-decoration: none;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 850px;
    margin: 0 auto;
}

.faq-item {
 max-width: 850px;
    margin: 0 auto;
    border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(183, 14, 23, 0.08);
  background: var(--color-white);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
}

.faq-question {
  width: 100%;
  padding: 22px 28px;
  display: flex;
   justify-content: flex-start;
  align-items: center;
  gap: 14px;
  border: 0;
  color: #222;
  background: none;
  cursor: pointer;
  font-family: Georgia, serif;
   font-size: 24px;
  line-height: 1.35;
  text-align: left;
}

.faq-question span {
   flex: unset;
}

.faq-question i {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--color-primary);
  background: rgba(183, 14, 23, 0.08);
  font-size: 22px;
  font-style: normal;
  margin-left: auto;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: 0.4s ease;
}

.faq-answer p {
  padding: 0 20px 18px;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ------------------------------
   14. Footer
------------------------------ */

.footer {
  position: relative;
  width: 100%;
  margin: 0;
  padding: 70px 0 25px;
  border-top: 2px solid rgba(183, 14, 23, 0.18);
  background: linear-gradient(180deg, #fffdfb 0%, #fff7f1 100%);
  box-shadow: 0 -25px 60px rgba(130, 52, 24, 0.08);
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: var(--container-xl);
  height: 3px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, transparent, var(--color-primary), var(--color-accent), transparent);
  transform: translateX(-50%);
}

.footer-container {
  width: var(--container-xl);
  margin: auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr;
  gap: 45px;
}

.footer-logo-box {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  text-decoration: none;
}

.footer-logo-box img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.footer-logo-box h2 {
  color: #9f0d16;
  font-family: Georgia, serif;
  font-size: 30px;
}

.footer-logo-box span {
  color: #222;
  font-size: 12px;
  letter-spacing: 2px;
}

.footer-brand p {
  max-width: 260px;
  color: #333;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.9;
}

.footer h3 {
  margin-bottom: 18px;
  color: #111;
  font-size: 18px;
  font-weight: 700;
}

.footer-links a {
  display: block;
  margin-bottom: 9px;
  color: #222;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-primary);
  transform: translateX(4px);
}

.social-wrapper {
  display: flex;
  gap: 14px;
  margin-top: 22px;
  padding: 0;
}

.social-wrapper .social-icon {
  position: relative;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(183, 14, 23, 0.18);
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 10px 25px rgba(130, 52, 24, 0.08);
  cursor: pointer;
  list-style: none;
  transition: 0.35s ease;
}

.social-wrapper .social-icon a {
  color: var(--color-primary);
  font-size: 20px;
}

.social-wrapper .social-icon:hover {
  transform: translateY(-8px);
}

.tooltip {
  position: absolute;
  top: -46px;
  padding: 8px 13px;
  border-radius: 10px;
  color: var(--color-white);
  background: var(--color-primary);
  font-size: 13px;
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
  transition: 0.3s ease;
}

.tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 10px;
  height: 10px;
  background: var(--color-primary);
  transform: translateX(-50%) rotate(45deg);
}

.social-icon:hover .tooltip {
  opacity: 1;
  visibility: visible;
}

.instagram:hover {
  background: #e1306c;
}

.tiktok:hover {
  background: #111;
}

.facebook:hover {
  background: #1877f2;
}

.whatsapp:hover {
  background: #25d366;
}

.social-icon:hover a {
  color: var(--color-white);
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(183, 14, 23, 0.10);
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}

/* ------------------------------
   15. Animations
------------------------------ */

@keyframes slowZoom {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.08);
  }
}

@keyframes rotateRing {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* ------------------------------
   16. Responsive
------------------------------ */

@media (max-width: 1200px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
    min-height: auto;
    padding: 28px;
  }

  .logo {
    justify-content: center;
    text-align: center;
  }

  .main-nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .header-btn {
    margin: 0 auto;
  }
}

@media (max-width: 1024px) {
  .page-wrapper {
    width: calc(100% - 24px);
    margin: 12px auto;
    border-radius: 26px;
  }

  .hero {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 50px 24px;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .hero-content h2 {
    font-size: clamp(40px, 7vw, 62px);
  }

  .hero-content p {
    margin: 0 auto;
  }

  .title-line,
  .hero-actions {
    justify-content: center;
  }

  .hero-image {
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: 0 auto;
  }

  .hero-image img {
    width: 100%;
  }

  .section-container {
    width: calc(100% - 28px);
    padding: 36px 22px;
  }

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

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

@media (max-width: 900px) {
  .about-container,
  .ba-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-social {
    justify-content: center;
    flex-wrap: wrap;
  }

  .about-image-box {
    min-height: 500px;
  }

  .booking-card,
  .ba-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .booking-icon,
  .booking-btn,
  .cta-icon {
    margin: auto;
  }

  .testimonial-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }

  .testimonial-track {
    gap: 24px;
  }
}

@media (max-width: 800px) {
  .section-heading h2 {
    white-space: normal;
  }

  .section-container {
    padding: 38px 24px;
  }

  .service-card {
    width: 100%;
  }

  .studio-track {
    height: 360px;
  }

  .studio-slide.prev-slide,
  .studio-slide.next-slide {
    display: none;
  }

  .studio-btn.prev {
    left: 10px;
  }

  .studio-btn.next {
    right: 10px;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 24px 18px;
    border-radius: 0 0 28px 28px;
  }

  .logo img {
    width: 75px;
    max-width: 75px;
  }

  .logo h1,
  .logo h2 {
    font-size: 34px;
  }

  .main-nav {
    flex-direction: column;
    padding: 14px;
    border-radius: 24px;
  }

  .main-nav a,
  .header-btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .section-heading h2,
  .about-text h2,
  .contact-left h2 {
    font-size: 34px;
    line-height: 1.15;
  }

  .about-container {
    display: flex;
    flex-direction: column;
  }

  .about-image-box {
    order: 1;
    margin-bottom: 40px;
  }

  .about-text {
    order: 2;
  }

  .faq-wrapper {
    width: min(420px, calc(100% - 28px));
    grid-template-columns: 1fr;
    gap: 18px;
    display: block;
  }

  .faq-image {
    position: relative;
    top: auto;
    width: 100%;
    display: none;
  }

  .faq-image img {
    height: 220px;
  }

  .faq-contact-card {
    width: 100%;
    margin-top: 0;
    padding: 20px;
    border-radius: 18px;
    display: none;
  }

  .faq-question {
    padding: 14px 16px;
    font-size: 17px;
    line-height: 1.35;
  }

  .faq-question i {
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .faq-answer p {
      padding: 0 16px 16px;
      padding-bottom: 28px;
    font-size: 15px;
   line-height: 1.65;
  }

  .faq-item {
    width: 100%;
  border-radius: 16px;
  }

  .faq-list {
  width: 100%;
  gap: 10px;
}


  .faq-section {
  padding: 45px 0;
}
 .faq-item.active .faq-answer{
 max-height: 1200px;
 }

  .footer {
    padding: 50px 18px 25px;
  }

  .footer-logo-box,
  .social-wrapper {
    justify-content: center;
  }

  .footer-brand p {
    margin: auto;
  }
}

@media (max-width: 600px) {
  .page-wrapper {
    width: calc(100% - 12px);
    margin: 6px auto;
    border-radius: 20px;
  }

  .hero {
    padding: 60px 18px 40px;
  }

  .hero-content h2 {
    font-size: 38px;
  }

  .hero-content p,
  .ba-text p,
  .section-heading p {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .services,
  .about,
  .studio-section,
  .testimonials,
  .faq-section {
    padding: 70px 0;
  }

  .section-heading h2,
  .ba-text h2,
  .studio-heading h2,
  .about-text h2 {
    font-size: 34px;
    white-space: normal;
  }

  .quote-banner-box {
    width: calc(100% - 24px);
    height: 320px;
  }

  .quote-content h2 {
    font-size: 26px;
  }

  .about-image-box {
    min-height: auto;
  }

  .about-image-box img {
    width: 100%;
    max-width: 320px;
    height: auto;
  }

  .floating-card {
    display: none;
  }

  .studio-carousel {
    width: calc(100% - 24px);
  }

  .studio-track {
    height: 300px;
  }

  .testimonial-slider {
    width: calc(100% - 32px);
  }

  .testimonial-track {
    gap: 0;
  }

  .testimonial-card {
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    padding: 30px 26px;
  }

  .testimonial-card p {
    font-size: 18px;
    line-height: 1.8;
  }

  .stars {
    white-space: nowrap;
  }

  .results-grid {
      width: min(280px, calc(100% - 24px));
    grid-template-columns: 1fr;
    gap: 22px;
  }


  .result-card {
  width: 100%;
}

.result-card .ba-slider {
  width: 100%;
  aspect-ratio: 1 / 1;
}

.result-content {
  padding: 12px 14px 14px;
}

.result-content h3 {
  font-size: 15px;
}

.result-content p {
  font-size: 13px;
}

  .ba-container {
    padding: 36px 24px;
  }

  .ba-label,
  .label {
    top: 16px;
    padding: 8px 14px;
    font-size: 12px;
  }

  .ba-label.before,
  .label.before {
    left: 16px;
  }

  .ba-label.after,
  .label.after {
    right: 16px;
  }

  .ba-handle {
    width: 54px;
    height: 54px;
    font-size: 26px;
  }

  .booking-card,
  .ba-cta {
    width: calc(100% - 24px);
    padding: 34px 22px;
  }

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