:root {
  --color-primary: #f5a300;
  --color-primary-dark: #b38322;
  --color-primary-light: #d8a238;
  --color-secondary: #5c8761;

  --color-bg-main: #f7f4ef;
  --color-bg-alt: #f6f4ef;
  --color-bg-card: #f1ece4;
  --color-bg-card-light: #faf8f3;
  --color-white: #ffffff;
  --color-black: #000000;

  --card-tint-1: #ece8dc;
  --card-tint-2: #dce0d8;
  --card-tint-3: #e0d8d0;
  --card-tint-4: #f8f4e8;
  --card-tint-5: #e0e0d8;

  --text-dark: #222222;
  --text-muted: #444444;
  --text-body: #666666;
  --text-light: #777777;
  --text-gray: #7a7a7a;

  --font-main: 'Inter', Arial;
  --section-padding: 100px 60px;
  --border-radius-pill: 50px;
  --transition-smooth: all 0.3s ease;
  --transition-fade: opacity 0.2s ease-in-out;

  --max-content-width: 1440px;

  --fs-section-tag: 12px;
  --fs-section-h2: 44px;
  --fs-section-h3: 20px;
  --fs-body: 16px;
  --fs-body-small: 14px;
}

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

body {
  font-family: var(--font-main);
  background-color: var(--color-bg-main);
}

button {
  border-width: 0;
}

.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  background: url('images/image1.jpg') center center / cover no-repeat;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.overlay {
  position: absolute;
  inset: 0;
  background: var(--color-black);
  opacity: 0.2;
}

.whiteoverlay {
  height: 5em;
  position: absolute;
  inset: 0;
  background: var(--color-bg-main);
  opacity: 0.8;
}

.navbar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 60px;
}

.logo img {
  height: 70px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--color-black);
  text-decoration: none;
  font-size: var(--fs-body-small);
  position: relative;
  font-weight: 500;
  font-size: 1em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--color-black);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links:hover a.active::after {
  transform: scaleX(0);
}

.nav-links:hover a:hover::after {
  transform: scaleX(1);
}

.appointment-btn {
  background: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: var(--border-radius-pill);
  font-size: var(--fs-body-small);
  display: inline-block;
  transition: transform var(--transition-smooth);
}

.appointment-btn:hover {
  transform: scale(1.05);
}

.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: clamp(400px, 45vw, 700px);
  padding-left: clamp(30px, 4vw, 60px);
  padding-bottom: clamp(30px, 4vh, 60px);
}

.hero-content h1 {
  font-size: clamp(38px, 5vw, 76px);
  color: var(--color-white);
  margin-bottom: clamp(14px, 1.8vw, 28px);
  font-weight: 700;
}

.hero-content h2 {
  font-size: clamp(15px, 1.8vw, 28px);
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-white);
  margin-bottom: clamp(16px, 2vw, 32px);
}

.hero-content p {
  font-size: clamp(13px, 1.2vw, 19px);
  line-height: 1.8;
  color: var(--color-white);
  margin-bottom: clamp(24px, 3vw, 44px);
}

.buttons {
  display: flex;
  gap: 20px;
}

.btn-primary,
.btn-secondary {
  padding: clamp(10px, 1.1vw, 16px) clamp(20px, 2.4vw, 35px);
  font-size: clamp(12px, 0.9vw, 15px);
  border-radius: var(--border-radius-pill);
  display: inline-block;
  text-decoration: none;
  transition: transform var(--transition-smooth);
}

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

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

.btn-primary:hover,
.btn-secondary:hover {
  transform: scale(1.05);
}

.pillars-section {
  padding: var(--section-padding);
  background: var(--color-bg-main);
}

.section-tag {
  color: var(--color-primary-dark);
  font-size: var(--fs-section-tag);
  margin-bottom: 10px;
  display: block;
}

.pillars-section h2 {
  font-size: var(--fs-section-h2);
  color: var(--text-dark);
  margin-bottom: 6px;
}

