/* ============================
   Pet Home Euthanasia Orange County
   Design System & Global Styles
   ============================ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;700&family=Open+Sans:wght@400;600;700&family=Oswald:wght@400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* ---- CSS Custom Properties ---- */
:root {
  --primary: #54C1D6;
  --primary-light: #7DD0E0;
  --primary-lighter: #a8e0ec;
  --primary-dark: #3BA8BD;
  --primary-darker: #2a8fa3;
  --accent-blue: #86AADC;
  --accent-blue-dark: #6b93cc;
  --text-dark: #363636;
  --text-body: #4A4A4A;
  --text-muted: #777777;
  --text-light: #FFFFFF;
  --bg-white: #FFFFFF;
  --bg-light-blue: #E8F4F8;
  --bg-cream: #f7fbfc;
  --bg-hero-overlay: rgba(84, 193, 214, 0.65);
  --gradient-hero: linear-gradient(135deg, rgba(84, 193, 214, 0.7) 0%, rgba(134, 170, 220, 0.7) 100%);
  --gradient-cta: linear-gradient(135deg, #54C1D6 0%, #86AADC 100%);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
  --shadow-card: 0 2px 16px rgba(84, 193, 214, 0.15);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s ease;
  --max-width: 1200px;
  --header-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--text-body);
  line-height: 1.7;
  background-color: var(--bg-white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--text-dark);
  line-height: 1.3;
  margin-bottom: 0.5em;
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

p {
  margin-bottom: 1rem;
}

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

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

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.script-font {
  font-family: 'Dancing Script', cursive;
}

.section-padding {
  padding: 80px 0;
}

/* ---- Fade-in Animation ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- Skip Link ---- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 10px 20px;
  z-index: 10000;
  font-weight: 600;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.skip-link:focus {
  top: 0;
  color: white;
}

/* ============================
   TOP BAR
   ============================ */
.top-bar {
  background: var(--gradient-cta);
  color: var(--text-light);
  padding: 10px 0;
  font-size: 0.9rem;
  text-align: center;
}

.top-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.top-bar a {
  color: var(--text-light);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.top-bar a:hover {
  color: #e0f7fa;
}

.top-bar svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ============================
   HEADER / NAVIGATION
   ============================ */
.header {
  background: var(--bg-white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.header__logo img {
  height: 60px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 5px;
}

.header__nav a {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.header__nav a:hover,
.header__nav a.active {
  color: var(--primary);
  background: var(--bg-light-blue);
}

/* Services Dropdown */
.dropdown {
  position: relative;
}

.dropdown__toggle {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.dropdown__toggle::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid currentColor;
  transition: transform 0.3s ease;
}

.dropdown.open .dropdown__toggle::after {
  transform: rotate(180deg);
}

.dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 260px;
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
}

.dropdown.open .dropdown__menu,
.dropdown:hover .dropdown__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown__menu a {
  display: block;
  padding: 10px 20px;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-body);
  border-bottom: 1px solid #f0f0f0;
}

.dropdown__menu a:hover {
  background: var(--bg-light-blue);
  color: var(--primary-dark);
  padding-left: 25px;
}

.dropdown__menu a:last-child {
  border-bottom: none;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: var(--primary);
  color: white;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}

.menu-toggle:hover {
  background: var(--primary-dark);
}

.menu-toggle .hamburger {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle .hamburger span {
  width: 22px;
  height: 2px;
  background: white;
  transition: var(--transition);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-white);
  box-shadow: var(--shadow-lg);
  z-index: 2000;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-dark);
  cursor: pointer;
  line-height: 1;
}

.mobile-nav a {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

.mobile-nav__cities-toggle {
  position: relative;
}

.mobile-nav__cities-toggle.open {
  color: var(--primary);
  border-bottom-color: var(--primary-light);
}

.mobile-nav__cities {
  padding-left: 15px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.mobile-nav__cities.open {
  max-height: 1000px;
}

.mobile-nav__cities a {
  font-size: 0.95rem;
  text-transform: none;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1500;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-overlay.visible {
  opacity: 1;
}

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

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-hero);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--text-light);
  padding: 60px 20px;
  max-width: 800px;
}

.hero__content h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 3.5rem;
  color: var(--text-light);
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  margin-bottom: 0.3em;
  animation: fadeInDown 1s ease-out;
}

.hero__content p {
  font-size: 1.15rem;
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto 30px;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
  animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================
   CTA BAND
   ============================ */
.cta-band {
  background: var(--gradient-cta);
  text-align: center;
  padding: 40px 20px;
}

.cta-band__phone {
  font-family: 'Dancing Script', cursive;
  font-size: 2.8rem;
  color: var(--text-light);
  display: block;
  margin-bottom: 5px;
}

.cta-band__text {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  color: var(--text-light);
}

/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 14px 35px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn--primary {
  background: var(--primary);
  color: var(--text-light);
}

.btn--primary:hover {
  background: var(--primary-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--accent {
  background: var(--accent-blue);
  color: var(--text-light);
}

.btn--accent:hover {
  background: var(--accent-blue-dark);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

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

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

.btn--large {
  padding: 18px 45px;
  font-size: 1.1rem;
}

.btn--block {
  display: block;
  width: 100%;
}

/* ============================
   CONTACT FORM SECTION
   ============================ */
.contact-form-section {
  background: var(--bg-light-blue);
  padding: 60px 0;
}

.contact-form-section h2 {
  text-align: center;
  font-family: 'Dancing Script', cursive;
  font-size: 2.5rem;
  color: var(--primary-dark);
  margin-bottom: 10px;
}

.contact-form-section .subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.86);
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

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

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  padding: 14px 18px;
  border: 1px solid #dce8ec;
  border-radius: var(--radius-sm);
  background: var(--bg-white);
  color: var(--text-body);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(84, 193, 214, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aab8be;
  font-style: italic;
}

.form-submit {
  background: var(--accent-blue);
  color: var(--text-light);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  padding: 14px;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: var(--transition);
}

.form-submit:hover {
  background: var(--accent-blue-dark);
  transform: translateY(-1px);
}

/* ============================
   CONTENT SECTIONS
   ============================ */
.content-section {
  padding: 70px 0;
}

.content-section--alt {
  background: var(--bg-cream);
}

.content-section--blue {
  background: var(--primary-light);
  color: var(--text-light);
}

.content-section--blue h2,
.content-section--blue h3,
.content-section--blue p {
  color: var(--text-light);
}

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

.content-section h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.4rem;
  margin-bottom: 25px;
}

.content-section h2.script-heading {
  font-family: 'Dancing Script', cursive;
  font-style: italic;
  color: var(--primary-dark);
  font-size: 2.2rem;
}

.content-section p {
  text-align: justify;
  font-size: 1rem;
  line-height: 1.8;
}

.content-section .section-image {
  width: 100%;
  max-width: 700px;
  margin: 30px auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.paw-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.paw-icon svg {
  width: 40px;
  height: 40px;
  fill: var(--text-light);
}

/* ============================
   ZIGZAG SECTIONS (2-col alternating)
   ============================ */
.zigzag {
  padding: 60px 0;
}

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

.zigzag__row--reverse {
  direction: rtl;
}

.zigzag__row--reverse > * {
  direction: ltr;
}

.zigzag__image img {
  width: 100%;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.zigzag__text h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  color: var(--accent-blue);
  margin-bottom: 20px;
  font-style: italic;
}

.zigzag__text p {
  font-size: 1rem;
  line-height: 1.85;
  text-align: justify;
  color: var(--text-body);
}

.zigzag__text .paw-icon {
  margin: 0 0 15px;
  width: 65px;
  height: 65px;
  background: var(--accent-blue);
  opacity: 0.7;
}

.zigzag__text .paw-icon svg {
  width: 32px;
  height: 32px;
}

@media (max-width: 768px) {
  .zigzag__row,
  .zigzag__row--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .zigzag__image {
    order: -1;
  }
}

/* ============================
   WE WILL BE THERE SECTION
   ============================ */
.we-will-be-there {
  background: linear-gradient(135deg, var(--accent-blue) 0%, var(--primary-light) 100%);
  padding: 80px 0;
  color: var(--text-light);
}

.we-will-be-there h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.8rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 25px;
}

.we-will-be-there p {
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.we-will-be-there__image {
  display: block;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* ============================
   SERVICE AREA SPLIT LAYOUT
   ============================ */
.service-area__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
  padding: 40px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  color: var(--text-light);
}

.service-area__info h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.service-area__info p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.service-area__contact {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-detail svg {
  width: 32px;
  height: 32px;
  fill: var(--text-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-detail .phone-big {
  font-family: 'Dancing Script', cursive;
  font-size: 1.8rem;
  color: var(--text-light);
  display: block;
}

.contact-detail h4 {
  font-family: 'Dancing Script', cursive;
  font-size: 1.5rem;
  color: var(--text-light);
  margin-bottom: 5px;
}

.contact-detail p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  margin-bottom: 3px;
}

@media (max-width: 768px) {
  .service-area__split {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }
}

/* ============================
   CREMATION SECTION
   ============================ */
.cremation-section {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  padding: 80px 0;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.cremation-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('../images/cremation-bg.jpg') center / cover no-repeat;
  opacity: 0.15;
}

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

.cremation-section h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.6rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 25px;
}

.cremation-section p {
  color: rgba(255, 255, 255, 0.95);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 15px;
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ============================
   PRICING SECTION
   ============================ */
.pricing-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.pricing-section h2 {
  text-align: center;
  font-family: 'Dancing Script', cursive;
  font-size: 2.6rem;
  color: var(--text-dark);
  margin-bottom: 50px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--bg-white);
  border: 1px solid #e8eef1;
  border-top: 4px solid var(--primary-light);
  border-radius: var(--radius-md);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--primary);
}

.pricing-card h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 1.7rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.pricing-card .start-at {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 15px;
}

.pricing-card .price {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-style: italic;
  color: var(--accent-blue);
  margin: 15px 0;
  padding: 15px 0;
  border-top: 1px solid #e8eef1;
  border-bottom: 1px solid #e8eef1;
}

.pricing-card .description {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 20px 0;
  text-align: justify;
}

.pricing-card .btn {
  margin-top: 10px;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  padding: 25px;
  background: var(--bg-light-blue);
  border-radius: var(--radius-md);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-note h4 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.pricing-note p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 5px;
}

.pricing-note a {
  color: var(--primary-dark);
  font-weight: 600;
}

/* ============================
   PAYMENT METHODS
   ============================ */
.payment-section {
  background: var(--primary-light);
  padding: 60px 0;
  color: var(--text-light);
}

.payment-section h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.4rem;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 40px;
}

.payment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.payment-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 30px;
  border-radius: var(--radius-lg);
  text-align: center;
}

.payment-card h3 {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.payment-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.payment-icons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 15px;
}

.payment-icons img {
  height: 35px;
  width: auto;
}

.payment-note {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  font-style: italic;
}

/* ============================
   ABOUT DOCTOR SECTION
   ============================ */
.about-doctor {
  padding: 80px 0;
  background: var(--bg-cream);
}

.about-doctor .container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 50px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.doctor-photo {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-doctor h2 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.6rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.about-doctor p {
  font-size: 1rem;
  line-height: 1.8;
  text-align: justify;
}

/* ============================
   SERVICE AREA / CONTACT
   ============================ */
.service-area {
  padding: 80px 0;
  background: var(--bg-white);
}

.service-area h2 {
  text-align: center;
  font-family: 'Dancing Script', cursive;
  font-size: 2.4rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.service-area .subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 40px;
  font-size: 1.05rem;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  max-width: 900px;
  margin: 0 auto 40px;
}

.city-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--bg-light-blue);
  border-radius: var(--radius-md);
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  border-left: 3px solid var(--primary-light);
}

.city-link:hover {
  background: var(--primary-light);
  color: var(--text-light);
  border-left-color: var(--primary-dark);
  transform: translateX(5px);
}

.city-link svg {
  width: 16px;
  height: 16px;
  fill: var(--primary);
  flex-shrink: 0;
}

.city-link:hover svg {
  fill: var(--text-light);
}

.contact-info-box {
  text-align: center;
  background: var(--gradient-cta);
  padding: 40px;
  border-radius: var(--radius-lg);
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.contact-info-box .phone {
  font-family: 'Dancing Script', cursive;
  font-size: 2.2rem;
  margin-bottom: 10px;
  display: block;
}

.contact-info-box .phone a {
  color: var(--text-light);
}

.contact-info-box .hours {
  font-size: 1rem;
  margin-top: 15px;
  opacity: 0.9;
}

.contact-info-box .hours strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--primary-dark);
  color: var(--text-light);
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.footer__brand img {
  height: 50px;
  margin-bottom: 15px;
}

.footer__brand p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer__links a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  padding: 5px 0;
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--text-light);
  padding-left: 8px;
}

