/* Fayth Skin & Hair Clinic palette – aligned with faythclinic.com/skin-hair-clinic-in-mumbai/ */
:root {
  --color-bg: #f5f8f7;
  --color-surface: #fff;
  --color-text: #2c3e50;
  --color-text-muted: #5a6c7d;
  --color-accent: #254880;
  --color-accent-light: #B2EF94;
  --color-border: #e0e8e6;
  --color-hero-bg: #e5f0ed;
  --color-hero-warm: #f8f7f4;
  --color-btn-submit: #254880;
  --color-btn-submit-hover: #254880;
  --color-check: #1a7a5c;
  --color-footer-dark: #0c316c;
  --color-footer-darker: #254880;
  --color-footer-text: #e8f0ee;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 1.5rem;
  --radius: 8px;
  --radius-form: 12px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 248, 247, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}


.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: block;
  text-decoration: none;
}

.logo img {
  display: block;
  height: 48px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
}

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

.btn-nav {
  background: var(--color-accent);
  color: var(--color-surface) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
}

.btn-nav:hover {
  background: var(--color-accent-light);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
}

/* Mobile-only compact form in header */
.header-form-mobile {
  display: none;
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--color-surface);
    padding: var(--space-md);
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow);
  }
  .nav.is-open {
    display: flex;
  }
  .menu-toggle {
    display: flex;
  }
  .header-form-mobile {
    display: block;
    border-top: 1px solid var(--color-border);
    background: rgba(245, 248, 247, 0.98);
    padding: 8px 0 10px;
  }
  .header-quick-form {
    display: flex;
    gap: 6px;
    align-items: center;
  }
  .header-quick-form input {
    flex: 1;
    min-width: 0;
    padding: 8px 10px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.82rem;
    background: var(--color-surface);
  }
  .header-quick-form input:focus {
    outline: none;
    border-color: var(--color-accent);
  }
  .header-quick-form button {
    white-space: nowrap;
    padding: 8px 12px;
    background: var(--color-accent);
    color: #fff;
    border: none;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
  }
}

/* Hero – two-column (content left, form right) */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(72px + var(--space-xl)) var(--space-md) var(--space-xl);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--color-hero-bg) 0%, var(--color-bg) 50%);
  z-index: -1;
}

.hero-split .hero-bg {
  background: linear-gradient(135deg, var(--color-hero-bg) 0%, var(--color-hero-warm) 100%);
}

.hero-inner {
  text-align: center;
  width: 100%;
}

.hero-split .hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  text-align: left;
  max-width: 1100px;
}

.hero-content {
  min-width: 0;
}

.hero-title {
  margin: 0 0 var(--space-md);
}

.hero-title .hero-logo {
  max-width: 160px;
  height: auto;
  width: auto;
}

.hero-split .hero-title .hero-logo {
  margin: 0;
}

.hero-heading {
  font-family: var(--font-body);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 var(--space-sm);
  line-height: 1.25;
}

.hero-desc {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-md);
  line-height: 1.5;
}

.hero-cta {
  display: inline-block;
  margin-bottom: var(--space-md);
}

.hero-features {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg);
  font-size: 0.95rem;
  color: var(--color-text);
}

