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

/* CSS Variables */
:root {
  --primary-color: #8b6f47;
  --primary-light: #a08660;
  --secondary-color: #c7b299;
  --secondary-light: #d4c4b3;
  --accent-gold: #d4af37;
  --text-dark: #2c2c2c;
  --text-medium: #4a4a4a;
  --text-light: #6a6a6a;
  --bg-white: #ffffff;
  --bg-cream: #faf8f5;
  --bg-light-gold: #f9f6f0;
  --bg-offwhite: #fefefe;
  --box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  --transition: all 0.4s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-cream);
  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;
  background-color: #E8DFBE;
}

.section-title {
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  color: var(--text-dark);
  font-weight: 400;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.5px;
}

.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: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 16px 40px;
  border-radius: 6px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  box-shadow: var(--box-shadow);
}

.btn:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(199, 178, 153, 0.4);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--primary-color);
  color: white;
  box-shadow: var(--box-shadow);
}


/* Header & Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 25px 0;
  transition: var(--transition);
  background: rgba(250, 248, 245, 0.98);
  backdrop-filter: blur(15px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header.scrolled {
  padding: 12px 0;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  letter-spacing: -0.5px;
}

.logo span {
  color: var(--primary-color);
}

.nav-links {
  display: flex;
  gap: 35px;
  align-items: center;
}

.nav-links a {
  font-weight: 400;
  position: relative;
  padding: 8px 0;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.3px;
  text-transform: capitalize;
  transition: none !important;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width 0.1s ease;
}

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

/* Services Dropdown Styles */
.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}

.nav-links .dropdown-toggle i {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.nav-links .dropdown.active .dropdown-toggle i {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  width: 90vw;
  background: white;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  padding: 20px;
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.dropdown.active .dropdown-menu,
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu a {
  display: block;
  padding: 12px 15px;
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 6px;
  text-align: center;
  border: 1px solid #f0f0f0;
  background: #fafafa;
}

.dropdown-menu a:hover {
  background: var(--bg-light-gold);
  color: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-2px);
}

.dropdown-menu a.services-main {
  font-weight: 600;
  color: white;
  background: var(--primary-color);
  border: 2px solid var(--primary-color);
  grid-column: 1 / -1;
  margin-bottom: 10px;
}

.dropdown-menu a.services-main:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

.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: all 0.1s ease;
  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, var(--bg-light-gold) 0%, var(--bg-cream) 50%, #f5f2ed 100%);
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}


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

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 25px;
  line-height: 1.1;
  color: var(--text-dark);
  font-weight: 400;
  font-family: 'Playfair Display', serif;
  letter-spacing: -1px;
}

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

.hero-content .hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #967B54;
  font-weight: 600;
  line-height: 1.4;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: var(--text-medium);
  line-height: 1.7;
  font-weight: 300;
  max-width: 90%;
}

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

.hero-image {
  position: static;
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

.hero-image img {
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 500px;
  height: auto;
  transition: none !important;
  transform: none !important;
}


@media (max-width: 480px) {
  .hero {
    padding-top: 140px;
    min-height: 80vh;
  }
  
  .hero-container {
    gap: 25px;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.6;
  }

  .hero-btns {
    gap: 12px;
  }
  
  .hero-image {
    margin-bottom: 10px;
  }
  
  .hero-image img {
    max-width: 220px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  }
}

@media (max-width: 375px) {
  .hero {
    padding-top: 130px;
    min-height: 75vh;
  }
  
  .hero-container {
    gap: 20px;
  }
  
  .hero-content h1 {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 20px;
  }

  .hero-content p {
    font-size: 0.9rem;
    margin-bottom: 25px;
    line-height: 1.5;
  }

  .hero-btns {
    gap: 10px;
  }
  
  .hero-image {
    margin-bottom: 8px;
  }
  
  .hero-image img {
    max-width: 200px;
    border-radius: 10px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 360px) {
  .hero {
    padding-top: 120px;
    min-height: 70vh;
  }
  
  .hero-container {
    gap: 15px;
  }
  
  .hero-content h1 {
    font-size: 1.4rem;
    line-height: 1.1;
    margin-bottom: 15px;
  }

  .hero-content p {
    font-size: 0.85rem;
    margin-bottom: 20px;
    line-height: 1.4;
  }

  .hero-btns {
    gap: 8px;
  }
  
  .hero-image {
    margin-bottom: 5px;
  }
  
  .hero-image img {
    max-width: 180px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  }
}

/* About Section */
.about {
  background-color: var(--bg-white);
  margin-top: 80px;
  position: relative;
}

.about-container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 50px;
}

.about-img {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

/* About Label */
.about-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.about-name {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
  line-height: 1.2;
}

.about-subtitle {
  font-size: 1.3rem;
  color: var(--text-medium);
  font-weight: 400;
  margin-bottom: 25px;
}

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

.read-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: #f5f5f5;
  color: var(--text-dark);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 30px;
  text-decoration: none;
}

.read-more-btn:hover {
  background: #e8e8e8;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
}

.read-more-btn i {
  transition: transform 0.3s ease;
}

.read-more-btn:hover i {
  transform: translateX(3px);
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.stat-box {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.stat-box h4 {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 5px;
}

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

/* Services Section */
.services {
  background: var(--bg-light-gold);
  position: relative;
}

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

.services-header .section-title {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 400;
}

.services-header .section-subtitle {
  font-size: 2.5rem;
  color: var(--primary-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.procedures-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  max-width: 800px;
  margin: 0 auto;
}

.procedure-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--bg-white);
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border-left: 4px solid var(--primary-color);
}

.procedure-item:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 35px rgba(199, 178, 153, 0.2);
}

.procedure-number {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  min-width: 40px;
}

.procedure-item h4 {
  font-size: 1.1rem;
  color: var(--text-dark);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0;
}

.services-cta {
  text-align: center;
  margin-top: 50px;
}

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

.service-card {
  background: var(--bg-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.service-content {
  padding: 25px;
  text-align: center;
}

.service-content h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: var(--text-dark);
  font-weight: 600;
}

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

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.service-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-color);
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.service-features {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text-medium);
}

.service-features li i {
  color: var(--primary-color);
  font-size: 0.8rem;
}

.service-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: 500;
  text-transform: capitalize;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 15px;
}

.service-btn:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(199, 178, 153, 0.3);
}

.service-btn-wrapper {
  margin-top: 20px;
}

.service-btn-wrapper .service-btn {
  margin-top: 0;
  pointer-events: none;
}

/* Detailed Procedure Section */
.detailed-procedure {
  background: var(--bg-cream);
}

.procedure-content {
  max-width: 1000px;
  margin: 0 auto;
}

.procedure-content h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin: 40px 0 20px 0;
  font-weight: 600;
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
}

.procedure-content h3:first-child {
  margin-top: 0;
}

.procedure-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.procedure-content li {
  background: var(--bg-white);
  margin: 8px 0;
  padding: 12px 20px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.procedure-content li:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Services Hero Section */
.services-hero {
  min-height: 60vh;
  background: #000000 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0 80px;
  position: relative;
}

.services-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.services-hero-content h1 {
  font-size: 3.5rem;
  color: white;
  font-weight: 600;
  margin-bottom: 40px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  font-family: 'Montserrat', sans-serif;
}

.hero-appointment-btn {
  display: inline-block;
  background: white;
  color: #000000;
  padding: 16px 35px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  transition: var(--transition);
  border: 2px solid white;
  letter-spacing: 0.3px;
}


/* Responsive Design for Services Hero */
@media (max-width: 968px) {
  .services-hero-content h1 {
    font-size: 2.8rem;
  }
  
  .services-hero {
    padding: 80px 0 60px;
  }
}

@media (max-width: 640px) {
  .services-hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
  
  .hero-appointment-btn {
    padding: 14px 30px;
    font-size: 0.95rem;
  }
  
  .services-hero {
    min-height: 50vh;
    padding: 60px 0 50px;
  }
}

/* Before & After Gallery Section */
.before-after-gallery {
  background: var(--bg-white);
}

.before-after-gallery .section-subtitle {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

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

.gallery-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Gallery Slider Styles */
.gallery-slider-container {
  margin-top: 50px;
  position: relative;
}

.gallery-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
}

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

.gallery-slide {
  min-width: 100%;
  position: relative;
  display: none;
}

.gallery-slide.active {
  display: block;
}

.gallery-slide .before-after-container {
  height: auto;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.gallery-slide .gallery-image {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  transition: var(--transition);
}

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

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

.gallery-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--primary-color);
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  pointer-events: all;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 25px;
}

