/* ===================================
   Modern Dermatology Website Styles
   =================================== */

/* CSS Variables */
:root {
  --primary-color: #C5A253;
  --primary-light: #D4B896;
  --secondary-color: #0A0A0A;
  --secondary-light: #1a1a1a;
  --text-dark: #0A0A0A;
  --text-medium: #2a2a2a;
  --text-light: #666666;
  --bg-white: #F7F5F2;
  --bg-offwhite: #F7F5F2;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  color: #0A0A0A;
  background-color: #F7F5F2;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  color: var(--text-dark);
  font-weight: 600;
}

.section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Button Styles */
.btn {
  display: inline-block;
  background: #C5A253;
  color: white;
  padding: 12px 32px;
  border-radius: 6px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(197, 162, 83, 0.3);
  position: relative;
  z-index: 10;
}

.btn:hover {
  background: #B8944A;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(197, 162, 83, 0.4);
  color: white;
}

.btn-outline {
  background: transparent;
  border: 2px solid #C5A253;
  color: #C5A253;
  box-shadow: none;
}

.btn-outline:hover {
  background: #C5A253;
  color: white;
  box-shadow: 0 4px 15px rgba(197, 162, 83, 0.3);
}

/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: #F7F5F2;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(197, 162, 83, 0.2);
}

.header.scrolled {
  padding: 15px 0;
  background: #F7F5F2;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.logo img {
  height: 65px;
  width: auto;
  object-fit: contain;
}

.logo span {
  color: #0A0A0A;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 45px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  font-weight: 600;
  position: relative;
  padding: 8px 0;
  font-size: 0.95rem;
  color: #0A0A0A;
  transition: color 0.3s ease;
}

.nav-links a:first-child {
  color: #C5A253;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 3px;
  background: #C5A253;
  transition: width 0.3s ease;
}

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

.nav-links a:hover {
  color: #C5A253;
}

.nav-links .btn {
  color: white !important;
  padding: 12px 28px;
  font-size: 0.85rem;
  margin-left: 20px;
  white-space: nowrap;
}

.nav-links .btn:hover {
  color: white !important;
  background: #B8944A !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  z-index: 1001;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: var(--text-dark);
  margin: 4px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active div:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active div:nth-child(2) {
  opacity: 0;
}

.hamburger.active div:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(248, 187, 208, 0.15), rgba(10, 10, 10, 0.55)),
              url('./images/mioaesthtic clinic outdoor pic from front.webp') no-repeat center center/cover;
  padding-top: 80px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.85);
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--text-dark);
  font-weight: 700;
}

.hero-content h1 span {
  color: var(--primary-color);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--text-medium);
  line-height: 1.6;
}

.hero-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  animation: float 6s ease-in-out infinite;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  width: 100%;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

/* About Section */
.about {
  background-color: var(--bg-offwhite);
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-label {
  display: inline-block;
  color: var(--primary-color);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.about-content h2 {
  font-size: 2.8rem;
  margin-bottom: 25px;
  color: var(--text-dark);
  line-height: 1.3;
  font-weight: 700;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-medium);
  margin-bottom: 35px;
}

.about-content p .highlight {
  color: var(--primary-color);
  font-weight: 600;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 35px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 8px;
  font-weight: 700;
}

.feature-text p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.btn-more {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 14px 35px;
  border-radius: 25px;
  font-weight: 700;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  box-shadow: 0 4px 12px rgba(197, 162, 83, 0.3);
}

.btn-more:hover {
  background: #B8944A;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(197, 162, 83, 0.4);
}

/* About Gallery */
.about-gallery {
  position: relative;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
}

.gallery-img {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-img:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.gallery-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-img:hover img {
  transform: scale(1.05);
}

.img-1 {
  grid-column: 1;
  grid-row: 1 / 3;
  min-height: 400px;
}

.img-2 {
  grid-column: 2;
  grid-row: 1;
  min-height: 190px;
}

.img-3 {
  grid-column: 2;
  grid-row: 2;
  min-height: 190px;
}

/* Clinic Experience */
.clinic-experience {
  background: white;
}

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

.experience-content h2 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.experience-content p {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 25px;
}

.experience-list {
  list-style: none;
  margin-bottom: 30px;
}

.experience-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #eee;
  color: var(--text-medium);
}

.experience-list li:last-child {
  border-bottom: none;
}

.experience-list i {
  color: var(--primary-color);
}

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

.visual {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

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

.visual.large {
  max-height: 320px;
}

.visual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.visual-grid .visual {
  max-height: 150px;
}

/* Services Section */
.services {
  background: #F7F5F2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  height: 280px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 40px rgba(197, 162, 83, 0.3);
}

.service-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-image img {
  transform: scale(1.08);
}

.service-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0) 0%, rgba(10, 10, 10, 0.85) 60%, rgba(10, 10, 10, 0.95) 100%);
  padding: 40px 25px 25px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.service-card:hover .service-overlay {
  background: linear-gradient(180deg, rgba(197, 162, 83, 0.1) 0%, rgba(10, 10, 10, 0.9) 50%, rgba(10, 10, 10, 0.98) 100%);
  padding: 50px 25px 30px;
}