.hero-features li {
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.hero-features li::before {
  content: "✓";
  color: var(--color-check);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

/* Hero form card (white, rounded) */
.hero-form-wrap {
  flex-shrink: 0;
}

.hero-form {
  background: var(--color-surface);
  padding: var(--space-lg);
  border-radius: var(--radius-form);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.hero-form .form-row {
  margin-bottom: var(--space-md);
}

.hero-form .form-row:last-of-type {
  margin-bottom: var(--space-md);
}

.required {
  color: #c00;
}

.btn-hero-submit {
  width: 100%;
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  background: var(--color-btn-submit);
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s;
}

.btn-hero-submit:hover {
  background: var(--color-btn-submit-hover);
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-surface);
}

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

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

.btn-secondary:hover {
  background: var(--color-accent);
  color: var(--color-surface);
}

@media (max-width: 900px) {
  .hero-split .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-split .hero-title .hero-logo {
    margin: 0 auto;
  }

  .hero-form-wrap {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  /* Extra header height for the mobile quick-form row (~58px) */
  /* .hero {
    padding-top: calc(72px + 58px + var(--space-xl));
  } */
}

/* Sections */
.section {
  padding: var(--space-xl) 0;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 var(--space-md);
  text-align: center;
}

.section-lead {
  max-width: 640px;
  margin: 0 auto var(--space-lg);
  text-align: center;
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

/* Why */
.why-section {
  background: var(--color-surface);
  box-shadow: var(--shadow);
}

.why-list {
  list-style: none;
  padding: 0;
  max-width: 520px;
  margin: 0 auto var(--space-lg);
}

.why-list li {
  padding: var(--space-sm) 0;
  padding-left: 2rem;
  position: relative;
}

.why-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: 600;
}

.why-section .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}

/* Treatments – Skin and Hair Clinic in Mumbai (card style with circular images) */
.treatments-section.skin-hair-clinic {
  position: relative;
  overflow: hidden;
}

.treatments-wavy-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.6;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 320'%3E%3Cpath fill='%23d4edda' fill-opacity='0.4' d='M0,160L48,176C96,192,192,224,288,213.3C384,203,480,149,576,138.7C672,128,768,160,864,165.3C960,171,1056,149,1152,138.7C1248,128,1344,128,1392,128L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3Cpath fill='%23e5f0ed' fill-opacity='0.5' d='M0,96L48,112C96,128,192,160,288,165.3C384,171,480,149,576,138.7C672,128,768,128,864,144C960,160,1056,192,1152,186.7C1248,181,1344,139,1392,117.3L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3Cpath fill='%23c8e6df' fill-opacity='0.35' d='M0,224L48,208C96,192,192,160,288,170.7C384,181,480,235,576,234.7C672,235,768,181,864,165.3C960,149,1056,171,1152,181.3C1248,192,1344,192,1392,192L1440,192L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z'%3E%3C/path%3E%3C/svg%3E"),
    linear-gradient(180deg, #f5f8f7 0%, #eef5f3 50%, #e8f0ee 100%);
  background-size: 100% 200px, 100% 100%;
  background-repeat: repeat-x, no-repeat;
  background-position: 0 100%, 0 0;
}

.skin-hair-clinic .container {
  position: relative;
  z-index: 1;
}

.treatments-section-heading {
  font-family: var(--font-body);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 var(--space-xs);
  text-align: center;
}

.treatments-section-sub {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-lg);
  text-align: center;
}

/* Treatments – static grid */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  max-width: 860px;
  margin: 0 auto;
}

.treatment-card.treatment-card-visual {
  background: var(--color-surface);
  padding: var(--space-md);
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(26, 95, 74, 0.08);
  text-align: center;
  border: 1px solid var(--color-border);
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}

.treatment-card.treatment-card-visual:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.treatment-card-image-wrap {
  width: 90px;
  height: 90px;
  margin: 0 auto var(--space-sm);
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--color-border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.treatment-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.treatment-card-title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
  line-height: 1.35;
}

.treatment-card p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .treatments-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 360px;
    gap: var(--space-sm);
  }
  .treatment-card-image-wrap {
    width: 72px;
    height: 72px;
  }
  .treatment-card-title {
    font-size: 0.82rem;
  }
}

/* Care / Reviews Carousel */
.care-section {
  background: var(--color-surface);
}

.reviews-carousel-wrap {
  max-width: 800px;
  margin: var(--space-lg) auto 0;
}

/* Google-style review badge: Excellent | stars | 770 reviews Google (blue link) */
.google-review-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin: 0 0 var(--space-md);
  font-size: 0.95rem;
}

.google-review-badge .rating-text {
  color: #3c4043;
  font-weight: 500;
}

.google-review-badge .stars {
  display: inline-flex;
  gap: 1px;
}

.google-review-badge .star {
  color: #f9ab00;
  font-size: 1.1rem;
  line-height: 1;
}

.google-review-badge .review-link {
  color: #1a73e8;
  text-decoration: none;
  font-weight: 500;
}

.google-review-badge .review-link:hover {
  text-decoration: underline;
}

.reviews-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--color-accent);
  transition: background 0.2s, border-color 0.2s;
}

.carousel-btn:hover {
  background: var(--color-bg);
  border-color: var(--color-accent);
}

.reviews-viewport {
  flex: 1;
  overflow: hidden;
}

.reviews-track {
  display: flex;
  transition: transform 0.35s ease-out;
}

.review-slide {
  flex: 0 0 100%;
  min-width: 100%;
  padding: var(--space-md);
  background: var(--color-bg);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
}

.review-author {
  font-weight: 600;
  margin: 0 0 var(--space-xs);
  font-size: 0.95rem;
}

