/* ===== CSS Variables ===== */
:root {
  --font-heading: 'Fraunces', serif;
  --font-body:
    'Avenir', 'Avenir Next', 'Segoe UI', 'Helvetica Neue', Helvetica, Arial,
    sans-serif;
  --primary: #fbb04c;
  --primary-dark: #562e26;
  --primary-light: #e5d6b2;
  --secondary: #253327;
  --dark: #562e26;
  --text: #253327;
  --text-light: #562e26;
  --white: #ffffff;
  --off-white: #fffeef;
  --light-bg: #e5d6b2;
  --border: #e5d6b2;
  --gradient-primary: linear-gradient(135deg, #fbb04c 0%, #562e26 100%);
  --gradient-dark: linear-gradient(135deg, #253327 0%, #562e26 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.16);
  --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.7;
  background-color: var(--white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--secondary);
  line-height: 1.3;
  font-weight: 300;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

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

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 16px;
  font-style: normal;
  font-weight: 350;
  line-height: 100%;
  text-transform: uppercase;
  text-align: center;
  color: #253327;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: #fbb04c;
  color: #253327;
  border-radius: 31px;
  box-shadow: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #f0a03a;
  box-shadow: 0 6px 20px rgba(251, 176, 76, 0.45);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

.btn-lg {
  padding: 18px 40px;
  font-size: 16px;
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ===== Navbar button override ===== */
.navbar .btn-primary {
  background: #fbb04c;
  box-shadow: none;
  border-radius: 30px;
  color: var(--secondary);
}

.navbar .btn-primary:hover {
  background: #e89e3a;
  box-shadow: none;
  color: var(--secondary);
}

/* ===== Top Bar ===== */
.top-bar {
  background: var(--secondary);
  padding: 10px 0;
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 30px;
}

.contact-info span,
.contact-info a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: var(--transition);
}

.contact-info a:hover {
  color: var(--primary);
}

.contact-info i {
  color: var(--primary);
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.social-links a:hover {
  color: var(--primary);
}

/* ===== Navigation ===== */
.navbar {
  background: var(--white);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 4px;
  text-transform: uppercase;
}

.logo-tagline {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--primary);
}

.nav-links {
  display: flex;
  gap: 35px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary);
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 25px;
  height: 2px;
  background: var(--secondary);
  transition: var(--transition);
}

/* ===== Section Styling ===== */
.section-header {
  margin-bottom: 60px;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  padding: 0;
  color: #562f25;
  font-family: Inter, var(--font-body);
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 15.6px;
  text-transform: uppercase;
  letter-spacing: 0;
  border-radius: 0;
  margin-bottom: 20px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  border-radius: 10px;
  background: #f5a951;
  flex-shrink: 0;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 300;
  margin-bottom: 15px;
}

.section-header h2 .highlight {
  color: var(--primary);
}

.section-desc {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.highlight {
  color: var(--primary);
}

/* ===== Hero Section ===== */
.hero {
  background: url('bg.jpg') center center / cover no-repeat;
  min-height: 100vh;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(37, 51, 39, 0.72) 0%,
    rgba(86, 46, 38, 0.55) 100%
  );
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-bg-pattern {
  display: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 28px;
  background: none;
  border: none;
  padding: 0;
  border-radius: 0;
}

.hero-badge::before {
  content: '';
  width: 38px;
  height: 2px;
  background: var(--primary);
  flex-shrink: 0;
}

.hero h1 {
  font-size: 58px;
  line-height: 1.2;
  margin-bottom: 25px;
  color: var(--white);
}

.hero h1 .highlight {
  color: var(--primary);
}

.hero-desc {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 30px;
  line-height: 1.8;
}

.hero-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-item i {
  color: var(--primary);
  font-size: 18px;
}

.feature-item span {
  font-weight: 500;
  color: var(--white);
}

.hero-cta {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  gap: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--white);
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}

/* Hero Image */
.hero-image {
  position: relative;
}

.image-frame {
  position: relative;
  background: var(--gradient-primary);
  border-radius: 20px;
  padding: 25px;
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  color: var(--white);
}
.image-placeholder img {
  border-radius: 15px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.image-placeholder i {
  font-size: 80px;
  opacity: 0.8;
}

.image-placeholder span {
  font-size: 18px;
  font-weight: 500;
}

.floating-card {
  position: absolute;
  background: var(--white);
  padding: 15px 25px;
  border-radius: 15px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}

.floating-card i {
  color: var(--primary);
  font-size: 20px;
}

.floating-card span {
  font-weight: 600;
  color: var(--secondary);
  font-size: 14px;
}

.card-1 {
  top: 20%;
  left: -30px;
}

.card-2 {
  bottom: 20%;
  right: -30px;
  animation-delay: 1.5s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Hero outline button override */
.hero .btn-outline {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
}

.hero .btn-outline:hover {
  background: var(--white);
  color: var(--secondary);
}

/* Hero Form Wrapper */
.hero-form-wrapper {
  position: relative;
}

.hero-form-wrapper .appointment-form-wrapper {
  background: rgba(229, 214, 178, 0.96);
  padding: 45px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.hero-form-wrapper .appointment-form h3 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 30px;
  text-align: center;
  color: var(--secondary);
  line-height: 1.3;
}

.hero-form-wrapper .form-group label {
  color: var(--secondary);
  font-size: 14px;
  font-weight: 500;
}

.hero-form-wrapper .form-group input,
.hero-form-wrapper .form-group select,
.hero-form-wrapper .form-group textarea {
  background: var(--white);
  border: 1px solid #d8cbb0;
  color: var(--secondary);
}

/* Consent checkbox */
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
}

.form-consent input[type='checkbox'] {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--primary);
  cursor: pointer;
}

.form-consent label {
  font-size: 13px;
  color: var(--secondary);
  line-height: 1.6;
  cursor: pointer;
}

/* ===== About Section ===== */
.about-section {
  padding: 100px 0;
  background: #fffeef;
}

.about-section .section-header h2 {
  color: #4b2a24;
  font-family: Fraunces, serif;
  font-size: 48px;
  font-style: normal;
  font-weight: 300;
  line-height: 104%;
  letter-spacing: -0.96px;
  margin-bottom: 0;
}

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

.about-card {
  background: #fdfbf8;
  padding: 40px 32px;
  border-radius: 20px;
  border: 1px solid rgba(251, 176, 76, 0.35);
  transition: var(--transition);
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.card-icon {
  width: 64px;
  height: 64px;
  background: #f5efe8;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.card-icon i {
  font-size: 26px;
  color: var(--primary);
}

.about-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--secondary);
}

.about-card p {
  color: var(--text);
  font-size: 14px;
  line-height: 1.75;
}

/* ===== Preparation Section ===== */
.prep-section {
  padding: 100px 0;
  background: #562e26;
}

.prep-section .section-tag {
  color: #f5a951;
}

.prep-section h2 {
  color: var(--white);
}

.prep-section .highlight {
  color: var(--primary);
}

.prep-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.prep-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 40px;
}

