@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap");

/* ======================================================
   ROOT VARIABLES
====================================================== */
:root {
  --maroon: #7A1F2B;
  --burnt-orange: #C75B12;
  --beige: #F4E6D8;
  --light-beige: #F9F0EA;

  --primary: #7A1F2B;
  --primary-light: #F9E8E9;
  --primary-dark: #5C1821;
  --secondary: #C75B12;

  --text-dark: #2E2E2E;
  --text-light: #6B6B6B;
  --gray-100: #F3F4F6;
  --white: #ffffff;

  --max-width: 1200px;
  --transition: all 0.35s ease;
  --shadow-card: 0 10px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 15px 40px rgba(0,0,0,0.12);
}

/* ======================================================
   RESET & BASE
====================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--beige);
  color: var(--text-dark);
  line-height: 1.7;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}



/* =============================================
   BRAND NAME NEXT TO LOGO (Responsive)
============================================= */

/* Main brand name styling */
.name__brand-name {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: white;
  letter-spacing: 0.4px;
  margin: 0;
  padding: 4px;
  white-space: nowrap;           /* Prevents text from wrapping to new line */
  line-height: 1.1;
  
  /* Responsive font size using clamp() - scales smoothly */
  font-size: clamp(
    1.05rem,     /* Minimum size (very small phones) */
    3.4vw,       /* Preferred size - scales with viewport width */
    1.35rem      /* Maximum size (desktop/large screens) */
  );
}

/* Fine-tune for different screen sizes (optional extra control) */
@media (min-width: 1200px) {
  .name__brand-name {
    font-size: 1.4rem;          /* Slightly larger on very wide screens */
    letter-spacing: 0.6px;
  }
}

@media (max-width: 992px) {
  .name__brand-name {
    font-size: clamp(1.05rem, 3.2vw, 1.3rem);
  }
}

@media (max-width: 768px) {
  .name__brand-name {
    font-size: clamp(1rem, 3.8vw, 1.2rem);   /* Smaller on tablets & mobile */
    letter-spacing: 0.3px;
    padding: 3px;
  }
}

@media (max-width: 480px) {
  .name__brand-name {
    font-size: clamp(0.95rem, 4.2vw, 1.1rem); /* Very small phones */
  }
}

/* =============================================
   BETTER ALIGNMENT WITH LOGO
============================================= */

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;                      /* Space between logo image and brand name */
  flex-shrink: 0;                 /* Prevents logo area from shrinking too much */
}

.logo-img {
  width: 65px;
  height: 65px;
  object-fit: contain;
  background: rgb(243, 238, 238);
  border-radius: 50%;
  padding: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Mobile adjustments - make logo + text more compact */
@media (max-width: 768px) {
  .nav__logo {
    gap: 8px;                     /* Slightly less space on mobile */
  }

  .logo-img {
    width: 55px;                  /* Smaller logo on mobile */
    height: 55px;
    padding: 6px;
  }

  .name__brand-name {
    /* Already handled by clamp() above, but you can override if needed */
  }
}

@media (max-width: 480px) {
  .nav__logo {
    gap: 6px;
  }

  .logo-img {
    width: 50px;
    height: 50px;
  }
}


/* ======================================================
   PRELOADER
====================================================== */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader__content {
  text-align: center;
}

.preloader__logo {
  width: 140px;
  margin-bottom: 1.5rem;
  animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.06); opacity: 1; }
}

.loading-dots {
  display: flex;
  gap: 10px;
}

.loading-dots span {
  width: 10px;
  height: 10px;
  background: var(--primary);
  border-radius: 50%;
  animation: dots 1.4s infinite;
}

.loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.loading-dots span:nth-child(3) { animation-delay: 0.4s; }

@keyframes dots {
  0%, 80%, 100% { transform: scale(0.4); opacity: 0.4; }
  40% { transform: scale(1); opacity: 1; }
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

/* ======================================================
   BUTTONS
====================================================== */
.btn {
  padding: 0.9rem 2.2rem;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, var(--secondary), var(--primary));
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(122, 31, 43, 0.3);
}

/* ======================================================
   HEADER & NAV
====================================================== */
header {
  background: linear-gradient(135deg, rgba(122, 31, 43, 0.92), rgba(199, 91, 18, 0.88)),
              url("assets/header.jpg") center/cover no-repeat;
  color: white;
  position: relative;
}



