:root {
  --cream: #FAF7F2;
  --sandal: #E8DDD0;
  --sandal-dark: #C9B8A8;
  --white: #FFFFFF;
  --gray-light: #F0EDEA;
  --gray-mid: #9E9488;
  --text-dark: #2C2420;
  --text-body: #4A4540;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-body);
  background-color: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.15;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }
}

@media (min-width: 1024px) {
  .container {
    padding: 0 48px;
  }
}

/* Announcement Bar */
.announcement-bar {
  background-color: var(--sandal);
  padding: 8px 0;
  text-align: center;
}

.announcement-bar p {
  font-size: 12px;
  color: var(--gray-mid);
  letter-spacing: 0.02em;
}

/* Navbar */
.navbar {
  background-color: var(--white);
  border-bottom: 1px solid var(--sandal);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

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

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

.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.1;
}

.logo-sub {
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-mid);
  margin-top: 2px;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 14px;
  color: var(--text-body);
  position: relative;
  transition: color 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-dark);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--sandal-dark);
  transition: width 0.25s ease;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
  text-decoration: none;
}

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

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

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

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

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

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

.btn-pill {
  border-radius: 50px;
  padding: 10px 24px;
}

.nav-cta {
  display: none;
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--text-dark);
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  background-color: var(--cream);
  z-index: 1001;
  transition: right 0.4s ease;
  display: flex;
  flex-direction: column;
  padding: 80px 40px 40px;
}

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

.mobile-menu a {
  font-size: 24px;
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-dark);
  padding: 16px 0;
  border-bottom: 1px solid var(--sandal);
}

.mobile-menu .btn-primary {
  margin-top: 24px;
  text-align: center;
}

.mobile-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 32px;
  cursor: pointer;
  color: var(--text-dark);
  font-family: 'Inter', sans-serif;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .nav-cta {
    display: inline-flex;
  }
  .hamburger {
    display: none;
  }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero Section */
.hero {
  background-color: var(--cream);
  padding: 60px 0 80px;
}

.hero .container {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero-content {
  flex: 1;
}

.hero-image {
  flex: 1;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: cover;
  border-radius: 6px;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-mid);
  margin-bottom: 16px;
}

.hero h1 {
  font-size: 42px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-rule {
  width: 60px;
  height: 1px;
  background-color: var(--sandal-dark);
  margin-bottom: 20px;
}

.hero p {
  font-size: 16px;
  max-width: 480px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.trust-row {
  font-size: 13px;
  color: var(--gray-mid);
}

@media (min-width: 768px) {
  .hero {
    padding: 80px 0 100px;
  }
  .hero .container {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }
  .hero h1 {
    font-size: 56px;
  }
  .hero-image img {
    max-height: 600px;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 64px;
  }
}

/* Trust Pillars */
.trust-pillars {
  background-color: var(--gray-light);
  padding: 40px 0;
}

.pillars-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-body);
}

.pillar-icon {
  font-size: 20px;
}

@media (min-width: 768px) {
  .pillars-grid {
    gap: 0;
  }
  .pillar-item {
    padding: 0 32px;
    border-right: 1px solid var(--sandal-dark);
  }
  .pillar-item:last-child {
    border-right: none;
  }
}

/* Section Styles */
.section-padding {
  padding: 80px 0;
}

@media (min-width: 768px) {
  .section-padding {
    padding: 100px 0;
  }
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.section-header p {
  max-width: 560px;
  margin: 0 auto;
}

/* Two Column Layout */
.two-col {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.two-col .col-left,
.two-col .col-right {
  flex: 1;
}

@media (min-width: 768px) {
  .two-col {
    flex-direction: row;
    gap: 60px;
  }
  .two-col .col-left {
    flex: 0 0 55%;
  }
  .two-col .col-right {
    flex: 0 0 45%;
  }
}

/* Promise Section */
.promise-section {
  background-color: var(--cream);
}

.promise-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.promise-section p {
  margin-bottom: 24px;
}

.feature-list {
  list-style: none;
  margin-bottom: 24px;
}

.feature-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--sandal);
  font-size: 15px;
}

.feature-list li:first-child {
  border-top: 1px solid var(--sandal);
}

.text-link {
  font-size: 15px;
  color: var(--text-dark);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
}

.text-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--sandal-dark);
  transition: width 0.25s ease;
}

.text-link:hover::after {
  width: 100%;
}

.image-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.image-grid-2x2 img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* Services Preview */
.services-preview {
  background-color: var(--sandal);
}

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

.service-card {
  background-color: var(--white);
  border: 1px solid var(--sandal-dark);
  border-radius: 8px;
  padding: 28px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border-color: var(--sandal-dark);
}

.service-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--gray-mid);
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Stats Section */
.stats-section {
  background-color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 6px;
}

.stat-item p {
  font-size: 13px;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .stat-item {
    padding: 0 24px;
    border-right: 1px solid var(--sandal);
  }
  .stat-item:last-child {
    border-right: none;
  }
}

/* Gallery Teaser */
.gallery-teaser {
  columns: 2;
  column-gap: 12px;
}

.gallery-teaser-item {
  break-inside: avoid;
  margin-bottom: 12px;
}

.gallery-teaser-item img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  transition: opacity 0.3s ease;
}

.gallery-teaser-item img:hover {
  opacity: 0.88;
}

@media (min-width: 768px) {
  .gallery-teaser {
    columns: 3;
  }
}

/* Testimonials */
.testimonials {
  background-color: var(--sandal);
}

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