.prep-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.prep-number {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--primary);
  line-height: 1;
  min-width: 40px;
}

.prep-text h4 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--white);
}

.prep-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* Image Stack */
.image-stack {
  position: relative;
  padding: 40px;
}

.stack-image {
  background: var(--gradient-primary);
  border-radius: 20px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: var(--white);
}

.stack-image i {
  font-size: 60px;
}

.stack-image span {
  font-size: 18px;
  font-weight: 500;
}

.stack-image.main {
  aspect-ratio: 1;
  background: none;
  padding: 0;
  border: 3px solid var(--primary);
  border-radius: 20px;
  overflow: hidden;
}
.stack-image.main img {
  border-radius: 16px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.stack-image.secondary {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60%;
  padding: 40px;
  background: var(--secondary);
  box-shadow: var(--shadow-lg);
}

.stack-image.secondary i {
  font-size: 40px;
}

.stack-image.secondary span {
  font-size: 14px;
}

/* ===== Aftercare Section ===== */
.aftercare-section {
  padding: 100px 0;
  background: #fffeef;
}

.aftercare-section .section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  text-align: left;
  margin-bottom: 60px;
}

.aftercare-section .section-header h2 {
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -1.6px;
  color: #4b2a24;
  margin-bottom: 0;
}

.aftercare-section .section-desc {
  margin: 0;
  font-size: 15px;
  color: #6b5a4e;
  line-height: 1.7;
}

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