.footer__contact p,
.footer__contact a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin-bottom: 8px;
  display: block;
}

.footer__contact a:hover {
  color: var(--text-light);
}

.footer__social {
  display: flex;
  gap: 12px;
  margin-top: 15px;
}

.footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  color: var(--text-light);
  transition: var(--transition);
}

.footer__social a:hover {
  background: var(--text-light);
  color: var(--primary-dark);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

/* ============================
   SCROLL TO TOP
   ============================ */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--text-light);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 900;
  box-shadow: var(--shadow-md);
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
}

.scroll-top svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* ============================
   BREADCRUMB
   ============================ */
.breadcrumb {
  padding: 15px 0;
  background: var(--bg-light-blue);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb__list a {
  color: var(--primary-dark);
}

.breadcrumb__list span {
  color: var(--text-muted);
}

.breadcrumb__list .separator {
  color: var(--text-muted);
}

/* ============================
   CONSENT FORM PAGE
   ============================ */
.consent-page {
  padding: 60px 0;
}

.consent-page h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.8rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 10px;
}

.consent-page .intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  color: var(--text-muted);
  font-size: 1rem;
}

.consent-form-container {
  max-width: 750px;
  margin: 0 auto;
  background: var(--bg-white);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  border-top: 4px solid var(--primary);
}