/* =============================================
   NAVIGATION - Classy, Mobile-First & Sticky
============================================= */
.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 1.4rem 1.5rem;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, rgba(122, 31, 43, 0.98), rgba(199, 91, 18, 0.95));
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}

.nav__container.sticky {
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.logo-img {
  height: 65px;
  object-fit: contain;
  transition: var(--transition);
}

.nav__logo:hover .logo-img {
  transform: scale(1.05);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav__links a {
  color: white;
  font-weight: 500;
  transition: var(--transition);
}

.nav__links a:hover {
  color: var(--secondary);
}

/* Desktop Contact button */
.nav__btn-wrapper {
  display: block;
}

.nav__btn {
  background: white;
  color: var(--maroon);
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
}

/* Mobile Hamburger */
.nav__toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 1100;
}

/* Mobile dropdown */
@media (max-width: 768px) {
  .nav__toggle {
    display: block;
    margin-left: auto;
  }

  .nav__btn-wrapper {
    display: none !important; /* hide Contact Us button on mobile */
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary-dark);
    flex-direction: column;
    align-items: center;
    padding: 2rem 1.5rem;
    gap: 1.6rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  }

  .nav__links.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__links li {
    width: 100%;
    text-align: center;
  }

  .nav__links a {
    display: block;
    padding: 0.9rem 0;
    font-size: 1.15rem;
  }

  /* Contact Us inside mobile menu */
  .contact-mobile a {
    background: var(--secondary);
    color: white;
    padding: 0.9rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 1rem;
  }
}

/* Scroll effect - add sticky class when scrolled */
.nav__container.sticky {
  padding: 1rem 1.5rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}



/* ======================================================
   HERO
====================================================== */
.header__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 5rem 1.5rem 7rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.header__content h1 {
  font-size: clamp(2.6rem, 6.5vw, 3.9rem);
  line-height: 1.15;
  margin-bottom: 1.6rem;
}

.header__content p {
  font-size: 1.1rem;
  margin-bottom: 2.2rem;
  max-width: 540px;
  opacity: 0.95;
}

.header__form {
  background: white;
  padding: 2.4rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  max-width: 380px;
  margin: 0 auto;
}

.header__form h4 {
  text-align: center;
  color: var(--primary);
  font-size: 1.55rem;
  margin-bottom: 2rem;
}

.header__form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--text-dark);
}

.header__form input {
  width: 100%;
  padding: 1rem;
  margin-bottom: 1.3rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: var(--light-beige);
  font-size: 1rem;
}

.header__form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(122, 31, 43, 0.15);
}

.form__btn {
  width: 100%;
}


/* About Page Specific */
.about__section {
  background: var(--light-beige);
}

.about__header {
  text-align: center;
  margin-bottom: 3rem;
}

.about__story {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--text-dark);
  max-width: 820px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.about__divider {
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 0 auto;
  border-radius: 2px;
}

.about__grid {
  display: grid;
  gap: 2.2rem;
  margin: 4rem 0;
}

@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}



/* About page content */
.about__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.about__story {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-dark);
  max-width: 820px;
  margin: 0 auto 3rem;
  text-align: center;
}

.about__divider {
  width: 90px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  margin: 0 auto;
  border-radius: 2px;
}

.about__grid {
  display: grid;
  gap: 2rem;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about__card {
  background: white;
  padding: 2.2rem;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  text-align: center;
}

.about__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 2.2rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.about__card:hover .icon-circle {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.about__card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.about__card p {
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.7;
}

.values-list {
  list-style: none;
  text-align: left;
  margin-top: 1.5rem;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
  font-size: 1rem;
  color: var(--text-dark);
}

.values-list li i {
  font-size: 1.4rem;
  color: var(--primary);
  margin-top: 3px;
}

.about__cta {
  text-align: center;
  margin-top: 4rem;
}

.about__cta p {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}


/* ======================================================
   SECTIONS
====================================================== */
.section__container {
  max-width: 1200px;
  margin: auto;
  padding: 5.5rem 1.5rem;
}

.section__header {
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--primary);
  margin-bottom: 1.4rem;
  text-align: center;
}


/* Services page */

.section__intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.service__grid {
  display: grid;
  gap: 2.2rem;
  margin: 3rem 0;
}

@media (min-width: 992px) {
  .service__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .service__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service__card {
  background: white;
  padding: 2.4rem 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  text-align: center;
  border-top: 4px solid var(--secondary);
}

.service__card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.service__card .icon-circle {
  width: 80px;
  height: 80px;
  background: var(--light-beige);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.4rem;
  font-size: 2.8rem;
  color: var(--primary);
  transition: var(--transition);
}

.service__card:hover .icon-circle {
  background: var(--primary);
  color: white;
  transform: scale(1.1);
}

.service__card h4 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.35rem;
}

.service__card p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.2rem;
}