.service-card h3 {
  font-size: 1.4rem;
  color: white;
  font-weight: 800;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.service-card:hover h3 {
  color: #C5A253;
  text-shadow: 0 2px 12px rgba(197, 162, 83, 0.4);
}

/* Consultation Form Section */
.consultation-section {
  background: linear-gradient(135deg, #F7F5F2 0%, #ffffff 100%);
  padding: 80px 0;
}

.consultation-wrapper {
  background: white;
  border-left: 5px solid #C5A253;
  padding: 60px 50px;
  border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.consultation-content {
  text-align: center;
  margin-bottom: 50px;
}

.consultation-content h2 {
  font-size: 2.5rem;
  color: #0A0A0A;
  font-weight: 800;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.consultation-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #C5A253, #D4B896);
  margin: 15px auto 20px;
  border-radius: 2px;
}

.consultation-content p {
  font-size: 1.1rem;
  color: #666666;
  font-weight: 500;
}

.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}

.consultation-form input,
.consultation-form select {
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: #0A0A0A;
  transition: all 0.3s ease;
  background: #f9f9f9;
}

.consultation-form input::placeholder {
  color: #999999;
}

.consultation-form input:focus,
.consultation-form select:focus {
  outline: none;
  border-color: #C5A253;
  background: white;
  box-shadow: 0 0 0 3px rgba(197, 162, 83, 0.1);
}

.btn-consultation {
  background: #C5A253;
  color: white;
  padding: 14px 32px;
  border: none;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-consultation:hover {
  background: #B8944A;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 162, 83, 0.3);
}

/* Testimonials Section */
.testimonials {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--secondary-light) 100%);
  padding: 80px 0;
}

.testimonials .section-title {
  color: white;
}

.testimonials .section-title::after {
  background: white;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 50px;
}

.testimonial-item {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: none;
}

.testimonial-item.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

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

.testimonial-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin: 0 auto 20px;
  border: 4px solid var(--primary-light);
}

.testimonial-item p {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-medium);
  margin-bottom: 20px;
  line-height: 1.8;
}

.testimonial-item h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.testimonial-item span {
  font-size: 0.9rem;
  color: var(--text-light);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.slider-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: white;
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--primary-color);
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.slider-btn:hover {
  background: var(--primary-color);
  color: white;
  transform: scale(1.1);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: white;
  width: 30px;
  border-radius: 6px;
}

/* Gallery Section */
.gallery {
  background: var(--bg-offwhite);
}

.gallery-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 15px;
}

.gallery-track {
  display: flex;
  transition: transform 0.5s ease;
}

.gallery-item {
  min-width: 100%;
  position: relative;
}

.gallery-item img {
  width: 100%;
  border-radius: 15px;
}

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  color: white;
  padding: 30px;
  border-radius: 0 0 15px 15px;
}

.gallery-caption h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.gallery-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 20px;
}

.gallery-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--primary-color);
  transition: var(--transition);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.gallery-btn:hover {
  background: #C5A253;
  color: white;
}