.consent-form-container h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--primary-dark);
  margin-top: 35px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg-light-blue);
}

.consent-form-container h2:first-child {
  margin-top: 0;
}

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

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.form-group.required label::after {
  content: ' *';
  color: #e74c3c;
}

.radio-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.radio-group label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  cursor: pointer;
  padding: 12px 18px;
  background: var(--bg-light-blue);
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  transition: var(--transition);
}

.radio-group label:hover {
  border-color: var(--primary-light);
}

.radio-group input[type="radio"] {
  width: auto;
  accent-color: var(--primary);
}

.radio-group input[type="radio"]:checked + span {
  font-weight: 600;
}

.checkbox-group {
  padding: 20px;
  background: var(--bg-light-blue);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 400;
  cursor: pointer;
  line-height: 1.6;
}

.checkbox-group input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  accent-color: var(--primary);
}

.signature-note {
  text-align: center;
  padding: 20px;
  background: #fef9e7;
  border-radius: var(--radius-md);
  border: 1px solid #f9e79f;
  color: var(--text-body);
  font-style: italic;
  margin: 25px 0;
}

.consent-actions {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.consent-actions .btn {
  flex: 1;
}

/* ============================
   CITY PAGE
   ============================ */
.city-hero {
  background: var(--gradient-cta);
  padding: 80px 20px;
  text-align: center;
  color: var(--text-light);
}

.city-hero h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 3rem;
  color: var(--text-light);
  margin-bottom: 15px;
}