.service__card .price {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary);
  margin-top: 1rem;
}

.service__cta {
  text-align: center;
  margin-top: 5rem;
}

.service__cta p {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 1.8rem;
}




/* Booking page */
.booking__section {
  background: var(--light-beige);
}

.booking__intro {
  text-align: center;
  margin-bottom: 3rem;
}

.section__intro {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 720px;
  margin: 1rem auto 0;
}

.booking__steps {
  display: grid;
  gap: 1.5rem;
  margin: 3rem 0 4rem;
  counter-reset: step;
  list-style: none;
}

@media (min-width: 768px) {
  .booking__steps {
    grid-template-columns: repeat(4, 1fr);
  }
}

.step {
  position: relative;
  padding: 1.8rem 1.5rem;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-card);
  text-align: center;
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--maroon);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(122,31,43,0.25);
}

.step p {
  margin-top: 1rem;
  font-size: 0.98rem;
  color: var(--text-dark);
}

.booking__form-container {
  max-width: 900px;
  margin: 0 auto;
}

.booking__form {
  background: white;
  padding: 2.8rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  gap: 1.8rem;
}

@media (min-width: 992px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-field.full-width,
  .submit-btn {
    grid-column: 1 / -1;
  }
}

.form-field label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 500;
  color: var(--text-dark);
}

.required {
  color: #c1121f;
  font-size: 0.9rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 1rem 1.3rem;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 1rem;
  background: var(--gray-100);
  transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--maroon);
  box-shadow: 0 0 0 4px rgba(122,31,43,0.15);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  max-width: 320px;
  margin: 2rem auto 0;
  display: block;
}

.privacy-note {
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-light);
  margin-top: 2rem;
  line-height: 1.6;
}

.booking__cta {
  text-align: center;
  margin-top: 4rem;
}

.booking__cta p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.btn--outline {
  background: transparent;
  border: 2px solid var(--maroon);
  color: var(--maroon);
}

.btn--outline:hover {
  background: var(--maroon);
  color: white;
}


/* =============================================
   TESTIMONIALS PAGE
============================================= */

.testimonials__section {
  background: var(--light-beige);
  padding: 4rem 1.5rem 6rem;
}

.section__intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 760px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

.testimonial__grid {
  display: grid;
  gap: 2rem;
  margin: 3rem 0 4rem;
}

@media (min-width: 768px) {
  .testimonial__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .testimonial__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial__card {
  background: white;
  border-radius: 16px;
  padding: 2.2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  text-align: center;
}

.testimonial__card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.testimonial__card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.2rem;
  border: 3px solid var(--primary-light);
}

.testimonial__card p {
  font-style: italic;
  color: var(--text-light);
  margin-bottom: 1.2rem;
  line-height: 1.7;
  font-size: 1rem;
}

.testimonial__card h4 {
  color: var(--maroon);
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
}

.testimonial__card span {
  color: #fbbf24;
  font-size: 1.6rem;
  letter-spacing: 2px;
}

/* Review Form Section */
.review__section {
  margin-top: 5rem;
}

.review__form {
  background: white;
  padding: 2.8rem;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
  max-width: 900px;
  margin: 2rem auto 0;
}

.form-grid {
  display: grid;
  gap: 1.8rem;
}

@media (min-width: 992px) {
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .form-field.full-width,
  .review__form button {
    grid-column: 1 / -1;
  }
}

.form-field label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 1rem 1.3rem;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 1rem;
  background: var(--gray-100);
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--maroon);
  box-shadow: 0 0 0 4px rgba(122,31,43,0.15);
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}

.review__form button {
  width: 100%;
  max-width: 320px;
  margin: 2rem auto 0;
  display: block;
}

.privacy-note {
  text-align: center;
  font-size: 0.92rem;
  color: var(--text-light);
  margin-top: 1.8rem;
  line-height: 1.6;
}




/* FAQs page */
.faqs__section {
  background: var(--light-beige);
}

.section__intro {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 760px;
  margin: 0 auto 3.5rem;
  line-height: 1.7;
}

.faq__list {
  display: grid;
  gap: 1.2rem;
  margin: 3rem 0;
}