.gallery-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(199, 178, 153, 0.3);
  cursor: pointer;
  transition: var(--transition);
}

.gallery-dot.active {
  background: var(--primary-color);
  width: 30px;
  border-radius: 6px;
}

.before-after-container {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
}

.gallery-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  transition: var(--transition);
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 25px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.overlay-content {
  color: white;
  text-align: left;
}

.overlay-content h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  font-weight: 600;
}

.overlay-content p {
  font-size: 0.95rem;
  margin-bottom: 15px;
  line-height: 1.4;
}

.treatment-badge {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gallery-cta {
  text-align: center;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}

.gallery-note {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 25px;
  font-style: italic;
}

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

.whatsapp-float:hover {
  background: #128C7E;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
  color: white;
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
  }
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  }
}

/* Responsive Design for Gallery */
@media (max-width: 968px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
  
  .before-after-container {
    height: 300px;
  }
  
  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
    bottom: 15px;
    right: 15px;
  }
}

@media (max-width: 640px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Gallery Slider Responsive */
  .gallery-slider-container {
    margin-top: 30px;
    padding: 0 10px;
  }
  
  .gallery-slider {
    max-width: 100%;
    margin: 0;
  }
  
  .gallery-slide .before-after-container {
    min-height: 300px;
  }
  
  .gallery-slide .gallery-image {
    max-height: 400px;
  }
  
  .gallery-controls {
    padding: 0 10px;
  }
  
  .gallery-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .gallery-dots {
    gap: 8px;
    margin-top: 20px;
  }
  
  .gallery-dot {
    width: 10px;
    height: 10px;
  }
  
  .gallery-dot.active {
    width: 24px;
  }
  
  .gallery-overlay {
    padding: 15px;
  }
  
  .overlay-content h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }
  
  .overlay-content p {
    font-size: 0.85rem;
    margin-bottom: 10px;
  }
  
  .treatment-badge {
    padding: 4px 10px;
    font-size: 0.7rem;
  }
  
  .gallery-cta {
    margin-top: 30px;
    padding-top: 25px;
  }
  
  .gallery-note {
    font-size: 0.8rem;
    margin-bottom: 20px;
    padding: 0 10px;
  }
}

@media (max-width: 480px) {
  .gallery-slider-container {
    margin-top: 25px;
    padding: 0 5px;
  }
  
  .gallery-slide .before-after-container {
    min-height: 250px;
  }
  
  .gallery-slide .gallery-image {
    max-height: 300px;
  }
  
  .gallery-controls {
    padding: 0 5px;
  }
  
  .gallery-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .gallery-dots {
    gap: 6px;
    margin-top: 15px;
  }
  
  .gallery-dot {
    width: 8px;
    height: 8px;
  }
  
  .gallery-dot.active {
    width: 20px;
  }
  
  .gallery-overlay {
    padding: 12px;
  }
  
  .overlay-content h3 {
    font-size: 1rem;
    margin-bottom: 5px;
  }
  
  .overlay-content p {
    font-size: 0.8rem;
    margin-bottom: 8px;
    line-height: 1.3;
  }
  
  .treatment-badge {
    padding: 3px 8px;
    font-size: 0.65rem;
  }
  
  .gallery-cta {
    margin-top: 25px;
    padding-top: 20px;
  }
  
  .gallery-note {
    font-size: 0.75rem;
    margin-bottom: 15px;
    padding: 0 5px;
    line-height: 1.4;
  }
}

@media (max-width: 375px) {
  .gallery-slider-container {
    margin-top: 20px;
    padding: 0;
  }
  
  .gallery-slide .before-after-container {
    min-height: 220px;
  }
  
  .gallery-slide .gallery-image {
    max-height: 280px;
  }
  
  .gallery-controls {
    padding: 0;
  }
  
  .gallery-btn {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
  
  .gallery-dots {
    gap: 5px;
    margin-top: 12px;
  }
  
  .gallery-dot {
    width: 7px;
    height: 7px;
  }
  
  .gallery-dot.active {
    width: 18px;
  }
  
  .gallery-overlay {
    padding: 10px;
  }
  
  .overlay-content h3 {
    font-size: 0.9rem;
    margin-bottom: 4px;
  }
  
  .overlay-content p {
    font-size: 0.75rem;
    margin-bottom: 6px;
    line-height: 1.2;
  }
  
  .treatment-badge {
    padding: 2px 6px;
    font-size: 0.6rem;
  }
  
  .gallery-cta {
    margin-top: 20px;
    padding-top: 15px;
  }
  
  .gallery-note {
    font-size: 0.7rem;
    margin-bottom: 12px;
    line-height: 1.3;
  }
}

@media (max-width: 360px) {
  .gallery-slider-container {
    margin-top: 15px;
  }
  
  .gallery-slide .before-after-container {
    min-height: 200px;
  }
  
  .gallery-slide .gallery-image {
    max-height: 250px;
  }
  
  .gallery-btn {
    width: 30px;
    height: 30px;
    font-size: 0.75rem;
  }
  
  .gallery-dots {
    gap: 4px;
    margin-top: 10px;
  }
  
  .gallery-dot {
    width: 6px;
    height: 6px;
  }
  
  .gallery-dot.active {
    width: 16px;
  }
  
  .gallery-overlay {
    padding: 8px;
  }
  
  .overlay-content h3 {
    font-size: 0.85rem;
    margin-bottom: 3px;
  }
  
  .overlay-content p {
    font-size: 0.7rem;
    margin-bottom: 5px;
    line-height: 1.2;
  }
  
  .treatment-badge {
    padding: 2px 5px;
    font-size: 0.55rem;
  }
  
  .gallery-cta {
    margin-top: 15px;
    padding-top: 12px;
  }
  
  .gallery-note {
    font-size: 0.65rem;
    margin-bottom: 10px;
    line-height: 1.3;
  }
}

.service-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary-light), var(--secondary-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  transform: rotateY(360deg);
}

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

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

/* 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-white);
}

.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: var(--primary-color);
  color: white;
}

/* Contact Section */
.contact {
  background: var(--bg-light-gold);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.contact-info h3 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--text-dark);
  font-weight: 600;
}

.contact-info p {
  font-size: 1rem;
  color: var(--text-medium);
  margin-bottom: 30px;
  line-height: 1.8;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  padding: 15px 0;
}

.info-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.info-text {
  flex: 1;
}

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

.info-text p {
  font-size: 1rem;
  color: var(--text-medium);
  margin: 0;
  line-height: 1.5;
}

.contact-form {
  background: var(--bg-offwhite);
  padding: 40px;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--text-dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}

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

.form-group button {
  width: 100%;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-section h3 {
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: var(--primary-light);
}

.footer-section p,
.footer-section a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.8;
  display: block;
  margin-bottom: 10px;
}

.footer-section a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

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

.social-links a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

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