.review-date {
  margin: 0 0 var(--space-xs);
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.review-slide .review {
  font-style: italic;
  color: var(--color-text-muted);
  margin: 0;
  font-size: 0.95rem;
}

/* FAQ */
.faq-list {
  max-width: 600px;
  margin: var(--space-lg) auto 0;
}

.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: var(--space-sm);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.faq-item summary {
  padding: var(--space-md) var(--space-lg);
  font-weight: 500;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--color-accent);
  font-size: 1.25rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 var(--space-lg) var(--space-md);
  padding-top: 0;
  color: var(--color-text-muted);
  font-size: 0.95rem;
}

/* Contact form */
.contact-section {
  background: linear-gradient(180deg, var(--color-hero-bg) 0%, var(--color-bg) 100%);
}

.contact-form {
  max-width: 480px;
  /* margin: var(--space-lg) auto 0; */
}

.form-row {
  margin-bottom: var(--space-md);
}

.form-row label {
  display: block;
  margin-bottom: var(--space-xs);
  font-weight: 500;
  font-size: 0.9rem;
}

.optional {
  font-weight: 400;
  color: var(--color-text-muted);
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  background: var(--color-surface);
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(26, 95, 74, 0.15);
}

.form-row textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  width: 100%;
  margin-top: var(--space-sm);
  padding: 1rem;
}

/* Footer – Skin & Hair clinic teal gradient (aligned with faythclinic.com) */
.footer {
  background: linear-gradient(180deg, var(--color-footer-dark) 0%, var(--color-footer-darker) 100%);
  border-radius: 24px 24px 0 0;
  margin-top: var(--space-xl);
  overflow: hidden;
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-md);
}

.footer-top {
  text-align: center;
}

.footer-logo-block {
  margin-bottom: var(--space-lg);
}

.footer-logo-img {
  display: block;
  margin: 0 auto;
  height: 56px;
  width: auto;
  max-width: 180px;
  filter: brightness(0) invert(1);
}

.footer-tagline {
  margin: var(--space-xs) 0 0;
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--color-footer-text);
  text-transform: uppercase;
}

.footer-social-icons {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.footer-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-footer-dark);
  transition: opacity 0.2s;
}

.footer-social-icon:hover {
  opacity: 0.9;
}

.footer-quick-links {
  margin-bottom: var(--space-lg);
}

.footer-quick-title {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-footer-text);
  margin: 0 0 var(--space-sm);
}

.footer-links-inline {
  font-size: 0.9rem;
  color: var(--color-footer-text);
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
  align-items: center;
  gap: 0.15rem;
  line-height: 1.8;
}

.footer-links-inline a {
  color: var(--color-footer-text);
  text-decoration: none;
}

.footer-links-inline a:hover {
  text-decoration: underline;
}

.footer-sep {
  color: rgba(232, 240, 238, 0.7);
  user-select: none;
}

.footer-call-block {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.footer-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.footer-whatsapp:hover {
  transform: scale(1.05);
}

.footer-call-text {
  text-align: left;
}

.footer-call-label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-footer-text);
}

.footer-call-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-footer-text);
  text-decoration: none;
}

.footer-call-number:hover {
  text-decoration: underline;
}

/* Address cards – two columns, dark brown rounded cards */
.footer-address-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

.footer-address-card {
  background: rgba(13, 46, 38, 0.7);
  border-radius: 16px;
  padding: var(--space-lg);
  text-align: center;
  border: 1px solid rgba(232, 240, 238, 0.2);
}

.footer-pin-icon {
  display: block;
  margin: 0 auto var(--space-md);
  color: var(--color-footer-text);
}

.footer-branch-name {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-footer-text);
  margin: 0 0 var(--space-sm);
  line-height: 1.3;
}

.footer-branch-address {
  font-size: 0.9rem;
  color: var(--color-footer-text);
  margin: 0;
  line-height: 1.5;
  opacity: 0.95;
}

@media (max-width: 640px) {
  .footer-address-cards {
    grid-template-columns: 1fr;
  }

  .footer-links-inline {
    flex-direction: column;
    align-items: center;
  }

  .footer-sep {
    display: none;
  }
}

/* Sticky mobile CTA bar */
.sticky-mobile-cta {
  display: none;
}

@media (max-width: 768px) {
  .sticky-mobile-cta {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 300;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.15);
  }

  .sticky-btn {
    flex: 1;
    text-align: center;
    padding: 0.95rem 0.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .sticky-enquire {
    background: var(--color-accent);
    color: #fff;
  }

  .sticky-call {
    background: #25d366;
    color: #fff;
  }

  body {
    padding-bottom: 60px;
  }
}