.pillars-section h3 {
  font-size: var(--fs-section-h3);
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.section-description {
  max-width: 900px;
  color: var(--text-body);
  line-height: 1.8;
  font-size: var(--fs-body);
  margin-bottom: 40px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.pillar-card {
  background: var(--color-bg-card);
  border: 1px solid #e4ddd2;
  border-radius: 10px;
  padding: 25px 18px;
  text-align: center;
}

.pillar-card:nth-child(1) {
  background: var(--card-tint-1);
}

.pillar-card:nth-child(2) {
  background: var(--card-tint-2);
}

.pillar-card:nth-child(3) {
  background: var(--card-tint-3);
}

.pillar-card:nth-child(4) {
  background: var(--card-tint-4);
}

.pillar-card:nth-child(5) {
  background: var(--card-tint-5);
}

.pillar-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--color-bg-card-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.pillar-icon img {
  width: 20px;
  height: 20px;
}

.pillar-card h4 {
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.pillar-card span {
  display: block;
  font-size: var(--fs-section-tag);
  color: var(--text-gray);
  margin-bottom: 14px;
}

.pillar-card p {
  font-size: var(--fs-body-small);
  line-height: 1.7;
  color: var(--text-light);
}

.philosophy-section {
  background: var(--color-bg-main);
  padding: var(--section-padding);
}

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

.image-mask {
  width: 420px;
  height: 560px;
  position: relative;
}

.top-image {
  width: 100%;
  height: 370px;
  overflow: hidden;
  border-radius: 220px 220px 0 0 / 120px 120px 0 0;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.bottom-image {
  width: 260px;
  height: 260px;
  position: absolute;
  left: 80px;
  bottom: -20px;
  overflow: hidden;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.top-image img,
.bottom-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.philosophy-content h2 {
  font-size: var(--fs-section-h2);
  color: var(--text-dark);
  margin-bottom: 5px;
}

.philosophy-content h3 {
  font-size: var(--fs-section-h3);
  font-weight: 400;
  margin-bottom: 25px;
  color: var(--text-muted);
}

.philosophy-content p {
  color: var(--text-body);
  font-size: var(--fs-body);
  line-height: 1.9;
  margin-bottom: 20px;
}

.philosophy-content blockquote {
  margin-top: 35px;
  padding-left: 20px;
  border-left: 4px solid var(--color-primary);
  font-weight: 600;
  font-size: var(--fs-body);
  color: #333333;
  max-width: 420px;
}

.treatments-section {
  position: relative;
  background: url('images/image4.png') center center / cover no-repeat;
  padding: 120px 60px;
  overflow: hidden;
}

.treatments-section .overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 1;
  z-index: 1;
}

.treatments-section .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

.treatment-left {
  color: var(--color-white);
}

.treatment-left .section-tag {
  color: var(--color-white);
}

.treatment-left h2 {
  font-size: var(--fs-section-h2);
  margin-bottom: 5px;
}

.treatment-left h3 {
  font-size: var(--fs-section-h3);
  font-weight: 400;
  margin-bottom: 25px;
}

.treatment-left p {
  font-size: var(--fs-body);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.85);
}

.treatment-left blockquote {
  margin-top: 35px;
  border-left: 4px solid var(--color-primary-light);
  padding-left: 18px;
  font-weight: 600;
  font-size: var(--fs-body);
  color: var(--color-white);
}

.treatment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.treatment-item img {
  width: 36px;
  height: 36px;
  margin-bottom: 15px;
  display: block;
}

.treatment-item h4 {
  color: var(--color-white);
  font-size: 20px;
  margin-bottom: 12px;
}

.treatment-item p {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--fs-body);
  line-height: 1.8;
  max-width: 280px;
}

.teacher-section {
  height: 650px;
  background: var(--color-bg-alt);
  display: grid;
  grid-template-columns: 500px 1fr;
  align-items: center;
  padding: 0 80px;
  gap: 80px;
}

.teacher-image {
  width: 500px;
  height: 360px;
  background: var(--color-secondary);
  border-radius: 0 60px 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.teacher-image img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.teacher-content .teacher-extra {
  color: var(--color-secondary);
  font-size: var(--fs-section-tag);
  display: block;
}

.teacher-content h2 {
  margin-top: 8px;
  margin-bottom: 25px;
  font-size: var(--fs-section-h3);
  font-weight: 500;
  color: var(--text-muted);
}

.teacher-content p {
  max-width: 500px;
  font-size: var(--fs-body);
  line-height: 1.8;
  color: #555555;
}

.teacher-stats {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 40px;
}

.teacher-stats h3 {
  font-size: 42px;
  color: var(--color-secondary);
  line-height: 1;
}

.teacher-stats p {
  color: var(--text-light);
  font-size: var(--fs-body-small);
}

.testimonial-section {
  background: var(--color-bg-alt);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 80px;
  align-items: center;
}

.testimonial-left {
  display: flex;
  flex-direction: column;
}

.testimonial-left .quote-icon {
  width: 60px;
  height: 45px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23111111'%3E%3Cpath d='M13 14.725c0-5.141 3.301-8.725 8-8.725v1.892c-2.757 0-4.302 2.115-4.302 4.093h4.302v6.015h-8v-3.275zm-11 0c0-5.141 3.301-8.725 8-8.725v1.892c-2.757 0-4.302 2.115-4.302 4.093h4.302v6.015h-8v-3.275z'/%3E%3C/svg%3E") no-repeat center center / contain;
  margin-bottom: 50px;
  opacity: 0.9;
}

.testimonial-left .section-tag {
  color: var(--color-primary-dark);
  font-size: var(--fs-section-tag);
  font-weight: 500;
  margin-bottom: 8px;
}

.testimonial-left h2 {
  font-size: var(--fs-section-h2);
  color: var(--text-dark);
  margin-bottom: 4px;
  font-weight: 700;
}

.testimonial-left h3 {
  font-size: var(--fs-section-h3);
  font-weight: 400;
  color: #555555;
}

.testimonial-right-container {
  position: relative;
}

.testimonial-card {
  background: var(--color-white);
  padding: 50px 60px 40px 80px;
  border-radius: 100px 30px 30px 100px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  position: relative;
}

.testimonial-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-dark);
  font-weight: 400;
  margin-bottom: 25px;
}

.testimonial-author h4 {
  color: var(--color-secondary);
  font-size: var(--fs-body);
  font-weight: 600;
  margin-bottom: 2px;
}

.testimonial-author span {
  color: var(--text-light);
  font-size: var(--fs-body-small);
}

.testimonial-controls {
  display: flex;
  gap: 15px;
  position: absolute;
  right: 40px;
  bottom: 35px;
}

.control-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: var(--transition-smooth);
}