/* 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: right 0.2s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
  }

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

  .hamburger {
    display: flex;
  }

  /* Fix hero sections hiding behind navbar on mobile */
  .about-hero {
    padding-top: 140px !important;
    min-height: 65vh;
  }

  .contact-hero {
    padding-top: 140px !important;
  }

  .services-hero {
    padding-top: 140px !important;
  }

  .service-detail-hero {
    padding-top: 140px !important;
  }

  /* Mobile Dropdown Styles - Disable dropdown on mobile */
  .nav-links .dropdown-menu {
    display: none !important;
  }

  .nav-links .dropdown-toggle {
    pointer-events: auto !important;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    text-align: center;
    padding: 8px 0;
    font-weight: 400;
    position: relative;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3px;
    text-transform: capitalize;
  }

  .nav-links .dropdown-toggle:hover {
    color: var(--primary-color);
  }

  .nav-links .dropdown-toggle:active {
    color: var(--primary-color);
  }

  .nav-links .dropdown-toggle i {
    display: none;
  }

  .hero {
    padding-top: 140px;
    min-height: 90vh;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

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

  .hero-content .hero-subtitle {
    font-size: 1.2rem;
  }

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

  .hero-image {
    order: -1;
    margin-bottom: 20px;
  }
  
  .hero-image img {
    max-width: 280px;
    margin: 0 auto;
    display: block;
  }

  .about-container {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .about-img {
    margin-bottom: 40px;
  }
  
  .about-name {
    font-size: 2rem;
  }
  
  .about-subtitle {
    font-size: 1.1rem;
  }
  
  .about-content p {
    font-size: 0.95rem;
  }
  
  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .info-item {
    gap: 15px;
    margin-bottom: 25px;
    padding: 12px 0;
  }
  
  .info-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .info-text h4 {
    font-size: 1.1rem;
  }
  
  .info-text p {
    font-size: 0.95rem;
  }

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

@media (max-width: 640px) {
  .hero {
    padding-top: 150px;
    min-height: 85vh;
  }
  
  .hero-container {
    gap: 30px;
  }
  
  .hero-content h1 {
    font-size: 2rem;
  }

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

  .hero-content p {
    font-size: 1rem;
    max-width: 100%;
  }

  .section {
    padding: 60px 0;
  }

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

  .hero-btns .btn {
    width: 100%;
  }
  
  .hero-image {
    margin-bottom: 15px;
  }
  
  .hero-image img {
    max-width: 250px;
    border-radius: 15px;
    margin-top: 50px;
  }

  .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;
  }
}

/* ===================================
   About Page Specific Styles
   =================================== */

/* About Hero Section */
.about-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(248, 187, 208, 0.1), rgba(129, 212, 250, 0.1)),
              url('./images/ABOUT\ IMAGE\ DRASMA.599Z.png') no-repeat center center/cover;
  padding-top: 80px;
  position: relative;
}

@media (max-width: 640px) {
  .about-hero {
    min-height: 60vh;
    padding-top: 120px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    min-height: 50vh;
    padding-top: 110px;
  }
}

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

.about-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

@media (max-width: 480px) {
  .about-hero-content {
    padding: 15px;
    max-width: 100%;
    width: 100%;
  }
}

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

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

.about-hero-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: var(--text-dark);
  line-height: 1.6;
  font-weight: 500;
}

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

.hero-stat {
  text-align: center;
  background: rgba(150, 123, 84, 0.1);
  padding: 25px 20px;
  border-radius: 15px;
  border: 2px solid transparent;
  transition: all 0.4s ease;
  cursor: pointer;
}

.hero-stat:hover {
  background: #967B54 !important;
  border-color: #967B54 !important;
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(150, 123, 84, 0.3);
}

.hero-stat h3 {
  font-size: 2.5rem;
  color: #967B54;
  margin-bottom: 10px;
  font-weight: 700;
  transition: all 0.4s ease;
}

.hero-stat:hover h3 {
  color: white !important;
}

.hero-stat p {
  font-size: 1rem;
  color: var(--text-dark);
  margin: 0;
  font-weight: 600;
  transition: all 0.4s ease;
}

.hero-stat:hover p {
  color: white !important;
}

/* About Dr. Section */
.about-dr {
  background: #E8DFBE;
}

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

.about-dr-image {
  position: relative;
}

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


.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 30px;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.about-dr-image:hover .image-overlay {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.overlay-content h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: white;
}

.overlay-content p {
  font-size: 1rem;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.9);
}

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

.about-dr-content .lead {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.credentials {
  margin-top: 30px;
}

.credential-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--bg-offwhite);
  border-radius: 10px;
  transition: var(--transition);
}

.credential-item:hover {
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.credential-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-top: 5px;
}

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

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

.professional-details {
  margin-top: 35px;
  padding-top: 35px;
  border-top: 2px solid var(--bg-offwhite);
}

.professional-details h4 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 600;
}

.achievement-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.achievement-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  color: var(--text-medium);
  font-size: 1rem;
  line-height: 1.6;
}

.achievement-list li i {
  color: var(--primary-color);
  margin-top: 5px;
  font-size: 1.1rem;
}

/* Professional Background Section */
.professional-bg {
  background: #E8DFBE;
}

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

.professional-card {
  background: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

.professional-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
  transform: scaleX(0);
  transition: var(--transition);
}

.professional-card:hover::before {
  transform: scaleX(1);
}

.professional-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.professional-card:hover .card-icon {
  transform: rotateY(360deg);
}

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

.professional-card p {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* Achievements Section */
.achievements {
  background: #E8DFBE;
}

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

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

.achievement-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background: var(--bg-offwhite);
  border-radius: 10px;
  transition: var(--transition);
}

.achievement-item:hover {
  background: white;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transform: translateX(10px);
}

.achievement-item i {
  font-size: 1.5rem;
  color: var(--secondary-color);
  flex-shrink: 0;
}

.achievement-item span {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 500;
}

.achievements-image {
  position: relative;
}

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


/* Publications & Research Section */
.publications {
  background: linear-gradient(135deg, var(--bg-offwhite) 0%, rgba(248, 187, 208, 0.05) 100%);
}

/* General Image Responsive Rules for About Page */
.about-dr-image img,
.achievements-image img,
.skinrejuv-image img {
  width: 100%;
  height: auto;
  display: block;
}

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

.section-subtitle {
  font-size: 1rem;
  color: var(--text-light);
  margin-top: 10px;
  font-style: italic;
}

.publications-horizontal {
  display: flex;
  align-items: center;
  gap: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  min-height: 300px;
}

.publication-image-section {
  flex: 0 0 40%;
  background: linear-gradient(135deg, #2c3e50, #34495e);
  padding: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  min-height: 250px;
}

.publication-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary-color);
  color: white;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(244, 143, 177, 0.3);
}

.publication-badge i {
  font-size: 1rem;
}

.publication-image {
  text-align: center;
  margin-top: 20px;
  position: relative;
  cursor: pointer;
}

.publication-image img {
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: var(--transition);
}

.publication-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 62, 80, 0.8), rgba(52, 73, 94, 0.9));
  border-radius: 15px;
  opacity: 0;
  transition: var(--transition);
  z-index: 1;
}

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

.publication-overlay {
  position: absolute;
  top: 50%;
  left: 20px;
  right: 20px;
  transform: translateY(-50%);
  color: white;
  text-align: left;
  opacity: 0;
  visibility: hidden;
  display: none;
  transition: var(--transition);
  z-index: 2;
}

.publication-image:hover .publication-overlay {
  opacity: 1;
  visibility: visible;
  display: block;
}

.publication-overlay h4 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.2;
}

.publication-overlay p {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.3;
}

.publication-overlay p:last-child {
  margin-bottom: 0;
}

.publication-content-section {
  flex: 1;
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  opacity: 1;
  visibility: visible;
  transition: var(--transition);
  min-height: 250px;
}

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

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

.author-title {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

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

.publication-details h3 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 5px;
  font-weight: 600;
  line-height: 1.2;
}