/* Footer */
.footer {
  background: #2a2a2a;
  color: white;
  padding: 70px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

.footer-section h3 {
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: white;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.footer-section h3 span {
  color: #C5A253;
}

.footer-logo-img {
  display: block;
  width: 140px;
  max-width: 100%;
  height: auto;
  margin-bottom: 15px;
}

.footer-section p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 15px;
}

.footer-section a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.footer-section a:hover {
  color: #C5A253;
  padding-left: 5px;
}

.footer-section a i {
  color: #C5A253;
  font-size: 1rem;
}

.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

.social-links a {
  width: 55px;
  height: 55px;
  background: #C5A253;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  transition: all 0.3s ease;
  padding: 0;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.social-links a i {
  color: white;
  font-weight: bold;
}

.social-links a:hover {
  background: white;
  color: #C5A253;
  transform: translateY(-8px) scale(1.15);
  box-shadow: 0 10px 30px rgba(197, 162, 83, 0.4);
}

.social-links a:hover i {
  color: #C5A253;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-bottom span {
  color: #C5A253;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: white;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  z-index: 999;
  text-decoration: none;
}

.whatsapp-float:hover {
  background: #20BA5A;
  transform: scale(1.15) translateY(-5px);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
}

.whatsapp-float i {
  color: white;
}

/* Contact Hero Section */
.contact-hero {
  background: linear-gradient(135deg, rgba(197, 162, 83, 0.9) 0%, rgba(10, 10, 10, 0.85) 100%),
              url('./images/clinic.webp') center/cover;
  color: white;
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,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"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
}

.contact-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.contact-hero-content h1 span {
  color: #C5A253;
}

.contact-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.hero-contact-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.hero-contact-stat {
  text-align: center;
}

.hero-contact-stat h3 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.hero-contact-stat p {
  font-size: 1rem;
  margin: 0;
}

/* Contact Form Section */
.contact-form-section {
  background: var(--bg-offwhite);
  padding: 80px 0;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.form-header {
  text-align: center;
  margin-bottom: 50px;
}

.form-header h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.form-header h2 span {
  color: var(--primary-color);
}

.form-header p {
  font-size: 1.1rem;
  color: var(--text-light);
}

.form-wrapper {
  background: white;
  padding: 50px;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
  background: #f9f9f9;
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  background: white;
  box-shadow: 0 0 0 3px rgba(197, 162, 83, 0.1);
}

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

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text-medium);
  margin: 0;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.terms-link {
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.terms-link:hover {
  text-decoration: underline;
}

.error-message {
  color: #e74c3c;
  font-size: 0.85rem;
  display: none;
}

.error-message.show {
  display: block;
}

.submit-btn {
  align-self: flex-start;
  margin-top: 10px;
}

/* Contact Methods Section */
.contact-methods {
  background: white;
  padding: 80px 0;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.contact-method-card {
  background: var(--bg-offwhite);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.contact-method-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(197, 162, 83, 0.2);
}

.method-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.method-icon.whatsapp {
  background: #25D366;
}

.contact-method-card h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.contact-method-card p {
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.6;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link:hover {
  gap: 12px;
}

.contact-link.whatsapp-link {
  color: #25D366;
}

.availability {
  font-size: 0.85rem;
  color: var(--text-light);
  display: block;
}

/* Location & Hours Section */
.location-hours {
  background: var(--bg-offwhite);
  padding: 80px 0;
}

.location-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.location-info h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.location-info h2 span {
  color: var(--primary-color);
}

.location-info > p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 40px;
  line-height: 1.8;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.location-item {
  display: flex;
  gap: 20px;
}

.location-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.location-text h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.location-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #e0e0e0;
  color: var(--text-medium);
}

.hours-item:last-child {
  border-bottom: none;
}

.map-container {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--text-light);
}

.map-placeholder i {
  font-size: 3rem;
  color: var(--primary-color);
}

.map-placeholder h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin: 0;
}

.map-placeholder p {
  margin: 0;
  color: var(--text-light);
}

/* FAQ Section */
.contact-faq {
  background: white;
  padding: 80px 0;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 60px;
}

.faq-item {
  background: var(--bg-offwhite);
  border-radius: 10px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.faq-question {
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(197, 162, 83, 0.05);
}

.faq-question h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 600;
}

.faq-question i {
  color: var(--primary-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

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

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 20px 20px;
}

.faq-answer p {
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

/* Contact CTA Section */
.contact-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  padding: 80px 0;
  text-align: center;
  color: white;
}

.contact-cta .cta-content h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: white;
}

.contact-cta .cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.contact-cta .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: white;
  color: var(--primary-color);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--bg-offwhite);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* About Page Styles */

/* About Hero Section */
.about-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color: white;
  text-align: center;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,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"></path></svg>') no-repeat bottom;
  background-size: cover;
  opacity: 0.3;
}