.city-hero p {
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
}

.city-content {
  padding: 60px 0;
}

.city-content .container {
  max-width: 1000px;
}

.city-content h2 {
  font-family: 'Dancing Script', cursive;
  color: var(--primary-dark);
  margin-top: 40px;
}

/* City Pricing Cards */
.city-pricing {
  margin: 40px 0;
}

.city-pricing h2 {
  text-align: center;
  margin-bottom: 30px;
}

.city-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 25px;
}

.city-price-card {
  background: var(--bg-white);
  border: 1px solid #e8eef1;
  border-top: 4px solid var(--primary-light);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.city-price-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-top-color: var(--primary);
}

.city-price-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.city-price-card .city-price {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-style: italic;
  color: var(--accent-blue);
  margin: 10px 0;
  padding: 10px 0;
  border-top: 1px solid #e8eef1;
  border-bottom: 1px solid #e8eef1;
}

.city-price-card .city-price span {
  display: block;
  font-size: 0.75rem;
  font-style: normal;
  color: var(--text-muted);
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 4px;
}

.city-price-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 15px;
}

.city-price-card .btn {
  font-size: 0.85rem;
  padding: 10px 20px;
  width: 100%;
}

.city-pricing-note {
  text-align: center;
  padding: 20px;
  background: var(--bg-light-blue);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-body);
}