.publication-subtitle {
  font-size: 0.8rem;
  color: var(--text-medium);
  margin-bottom: 6px;
  line-height: 1.3;
}

.publisher-info {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.publisher-line {
  width: 25px;
  height: 2px;
  background: var(--primary-color);
  border-radius: 2px;
}

.publisher-info span {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

.research-excellence {
  margin-bottom: 10px;
}

.research-excellence h3 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 5px;
  font-weight: 700;
}

.research-excellence p {
  font-size: 0.8rem;
  color: var(--text-medium);
  line-height: 1.4;
}

.research-stats-horizontal {
  display: flex;
  gap: 10px;
  margin-bottom: 10px;
}

.stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 6px;
  transition: var(--transition);
  border: 1px solid rgba(244, 143, 177, 0.1);
}

.stat-item:hover {
  background: white;
  box-shadow: 0 8px 25px rgba(244, 143, 177, 0.15);
  transform: translateY(-3px);
  border-color: var(--primary-color);
}

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

.stat-content h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 2px;
  font-weight: 700;
  line-height: 1;
}

.stat-content p {
  font-size: 0.7rem;
  color: var(--text-dark);
  margin: 0;
  font-weight: 500;
}

.publication-actions {
  text-align: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(244, 143, 177, 0.3);
  font-size: 0.8rem;
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(77, 182, 172, 0.4);
  color: white;
}

.featured-publication {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(77, 182, 172, 0.1);
}

.publication-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  flex-wrap: wrap;
  gap: 15px;
}

.publication-header h3 {
  font-size: 1.8rem;
  color: var(--text-dark);
  font-weight: 600;
  margin: 0;
}

.publication-badge {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(77, 182, 172, 0.3);
}

.publication-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 30px;
  align-items: start;
}

.publication-cover {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 15px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(244, 143, 177, 0.3);
  position: relative;
  overflow: hidden;
}

.publication-cover::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg);
  transition: var(--transition);
}

.publication-cover:hover::before {
  animation: shine 0.8s ease-in-out;
}

@keyframes shine {
  0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
  100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.book-icon {
  font-size: 3rem;
  color: white;
  margin-bottom: 15px;
}

.publisher-logo {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.8rem;
  color: white;
  font-weight: 600;
}

.publication-details h4 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
}

.publication-description {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 20px;
}

.publication-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-light);
  font-size: 0.9rem;
}

.meta-item i {
  color: var(--primary-color);
  font-size: 1rem;
}

.publication-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(244, 143, 177, 0.3);
  font-size: 0.95rem;
}

.publication-btn:hover {
  background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(77, 182, 172, 0.4);
  color: white;
}

/* SkinRejuv Section */
.skinrejuv {
  background: var(--bg-offwhite);
}

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

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

.skinrejuv-content .lead {
  font-size: 1.2rem;
  color: var(--secondary-color);
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.6;
}

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

.clinic-features {
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: white;
  border-radius: 10px;
  transition: var(--transition);
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.feature-item i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-top: 5px;
}

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

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

.skinrejuv-image {
  position: relative;
}

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


/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #967B54 0%, var(--secondary-color) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(150, 123, 84, 0.1) 25%, transparent 25%, transparent 75%, rgba(150, 123, 84, 0.1) 75%);
  background-size: 20px 20px;
  animation: movePattern 20s linear infinite;
}

@keyframes movePattern {
  0% { transform: translateX(0); }
  100% { transform: translateX(20px); }
}

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

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: white;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
}

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

.cta-buttons .btn {
  background: white;
  color: #967B54;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
  border: 2px solid transparent;
  transition: all 0.4s ease;
}

.cta-buttons .btn:hover {
  background: #967B54;
  color: white;
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(150, 123, 84, 0.4);
}

.cta-buttons .btn-outline {
  background: transparent;
  border: 2px solid white;
  color: white;
  box-shadow: none;
}