.about-hero-content {
  position: relative;
  z-index: 2;
}

.about-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  font-weight: 800;
}

.about-hero-content h1 span {
  color: #C5A253;
}

.about-hero-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.95;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 50px;
}

.hero-stat {
  text-align: center;
}

.hero-stat h3 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  font-weight: 700;
}

.hero-stat p {
  font-size: 1rem;
  margin: 0;
  opacity: 0.9;
}

/* About Dr. Section */
.about-dr {
  background: white;
  padding: 80px 0;
}

.about-dr-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-dr-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-dr-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-dr-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
  padding: 40px 30px 30px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about-dr-image:hover .image-overlay {
  opacity: 1;
}

.overlay-content h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.overlay-content p {
  font-size: 0.95rem;
  margin: 5px 0;
  opacity: 0.9;
}

.about-dr-content h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 25px;
  font-weight: 700;
}

.about-dr-content p {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-dr-content p.lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.credential-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-offwhite);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.credential-item:hover {
  background: linear-gradient(135deg, rgba(197, 162, 83, 0.1), rgba(10, 10, 10, 0.05));
  transform: translateX(5px);
}

.credential-item i {
  font-size: 1.8rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.credential-item h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 5px;
  font-weight: 700;
}

.credential-item p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.95rem;
}

/* Professional Background Section */
.professional-bg {
  background: var(--bg-offwhite);
  padding: 80px 0;
}

.professional-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 60px;
}

.professional-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
}

.professional-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-color);
  box-shadow: 0 15px 40px rgba(197, 162, 83, 0.2);
}

.card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: white;
}

.professional-card h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.professional-card p {
  color: var(--text-light);
  line-height: 1.8;
  margin: 0;
}

/* Achievements Section */
.achievements {
  background: white;
  padding: 80px 0;
}

.achievements-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 60px;
}

.achievements-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.achievement-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  padding: 15px 0;
  border-bottom: 1px solid #e0e0e0;
}

.achievement-item:last-child {
  border-bottom: none;
}

.achievement-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
  flex-shrink: 0;
  margin-top: 2px;
}

.achievement-item span {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.6;
}

.achievements-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Publications Section */
.publications {
  background: var(--bg-offwhite);
  padding: 80px 0;
}

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

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 15px;
}

.publications-horizontal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.publication-image-section {
  position: relative;
}

.publication-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.publication-image {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.publication-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.publication-image:hover img {
  transform: scale(1.05);
}

.publication-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9), transparent);
  padding: 40px 30px 30px;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.publication-image:hover .publication-overlay {
  opacity: 1;
}

.publication-overlay h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.publication-overlay p {
  font-size: 0.9rem;
  margin: 5px 0;
  opacity: 0.9;
}

.publication-content-section h3 {
  font-size: 1.8rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 700;
}

.author-info {
  margin-bottom: 30px;
}

.author-info h4 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 5px;
  font-weight: 700;
}

.author-title {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.95rem;
}

.publication-details {
  margin-bottom: 30px;
}

.publication-details h3 {
  font-size: 1.5rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.publication-subtitle {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.publisher-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px 0;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}

.publisher-line {
  width: 3px;
  height: 30px;
  background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
  border-radius: 2px;
}

.publisher-info span {
  color: var(--text-medium);
  font-weight: 600;
}

.research-excellence {
  margin: 30px 0;
  padding: 20px;
  background: var(--bg-offwhite);
  border-radius: 10px;
  border-left: 4px solid var(--primary-color);
}

.research-excellence h3 {
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.research-excellence p {
  color: var(--text-light);
  margin: 0;
  line-height: 1.6;
}

.research-stats-horizontal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}

.stat-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  flex-shrink: 0;
}

.stat-content h4 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin: 0 0 5px 0;
  font-weight: 700;
}