.city-pricing-note a {
  font-weight: 700;
  color: var(--primary-dark);
}

.city-cta-box {
  text-align: center;
  margin: 40px 0 10px;
  padding: 35px 25px;
  background: var(--gradient-cta);
  border-radius: var(--radius-lg);
  color: var(--text-light);
}

.city-cta-box h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--text-light);
  margin-bottom: 10px;
}

.city-cta-box p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.city-cta-box .btn--outline {
  font-size: 1.1rem;
  padding: 15px 40px;
  border-width: 2px;
}

@media (max-width: 768px) {
  .city-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 350px;
    margin-left: auto;
    margin-right: auto;
  }

  .city-content .container {
    max-width: 100%;
  }
}

.city-sidebar {
  margin-top: 40px;
  padding: 30px;
  background: var(--bg-light-blue);
  border-radius: var(--radius-lg);
}

.city-sidebar h3 {
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.city-sidebar .cities-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.city-sidebar .cities-list a {
  font-size: 0.9rem;
  color: var(--primary-dark);
  padding: 6px 0;
}

.city-sidebar .cities-list a:hover {
  color: var(--primary);
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */
@media (max-width: 992px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }

  .header__nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

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

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

  .doctor-photo {
    max-width: 280px;
    margin: 0 auto;
  }

  .payment-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

@media (max-width: 768px) {
  .hero__content h1 {
    font-size: 2.5rem;
  }

  .hero__content p {
    font-size: 1rem;
  }

  .cta-band__phone {
    font-size: 2.2rem;
  }

  .cta-band__text {
    font-size: 1.5rem;
  }

  .contact-form {
    padding: 25px 20px;
    margin: 0 15px;
  }

  .content-section {
    padding: 50px 0;
  }

  .content-section h2 {
    font-size: 2rem;
  }

  .cremation-section h2 {
    font-size: 2.2rem;
  }

  .pricing-section h2 {
    font-size: 2.2rem;
    margin-bottom: 35px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

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

  .consent-form-container {
    padding: 30px 20px;
  }

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

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

  .city-hero h1 {
    font-size: 2.3rem;
  }

  .city-sidebar .cities-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .top-bar .container {
    flex-direction: column;
    gap: 5px;
  }

  .hero__content h1 {
    font-size: 2rem;
  }

  .cta-band__phone {
    font-size: 1.8rem;
  }

  .cta-band__text {
    font-size: 1.3rem;
  }

  .section-padding {
    padding: 50px 0;
  }

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

  .contact-info-box {
    margin: 0 10px;
    padding: 30px 20px;
  }

  .contact-info-box .phone {
    font-size: 1.8rem;
  }
}

/* ============================
   BENEFITS STRIP (replaces CTA band)
   ============================ */
.benefits-strip {
  background: var(--gradient-cta);
  padding: 50px 20px;
}

.benefits-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.benefit-item {
  text-align: center;
  color: var(--text-light);
  padding: 25px 15px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.benefit-item:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
}

.benefit-item__icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.benefit-item:hover .benefit-item__icon {
  background: rgba(255, 255, 255, 0.35);
  transform: scale(1.1);
}

.benefit-item__icon svg {
  width: 32px;
  height: 32px;
  fill: var(--text-light);
}

.benefit-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: var(--text-light);
  margin-bottom: 8px;
}

.benefit-item p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .benefits-strip__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
}

/* ============================
   TESTIMONIALS SECTION
   ============================ */
.testimonials-section {
  padding: 80px 0;
  background: var(--bg-cream);
}

.testimonials-section h2 {
  text-align: center;
  font-family: 'Dancing Script', cursive;
  font-size: 2.6rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.testimonials-section .subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 45px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  padding: 35px 30px;
  box-shadow: var(--shadow-card);
  border-top: 3px solid var(--primary-light);
  transition: var(--transition);
  position: relative;
}

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

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 15px;
  right: 25px;
  font-size: 4rem;
  font-family: 'Playfair Display', serif;
  color: var(--primary-lighter);
  line-height: 1;
  opacity: 0.5;
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 15px;
}