.cta-buttons .btn-outline:hover {
  background: white;
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.cta-info {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-info .info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.cta-info .info-item i {
  font-size: 1.2rem;
}

/* Responsive Design for About Page */
@media (max-width: 1024px) {
  .about-hero-content h1 {
    font-size: 2.8rem;
  }
  
  .hero-stats {
    gap: 40px;
  }
  
  .about-dr-container,
  .achievements-container,
  .skinrejuv-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  
  .publications-horizontal {
    flex-direction: column;
    gap: 0;
    min-height: auto;
    height: auto;
  }
  
  .publication-image-section {
    flex: none;
    padding: 20px;
    min-height: 200px;
  }
  
  .publication-content-section {
    padding: 20px;
    min-height: auto;
  }
  
  .research-stats-horizontal {
    flex-direction: column;
    gap: 10px;
  }
  
  .stat-item {
    flex: none;
    padding: 15px;
  }
  
  .publication-overlay h4 {
    font-size: 1.2rem;
  }
  
  .publication-overlay p {
    font-size: 0.9rem;
  }
  
  .author-info {
    margin-bottom: 15px;
  }
  
  .publication-details {
    margin-bottom: 15px;
  }
  
  .research-excellence {
    margin-bottom: 15px;
  }
  
  .publication-actions {
    margin-top: 15px;
  }
  
  .professional-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .research-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  
  .publication-card {
    grid-template-columns: 1fr;
    gap: 25px;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .about-hero-content h1 {
    font-size: 2.2rem;
  }
  
  .about-hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    gap: 25px;
    flex-wrap: wrap;
  }
  
  .hero-stat h3 {
    font-size: 2.2rem;
  }
  
  .about-dr-content h2,
  .publications-content h2,
  .skinrejuv-content h2 {
    font-size: 2rem;
  }
  
  .research-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .publication-image-section {
    padding: 15px;
    min-height: 150px;
  }
  
  .publication-content-section {
    padding: 15px;
    min-height: auto;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .research-stats-horizontal {
    gap: 8px;
  }
  
  .stat-item {
    padding: 12px;
    gap: 10px;
  }
  
  .stat-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .stat-content h4 {
    font-size: 1.4rem;
  }
  
  .publication-overlay h4 {
    font-size: 1rem;
  }
  
  .publication-overlay p {
    font-size: 0.8rem;
  }
  
  .author-info {
    margin-bottom: 10px;
  }
  
  .publication-details {
    margin-bottom: 10px;
  }
  
  .research-excellence {
    margin-bottom: 10px;
  }
  
  .publication-actions {
    margin-top: 10px;
  }
  
  .featured-publication {
    padding: 30px 25px;
  }
  
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .cta-info {
    flex-direction: column;
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .container {
    padding: 0 15px;
  }
  
  .section {
    padding: 50px 0;
  }

  
  .about-hero-content h1 {
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 15px;
    word-wrap: break-word;
  }
  
  .about-hero-content p {
    font-size: 1rem;
  }
  
  .hero-stats {
    display: flex;
    flex-direction: row;
    gap: 8px;
    margin-top: 40px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
    padding: 0 10px;
  }
  
  .hero-stat {
    flex: 1;
    min-width: 0;
    padding: 15px 8px;
    background: rgba(150, 123, 84, 0.1);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  .hero-stat:hover {
    background: #967B54;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(150, 123, 84, 0.3);
  }
  
  .hero-stat h3 {
    font-size: 1.4rem;
    margin-bottom: 4px;
    color: #967B54;
    font-weight: 700;
    transition: all 0.4s ease;
  }
  
  .hero-stat:hover h3 {
    color:  #967B54!important;
  }
  
  .hero-stat p {
    font-size: 0.75rem;
    line-height: 1.2;
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
    transition: all 0.4s ease;
  }
  
  .hero-stat:hover p {
    color: white !important;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .about-dr-content h2,
  .publications-content h2,
  .skinrejuv-content h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  .about-dr-content .lead,
  .publications-content .lead,
  .skinrejuv-content .lead {
    font-size: 1.1rem;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .professional-card,
  .credential-item,
  .research-card,
  .feature-item {
    padding: 20px 15px;
  }
  
  .research-grid {
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 25px 0;
  }
  
  .publication-image-section {
    padding: 12px;
    min-height: 120px;
  }
  
  .publication-content-section {
    padding: 12px;
    min-height: auto;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .research-stats-horizontal {
    gap: 6px;
  }
  
  .stat-item {
    padding: 10px;
    gap: 8px;
  }
  
  .stat-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .stat-content h4 {
    font-size: 1.2rem;
  }
  
  .btn-primary {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
  
  .publication-overlay h4 {
    font-size: 0.9rem;
  }
  
  .publication-overlay p {
    font-size: 0.75rem;
  }
  
  .author-info {
    margin-bottom: 8px;
  }
  
  .publication-details {
    margin-bottom: 8px;
  }
  
  .research-excellence {
    margin-bottom: 8px;
  }
  
  .publication-actions {
    margin-top: 8px;
  }
  
  .featured-publication {
    padding: 25px 15px;
  }
  
  .publication-card {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .publication-cover {
    padding: 25px 15px;
  }
  
  
  .achievement-item {
    padding: 15px;
    gap: 12px;
  }
  
  .achievement-item i {
    font-size: 1.3rem;
  }
  
  .achievement-item span {
    font-size: 0.9rem;
  }
  
  .book-feature {
    padding: 20px 15px;
    margin-top: 25px;
  }
  
  .book-feature h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .book-card {
    flex-direction: column;
    text-align: center;
    padding: 20px 15px;
    gap: 15px;
  }
  
  .book-cover {
    width: 70px;
    height: 90px;
    font-size: 2rem;
    align-self: center;
  }
  
  .book-details h4 {
    font-size: 1rem;
    line-height: 1.3;
  }
  
  .book-details p {
    font-size: 0.85rem;
  }
  
  .book-details .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  
  .cta-buttons .btn {
    padding: 15px 25px;
    font-size: 0.9rem;
  }
  
  .cta-info .info-item {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  
  .section {
    padding: 40px 0;
  }
  
  .about-hero-content h1 {
    font-size: 1.4rem;
    line-height: 1.1;
    margin-bottom: 15px;
    word-wrap: break-word;
  }
  
  .about-hero-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    line-height: 1.4;
  }
  
  .hero-stats {
    display: flex;
    flex-direction: row;
    gap: 6px;
    margin-top: 35px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
    padding: 0 8px;
  }
  
  .hero-stat {
    flex: 1;
    min-width: 0;
    padding: 12px 6px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 69, 19, 0.1);
  }
  
  .hero-stat:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 18px rgba(0, 0, 0, 0.15);
  }
  
  .hero-stat h3 {
    font-size: 1.2rem;
    margin-bottom: 3px;
    color: var(--primary-color);
    font-weight: 700;
  }
  
  .hero-stat p {
    font-size: 0.7rem;
    font-weight: 500;
    line-height: 1.1;
    color: var(--text-dark);
    margin: 0;
  }
  
  .credential-item {
    padding: 15px;
    margin-bottom: 20px;
    gap: 15px;
  }
  
  .credential-item i {
    font-size: 1.5rem;
  }
  
  .credential-item h4 {
    font-size: 1rem;
  }
  
  .credential-item p {
    font-size: 0.85rem;
  }
  
  .professional-details {
    margin-top: 25px;
    padding-top: 25px;
  }
  
  .professional-details h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }
  
  .achievement-list li {
    font-size: 0.9rem;
    margin-bottom: 12px;
  }
  
  .achievement-list li i {
    font-size: 1rem;
  }
  
  .about-name {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
  
  .about-subtitle {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .read-more-btn {
    padding: 12px 20px;
    font-size: 0.9rem;
    margin: 20px auto;
  }
}

@media (max-width: 375px) {
  .about-hero {
    margin-top: 10px;
    padding-top: 100px;
    min-height: 55vh;
  }
  
  .about-hero-content {
    padding: 10px;
    max-width: 100%;
    width: 100%;
  }
  
  .about-hero-content h1 {
    font-size: 1.3rem;
    line-height: 1.1;
    margin-bottom: 12px;
    word-wrap: break-word;
  }
  
  .about-hero-content p {
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  .hero-stats {
    display: flex;
    flex-direction: row;
    gap: 5px;
    margin-top: 30px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
    padding: 0 6px;
  }
  
  .hero-stat {
    flex: 1;
    min-width: 0;
    padding: 10px 4px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 69, 19, 0.1);
  }
  
  .hero-stat:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }
  
  .hero-stat h3 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--primary-color);
    font-weight: 700;
  }
  
  .hero-stat p {
    font-size: 0.65rem;
    font-weight: 500;
    line-height: 1.1;
    color: var(--text-dark);
    margin: 0;
  }
}

@media (max-width: 360px) {
  .about-hero {
    padding-top: 95px;
    min-height: 50vh;
  }
  
  .about-hero-content h1 {
    font-size: 1.2rem;
    line-height: 1.1;
    margin-bottom: 10px;
  }
  
  .about-hero-content p {
    font-size: 0.9rem;
    margin-bottom: 18px;
    line-height: 1.3;
  }
  
  .hero-stats {
    gap: 4px;
    margin-top: 25px;
    padding: 0 4px;
  }
  
  .hero-stat {
    flex: 1;
    min-width: 0;
    padding: 8px 3px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 69, 19, 0.1);
  }
  
  .hero-stat:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
  }
  
  .hero-stat h3 {
    font-size: 0.9rem;
    margin-bottom: 1px;
    color: var(--primary-color);
    font-weight: 700;
  }
  
  .hero-stat p {
    font-size: 0.6rem;
    font-weight: 500;
    line-height: 1.1;
    color: var(--text-dark);
    margin: 0;
  }
}
  
  .research-stats-horizontal {
    gap: 5px;
  }
  
  .stat-item {
    padding: 8px;
    gap: 6px;
  }
  
  .stat-icon {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
  
  .stat-content h4 {
    font-size: 1.1rem;
  }
  
  .btn-primary {
    padding: 10px 20px;
    font-size: 0.85rem;
  }
  
  .publication-overlay h4 {
    font-size: 0.8rem;
  }
  
  .publication-overlay p {
    font-size: 0.7rem;
  }
  
  .author-info {
    margin-bottom: 6px;
  }
  
  .publication-details {
    margin-bottom: 6px;
  }
  
  .research-excellence {
    margin-bottom: 6px;
  }
  
  .publication-actions {
    margin-top: 6px;
  }
  
  .featured-publication {
    padding: 20px 10px;
  }
  
  .publication-cover {
    padding: 20px 10px;
  }
  
  .book-icon {
    font-size: 2.5rem;
  }
  
  
  .achievement-item {
    padding: 12px;
    gap: 10px;
  }
  
  .achievement-item i {
    font-size: 1.2rem;
  }
  
  .achievement-item span {
    font-size: 0.85rem;
  }
  
  .book-feature {
    padding: 15px 10px;
  }
  
  .book-feature h3 {
    font-size: 1.1rem;
  }
  
  .book-card {
    padding: 15px 10px;
  }
  
  .book-cover {
    width: 60px;
    height: 80px;
    font-size: 1.8rem;
  }
  
  .book-details h4 {
    font-size: 0.95rem;
  }
  
  .book-details p {
    font-size: 0.8rem;
  }
  
  .book-details .btn {
    padding: 10px 15px;
    font-size: 0.85rem;
  }
  
  .cta-buttons .btn {
    padding: 12px 20px;
    font-size: 0.85rem;
  }
  
  .cta-info .info-item {
    font-size: 0.85rem;
  }
}

/* ===================================
   Contact Page Specific Styles
   =================================== */

/* Contact Hero Section */
.contact-hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, rgba(248, 187, 208, 0.1), rgba(129, 212, 250, 0.1)),
              url('./images/ABOUT\ IMAGE\ DRASMA.599Z.png') no-repeat center center/cover;
  padding-top: 80px;
  position: relative;
}

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

.contact-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}

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

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

.contact-hero-content p {
  font-size: 1.3rem;
  margin-bottom: 40px;
  color: var(--text-dark);
  line-height: 1.6;
  font-weight: 500;
}

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

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

.hero-contact-stat h3 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 10px;
  font-weight: 700;
}