@media (min-width: 992px) {
  .faq__list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.faq__item {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
}

.faq__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.faq__question {
  background: var(--maroon);
  color: white;
  padding: 1.2rem 1.8rem;
  font-size: 1.15rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}

.faq__question:hover {
  background: #aa293a;
}

.faq__question i {
  transition: transform 0.3s ease;
  font-size: 1.4rem;
}

.faq__question.open i {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1.8rem;
  background: white;
  transition: max-height 0.4s ease, padding 0.4s ease;
  color: var(--text-dark);
}

.faq__answer.open {
  max-height: 600px; /* adjust if answers are longer */
  padding: 1.8rem;
}

.faqs__cta {
  text-align: center;
  margin-top: 4rem;
}

.faqs__cta p {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
}


/* Contact page */
.contact__section {
  background: var(--light-beige);
}

.contact__grid {
  display: grid;
  gap: 3rem;
  margin-top: 3rem;
}

@media (min-width: 992px) {
  .contact__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact__info,
.contact__form {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.contact__info h3 {
  color: var(--maroon);
  margin: 2rem 0 1rem;
  font-size: 1.3rem;
}

.contact__info p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.contact__info i {
  color: var(--maroon);
  margin-right: 0.8rem;
  font-size: 1.3rem;
}

.social__links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social__links a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.1rem;
  color: var(--maroon);
  transition: 0.3s;
}

.social__links a:hover {
  color: var(--burnt-orange);
  transform: translateX(5px);
}

.contact__map {
  margin-top: 4rem;
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.contact__map iframe {
  border-radius: 12px;
  width: 100%;
  height: 450px;
  border: none;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Form styling */
.form-field {
  margin-bottom: 1.6rem;
}

.form-field label {
  display: block;
  margin-bottom: 0.6rem;
  font-weight: 500;
  color: var(--text-dark);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 1rem 1.3rem;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  font-size: 1rem;
  background: var(--gray-100);
  transition: var(--transition);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--maroon);
  box-shadow: 0 0 0 4px rgba(122,31,43,0.15);
}

.form-field textarea {
  min-height: 160px;
  resize: vertical;
}


/* ======================================================
   SERVICES
====================================================== */
.service__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.service__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.2rem;
}

.service__card {
  background: white;
  padding: 2.6rem 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  border-top: 4px solid var(--secondary);
}

.service__card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service__card span {
  width: 80px;
  height: 80px;
  background: var(--light-beige);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 1.4rem;
  transition: var(--transition);
}

.service__card:hover span {
  background: var(--primary);
  color: white;
}

/* Pricing Table */
.service__more {
  text-align: center;
  margin-top: 4rem;
}

.service__more-btn {
  padding: 1rem 2.4rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.service__more-btn:hover {
  background: var(--secondary);
  transform: translateY(-3px);
}

.pricing-table {
  display: none;
  margin: 3rem auto 0;
  width: 100%;
  max-width: 900px;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pricing-table.active {
  display: block;
}

.pricing-table table {
  width: 100%;
  border-collapse: collapse;
}

.pricing-table th,
.pricing-table td {
  padding: 1.3rem 1.6rem;
  text-align: left;
  border-bottom: 1px solid #eee;
}

.pricing-table th {
  background: var(--primary);
  color: white;
  font-weight: 600;
}

.pricing-table .price {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
}

.pricing-table tr:nth-child(even) {
  background: var(--gray-100);
}

/* Mobile stacked table */
@media (max-width: 768px) {
  .pricing-table thead { display: none; }
  .pricing-table tr {
    display: block;
    margin-bottom: 1.4rem;
    border: 1px solid #ddd;
    border-radius: 10px;
  }
  .pricing-table td {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    border: none;
  }
  .pricing-table td:before {
    content: attr(data-label);
    font-weight: 600;
    color: var(--primary);
  }
}

/* ======================================================
   WHY CHOOSE US
====================================================== */
.why__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.why__image img {
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
}

.why__grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 80px auto;
  gap: 2rem;
}

.why__grid span {
  font-size: 3rem;
  color: var(--primary);
  background: var(--light-beige);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(122, 31, 43, 0.1);
}

/* ======================================================
   DOCTORS
====================================================== */
/* DOCTORS / EXPERT TEAM */
.doctors__container {
  background: var(--light-beige);
}

.doctors__header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.doctors__header p {
  color: var(--text-light);
  font-size: 1.05rem;
}

.doctors__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.doctors__card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.doctors__card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.doctors__card__image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.doctors__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.doctors__card:hover img {
  transform: scale(1.1);
}

.doctors__socials {
  position: absolute;
  bottom: -80px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  transition: bottom 0.45s ease;
}

.doctors__card:hover .doctors__socials {
  bottom: 20px;
}

.doctors__socials span {
  background: white;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: var(--transition);
  cursor: pointer;
}

.doctors__socials span:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-4px);
}

.doctors__card h4 {
  text-align: center;
  margin: 1.6rem 1.2rem 0.6rem;
  font-size: 1.35rem;
  color: var(--primary);
}

.doctors__card p {
  text-align: center;
  padding: 0 1.8rem 2.2rem;
  color: var(--text-light);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Mobile */
@media (max-width: 768px) {
  .doctors__grid {
    gap: 2rem;
  }
  
  .doctors__card h4 {
    font-size: 1.25rem;
  }
  
  .doctors__card p {
    padding: 0 1.4rem 2rem;
  }
}

/* ======================================================
   FOOTER (Modernized)
====================================================== */
.footer {
  background: var(--primary-dark);
  color: white;
  padding-top: 5rem;
}

.footer__container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3.5rem;
}

.footer__col h4 {
  font-size: 1.35rem;
  margin-bottom: 1.6rem;
  color: var(--secondary);
}

.footer__col p, .footer__col a {
  margin-bottom: 1rem;
  color: #e0e0e0;
  transition: var(--transition);
}

.footer__col p:hover, .footer__col a:hover {
  color: var(--secondary);
}

.footer__logo {
  width: 120px;
  margin-bottom: 1.2rem;
}

.footer__bar {
  background: var(--primary);
  padding: 1.4rem 1.5rem;
  text-align: center;
}

.footer__bar__content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}