.prev-btn {
  background: #e2e2e2;
  color: var(--color-white);
}

.next-btn {
  background: var(--color-secondary);
  color: var(--color-white);
}

.control-btn:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.testimonial-text,
.testimonial-author h4,
.testimonial-author span {
  transition: var(--transition-fade);
}

.pillar-card,
.treatment-item,
.teacher-content,
.testimonial-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.pillar-card.show,
.treatment-item.show,
.teacher-content.show,
.testimonial-card.show {
  opacity: 1;
  transform: translateY(0);
}

.contact-section {
  background: var(--color-bg-main);
  padding: var(--section-padding);

  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 70px;
}

.contact-left .section-tag {
  color: var(--color-primary);
  font-size: var(--fs-section-tag);
  display: block;
  margin-bottom: 10px;
}

.contact-left h2 {
  font-size: var(--fs-section-h2);
  color: var(--text-dark);
  margin-bottom: 6px;
}

.contact-left h3 {
  font-size: var(--fs-section-h3);
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.contact-left p {
  color: var(--text-body);
  line-height: 1.8;
  font-size: var(--fs-body);
}

.contact-info {
  margin-top: 40px;
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 28px;
}

.icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--card-tint-2);
  margin-top: 4px;
  flex-shrink: 0;
}

.info-item h4 {
  color: var(--text-dark);
  margin-bottom: 4px;
  font-size: 15px;
}

.info-item p {
  color: var(--text-body);
  font-size: 13px;
  line-height: 1.6;
}

/* FORM CARD */

.contact-form-card {
  background: #f5eedf;
  border-radius: 30px;
  padding: 50px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
  border: 1px solid rgba(0, 0, 0, .04);
}

.contact-form-card h3 {
  color: var(--text-dark);
  margin-bottom: 10px;
  font-size: 28px;
}