.testimonial-card__stars svg {
  width: 18px;
  height: 18px;
  fill: #f5b731;
}

.testimonial-card__text {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-body);
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f0f0f0;
  padding-top: 18px;
}

.testimonial-card__avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--gradient-cta);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 0.95rem;
  margin-bottom: 2px;
}

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

.testimonials-cta {
  text-align: center;
  margin-top: 40px;
}

.testimonials-cta p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 5px;
}

.testimonials-cta a {
  font-weight: 700;
  color: var(--primary-dark);
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* ============================
   FAQ SECTION (Accordion)
   ============================ */
.faq-section {
  padding: 80px 0;
  background: var(--bg-white);
}

.faq-section h2 {
  text-align: center;
  font-family: 'Dancing Script', cursive;
  font-size: 2.6rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.faq-section .subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 45px;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e8eef1;
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary-light);
}

.faq-item.open {
  border-color: var(--primary);
  box-shadow: 0 2px 12px rgba(84, 193, 214, 0.12);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  background: var(--bg-white);
  border: none;
  width: 100%;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  transition: var(--transition);
}

.faq-question:hover {
  background: var(--bg-light-blue);
}

.faq-item.open .faq-question {
  background: var(--bg-light-blue);
  color: var(--primary-dark);
}

.faq-question__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--bg-light-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  margin-left: 15px;
}

.faq-item.open .faq-question__icon {
  background: var(--primary);
  transform: rotate(180deg);
}

.faq-question__icon svg {
  width: 14px;
  height: 14px;
  fill: var(--primary);
  transition: fill 0.3s ease;
}

.faq-item.open .faq-question__icon svg {
  fill: var(--text-light);
}

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

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer__inner {
  padding: 0 25px 25px;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-body);
}

.faq-answer__inner a {
  color: var(--primary-dark);
  font-weight: 600;
}