.testimonial-card {
  background-color: var(--white);
  border: 1px solid var(--sandal-dark);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  color: var(--sandal-dark);
  line-height: 1;
  margin-bottom: 8px;
}

.testimonial-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.5;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
}

.stars {
  color: var(--sandal-dark);
  font-size: 14px;
}

.rating-bar {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: var(--gray-mid);
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* CTA Banner */
.cta-banner {
  background-color: var(--sandal-dark);
  color: var(--cream);
  text-align: center;
  padding: 80px 0;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 36px;
  margin-bottom: 12px;
}

.cta-banner p {
  margin-bottom: 28px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background-color: var(--white);
  border-top: 1px solid var(--sandal);
  padding: 60px 0 30px;
}

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

.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-mid);
  margin-bottom: 16px;
  font-weight: 500;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-body);
  padding: 6px 0;
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: var(--text-dark);
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
}

.footer-logo .logo-main {
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 14px;
  color: var(--gray-mid);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

.social-icons {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.social-icons a {
  color: var(--gray-mid);
  transition: color 0.25s ease;
}

.social-icons a:hover {
  color: var(--text-dark);
}

.footer-bottom {
  border-top: 1px solid var(--sandal);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--gray-mid);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  }
}

/* Page Hero */
.page-hero {
  background-color: var(--cream);
  padding: 80px 0 60px;
  text-align: center;
}

.page-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.page-hero p {
  max-width: 560px;
  margin: 0 auto;
  font-size: 16px;
}

.page-hero .hero-rule {
  margin: 24px auto 0;
}

@media (min-width: 768px) {
  .page-hero h1 {
    font-size: 48px;
  }
}

/* Services Page Grid */
.services-full-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-full-card {
  background-color: var(--white);
  border: 1px solid var(--sandal);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-full-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  border-color: var(--sandal-dark);
}

.service-full-card img {
  width: 100%;
  height: auto;
}

.service-full-card .card-body {
  padding: 24px;
}

.service-full-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.service-full-card p {
  font-size: 15px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .services-full-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .services-full-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Why Choose Section */
.why-choose {
  background-color: var(--sandal);
  padding: 60px 0;
}

.why-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.why-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.why-item .icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.why-item h4 {
  font-size: 18px;
  font-family: 'Cormorant Garamond', serif;
}

/* Gallery Filter */
.gallery-filter {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
}

.filter-btn {
  padding: 8px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  border: 1px solid var(--sandal);
  background-color: var(--cream);
  color: var(--gray-mid);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--sandal-dark);
  color: var(--white);
  border-color: var(--sandal-dark);
}

/* Masonry Gallery */
.gallery-grid {
  columns: 2;
  column-gap: 14px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 14px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  transition: opacity 0.3s ease;
}

.gallery-item:hover img {
  opacity: 0.88;
}

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

@media (min-width: 768px) {
  .gallery-grid {
    columns: 3;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    columns: 1;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(250, 247, 242, 0.97);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 6px;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox.open img {
  transform: scale(1);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 32px;
  color: var(--text-dark);
  cursor: pointer;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sandal-dark);
  border-radius: 50%;
  background-color: var(--white);
  transition: all 0.25s ease;
}

.lightbox-close:hover {
  background-color: var(--sandal);
}

/* About Page */
.story-section {
  background-color: var(--cream);
}

.story-section .two-col {
  align-items: center;
}

.story-section img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

.story-section h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.story-section p {
  margin-bottom: 16px;
}

/* Doctors */
.doctors-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.doctor-card {
  text-align: center;
}

.doctor-card img {
  width: 100%;
  max-width: 320px;
  height: auto;
  border-radius: 6px;
  margin: 0 auto 20px;
}

.doctor-card h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.doctor-card .qualification {
  font-size: 13px;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.doctor-card .speciality {
  font-size: 15px;
  color: var(--text-body);
  margin-bottom: 10px;
  font-weight: 500;
}

.doctor-card .bio {
  font-size: 14px;
  color: var(--gray-mid);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}

@media (min-width: 768px) {
  .doctors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Values */
.values-section {
  background-color: var(--cream);
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.value-item {
  text-align: center;
  padding: 24px;
}

.value-item .icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.value-item h4 {
  font-size: 18px;
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 8px;
}

@media (min-width: 768px) {
  .values-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }
  .value-item {
    border-right: 1px solid var(--sandal);
  }
  .value-item:last-child {
    border-right: none;
  }
}

/* Rating Strip */
.rating-strip {
  background-color: var(--sandal);
  padding: 24px 0;
  text-align: center;
  font-size: 15px;
  color: var(--text-body);
}

/* Contact Page */
.contact-info p {
  font-size: 15px;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.contact-info .icon {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-form-card {
  background-color: var(--white);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

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

.form-group label {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gray-mid);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: var(--text-body);
  background-color: var(--cream);
  border: 1px solid var(--sandal);
  border-radius: 6px;
  outline: none;
  transition: border-color 0.25s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--sandal-dark);
}

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

.form-success {
  display: none;
  padding: 16px;
  background-color: var(--sandal);
  border-radius: 6px;
  text-align: center;
  margin-top: 16px;
}

.form-success.show {
  display: block;
}

/* Map */
.map-container {
  margin-top: 60px;
}

.map-container iframe {
  width: 100%;
  height: 420px;
  border: 0;
  border-radius: 8px;
  filter: saturate(0.3) contrast(1.1);
}