.aftercare-card {
  text-align: center;
  padding: 40px 24px;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid rgba(251, 176, 76, 0.5);
  transition: var(--transition);
}

.aftercare-card:first-child {
  border-color: rgba(200, 200, 200, 0.4);
}

.aftercare-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.aftercare-card .card-image {
  width: 80px;
  height: 80px;
  background: rgba(229, 214, 178, 0.35);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
}

.aftercare-card .card-image i {
  font-size: 28px;
  color: #c8903a;
}

.aftercare-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #3a2218;
}

.aftercare-card p {
  font-size: 13px;
  color: #7a6358;
  line-height: 1.75;
}

/* ===== Comparison Section ===== */
.comparison-section {
  padding: 100px 0;
  background: #253327;
}

.comparison-section .section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  text-align: left;
  margin-bottom: 60px;
}

.comparison-section .section-header h2 {
  font-size: 56px;
  color: var(--white);
  margin-bottom: 0;
}

.comparison-section .section-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.comparison-section .section-tag {
  color: #f5a951;
  margin-bottom: 16px;
}

.comparison-table-wrapper {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fffeef;
  border-radius: 16px;
  overflow: hidden;
}

.comparison-table th,
.comparison-table td {
  padding: 18px 28px;
  text-align: left;
  border-bottom: 1px solid rgba(229, 214, 178, 0.5);
}

.comparison-table th {
  background: #fffeef;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 12px;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.comparison-table td {
  font-size: 15px;
  color: var(--text);
  background: #fffeef;
}

.comparison-table .highlight-row td {
  color: var(--secondary);
  font-weight: 600;
  background: #fffeef;
}

.comparison-table .highlight-row i {
  color: var(--primary);
  margin-right: 6px;
}

/* ===== Body Areas Section ===== */
.areas-section {
  padding: 100px 0;
  background: #fdfbf8;
}

.areas-section .section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  text-align: left;
  margin-bottom: 60px;
}

.areas-section .section-header h2 {
  margin-bottom: 0;
}

.areas-section .section-desc {
  margin: 0;
  font-size: 15px;
}

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

.area-card {
  background: #fffeef;
  padding: 32px 16px;
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(251, 176, 76, 0.4);
  transition: var(--transition);
}

.area-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.area-icon {
  width: 64px;
  height: 64px;
  background: rgba(251, 176, 76, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
}

.area-card:hover .area-icon {
  background: var(--primary);
}

.area-icon i {
  font-size: 26px;
  color: var(--primary);
  transition: var(--transition);
}

.area-card:hover .area-icon i {
  color: var(--white);
}

.area-card h4 {
  font-size: 16px;
  margin-bottom: 6px;
  color: var(--secondary);
}

.area-card p {
  font-size: 12px;
  color: var(--text);
  line-height: 1.6;
}

/* ===== Why Us Section ===== */
.why-us-section {
  padding: 100px 0;
  background: #fffeef;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.benefits-list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.benefit-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.benefit-icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: rgba(251, 176, 76, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon i {
  font-size: 22px;
  color: var(--primary);
}

.benefit-content h4 {
  font-size: 18px;
  margin-bottom: 8px;
}

.benefit-content p {
  font-size: 14px;
  color: var(--text-light);
}

/* Clinic Showcase */
.clinic-showcase {
  position: relative;
}
.clinic-showcase img {
  border-radius: 20px;
  height: auto;
}

.showcase-main {
  background: none;
  border-radius: 20px;
  border: 3px solid var(--primary);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--white);
}