.hero-contact-stat p {
  font-size: 1rem;
  color: var(--text-dark);
  margin: 0;
  font-weight: 600;
}

/* 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: 50px;
}

.contact-method-card {
  background: white;
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border: 1px solid rgba(248, 187, 208, 0.2);
}

.contact-method-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.method-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  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: linear-gradient(135deg, #25D366, #128C7E);
}

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

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

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

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: var(--transition);
}

.contact-link:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

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

.contact-link.whatsapp-link:hover {
  background: #128C7E;
}

.availability {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

/* Contact Form Section */
.contact-form-section {
  background: #8b6f47;
  padding: 80px 0;
}

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

.form-header {
  text-align: center;
  margin-top: 70px;
  margin-bottom: 50px;
  padding: 0 20px;
  max-width: 100%;
}

/* Mobile responsive styles for form header */
@media (max-width: 768px) {
  .form-header {
    margin-top: 80px;
    margin-bottom: 40px;
    padding: 0 15px;
  }
  
  .form-header h2 {
    font-size: 1.8rem;
    line-height: 1.2;
  }
  
  .form-header p {
    font-size: 1rem;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .form-header {
    margin-top: 70px;
    margin-bottom: 30px;
    padding: 0 10px;
  }
  
  .form-header h2 {
    font-size: 1.6rem;
  }
  
  .form-header p {
    font-size: 0.9rem;
  }
}

.form-header h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: white;
  word-wrap: break-word;
  max-width: 100%;
}

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

.form-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
  word-wrap: break-word;
}

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

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

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

.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px 20px;
  border: 2px solid #e1e5e9;
  border-radius: 10px;
  font-size: 1rem;
  transition: var(--transition);
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(248, 187, 208, 0.2);
}

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

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 15px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin: 0;
}

.terms-link {
  color: var(--primary-color);
  text-decoration: none;
}

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

.submit-btn {
  padding: 18px 40px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  transition: var(--transition);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(248, 187, 208, 0.4);
}

.error-message {
  color: #e74c3c;
  font-size: 0.9rem;
  margin-top: 5px;
  display: none;
}

.form-group.error .error-message {
  display: block;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
  border-color: #e74c3c;
}

/* Location & Hours Section */
.location-hours {
  background: white;
  padding: 80px 0;
}

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

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

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

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

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

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

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

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

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

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

.hours-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

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

.hours-item span:first-child {
  font-weight: 600;
  color: var(--text-dark);
}

.hours-item span:last-child {
  color: var(--text-medium);
}

.map-container {
  background: #f8f9fa;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-placeholder {
  height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(248, 187, 208, 0.1), rgba(129, 212, 250, 0.1));
}

.map-placeholder i {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

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

.map-placeholder p {
  color: var(--text-medium);
  margin-bottom: 25px;
}

/* FAQ Section */
.contact-faq {
  background: linear-gradient(135deg, rgba(248, 187, 208, 0.05), rgba(129, 212, 250, 0.05));
  padding: 80px 0;
}

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

.faq-item {
  background: white;
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: white;
  transition: var(--transition);
}

.faq-question:hover {
  background: #f8f9fa;
}

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

.faq-question i {
  color: var(--primary-color);
  font-size: 1.2rem;
  transition: var(--transition);
}

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

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

.faq-item.active .faq-answer {
  padding: 0 30px 25px;
  max-height: 200px;
}

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

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

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
}

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

.cta-buttons .btn {
  padding: 18px 35px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
}

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

.cta-buttons .btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

.cta-buttons .btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