.faq-cta {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: var(--bg-light-blue);
  border-radius: var(--radius-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-cta p {
  font-size: 1.05rem;
  margin-bottom: 15px;
  color: var(--text-dark);
}

/* ============================
   INLINE SCROLL CTA BANDS
   ============================ */
.scroll-cta {
  background: var(--gradient-cta);
  padding: 28px 20px;
  text-align: center;
}

.scroll-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: var(--max-width);
  margin: 0 auto;
  flex-wrap: wrap;
}

.scroll-cta__text {
  color: var(--text-light);
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
}

.scroll-cta__text span {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  opacity: 0.9;
  margin-top: 3px;
}

.scroll-cta .btn--outline {
  padding: 12px 32px;
  font-size: 1rem;
  border-width: 2px;
  white-space: nowrap;
  animation: cta-pulse 2.5s infinite ease-in-out;
}

@keyframes cta-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
  50% { transform: scale(1.03); box-shadow: 0 0 20px 5px rgba(255,255,255,0.15); }
}

.scroll-cta .btn--outline svg {
  width: 18px;
  height: 18px;
  fill: var(--text-light);
  vertical-align: middle;
  margin-right: 6px;
}

/* Alternate style for variety */
.scroll-cta--alt {
  background: var(--bg-light-blue);
  border-top: 2px solid var(--primary-lighter);
  border-bottom: 2px solid var(--primary-lighter);
}

.scroll-cta--alt .scroll-cta__text {
  color: var(--text-dark);
}

.scroll-cta--alt .scroll-cta__text span {
  color: var(--text-muted);
}

.scroll-cta--alt .btn--primary {
  padding: 12px 32px;
  font-size: 1rem;
  animation: cta-pulse-alt 2.5s infinite ease-in-out;
}

@keyframes cta-pulse-alt {
  0%, 100% { transform: scale(1); box-shadow: var(--shadow-card); }
  50% { transform: scale(1.03); box-shadow: var(--shadow-lg); }
}

@media (max-width: 768px) {
  .scroll-cta__inner {
    flex-direction: column;
    gap: 12px;
  }

  .scroll-cta__text {
    font-size: 1.05rem;
  }
}

/* ============================
   STICKY MOBILE CTA BAR
   ============================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: var(--primary);
  padding: 12px 20px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.sticky-cta__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--text-light);
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 30px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  width: 100%;
  text-align: center;
  transition: var(--transition);
}

.sticky-cta__link:hover {
  background: rgba(255, 255, 255, 0.25);
  color: var(--text-light);
}

.sticky-cta__link svg {
  width: 20px;
  height: 20px;
  fill: var(--text-light);
  animation: phone-ring 1.5s infinite ease-in-out;
}

@keyframes phone-ring {
  0%, 100% { transform: rotate(0deg); }
  15% { transform: rotate(15deg); }
  30% { transform: rotate(-10deg); }
  45% { transform: rotate(10deg); }
  60% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
}

@media (max-width: 768px) {
  .sticky-cta {
    display: block;
  }

  /* Make room for sticky bar */
  .scroll-top {
    bottom: 85px;
  }

  body {
    padding-bottom: 70px;
  }
}

/* ============================
   FAQ DEDICATED PAGE
   ============================ */
.faq-page {
  padding: 60px 0;
}

.faq-page h1 {
  font-family: 'Dancing Script', cursive;
  font-size: 2.8rem;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 10px;
}

.faq-page .intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.faq-page .faq-list {
  max-width: 850px;
}

.faq-page .faq-category {
  margin-bottom: 40px;
}

.faq-page .faq-category h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--primary-dark);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--bg-light-blue);
  text-align: left;
}

/* ---- Print Styles ---- */
@media print {
  .top-bar,
  .header,
  .footer,
  .scroll-top,
  .menu-toggle,
  .mobile-nav,
  .mobile-overlay {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .consent-form-container {
    box-shadow: none;
    border: 1px solid #ccc;
  }

  .consent-actions .btn--accent {
    display: none;
  }
}