.form-subtext {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 28px;
}

/* FORM LAYOUT */

#consultationForm {
  display: flex;
  flex-direction: column;
}

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

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.form-group label {
  display: block;
  margin-bottom: 8px;

  color: var(--text-muted);
  font-size: 14px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {

  width: 100%;

  padding: 15px 18px;

  border-radius: 14px;

  border: 1px solid rgba(0, 0, 0, .08);

  background: var(--color-white);

  font-family: var(--font-main);

  font-size: 15px;

  color: var(--text-dark);

  transition: var(--transition-smooth);
}

.form-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='9' viewBox='0 0 14 9' fill='none'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%235C8761' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;

  cursor: pointer;
}

.form-group select:invalid {
  color: var(--text-muted);
}

.form-group textarea {
  resize: none;
  line-height: 1.6;
  min-height: 110px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #a8a59c;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

  outline: none;

  border-color: var(--color-secondary);

  box-shadow: 0 0 0 3px rgba(92, 135, 97, .12);
}

/* VALIDATION STATES */

.form-group input:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown),
.form-group select:invalid:not(:focus):not([value=""]):not(:placeholder-shown) {
  border-color: #d97757;
}

.error-msg {
  display: none;
  color: #c0573f;
  font-size: 12.5px;
  margin-top: 6px;
  line-height: 1.5;
}

.form-group input:invalid:not(:placeholder-shown)~.error-msg,
.form-group textarea:invalid:not(:placeholder-shown)~.error-msg {
  display: block;
}

/* CONDITION HINT */

.condition-hint {
  margin-top: 10px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(92, 135, 97, .08);
  border-left: 3px solid var(--color-secondary);

  color: var(--text-body);
  font-size: 13px;
  line-height: 1.6;

  min-height: 0;
}

.condition-hint:empty {
  display: none;
  padding: 0;
  margin-top: 0;
  border-left: none;
}

/* BUTTON */

#consultationForm button {

  background: var(--color-secondary);

  color: var(--color-white);

  border: none;

  padding: 16px 32px;

  border-radius: var(--border-radius-pill);

  font-family: var(--font-main);

  font-size: 15px;
  font-weight: 600;

  cursor: pointer;

  transition: var(--transition-smooth);

  margin-top: 6px;
}

#consultationForm button:hover {

  transform: translateY(-2px);

  background: #4f7654;

  box-shadow: 0 10px 25px rgba(92, 135, 97, .2);
}

#consultationForm button:active {
  transform: translateY(0);
}

.form-note {
  color: var(--text-muted);
  font-size: 12.5px;
  text-align: center;
  margin-top: 16px;
  line-height: 1.5;
}

.footer {
  background: var(--color-secondary);
  color: var(--color-white);
  padding: 80px 8% 50px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}

.footer-brand h2 {
  font-size: var(--fs-heading-4);
  margin-bottom: 4px;
}

.footer-brand h3 {
  font-size: var(--fs-heading-3);
  margin-bottom: 30px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 14px;
}

.footer-title {
  font-size: var(--fs-body-large);
  margin-bottom: 24px;
  color: var(--color-white);
}

.footer-links ul, .footer-contact ul {
  list-style: none;
}

.footer-links li, .footer-contact li {
  margin-bottom: 14px;
}

.footer-links a,
.footer-contact a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--color-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 50px;
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