/* Contact Page Responsive Styles */
@media (max-width: 1024px) {
  .contact-hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-contact-stats {
    gap: 40px;
  }
  
  .contact-methods-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
  }
  
  .location-container {
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .contact-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .contact-hero-content p {
    font-size: 1.1rem;
  }
  
  .hero-contact-stats {
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .contact-methods-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .contact-method-card {
    padding: 30px 20px;
  }
  
  .form-wrapper {
    padding: 30px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .location-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .map-placeholder {
    height: 300px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 640px) {
  .contact-hero {
    padding-top: 100px;
    min-height: 60vh;
  }
  
  .contact-hero-content h1 {
    font-size: 2rem;
  }
  
  .contact-hero-content p {
    font-size: 1rem;
  }
  
  .hero-contact-stats {
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
  }
  
  .hero-contact-stat h3 {
    font-size: 2rem;
  }
  
  .contact-methods,
  .contact-form-section,
  .location-hours,
  .contact-faq,
  .contact-cta {
    padding: 60px 0;
  }
  
  .form-header h2 {
    font-size: 2rem;
  }
  
  .location-info h2 {
    font-size: 2rem;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .contact-hero {
    padding-top: 90px;
    min-height: 50vh;
  }
  
  .contact-hero-content {
    padding: 15px;
  }
  
  .contact-hero-content h1 {
    font-size: 1.8rem;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  
  .contact-hero-content p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }
  
  .hero-contact-stats {
    gap: 15px;
    margin-top: 20px;
  }
  
  .hero-contact-stat h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
  
  .hero-contact-stat p {
    font-size: 0.9rem;
  }
  
  .contact-methods,
  .contact-form-section,
  .location-hours,
  .contact-faq,
  .contact-cta {
    padding: 50px 0;
  }
  
  .contact-method-card {
    padding: 25px 15px;
  }
  
  .method-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
  
  .contact-method-card h3 {
    font-size: 1.3rem;
  }
  
  .contact-method-card p {
    font-size: 0.9rem;
  }
  
  .contact-link {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
  
  .form-wrapper {
    padding: 25px 15px;
  }
  
  .form-header h2 {
    font-size: 1.8rem;
  }
  
  .form-header p {
    font-size: 1rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 12px 15px;
    font-size: 0.95rem;
  }
  
  .submit-btn {
    padding: 15px 30px;
    font-size: 1rem;
  }
  
  .location-info h2 {
    font-size: 1.8rem;
  }
  
  .location-info p {
    font-size: 1rem;
  }
  
  .location-item {
    gap: 15px;
  }
  
  .location-icon {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .location-text h4 {
    font-size: 1.1rem;
  }
  
  .map-placeholder {
    height: 250px;
  }
  
  .map-placeholder i {
    font-size: 3rem;
  }
  
  .map-placeholder h3 {
    font-size: 1.3rem;
  }
  
  .map-placeholder p {
    font-size: 0.9rem;
  }
  
  .faq-question {
    padding: 20px 15px;
  }
  
  .faq-question h4 {
    font-size: 1rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 15px 20px;
  }
  
  .cta-content h2 {
    font-size: 1.8rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .cta-buttons .btn {
    padding: 15px 25px;
    font-size: 1rem;
  }
}

@media (max-width: 375px) {
  .contact-hero {
    padding-top: 80px;
    min-height: 45vh;
  }
  
  .contact-hero-content h1 {
    font-size: 1.6rem;
    line-height: 1.1;
    margin-bottom: 12px;
  }
  
  .contact-hero-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .hero-contact-stats {
    gap: 12px;
    margin-top: 15px;
  }
  
  .hero-contact-stat h3 {
    font-size: 1.6rem;
    margin-bottom: 6px;
  }
  
  .hero-contact-stat p {
    font-size: 0.85rem;
  }
  
  .contact-methods,
  .contact-form-section,
  .location-hours,
  .contact-faq,
  .contact-cta {
    padding: 40px 0;
  }
  
  .contact-method-card {
    padding: 20px 12px;
  }
  
  .method-icon {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
  
  .contact-method-card h3 {
    font-size: 1.2rem;
  }
  
  .contact-method-card p {
    font-size: 0.85rem;
  }
  
  .contact-link {
    padding: 8px 12px;
    font-size: 0.85rem;
  }
  
  .form-wrapper {
    padding: 20px 12px;
  }
  
  .form-header h2 {
    font-size: 1.6rem;
  }
  
  .form-header p {
    font-size: 0.95rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
  
  .submit-btn {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
  
  .location-info h2 {
    font-size: 1.6rem;
  }
  
  .location-info p {
    font-size: 0.95rem;
  }
  
  .location-item {
    gap: 12px;
  }
  
  .location-icon {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .location-text h4 {
    font-size: 1rem;
  }
  
  .map-placeholder {
    height: 200px;
  }
  
  .map-placeholder i {
    font-size: 2.5rem;
  }
  
  .map-placeholder h3 {
    font-size: 1.2rem;
  }
  
  .map-placeholder p {
    font-size: 0.85rem;
  }
  
  .faq-question {
    padding: 15px 12px;
  }
  
  .faq-question h4 {
    font-size: 0.95rem;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 12px 15px;
  }
  
  .cta-content h2 {
    font-size: 1.6rem;
  }
  
  .cta-content p {
    font-size: 0.95rem;
  }
  
  .cta-buttons .btn {
    padding: 12px 20px;
    font-size: 0.95rem;
  }
}


/* ===================================
   About Hero Carousel Section
   =================================== */

.about-hero-carousel {
  position: relative;
  width: 100%;
  height: 70vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: 80px;
}

.carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(244, 143, 177, 0.7) 0%, rgba(77, 182, 172, 0.7) 100%);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  color: white;
  padding: 40px 20px;
}

.slide-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease;
}

.slide-title span {
  color: #fff;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.8);
}

.slide-subtitle {
  font-size: 1.4rem;
  margin-bottom: 30px;
  opacity: 0.95;
  animation: fadeInUp 1.2s ease;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  animation: fadeInUp 1.4s ease;
}

.hero-stat {
  text-align: center;
  background: rgba(255, 255, 255, 0.15);
  padding: 25px 35px;
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.hero-stat:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.25);
}

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

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

/* Carousel Navigation Buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-btn:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn {
  left: 30px;
}

.next-btn {
  right: 30px;
}

/* Carousel Dots */
.carousel-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 15px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: scale(1.2);
}

.dot.active {
  background: white;
  width: 35px;
  border-radius: 10px;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design for Carousel */
@media (max-width: 1024px) {
  .about-hero-carousel {
    height: 60vh;
    min-height: 500px;
  }

  .slide-title {
    font-size: 2.8rem;
  }

  .slide-subtitle {
    font-size: 1.2rem;
  }

  .hero-stats {
    gap: 30px;
  }

  .hero-stat {
    padding: 20px 25px;
  }
}

@media (max-width: 768px) {
  .about-hero-carousel {
    height: 55vh;
    min-height: 450px;
  }

  .slide-title {
    font-size: 2.2rem;
  }

  .slide-subtitle {
    font-size: 1.1rem;
  }

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

  .hero-stat {
    padding: 15px 20px;
  }

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

  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .prev-btn {
    left: 15px;
  }

  .next-btn {
    right: 15px;
  }
}

@media (max-width: 480px) {
  .about-hero-carousel {
    height: 50vh;
    min-height: 400px;
  }

  .slide-title {
    font-size: 1.8rem;
  }

  .slide-subtitle {
    font-size: 1rem;
  }

  .hero-stats {
    display: flex;
    flex-direction: row;
    gap: 6px;
    justify-content: center;
    align-items: stretch;
    flex-wrap: nowrap;
    margin-top: 30px;
    padding: 0 8px;
  }

  .hero-stat {
    flex: 1;
    min-width: 0;
    padding: 10px 4px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(139, 69, 19, 0.1);
    max-width: none;
    margin: 0;
  }
  
  .hero-stat:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  }

  .carousel-btn {
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }

  .prev-btn {
    left: 10px;
  }

  .next-btn {
    right: 10px;
  }

  .carousel-dots {
    bottom: 20px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }

  .dot.active {
    width: 25px;
  }
}


/* ===================================
   Individual Service Pages Styles
   =================================== */

/* Service Detail Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light-gold) 100%);
  display: flex;
  align-items: center;
  padding: 100px 0 50px;
  position: relative;
  overflow: hidden;
}

/* Banner Section */
.banner-section {
  width: 100%;
  padding: 0;
  margin: 40px 0 0 0;
  background: var(--bg-white);
}

.banner-container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.banner-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Responsive Banner Styles */
@media (max-width: 1200px) {
  .banner-image {
    width: 100%;
    height: auto;
  }
}

@media (max-width: 968px) {
  .banner-section {
    padding: 20px 0;
  }
  
  .banner-container {
    padding: 0 20px;
  }
  
  .banner-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
  }
}

@media (max-width: 768px) {
  .banner-section {
    padding: 15px 0;
  }
  
  .banner-container {
    padding: 0 15px;
  }
  
  .banner-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
}

@media (max-width: 640px) {
  .banner-section {
    padding: 10px 0;
  }
  
  .banner-container {
    padding: 0 10px;
  }
  
  .banner-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
  }
}

@media (max-width: 480px) {
  .banner-section {
    padding: 5px 0;
  }
  
  .banner-container {
    padding: 0 5px;
  }
  
  .banner-image {
    width: 100%;
    height: auto;
  }
}



.service-detail-hero {
  background: linear-gradient(135deg, var(--bg-light-gold), var(--bg-cream));
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.service-detail-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('./images/pattern-bg.png') repeat;
  opacity: 0.05;
  z-index: 1;
}

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

.service-hero-content h1 {
  font-size: 3.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.hero-appointment-btn {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 18px 40px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  display: inline-block;
}



.service-hero-image {
  text-align: center;
}

.service-hero-image img {
  border-radius: 15px;
  box-shadow: var(--box-shadow);
  max-height: 400px;
  object-fit: cover;
  width: 100%;
}

/* Service Details Section */
.service-details {
  background: var(--bg-white);
  padding: 80px 0;
}

.service-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  align-items: start;
}

.service-info h2 {
  font-size: 2.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--text-dark);
  margin-bottom: 25px;
}

.service-info h3 {
  font-size: 1.8rem;
  color: var(--secondary-color);
  margin: 40px 0 20px;
  font-weight: 600;
}

.service-info p {
  font-size: 1.1rem;
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Benefits List */
.benefits-list {
  list-style: none;
  margin: 25px 0;
}

.benefits-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  font-size: 1.05rem;
  color: var(--text-medium);
}

.benefits-list li i {
  color: var(--primary-color);
  margin-right: 12px;
  font-size: 1.1rem;
}

/* Treatment Areas */
.treatment-areas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 30px 0;
}

.area-item {
  background: var(--bg-light-gold);
  padding: 25px 20px;
  border-radius: 10px;
  text-align: center;
  transition: var(--transition);
  border: 2px solid transparent;
}

.area-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.area-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.area-item span {
  display: block;
  font-weight: 600;
  color: var(--text-dark);
  font-size: 1.1rem;
}

/* Service Sidebar */
.service-sidebar {
  position: sticky;
  top: 100px;
}

.appointment-card {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  margin-bottom: 30px;
  box-shadow: var(--box-shadow);
}

.appointment-card h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.appointment-card p {
  margin-bottom: 25px;
  opacity: 0.9;
}

.appointment-card .btn {
  background: white;
  color: var(--primary-color);
  font-weight: 600;
  border: none;
  padding: 15px 30px;
}

.appointment-card .btn:hover {
  background: var(--bg-cream);
  transform: translateY(-2px);
}

/* Service Info Card */
.service-info-card {
  background: var(--bg-white);
  border: 2px solid var(--bg-light-gold);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-info-card h4 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 20px;
  font-weight: 600;
  text-align: center;
}

.info-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--bg-light-gold);
}

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