.stat-content p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.9rem;
}

.publication-actions {
  margin-top: 30px;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(197, 162, 83, 0.3);
}

/* SkinRejuv Section */
.skinrejuv {
  background: white;
  padding: 80px 0;
}

.skinrejuv-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.skinrejuv-content h2 {
  font-size: 2.5rem;
  color: var(--text-dark);
  margin-bottom: 25px;
  font-weight: 700;
}

.skinrejuv-content p {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 20px;
}

.skinrejuv-content p.lead {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
}

.clinic-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.clinic-features .feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px;
  background: var(--bg-offwhite);
  border-radius: 10px;
  transition: all 0.3s ease;
}

.clinic-features .feature-item:hover {
  background: linear-gradient(135deg, rgba(197, 162, 83, 0.1), rgba(10, 10, 10, 0.05));
  transform: translateX(5px);
}

.clinic-features .feature-item i {
  font-size: 1.8rem;
  color: var(--primary-color);
  flex-shrink: 0;
}

.clinic-features .feature-item h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  margin-bottom: 5px;
  font-weight: 700;
}

.clinic-features .feature-item p {
  color: var(--text-light);
  margin: 0;
  font-size: 0.95rem;
}

.skinrejuv-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Scroll Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Responsive Design */
@media (max-width: 968px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
    transition: var(--transition);
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  }

  .nav-links.active {
    right: 0;
  }

  .hamburger {
    display: flex;
  }

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

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-image {
    order: -1;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

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

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

  .img-1, .img-2, .img-3 {
    grid-column: 1;
    grid-row: auto;
    min-height: 250px;
  }

  .section-title {
    font-size: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .consultation-wrapper {
    padding: 40px 30px;
  }

  .consultation-content h2 {
    font-size: 1.8rem;
  }

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

  .location-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-contact-stats {
    gap: 30px;
  }

  .contact-hero-content h1 {
    font-size: 2.5rem;
  }

  .form-wrapper {
    padding: 30px;
  }

  .map-placeholder {
    height: 300px;
  }

  /* About Page Tablet Responsive */
  .about-hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-stat h3 {
    font-size: 2rem;
  }

  .about-dr-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .professional-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .achievements-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .publications-horizontal {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .research-stats-horizontal {
    grid-template-columns: repeat(2, 1fr);
  }

  .skinrejuv-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .experience-wrapper {
    grid-template-columns: 1fr;
  }

  .visual.large {
    max-height: 280px;
  }

  .visual-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .section {
    padding: 60px 0;
  }

  .hero-btns {
    flex-direction: column;
    width: 100%;
  }

  .hero-btns .btn {
    width: 100%;
  }

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

  .testimonial-slider {
    padding: 0 20px;
  }

  .contact-form {
    padding: 25px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-links {
    justify-content: center;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    font-size: 1.5rem;
  }

  .contact-hero-content h1 {
    font-size: 1.8rem;
  }

  .contact-hero-content p {
    font-size: 1rem;
  }

  .hero-contact-stats {
    flex-direction: column;
    gap: 20px;
  }

  .hero-contact-stat h3 {
    font-size: 2rem;
  }

  .form-header h2 {
    font-size: 1.8rem;
  }

  .form-wrapper {
    padding: 20px;
  }

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

  .location-container {
    grid-template-columns: 1fr;
  }

  .location-info h2 {
    font-size: 1.8rem;
  }

  .map-placeholder {
    height: 250px;
  }

  .faq-container {
    margin-top: 30px;
  }

  .contact-cta .cta-content h2 {
    font-size: 1.8rem;
  }

  .contact-cta .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .contact-cta .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  /* About Page Responsive */
  .about-hero-content h1 {
    font-size: 1.8rem;
  }

  .about-hero-content p {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat h3 {
    font-size: 1.8rem;
  }

  .about-dr-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-dr-content h2 {
    font-size: 1.8rem;
  }

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

  .achievements-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .publications-horizontal {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .research-stats-horizontal {
    grid-template-columns: 1fr;
  }

  .skinrejuv-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .skinrejuv-content h2 {
    font-size: 1.8rem;
  }

  .experience-content h2 {
    font-size: 1.9rem;
  }

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