@media (max-width: 1199px) {

  :root {
    --fs-section-h2: 36px;
    --fs-section-h3: 18px;
  }

  .navbar {
    padding: 10px !important;
  }

  .nav-links {
    gap: 24px;
  }

  .hero {
    height: auto;
    min-height: 70vh;
  }

  .hero-content {
    max-width: 80%;
    padding-left: 30px;
    padding-bottom: 60px;
  }

  .hero-content h1 {
    font-size: 54px;
  }

  .hero-content h2 {
    font-size: 22px;
  }

  .hero-content p {
    font-size: var(--fs-body);
  }

  .pillars-section {
    padding: 80px 30px;
  }

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

  .philosophy-section {
    padding: 80px 30px;
  }

  .philosophy-grid {
    grid-template-columns: 320px 1fr;
    gap: 40px;
  }

  .image-mask {
    width: 420px;
    /* adjust */
  }

  .image-mask img {
    width: 100%;
    height: auto;
    display: block;
  }

  .treatments-section {
    padding: 80px 30px;
  }

  .treatments-section .container {
    grid-template-columns: 320px 1fr;
    gap: 40px;
  }

  .treatment-grid {
    gap: 30px;
  }

  .teacher-section {
    height: auto;
    grid-template-columns: 360px 1fr;
    padding: 60px 30px;
    gap: 40px;
  }

  .teacher-image {
    width: 360px;
    height: 280px;
  }

  .teacher-image img {
    width: 200px;
    height: 200px;
  }

  .testimonial-section {
    padding: 80px 30px;
    grid-template-columns: 320px 1fr;
    gap: 40px;
  }

  .testimonial-card {
    padding: 40px 40px 35px 60px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

  .contact-form-card {
    padding: 35px;
  }

}
@media (max-width: 767px) {
  body {
    overflow-x: hidden;
  }

  /* ==========================
     NAVBAR
  ========================== */
  .nav-links {
    display: none;
  }

  .logo {
    display: block;
  }

  .logo img {
    height: 45px;
  }

  .navbar {
    width: 100%;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
  }

  .appointment-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 14px;
    min-height: 40px;
  }

  /* ==========================
     HERO
  ========================== */
  .hero-content {
    padding: 120px 20px 60px;
    max-width: 100%;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 42px;
    line-height: 1.1;
  }

  .hero-content h2 {
    font-size: 22px;
    line-height: 1.4;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
  }

  .btn-primary,
  .btn-secondary {
    width: auto;
    text-align: center;
    padding: 12px 24px;
    white-space: nowrap;
  }

  /* ==========================
     PILLARS (Vertical Layout)
  ========================== */
  .pillars-section {
    padding: 60px 20px;
  }

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

  /* ==========================
     PHILOSOPHY
  ========================== */
  .philosophy-section {
    padding: 70px 20px;
  }

  .philosophy-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .image-mask {
    width: 300px;
    height: 400px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
  }

  .top-image {
    width: 100%;
    height: 260px;
    border-radius: 150px 150px 0 0 / 100px 100px 0 0;
  }

  .bottom-image {
    width: 160px;
    height: 160px;
    left: 70px;
    bottom: -10px;
    position: absolute;
  }

  .top-image img,
  .bottom-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .philosophy-content {
    text-align: center;
  }

  .philosophy-content h2 {
    font-size: 30px;
  }

  .philosophy-content h3 {
    font-size: 18px;
  }

  .philosophy-content p {
    font-size: 15px;
    line-height: 1.8;
  }

  /* ==========================
     TREATMENTS
  ========================== */
  .treatments-section {
    padding: 60px 20px;
  }

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

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

  .treatment-left h2 {
    font-size: 30px;
  }

  /* ==========================
     TEACHER
  ========================== */
  .teacher-section {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 30px;
    padding: 60px 20px;
  }

  .teacher-image {
    width: 100%;
    height: auto;
    background: none;
    border-radius: 0;
  }

  .teacher-image img {
    width: 220px;
    height: 220px;
    margin: auto;
    display: block;
  }

  .teacher-content {
    text-align: center;
  }

  .teacher-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
  }

  /* ==========================
     TESTIMONIALS
  ========================== */
  .testimonial-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 60px 20px;
  }

  .testimonial-left {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .testimonial-left h2 {
    font-size: 30px;
  }

  .testimonial-card {
    padding: 30px 25px 60px;
    border-radius: 24px;
  }

  .testimonial-controls {
    right: 50%;
    transform: translateX(50%);
    bottom: 15px;
  }

  /* ==========================
     CONTACT
  ========================== */
  .contact-section {
    padding: 60px 20px;
  }

  .contact-left h2 {
    font-size: 30px;
  }

  .contact-form-card {
    padding: 25px;
  }

  /* ==========================
     FOOTER
  ========================== */
  .footer {
    padding: 60px 20px 40px;
  }

  .footer-container {
    display: flex;
    flex-direction: column;
    gap: 35px;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    text-align: center;
  }
}