.info-item .label {
  font-weight: 600;
  color: var(--text-dark);
}

.info-item .value {
  color: var(--primary-color);
  font-weight: 600;
}

/* Procedure Process Section */
.procedure-process {
  background: var(--bg-light-gold);
  padding: 80px 0;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.step {
  background: var(--bg-white);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: var(--box-shadow);
}

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

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

.step p {
  color: var(--text-medium);
  line-height: 1.6;
}

/* FAQ Section */
.faq-section {
  background: var(--bg-white);
  padding: 80px 0;
}

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

.faq-item {
  background: var(--bg-light-gold);
  padding: 30px;
  border-radius: 15px;
  transition: var(--transition);
  border: 2px solid transparent;
}

.faq-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
}

.faq-item h4 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.faq-item p {
  color: var(--text-medium);
  line-height: 1.6;
}

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

.cta-content h2 {
  font-size: 2.8rem;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}

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

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

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

.btn-white:hover {
  background: transparent;
  color: white;
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 2px solid white;
}

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

/* Responsive Design for Service Pages */
@media (max-width: 1024px) {
  .service-detail-hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .service-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .service-sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .service-hero-content h1 {
    font-size: 2.5rem;
  }
  
  .service-hero-content p {
    font-size: 1.1rem;
  }
  
  .service-info h2 {
    font-size: 2rem;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .treatment-areas {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-content h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 480px) {
  .service-detail-hero {
    padding: 100px 0 60px;
  }
  
  .service-hero-content h1 {
    font-size: 2rem;
  }
  
  .service-details,
  .procedure-process,
  .faq-section,
  .cta-section {
    padding: 60px 0;
  }
  
  .appointment-card,
  .service-info-card {
    padding: 25px 20px;
  }
  
  .step {
    padding: 30px 20px;
  }
  
  .faq-item {
    padding: 25px 20px;
  }
}

/* ===================================
   Our Machines Section Styles
   =================================== */

.machines {
  background: var(--bg-cream);
  padding: 100px 0;
}

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

.machine-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid #f0f0f0;
}

.machine-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.machine-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.machine-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: white;
  transition: var(--transition);
  padding: 10px;
}

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

.machine-content {
  padding: 30px;
}

.machine-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.machine-content p {
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 20px;
}

.machine-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.machine-features li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-size: 0.9rem;
}

.machine-features li i {
  color: var(--accent-gold);
  margin-right: 10px;
  font-size: 0.8rem;
}

.machines-cta {
  text-align: center;
  margin-top: 60px;
  padding: 40px;
  background: white;
  border-radius: 15px;
  box-shadow: var(--box-shadow);
}

.machines-note {
  font-size: 1.1rem;
  color: var(--text-medium);
  margin-bottom: 25px;
  font-style: italic;
}

/* Mobile Responsiveness for Machines Section */
@media (max-width: 768px) {
  .machines {
    padding: 60px 0;
  }
  
  .machines-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }
  
  .machine-card {
    margin: 0 10px;
  }
  
  .machine-image {
    height: 200px;
  }
  
  .machine-content {
    padding: 25px 20px;
  }
  
  .machine-content h3 {
    font-size: 1.3rem;
  }
  
  .machines-cta {
    margin: 40px 10px 0;
    padding: 30px 20px;
  }
}

/* ===================================
   Diseases Section Styles
   =================================== */

.diseases {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--bg-cream) 0%, var(--bg-light-gold) 100%);
  position: relative;
}

.diseases::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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23d4af37" opacity="0.03"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
  pointer-events: none;
}

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

.disease-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  border: 1px solid #f0f0f0;
  position: relative;
}

.disease-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.disease-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-gold));
}

.disease-image {
  position: relative;
  height: 250px;
  overflow: hidden;
  background: var(--bg-light-gold);
}

.disease-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition);
}

.disease-card:hover .disease-image img {
  transform: scale(1.1);
}

.disease-content {
  padding: 35px;
}

.disease-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.disease-content > p {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1rem;
}

.disease-features {
  margin-bottom: 30px;
}

.feature-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 0;
}

.feature-item i {
  color: var(--accent-gold);
  margin-right: 12px;
  font-size: 1rem;
  min-width: 20px;
}

.feature-item span {
  color: var(--text-dark);
  font-size: 0.95rem;
  font-weight: 500;
}

.disease-stats {
  display: flex;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 2px solid var(--bg-light-gold);
}

.stat {
  text-align: center;
  flex: 1;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-color);
  font-family: 'Playfair Display', serif;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Diseases Info Section */
.diseases-info {
  margin-top: 80px;
  padding: 60px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--box-shadow);
}

.diseases-info h3 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 50px;
  font-family: 'Playfair Display', serif;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 30px 20px;
  background: white;
  border-radius: 12px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
  border: 2px solid rgba(0, 0, 0, 0.2);
}

.info-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  flex-shrink: 0;
}

.info-icon i {
  color: white;
  font-size: 1.5rem;
}

.info-text {
  width: 100%;
  margin-top: 0;
}

.info-text h4 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 12px;
  font-family: 'Playfair Display', serif;
}

.info-text p {
  color: var(--text-medium);
  line-height: 1.7;
  font-size: 0.95rem;
  margin: 0;
}

/* Diseases CTA Section */
.diseases-cta {
  margin-top: 60px;
  text-align: center;
  padding: 50px;
  background: linear-gradient(135deg, var(--primary-color), var(--accent-gold));
  border-radius: 20px;
  color: white;
  position: relative;
  overflow: hidden;
}

.diseases-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(0deg); }
  50% { transform: translateX(0%) translateY(0%) rotate(180deg); }
}

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

.diseases-cta h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: 'Playfair Display', serif;
}

.diseases-cta p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.diseases-cta .btn {
  background: white;
  color: var(--primary-color);
  border: none;
  font-weight: 600;
  padding: 15px 35px;
  font-size: 1.1rem;
}

.diseases-cta .btn:hover {
  background: var(--bg-cream);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Mobile Responsiveness for Diseases Section */
@media (max-width: 768px) {
  .diseases {
    padding: 60px 0;
  }
  
  .diseases-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 40px;
  }
  
  .disease-card {
    margin: 0 10px;
  }
  
  .disease-image {
    height: 200px;
  }
  
  .disease-content {
    padding: 25px 20px;
  }
  
  .disease-content h3 {
    font-size: 1.5rem;
  }
  
  .disease-stats {
    flex-direction: column;
    gap: 20px;
  }
  
  .diseases-info {
    margin: 50px 10px 0;
    padding: 40px 25px;
  }
  
  .diseases-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .info-item {
    padding: 25px 15px;
  }
  
  .info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 15px;
  }
  
  .diseases-cta {
    margin: 40px 10px 0;
    padding: 40px 25px;
  }
  
  .diseases-cta h3 {
    font-size: 1.6rem;
  }
  
  .diseases-cta p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .info-item {
    padding: 25px 15px;
  }
  
  .info-icon {
    width: 55px;
    height: 55px;
  }
  
  .disease-content {
    padding: 20px 15px;
  }
  
  .disease-content h3 {
    font-size: 1.3rem;
  }
  
  .stat-number {
    font-size: 1.6rem;
  }
  
  .diseases-info {
    padding: 30px 20px;
  }
  
  .diseases-cta {
    padding: 30px 20px;
  }
}