.showcase-main img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: clamp(260px, 42vw, 420px);
  object-fit: contain;
  display: block;
  border-radius: 16px;
}

.showcase-badges {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  width: calc(100% - 20px);
  gap: 15px;
}

.showcase-badges .badge {
  background: var(--white);
  padding: 12px 25px;
  border-radius: 50px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-width: 0;
  gap: 10px;
}

.showcase-badges .badge i {
  color: var(--primary);
}

.showcase-badges .badge span {
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
}

/* ===== Standout Section ===== */
.standout-section {
  padding: 100px 0;
  background: #ffffff;
}

.standout-section .section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  text-align: left;
  margin-bottom: 60px;
}

.standout-section .section-header h2 {
  margin-bottom: 0;
}

.standout-section .section-desc {
  margin: 0;
}

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

.standout-card {
  background: #fffeef;
  padding: 40px 28px;
  border-radius: 20px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(251, 176, 76, 0.3);
}

.standout-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.standout-icon {
  width: 72px;
  height: 72px;
  background: rgba(251, 176, 76, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}

.standout-icon i {
  font-size: 28px;
  color: var(--primary);
}

.standout-card h4 {
  font-size: 17px;
  margin-bottom: 10px;
  color: var(--secondary);
}

.standout-card p {
  font-size: 13px;
  color: var(--text);
  line-height: 1.7;
}

/* ===== Videos Section ===== */
.videos-section {
  padding: 100px 0;
  background: #253327;
}

.videos-section .section-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  text-align: left;
  margin-bottom: 60px;
}

.videos-section .section-header h2 {
  font-size: 52px;
  color: var(--white);
  margin-bottom: 0;
}

.videos-section .section-tag {
  color: #f5a951;
}

.videos-section .section-desc {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

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

.video-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
}

.video-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
}

.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-thumbnail {
  aspect-ratio: 16/9;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video-thumbnail i {
  font-size: 50px;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.video-thumbnail i:hover {
  transform: scale(1.1);
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.7);
  padding: 4px 10px;
  border-radius: 5px;
  font-size: 12px;
  color: var(--white);
}

.video-info {
  padding: 25px;
}

.video-info h4 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 8px;
}

.video-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* ===== FAQ Section ===== */
.faq-section {
  padding: 100px 0;
  background: #562e26;
}

.faq-section .section-tag {
  color: #f5a951;
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.faq-left h2 {
  font-size: 52px;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 40px;
}

.faq-cta-card {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.faq-cta-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

.faq-cta-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  background: linear-gradient(
    to top,
    rgba(86, 46, 38, 0.92) 0%,
    transparent 100%
  );
}

.faq-cta-overlay h4 {
  font-size: 20px;
  color: var(--white);
  margin-bottom: 6px;
}

.faq-cta-overlay p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.faq-cta-overlay .btn {
  background: var(--white);
  color: var(--secondary);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
}

.faq-right .faq-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: none;
  margin: 0;
}

.faq-item {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  overflow: hidden;
  transition: var(--transition);
  height: fit-content;
}

.faq-item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.faq-question {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h4 {
  font-size: 16px;
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--white);
}

.faq-question i {
  color: var(--primary);
  transition: var(--transition);
  font-size: 20px;
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 0 20px;
}

.faq-item.active .faq-question i {
  transform: rotate(45deg);
}

.faq-item.active .faq-question h4 {
  color: var(--primary);
}

.faq-answer p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* ===== Appointment Section ===== */
.appointment-section {
  padding: 100px 0;
  background: #253327;
}

.appointment-section .section-tag {
  color: #f5a951;
}

.appointment-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.appointment-info h2 {
  font-size: 42px;
  font-weight: 300;
  color: var(--white);
}

.appointment-info > p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 20px;
  margin-bottom: 40px;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  border: none;
}