.footer__brand-name {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: 0.5px;
}

/* Main brand color */
.brand-primary {
  color: #ffffff; /* white */
}

/* Accent ampersand */
.brand-accent {
  color: #fbbf24; /* soft gold */
  margin: 0 0.35rem;
}

/* Secondary brand color */
.brand-secondary {
  color: #f59e0b; /* warm baby gold / orange */
}



/* ======================================================
   ANIMATIONS (Fade-in on scroll)
====================================================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ======================================================
   RESPONSIVE
====================================================== */
@media (max-width: 992px) {
  .header__container {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 4rem 1.5rem 6rem;
  }

  .header__form {
    max-width: 460px;
  }
}

/* =============================================
   NAVIGATION - Improved Mobile Behavior
============================================= */

.nav__container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 1.4rem 2rem;

  display: flex;
  align-items: center;
  justify-content: space-between;

  position: sticky;
  top: 0;
  z-index: 1000;

  background: linear-gradient(
    135deg,
    rgba(122, 31, 43, 0.98),
    rgba(199, 91, 18, 0.95)
  );

  transition: padding 0.3s ease, box-shadow 0.3s ease;
}


.nav__logo {
  display: flex;
  align-items: center;
}

.logo-img {
  width: 65px;
  height: 65px;
  object-fit: contain;


  background: rgb(243, 238, 238);
  

  border-radius: 50%;
  padding: 8px;

  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.18);

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}



/* Logo always on left */
.nav__logo {
  flex-shrink: 0;
}

/* Desktop links - visible by default */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

/* Contact Us button - visible on desktop */
.nav__btn {
  display: block;
}

/* Hamburger toggle - hidden on desktop */
.nav__toggle {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
  z-index: 1100;
}

/* =============================================
   MOBILE NAVIGATION (below 768px)
============================================= */
@media (max-width: 768px) {
  /* Hide Contact Us button on mobile */
  .nav__btn {
    display: none !important;
  }

  /* Show hamburger icon and push it to the right */
  .nav__toggle {
    display: block;
    margin-left: auto;           /* ← this forces it to the far right */
  }

  /* Hide normal horizontal links */
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary-dark);
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
  }

  /* Show menu when active */
  .nav__links.active {
    display: flex;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav__links li {
    width: 100%;
    text-align: center;
  }

  .nav__links a {
    display: block;
    padding: 0.9rem 0;
    font-size: 1.15rem;
    transition: color 0.3s ease;
  }

  .nav__links a:hover,
  .nav__links a.active {
    color: var(--secondary);
  }
}


@media (max-width: 768px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 2rem 1.5rem;
    gap: 1.6rem;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }

  .nav__links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .why__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .why__image img {
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .section__container {
    padding: 4rem 1rem;
  }

  .service__header {
    flex-direction: column;
    text-align: center;
  }
}