.contact-card i {
  width: 46px;
  height: 46px;
  min-width: 46px;
  background: rgba(251, 176, 76, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 18px;
}

.contact-card h4 {
  font-size: 15px;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--white);
}

.contact-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.contact-card p a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

.contact-card p a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.contact-card small {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  display: block;
  margin-top: 6px;
}

/* Appointment Form */
.appointment-form-wrapper {
  background: rgba(229, 214, 178, 0.96);
  padding: 45px 40px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.appointment-form h3 {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 28px;
  text-align: center;
  color: var(--secondary);
}

.appointment-form-wrapper .form-group input,
.appointment-form-wrapper .form-group select,
.appointment-form-wrapper .form-group textarea {
  background: var(--white);
  border: 1px solid #d8cbb0;
  color: var(--secondary);
}

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

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-family: var(--font-body);
  transition: var(--transition);
  background: var(--off-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}

.form-group textarea {
  resize: none;
}

/* Form Validation Errors */
.input-error {
  border-color: var(--primary-dark) !important;
  background: var(--off-white) !important;
}

.error-message {
  color: var(--primary-dark);
  font-size: 13px;
  margin-top: 5px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.error-message::before {
  content: '⚠';
  font-size: 12px;
}

/* Popup form validation */
.popup-form-group .input-error {
  border-color: var(--primary-dark) !important;
  background: var(--off-white) !important;
}

.popup-form-group .error-message {
  color: var(--primary-dark);
  font-size: 12px;
  margin-top: 4px;
}

/* ===== Footer ===== */
.footer {
  background: #253327;
}

.footer-bottom {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  text-align: center;
}

/* ===== Responsive Design ===== */
@media (max-width: 1200px) {
  .hero h1 {
    font-size: 48px;
  }

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

  .comparison-section .section-header h2 {
    font-size: 42px;
  }

  .videos-section .section-header h2 {
    font-size: 40px;
  }
}

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

  .navbar .btn {
    display: inline-flex;
    padding: 10px 20px;
    font-size: 13px;
  }

  .mobile-menu-btn {
    display: none;
  }

  /* Hero */
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-form-wrapper {
    order: 1;
  }

  .hero-form-wrapper .appointment-form-wrapper {
    max-width: 560px;
    margin: 0 auto;
  }

  /* Split section headers → stack vertically */
  .about-section .section-header,
  .aftercare-section .section-header,
  .comparison-section .section-header,
  .areas-section .section-header,
  .standout-section .section-header,
  .videos-section .section-header {
    grid-template-columns: 1fr;
    gap: 16px;
  }

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

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

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

  .prep-grid,
  .why-us-grid,
  .appointment-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

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

  .aftercare-section .section-header h2,
  .areas-section .section-header h2,
  .standout-section .section-header h2 {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .navbar {
    padding: 14px 0;
  }

  .navbar .logo img {
    width: 110px !important;
  }

  .navbar .btn {
    padding: 10px 16px;
    font-size: 12px;
  }

  /* Global section padding */
  .about-section,
  .prep-section,
  .aftercare-section,
  .comparison-section,
  .areas-section,
  .why-us-section,
  .standout-section,
  .videos-section,
  .faq-section,
  .appointment-section {
    padding: 70px 0;
  }

  .section-header h2 {
    font-size: 32px;
  }

  /* Hero */
  .hero {
    padding: 60px 0;
    min-height: auto;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 24px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-form-wrapper .appointment-form-wrapper {
    padding: 28px 20px;
  }

  /* About */
  .about-section .section-header {
    grid-template-columns: 1fr;
  }

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

  /* Prep */
  .prep-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .image-stack {
    padding: 0;
  }

  /* Aftercare */
  .aftercare-section .section-header {
    grid-template-columns: 1fr;
  }

  .aftercare-section .section-header h2 {
    font-size: 52px;
  }

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

  /* Comparison */
  .comparison-section .section-header {
    grid-template-columns: 1fr;
  }

  .comparison-section .section-header h2 {
    font-size: 36px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 14px 16px;
    font-size: 13px;
  }

  /* Areas */
  .areas-section .section-header {
    grid-template-columns: 1fr;
  }

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

  /* Why Us */
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Standout */
  .standout-section .section-header {
    grid-template-columns: 1fr;
  }

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

  /* Videos */
  .videos-section .section-header {
    grid-template-columns: 1fr;
  }

  .videos-section .section-header h2 {
    font-size: 36px;
  }

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

  /* FAQ */
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-left h2 {
    font-size: 36px;
  }

  /* Appointment */
  .appointment-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .appointment-info h2 {
    font-size: 32px;
  }

  .appointment-form-wrapper {
    padding: 28px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 16px;
  }

  .navbar .btn {
    padding: 10px 14px;
    font-size: 11px;
  }

  .section-header h2 {
    font-size: 28px;
  }

  /* Hero */
  .hero h1 {
    font-size: 28px;
  }

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

  .hero-form-wrapper .appointment-form-wrapper {
    padding: 22px 16px;
  }

  /* Aftercare */
  .aftercare-section .section-header h2 {
    font-size: 40px;
  }

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

  /* Areas */
  .areas-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Standout */
  .standout-grid {
    grid-template-columns: 1fr;
  }

  /* Comparison table scroll on tiny screens */
  .comparison-table-wrapper,
  .comparison-section > .container > .comparison-table {
    overflow-x: auto;
    display: block;
    width: 100%;
  }

  /* Showcase badges */
  .showcase-badges {
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    left: 50%;
    width: calc(100% - 20px);
    transform: translateX(-50%);
    gap: 15px;
    bottom: -20px;
  }

  .showcase-badges .badge {
    padding: 12px 25px;
    flex: 1;
    justify-content: center;
    min-width: 0;
  }

  .floating-card {
    display: none;
  }

  /* FAQ */
  .faq-left h2 {
    font-size: 28px;
  }

  .faq-cta-card img {
    height: 200px;
  }

  /* Appointment form */
  .appointment-form-wrapper {
    padding: 22px 16px;
  }
}

/* ===== Popup Modal ===== */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-modal {
  background: var(--white);
  border-radius: 25px;
  max-width: 800px;
  width: 90%;
  max-height: 90vh;
  overflow: hidden;
  position: relative;
  transform: scale(0.8) translateY(50px);
  transition: all 0.4s ease;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.popup-overlay.active .popup-modal {
  transform: scale(1) translateY(0);
}

.popup-close {
  position: absolute;
  top: 15px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--light-bg);
  border: none;
  border-radius: 50%;
  font-size: 28px;
  color: var(--text);
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.popup-close:hover {
  background: var(--primary);
  color: var(--white);
}

.popup-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.popup-image {
  background: var(--gradient-primary);
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  color: var(--white);
}
.popup-image img {
  border-radius: 15px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.popup-image i {
  font-size: 80px;
  opacity: 0.9;
}

.popup-image span {
  font-size: 24px;
  font-weight: 600;
  font-family: var(--font-heading);
}

.popup-form-section {
  padding: 50px 40px;
}

.popup-form-section h3 {
  font-size: 28px;
  margin-bottom: 15px;
}

.popup-form-section > p {
  color: var(--text-light);
  font-size: 15px;
  margin-bottom: 30px;
}

.popup-form-group {
  margin-bottom: 18px;
}

.popup-form-group input,
.popup-form-group select {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-family: var(--font-body);
  transition: var(--transition);
  background: var(--off-white);
}

.popup-form-group input:focus,
.popup-form-group select:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--white);
}

.popup-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-light);
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.popup-note i {
  color: var(--primary);
}

@media (max-width: 768px) {
  .popup-content {
    grid-template-columns: 1fr;
  }

  .popup-image {
    display: none;
  }

  .popup-form-section {
    padding: 30px;
  }

  .popup-form-section h3 {
    font-size: 22px;
  }

  .popup-modal {
    max-height: 95vh;
    overflow-y: auto;
  }
}
