/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Radiance Logo Color Scheme */
:root {
  --bg: linear-gradient(135deg, #38A169 0%, #2F855A 100%);
  --surface: rgba(255, 255, 255, 0.95);
  --glass: rgba(255, 255, 255, 0.25);
  --glass-border: rgba(255, 255, 255, 0.18);
  --ink: #1A202C;
  --muted: #4A5568;
  --primary: #38A169;
  --primary-600: #2F855A;
  --primary-700: #276749;
  --primary-gradient: linear-gradient(135deg, #38A169 0%, #2F855A 100%);
  --accent: #FF8C00;
  --accent-600: #E67E00;
  --accent-700: #CC7000;
  --accent-gradient: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
  --soft: #F0FFF4;
  --ring: rgba(56, 161, 105, 0.5);
  --alt: #F7FAFC;
  --alt-2: #EDF2F7;
  --alt-3: #E2E8F0;
  --nav-bg: rgba(56, 161, 105, 0.95);
  --footer-bg: rgba(72, 187, 120, 0.98);
  --success: #38A169;
  --warning: #FF8C00;
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--accent));
  --gradient-soft: linear-gradient(135deg, var(--soft), #ffffff);
  --shadow-sm: 0 4px 6px -1px rgba(56, 161, 105, 0.1), 0 2px 4px -1px rgba(56, 161, 105, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(56, 161, 105, 0.1), 0 4px 6px -2px rgba(56, 161, 105, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(56, 161, 105, 0.1), 0 10px 10px -5px rgba(56, 161, 105, 0.04);
  --shadow-xl: 0 25px 50px -12px rgba(56, 161, 105, 0.25);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: 'Poppins', 'Inter', ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--ink);
  background: var(--bg);
  background-attachment: fixed;
  line-height: 1.7;
  padding-top: 0;
  font-weight: 400;
  overflow-x: hidden;
}

/* Animated background particles with logo colors */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(56, 161, 105, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 140, 0, 0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(47, 133, 90, 0.3) 0%, transparent 50%);
  animation: backgroundShift 20s ease-in-out infinite;
  z-index: -1;
  pointer-events: none;
}

@keyframes backgroundShift {
  0%, 100% { transform: translateX(0) translateY(0); }
  25% { transform: translateX(-5px) translateY(-10px); }
  50% { transform: translateX(10px) translateY(5px); }
  75% { transform: translateX(-3px) translateY(8px); }
}

img { max-width: 100%; display: block; height: auto; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: min(1160px, 90vw);
  margin-inline: auto;
}

.skip-link {
  position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden;
}
.skip-link:focus { left: 1rem; top: 1rem; width: auto; height: auto; background: var(--ink); color: white; padding: .5rem .75rem; border-radius: .5rem; }

/* Topbar removed */

/* Modern Glassmorphism Header */
.masthead { position: relative; z-index: 2000; }
.site-header { 
  position: fixed; 
  top: 0; 
  left: 0; 
  right: 0; 
  z-index: 2001; 
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,.1);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-lg);
  border-bottom: 1px solid rgba(0,0,0,.15);
}

.site-header.scrolled .nav__list a {
  color: var(--ink);
}

.site-header.scrolled .nav__list a:hover {
  background: rgba(56, 161, 105, 0.1);
  color: var(--primary);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; gap: 1rem; }
.brand { display: flex; align-items: center; gap: .75rem; transition: transform 0.3s ease; }
.brand:hover { transform: scale(1.05); }
.brand__link { display: block; text-decoration: none; transition: all 0.3s ease; }
.brand__link:hover { text-decoration: none; }
.brand__logo { height: 75px; width: auto; object-fit: contain; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1)); transition: filter 0.3s ease; }
.brand__logo:hover { filter: drop-shadow(0 6px 12px rgba(0,0,0,0.15)); }
.brand__logo--small { height: 55px; }
.brand__text { line-height: 1.2; }
.brand__title { font-weight: 700; color: var(--ink); font-size: 1.3rem; }
.brand__subtitle { color: var(--muted); font-size: 1.05rem; }

.nav__toggle { display: none; background: #ffffff; border: 1px solid #e0e0e0; border-radius: 0.5rem; cursor: pointer; padding: 0.5rem; }
.hamburger { display: flex; flex-direction: column; gap: 4px; width: 24px; height: 18px; justify-content: center; }
.hamburger__line { width: 100%; height: 2px; background: var(--ink); border-radius: 1px; transition: all 0.3s ease; }
.nav__toggle[aria-expanded="true"] .hamburger__line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle[aria-expanded="true"] .hamburger__line:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] .hamburger__line:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
.nav__list { 
  display: flex; 
  gap: 1.5rem; 
  align-items: center; 
  list-style: none; 
  padding: 0; 
  margin: 0; 
  position: relative; 
  z-index: 2500; 
}
.nav__list a { 
  padding: .8rem 1.2rem; 
  border-radius: 50px; 
  color: var(--ink); 
  font-size: 1rem; 
  font-weight: 500; 
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
}

.nav__list a::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(56, 161, 105, 0.2), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

.nav__list a:hover::before {
  left: 100%;
}

.nav__list a:hover { 
  background: rgba(56, 161, 105, 0.15); 
  text-decoration: none; 
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(56, 161, 105, 0.25);
  color: var(--primary);
  border-color: rgba(56, 161, 105, 0.3);
}

.nav__list a:active { 
  transform: translateY(0);
  box-shadow: 0 2px 6px rgba(56, 161, 105, 0.2);
}

/* Buttons */
.btn { 
  display: inline-flex; 
  align-items: center; 
  justify-content: center; 
  gap: 0.5rem;
  padding: 1rem 2rem; 
  border-radius: 50px; 
  font-weight: 600; 
  border: 1px solid transparent; 
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  font-size: 1rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
}

.btn svg {
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: scale(1.1);
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}
.btn--sm { padding: .7rem 1.1rem; font-size: 1.05rem; }
.btn--primary { 
  background: var(--primary-gradient); 
  color: white; 
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn--primary:hover { 
  transform: translateY(-3px) scale(1.02); 
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, #2F855A 0%, #38A169 100%);
}
.btn--accent { 
  background: var(--accent-gradient); 
  color: white; 
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255,255,255,0.2);
}

.btn--accent:hover { 
  transform: translateY(-3px) scale(1.02); 
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, #38a169 0%, #4facfe 100%);
}
.btn--ghost { 
  background: rgba(255,255,255,0.1); 
  color: white; 
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover { 
  background: rgba(255,255,255,0.2); 
  border-color: rgba(255,255,255,0.5);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
/* Secondary filled button for subtle actions */
.btn--secondary { 
  background: rgba(255,255,255,0.15); 
  color: white; 
  border: 2px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(10px);
}

.btn--secondary:hover { 
  background: rgba(255,255,255,0.25); 
  border-color: rgba(255,255,255,0.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Modern Hero Section */
.hero { 
  position: relative; 
  padding: 4vh 0; 
  min-height: 100vh; 
  display: grid; 
  align-content: center; 
  overflow: hidden; 
  z-index: 1;
}
.hero .container { 
  width: min(1000px, 90vw); 
  position: relative; 
  z-index: 3;
}
.hero__bg { position: absolute; inset: 0; z-index: 1; }
.hero__slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transform: scale(1.04); transition: opacity 800ms ease-in-out, transform 1600ms ease-in-out; }
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero__overlay { 
  position: absolute; 
  inset: 0; 
  background: 
    linear-gradient(135deg, rgba(56, 161, 105, 0.2) 0%, rgba(47, 133, 90, 0.2) 100%),
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.03) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
  backdrop-filter: blur(0.5px);
}
.hero__grid { display: grid; grid-template-columns: 1fr; align-items: center; gap: 2rem; justify-items: center; text-align: center; }


.hero__content { 
  display: grid; 
  justify-items: center; 
  text-align: center;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-xl);
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.hero h1 { 
  font-size: clamp(2rem, 5vw, 3.5rem); 
  line-height: 1.1; 
  margin: 0 0 1rem; 
  font-family: 'Playfair Display', serif; 
  font-weight: 700; 
  letter-spacing: -0.02em; 
  text-shadow: 0 4px 20px rgba(0,0,0,.3); 
  color: white;
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
  from { text-shadow: 0 4px 20px rgba(255,255,255,.3), 0 0 30px rgba(255,255,255,.1); }
  to { text-shadow: 0 4px 30px rgba(255,255,255,.5), 0 0 40px rgba(255,255,255,.2); }
}
.hero p { font-size: 1.1rem; color: rgba(255,255,255,0.95); margin: 0 0 1.5rem; text-align: center; font-weight: 400; }
.hero__lead { 
  max-width: 65ch; 
  margin: 0 auto 1.5rem; 
  text-align: center !important; 
  color: rgba(255,255,255,0.9); 
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.hero__cta { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 1rem; 
  margin: 1.5rem 0 1rem; 
  justify-content: center;
  align-items: center;
}
.hero__visual { display: none; }
.hero__shape { display: none; }
.trust { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 0.8rem 1.5rem; 
  padding: 0; 
  margin: 1.5rem auto 0; 
  list-style: none; 
  color: rgba(255,255,255,0.9); 
  justify-content: center; 
  font-weight: 500;
}

.trust li {
  padding: 0.6rem 1.2rem;
  background: rgba(255,255,255,0.1);
  border-radius: 25px;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.trust li:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

/* Logo-accurate highlight effect */
.highlight-primary { 
  background: linear-gradient(135deg, #1A365D 0%, #2C5282 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.highlight-primary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #1A365D 0%, #2C5282 100%);
  border-radius: 2px;
  animation: highlightGlow 2s ease-in-out infinite alternate;
}

.highlight { 
  background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  font-weight: 800;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #FF8C00 0%, #FFA500 100%);
  border-radius: 2px;
  animation: highlightGlow 2s ease-in-out infinite alternate;
}

.highlight-secondary { 
  background: linear-gradient(135deg, #1A365D 0%, #2C5282 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.highlight-secondary::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(135deg, #1A365D 0%, #2C5282 100%);
  border-radius: 2px;
  animation: highlightGlow 2s ease-in-out infinite alternate;
}

@keyframes highlightGlow {
  from { box-shadow: 0 0 5px rgba(255, 140, 0, 0.5); }
  to { box-shadow: 0 0 15px rgba(255, 140, 0, 0.8); }
}

/* Global section side padding breathing room */
.section { padding: 4rem 0; }

/* Modern Sections */
.section { 
  padding: 6rem 0; 
  position: relative;
}

.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  z-index: -1;
}

.section--alt {
  background: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(247,250,252,0.9) 100%);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.2);
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

.section--accent { 
  background: linear-gradient(135deg, rgba(56,161,105,0.1) 0%, rgba(255,140,0,0.1) 100%);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.3); 
  border-bottom: 1px solid rgba(255,255,255,0.3); 
}
.section__lead { color: var(--muted); max-width: 62ch; margin: 0 auto 2rem; text-align: center; }

/* Two column */
.two-col { display: grid; grid-template-columns: 1.1fr .9fr; gap: 2rem; align-items: start; }
.two-col--reverse { grid-template-columns: .9fr 1.1fr; }
.two-col__card { background: var(--surface); border-radius: 1rem; padding: 1.25rem; box-shadow: 0 8px 26px rgba(0,0,0,.06); border: 1px solid #eef1f1; }
.two-col__content h2 { margin-top: 0; }

.keyfacts { list-style: none; padding: 0; margin: 0; }
.keyfacts li { padding: .4rem 0; border-bottom: 1px dashed #e8eaea; }
.keyfacts li:last-child { border-bottom: 0; }

/* Expert Dermatologists Section Enhancements */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(56,161,105,0.3);
}

.section-subtitle {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 1.5rem auto 0;
  max-width: 800px;
}

.usp-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
  padding: 2.5rem;
  background: linear-gradient(135deg, rgba(56,161,105,0.08) 0%, rgba(255,140,0,0.08) 100%);
  border-radius: 25px;
  border: 1px solid rgba(255,255,255,0.4);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.usp-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.9) 100%);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255,255,255,0.5);
  position: relative;
  overflow: hidden;
}

.usp-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(56,161,105,0.05) 0%, rgba(255,140,0,0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.usp-item:hover::before {
  opacity: 1;
}

.usp-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.1),
    0 8px 16px rgba(0,0,0,0.05),
    0 0 30px rgba(56,161,105,0.15);
  background: linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.95) 100%);
}

.usp-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 1;
}

.usp-icon svg {
  width: 40px;
  height: 40px;
  transition: all 0.4s ease;
}

.usp-icon--doctor {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.usp-icon--facility {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white;
}

.usp-icon--results {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  color: white;
}

.usp-icon--care {
  background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
  color: white;
}

.usp-item:hover .usp-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.usp-item:hover .usp-icon svg {
  transform: scale(1.1);
}

.usp-item h4 {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 0.8rem;
  font-family: 'Poppins', sans-serif;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.usp-item:hover h4 {
  color: var(--primary);
}

.usp-item p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.usp-item:hover p {
  color: var(--ink);
}

.expert-cta {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, rgba(56,161,105,0.1) 0%, rgba(255,140,0,0.1) 100%);
  border-radius: 25px;
  border: 1px solid rgba(255,255,255,0.3);
  text-align: center;
}

.cta-content h3 {
  color: var(--ink);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 1rem;
  font-family: 'Poppins', sans-serif;
}

.cta-content p {
  color: var(--muted);
  font-size: 1.1rem;
  margin: 0 0 2rem;
  line-height: 1.6;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn {
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.cta-buttons .btn--primary {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.cta-buttons .btn--primary:hover {
  background: linear-gradient(135deg, #128C7E 0%, #075E54 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.cta-buttons .btn--secondary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(56, 161, 105, 0.3);
}

.cta-buttons .btn--secondary:hover {
  background: linear-gradient(135deg, var(--accent) 0%, #e67e22 100%);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(56, 161, 105, 0.4);
}

.cta-buttons .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Enhanced Doctor Cards Grid */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 5rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1rem;
}

.doctor-card {
  background: linear-gradient(145deg, rgba(255,255,255,0.98) 0%, rgba(248,250,252,0.95) 100%);
  backdrop-filter: blur(25px);
  border-radius: 24px;
  box-shadow: 
    0 20px 40px rgba(0,0,0,0.08),
    0 8px 16px rgba(0,0,0,0.04),
    inset 0 1px 0 rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.4);
  overflow: hidden;
  position: relative;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateY(30px);
  opacity: 0;
  animation: slideInUp 1s ease forwards;
}

.doctor-card:nth-child(1) {
  animation-delay: 0.1s;
}

.doctor-card:nth-child(2) {
  animation-delay: 0.3s;
}

.doctor-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 50%, var(--primary) 100%);
  z-index: 1;
  border-radius: 24px 24px 0 0;
}

.doctor-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(56,161,105,0.02) 0%, rgba(255,140,0,0.02) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.doctor-card:hover::after {
  opacity: 1;
}

.doctor-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 
    0 32px 64px rgba(0,0,0,0.12),
    0 16px 32px rgba(0,0,0,0.08),
    0 0 40px rgba(56,161,105,0.15),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

.doctor-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  border-radius: 20px 20px 0 0;
  margin: 5px 5px 0 5px;
}

.doctor-card__image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(56,161,105,0.05) 0%, rgba(255,140,0,0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.doctor-card:hover .doctor-card__image::before {
  opacity: 1;
}

.doctor-card__image img {
  max-width: 160px;
  max-height: 180px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
}

.doctor-card:hover .doctor-card__image img {
  transform: scale(1.08) translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.doctor-card__content {
  padding: 2rem 1.5rem;
  position: relative;
  z-index: 2;
}

.doctor-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.5rem;
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  background: linear-gradient(135deg, var(--ink) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.doctor-card__title {
  color: var(--primary);
  margin: 0 0 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}

.doctor-card__title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.doctor-card__description {
  color: var(--muted);
  margin: 0 0 1.5rem;
  line-height: 1.7;
  font-size: 1rem;
  font-weight: 400;
}

.doctor-card__specializations {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.doctor-card__specializations li {
  position: relative;
  padding: 0.5rem 0 0.5rem 2rem;
  margin: 0.4rem 0;
  font-size: 0.95rem;
  color: var(--muted);
  transition: all 0.3s ease;
  border-radius: 8px;
}

.doctor-card__specializations li:hover {
  background: rgba(56,161,105,0.05);
  color: var(--ink);
  transform: translateX(5px);
}

.doctor-card__specializations li::before {
  content: "✨";
  position: absolute;
  left: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary);
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.doctor-card__specializations li:hover::before {
  transform: translateY(-50%) scale(1.2);
}

.doctor-card__quote {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(56,161,105,0.08) 0%, rgba(255,140,0,0.08) 100%);
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}


.doctor-card__quote p {
  margin: 0;
  position: relative;
  z-index: 1;
}

@keyframes slideInUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.about__title { color: var(--primary); margin-top: .5rem; font-size: 1.1rem; font-weight: 600; }
.checklist { list-style: none; padding: 0; margin: .5rem 0 0; }
.checklist li { position: relative; padding-left: 1.4rem; margin: .35rem 0; }
.checklist li::before { content: "✔"; position: absolute; left: 0; top: 0; color: var(--primary); font-weight: 900; }
.quote-card { margin-top: 1.5rem; background: var(--gradient-soft); border: 1px solid var(--accent); border-left: 4px solid var(--accent); border-radius: .75rem; padding: 1.2rem 1.5rem; color: var(--ink); font-style: italic; font-weight: 500; }

/* Modern Cards Grid */
.cards { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
  gap: 2rem; 
  margin-top: 3rem;
}

.card { 
  background: rgba(255,255,255,0.9); 
  backdrop-filter: blur(20px);
  padding: 2.5rem 2rem; 
  border-radius: 20px; 
  border: 1px solid rgba(255,255,255,0.3); 
  box-shadow: var(--shadow-lg); 
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transition: left 0.6s;
}

.card:hover::before {
  left: 100%;
}
.card h3 { margin-top: .15rem; margin-bottom: .4rem; letter-spacing: .2px; }
.card p { color: var(--muted); }

/* Modern Service Cards */
.card--service { 
  position: relative; 
  overflow: hidden; 
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.3); 
  transition: all 0.4s ease;
  transform-style: preserve-3d;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.service-card__image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: #f8f9fa;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.service-card__content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card__content h3 {
  margin: 0 0 0.8rem;
  font-size: 1.3rem;
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.service-card__content p {
  color: var(--muted);
  margin: 0;
  line-height: 1.6;
  font-size: 0.95rem;
  flex: 1;
}

.card--service::after { 
  content: ''; 
  position: absolute; 
  left: 0; 
  right: 0; 
  top: 0; 
  height: 4px; 
  background: var(--primary-gradient);
  border-radius: 20px 20px 0 0;
  z-index: 1;
}

.card--service:hover { 
  transform: translateY(-12px) rotateX(5deg); 
  box-shadow: 
    0 25px 50px rgba(56,161,105,0.2),
    0 15px 35px rgba(0,0,0,0.1);
  border-color: rgba(56,161,105,0.3);
  background: rgba(255,255,255,0.98);
}

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

.card--service:focus-within { box-shadow: 0 0 0 6px var(--ring); }

/* Modern Typography */
h2 { 
  font-size: clamp(2.2rem, 4vw, 3.5rem); 
  margin: 0 0 3rem; 
  font-weight: 700; 
  color: var(--ink); 
  letter-spacing: -0.02em; 
  text-align: center; 
  font-family: 'Playfair Display', serif;
  position: relative;
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-gradient);
  border-radius: 2px;
}

h3 { 
  font-size: 1.6rem; 
  font-weight: 700; 
  color: var(--ink); 
  margin-bottom: 1rem;
  font-family: 'Poppins', sans-serif;
}

h4 { 
  font-size: 1.2rem; 
  font-weight: 600; 
  color: var(--primary); 
  font-family: 'Poppins', sans-serif;
}

/* Subtle entrance transitions */
[data-animate] { opacity: 0; transform: translateY(12px); transition: opacity .5s ease, transform .5s ease; }
[data-animate].in { opacity: 1; transform: translateY(0); }

/* Before & After */
.ba-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1rem; }
.ba-card { background: var(--surface); border-radius: 1rem; overflow: hidden; border: 1px solid #eaf0f0; }
.ba { height: 180px; display: grid; place-items: center; font-weight: 700; }
.ba--before { background: #f6dad0; color: #7b4c3d; }
.ba--after { background: #d9efe9; color: #205a52; }

/* Visit section */
.bullets { margin: 1rem 0; padding-left: 1.25rem; }
.map-card iframe { width: 100%; height: 320px; border: 0; border-radius: .75rem; }

/* Contact */
.contact-section-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  margin-top: 2rem;
  align-items: start;
}

.contact-grid { 
  display: flex; 
  flex-direction: column; 
  gap: 1rem; 
  margin-top: 0;
  max-width: 100%;
}
.contact-card { 
  background: rgba(255,255,255,0.9); 
  backdrop-filter: blur(20px);
  border-radius: 15px; 
  padding: 1.5rem; 
  border: 1px solid rgba(255,255,255,0.3); 
  display: flex; 
  flex-direction: row; 
  align-items: center; 
  gap: 1rem;
  box-shadow: var(--shadow-md); 
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--primary-gradient);
}

.contact-card:hover { 
  transform: translateY(-3px); 
  box-shadow: 
    var(--shadow-lg),
    0 0 20px rgba(56,161,105,0.1);
}
.contact-card__icon {
  width: 40px;
  height: 40px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-card__icon {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(56,161,105,0.3);
}

.contact-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-card h3 { 
  margin: 0; 
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
}

.contact-card .lead { 
  font-size: 1rem; 
  margin: 0;
  color: var(--primary);
  font-weight: 500;
}

.contact-title { margin-top: 2rem; font-size: clamp(1.4rem, 3vw, 2rem); }

/* Appointment Booking Section */
.appointment-container {
  max-width: 100%;
  margin: 0;
}

.appointment-form {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: var(--shadow-lg);
}

.form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
  padding: 1rem;
  border: 2px solid rgba(56,161,105,0.2);
  border-radius: 12px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(56,161,105,0.1);
  transform: translateY(-2px);
}

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

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
  margin: 0;
}

/* Appointment Popup Modal */
.appointment-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
  padding: 1rem;
}

.appointment-popup.active {
  display: flex;
}

.popup-content {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 2.5rem;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255, 255, 255, 0.3);
  animation: popupSlideIn 0.3s ease-out;
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.popup-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  font-size: 1.5rem;
  color: var(--muted);
  cursor: pointer;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.popup-close:hover {
  background: rgba(56, 161, 105, 0.1);
  color: var(--primary);
}

.popup-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-right: 3rem;
  position: relative;
}

.popup-header h2 {
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-size: 1.8rem;
  font-weight: 700;
}

.popup-header p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

.popup-form {
  margin-top: 1rem;
}

.popup-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.btn--whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn--whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
  text-decoration: none;
}

/* Special Features Section */
.section--features {
  background: linear-gradient(135deg, rgba(56,161,105,0.05) 0%, rgba(255,140,0,0.05) 100%);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.features-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.features-text h3 {
  font-size: 1.8rem;
  color: var(--ink);
  margin: 0 0 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.features-text p {
  color: var(--muted);
  margin: 0 0 2rem;
  line-height: 1.6;
  font-size: 1.1rem;
}

.features-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.9);
}

.highlight-icon {
  font-size: 1.5rem;
  min-width: 2rem;
  text-align: center;
}

.highlight-item span:last-child {
  color: var(--ink);
  font-weight: 500;
  font-size: 1rem;
}

.features-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container {
  text-align: center;
  padding: 2rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}

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

.femina-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
  transition: all 0.3s ease;
}

.logo-container:hover .femina-logo {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.15));
}

.logo-caption {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

/* Special Features Section */
.section--features {
  background: linear-gradient(135deg, rgba(56,161,105,0.05) 0%, rgba(255,140,0,0.05) 100%);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.3);
  border-bottom: 1px solid rgba(255,255,255,0.3);
}

.features-content {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
  margin-top: 2rem;
}

.features-text h3 {
  font-size: 1.8rem;
  color: var(--ink);
  margin: 0 0 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
}

.features-text p {
  color: var(--muted);
  margin: 0 0 2rem;
  line-height: 1.6;
  font-size: 1.1rem;
}

.features-highlights {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
  background: rgba(255,255,255,0.9);
}

.highlight-icon {
  font-size: 1.5rem;
  min-width: 2rem;
  text-align: center;
}

.highlight-item span:last-child {
  color: var(--ink);
  font-weight: 500;
  font-size: 1rem;
}

.features-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container {
  text-align: center;
  padding: 2rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.3);
  transition: all 0.3s ease;
}

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

.featured-page {
  max-width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.logo-container:hover .featured-page {
  transform: scale(1.02);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.magazine-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.femina-logo {
  max-width: 120px;
  height: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.logo-caption {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
  margin: 0;
  font-family: 'Poppins', sans-serif;
}

.article-highlight {
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.article-highlight h4 {
  color: var(--primary);
  font-size: 1.3rem;
  margin: 0 0 1rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.article-highlight p {
  color: var(--ink);
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

/* Modern Footer with lighter green for logo visibility */
.site-footer { 
  background: 
    linear-gradient(135deg, rgba(72,187,120,0.95) 0%, rgba(56,161,105,0.95) 100%),
    radial-gradient(circle at 30% 20%, rgba(255,255,255,0.15) 0%, transparent 50%);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,.2); 
  margin-top: 4rem; 
  color: #f3f7f4;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}
.site-footer a { color: #ffffff; }
.site-footer a:hover { text-decoration: underline; }
.footer__grid { display: grid; grid-template-columns: 1.2fr 1fr 1.2fr; gap: 1.5rem; align-items: start; padding: 2.5rem 0; min-height: 140px; }
.footer__about { justify-self: start; }
.footer__about .brand { margin-bottom: 1rem; }
.footer__about p { line-height: 1.5; font-size: .95rem; max-width: 280px; }
.footer__nav { justify-self: center; display: flex; flex-direction: column; gap: .75rem; justify-content: flex-start; }
.footer__nav h4 { color: #ffffff; font-size: 1.1rem; font-weight: 700; margin: 0 0 .5rem; }
.footer__nav a { font-weight: 600; font-size: 1rem; }
.footer__contact { justify-self: center; display: flex; flex-direction: column; gap: .5rem; color: #e9f0ec; }
.footer__contact div { font-size: .95rem; line-height: 1.4; }
.brand--small .brand__mark { width: 32px; height: 32px; border-radius: 8px; }
.brand--small .brand__title { font-size: 1.1rem; }
.brand--small .brand__subtitle { font-size: .9rem; }
.muted { color: var(--muted); }
.site-footer .muted { color: #e0e8e4; }
.mini { text-align: center; color: #e0e8e4; font-size: .9rem; padding: 1rem 0 1.5rem; border-top: 1px solid rgba(255,255,255,.1); margin-top: 1rem; }

/* Mobile bottom CTA */
.mobile-cta { position: fixed; bottom: 0; left: 0; right: 0; display: none; background: rgba(255,255,255,.9); backdrop-filter: saturate(140%) blur(8px); border-top: 1px solid #e6ecec; z-index: 50; }
.mobile-cta a { flex: 1; text-align: center; padding: .8rem; font-weight: 700; color: var(--primary); }
.mobile-cta a:nth-child(2) { color: var(--accent-600); }
.mobile-cta a:hover { text-decoration: none; background: #f5faf9; }

/* Responsive */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__content { padding: 3rem 2rem; }
  .two-col, .two-col--reverse { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
  
  .service-card__image {
    height: 180px;
  }
  
  .service-card__content {
    padding: 1.25rem;
  }
  .gallery-grid { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
  .blog-grid { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-section-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-grid { 
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .contact-card {
    flex-direction: row;
    text-align: left;
    gap: 1rem;
    padding: 1.25rem;
  }
  
  .contact-card__icon {
    width: 35px;
    height: 35px;
  }
  
  .contact-card h3 {
    font-size: 1rem;
  }
  
  .contact-card .lead {
    font-size: 0.9rem;
  }
  .features-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .features-text h3 {
    font-size: 1.5rem;
  }
  
  .features-text p {
    font-size: 1rem;
  }
  
  .highlight-item {
    padding: 0.8rem;
  }
  
  .logo-container {
    padding: 1.5rem;
  }
  
  .femina-logo {
    max-width: 150px;
  }
  
  .features-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .features-text h3 {
    font-size: 1.5rem;
  }
  
  .features-text p {
    font-size: 1rem;
  }
  
  .highlight-item {
    padding: 0.8rem;
  }
  
  .logo-container {
    padding: 1.5rem;
  }
  
  .featured-page {
    max-width: 100%;
  }
  
  .femina-logo {
    max-width: 100px;
  }
  
  .footer__grid { 
    grid-template-columns: 1fr; 
    text-align: center; 
    gap: 2rem; 
    padding: 2rem 0;
  }
  .footer__nav { 
    flex-direction: row; 
    justify-content: center; 
    gap: 1.5rem; 
    flex-wrap: wrap;
  }
  .footer__contact { 
    justify-content: center; 
    align-items: center; 
    gap: 1rem;
  }
  .doctors-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 450px;
    padding: 0 0.5rem;
  }
  
  .doctor-card__image {
    height: 180px;
    padding: 1.2rem;
  }
  
  .doctor-card__image img {
    max-width: 140px;
    max-height: 160px;
  }
  
  .doctor-card__content {
    padding: 1.5rem 1.25rem;
  }
  
  .doctor-card h3 {
    font-size: 1.3rem;
  }
  
  .doctor-card__title {
    font-size: 1rem;
  }
  
  .section-badge {
    font-size: 0.8rem;
    padding: 0.4rem 1.2rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .usp-highlights {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    padding: 2rem;
  }
  
  .usp-item {
    padding: 1.5rem 1.2rem;
  }
  
  .usp-icon {
    width: 70px;
    height: 70px;
  }
  
  .usp-icon svg {
    width: 35px;
    height: 35px;
  }
  
  .expert-cta {
    padding: 2rem 1.5rem;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }
  .lightbox-prev { left: -2rem; }
  .lightbox-next { right: -2rem; }
  .section { padding: 4rem 0; }
  h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 2rem; }
}

@media (max-width: 720px) {
  .nav__toggle { 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    background: rgba(255,255,255,0.9); 
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3); 
    padding: .6rem .8rem; 
    border-radius: 12px;
  }
  
  .nav__list { 
    position: absolute; 
    right: 1rem; 
    top: 80px; 
    background: rgba(255,255,255,0.95); 
    backdrop-filter: blur(20px);
    border: 1px solid rgba(56,161,105,0.3); 
    border-radius: 20px; 
    box-shadow: var(--shadow-xl); 
    padding: 1rem; 
    display: none; 
    flex-direction: column; 
    width: min(92vw, 320px); 
    z-index: 3000;
  }
  
  .nav__list[aria-expanded="true"] { display: flex; }
  .nav__list a { 
    color: var(--ink); 
    padding: 0.8rem 1rem; 
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
  }
  
  .nav__list a:hover {
    background: rgba(56, 161, 105, 0.15);
    color: var(--primary);
    border-color: rgba(56, 161, 105, 0.3);
    transform: translateY(-1px);
  }
  
  .site-header.scrolled .nav__list a {
    color: var(--ink);
  }
  
  .site-header.scrolled .nav__list a:hover {
    background: rgba(56, 161, 105, 0.15);
    color: var(--primary);
    border-color: rgba(56, 161, 105, 0.3);
  }
  
  .hero { padding: 2vh 0; }
  .hero__content { padding: 1.5rem 1rem; }
  .hero h1 { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .hero__lead { font-size: 1rem; }
  
  .cards { grid-template-columns: 1fr; gap: 1.5rem; }
  
  .service-card__image {
    height: 160px;
  }
  
  .service-card__content {
    padding: 1rem;
  }
  
  .service-card__content h3 {
    font-size: 1.2rem;
  }
  
  .service-card__content p {
    font-size: 0.9rem;
  }
  .gallery-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .blog-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .ba-grid { grid-template-columns: 1fr; }
  .contact-section-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-grid { 
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  .contact-card {
    flex-direction: row;
    text-align: left;
    gap: 0.8rem;
    padding: 1rem;
  }
  
  .contact-card__icon {
    width: 32px;
    height: 32px;
  }
  
  .contact-card h3 {
    font-size: 0.95rem;
  }
  
  .contact-card .lead {
    font-size: 0.85rem;
  }
  
  .appointment-form {
    padding: 1.5rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 0.8rem;
    font-size: 0.95rem;
  }
  
  .popup-content {
    padding: 1.5rem;
    margin: 1rem;
    max-height: 95vh;
    overflow-y: auto;
  }
  
  .popup-header {
    padding-right: 2.5rem;
    margin-bottom: 1.5rem;
  }
  
  .popup-header h2 {
    font-size: 1.4rem;
    line-height: 1.3;
  }
  
  .popup-close {
    top: 0.3rem;
    right: 0.3rem;
    width: 2rem;
    height: 2rem;
    font-size: 1.2rem;
  }
  
  .btn--whatsapp {
    padding: 0.8rem 1.5rem;
    font-size: 0.95rem;
  }
  .mobile-cta { display: none; }
  
  .doctors-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 380px;
    padding: 0 0.5rem;
  }
  
  .doctor-card {
    margin: 0;
  }
  
  .doctor-card__image {
    height: 160px;
    padding: 1rem;
  }
  
  .doctor-card__image img {
    max-width: 120px;
    max-height: 140px;
  }
  
  .doctor-card__content {
    padding: 1.25rem 1rem;
  }
  
  .doctor-card h3 {
    font-size: 1.25rem;
  }
  
  .doctor-card__title {
    font-size: 0.95rem;
  }
  
  .doctor-card__description {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .doctor-card__specializations li {
    font-size: 0.85rem;
    margin: 0.3rem 0;
    padding: 0.4rem 0 0.4rem 1.5rem;
  }
  
  .doctor-card__quote {
    padding: 1rem;
    font-size: 0.85rem;
    margin-top: 1rem;
  }
  
  .section-badge {
    font-size: 0.75rem;
    padding: 0.3rem 1rem;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
  }
  
  .usp-highlights {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    padding: 1.5rem;
    margin: 2rem 0;
  }
  
  .usp-item {
    padding: 1.5rem 1rem;
  }
  
  .usp-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  
  .usp-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .usp-item h4 {
    font-size: 1.1rem;
  }
  
  .usp-item p {
    font-size: 0.9rem;
  }
  
  .expert-cta {
    padding: 1.5rem 1rem;
    margin-top: 2rem;
  }
  
  .cta-content h3 {
    font-size: 1.3rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
  
  .cta-buttons .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    max-width: 250px;
    justify-content: center;
  }
  
  .lightbox { 
    padding: 1rem; 
  }
  
  .lightbox-content { 
    max-width: 98vw; 
    max-height: 98vh; 
  }
}

/* Extra small screens - stack USP cards vertically */
@media (max-width: 480px) {
  .usp-highlights {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }
  
  .usp-item {
    padding: 1.2rem 1rem;
  }
  
  .usp-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 0.8rem;
  }
  
  .usp-icon svg {
    width: 25px;
    height: 25px;
  }
  
  .usp-item h4 {
    font-size: 1rem;
  }
  
  .usp-item p {
    font-size: 0.85rem;
  }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-close { 
    top: -2rem; 
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.5rem;
  }
  .lightbox-caption { 
    bottom: -2rem; 
    font-size: 0.9rem;
  }
  
  .lightbox-content { 
    max-width: 100vw; 
    max-height: 100vh; 
    padding: 1rem;
  }
  
  .lightbox-nav {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.2rem;
  }
  
  .section { padding: 3rem 0; }
  h2 { font-size: clamp(1.5rem, 6vw, 2.2rem); }
  
  .trust { gap: 0.8rem 1rem; }
  .trust li { padding: 0.6rem 1rem; font-size: 0.9rem; }
  
  
  /* Mobile Footer Alignment */
  .footer__grid { 
    grid-template-columns: 1fr; 
    text-align: center; 
    gap: 2rem; 
    padding: 2rem 1rem;
  }
  
  .footer__nav { 
    flex-direction: column; 
    justify-content: center; 
    gap: 1rem; 
    align-items: center;
  }
  
  .footer__nav a {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
  }
  
  .footer__nav a:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
  }
  
  .footer__contact { 
    justify-content: center; 
    align-items: center; 
    gap: 1rem;
  }
  
  .footer__contact div {
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    min-width: 200px;
  }
  
  .footer__about {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .footer__about .brand {
    justify-content: center;
    margin-bottom: 1.5rem;
  }
  
  .footer__about p {
    margin: 0 auto;
    max-width: 300px;
  }
  
  .features-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .features-text h3 {
    font-size: 1.3rem;
  }
  
  .features-text p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .article-highlight {
    padding: 1rem;
    margin: 1rem 0;
  }
  
  .article-highlight h4 {
    font-size: 1.1rem;
  }
  
  .article-highlight p {
    font-size: 0.9rem;
  }
  
  .features-highlights {
    gap: 0.8rem;
  }
  
  .highlight-item {
    padding: 0.7rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .highlight-item:hover {
    transform: translateY(-3px);
  }
  
  .highlight-icon {
    font-size: 1.2rem;
  }
  
  .highlight-item span:last-child {
    font-size: 0.9rem;
  }
  
  .logo-container {
    padding: 1rem;
  }
  
  .femina-logo {
    max-width: 120px;
  }
  
  .logo-caption {
    font-size: 1rem;
  }
  
  .features-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }
  
  .features-text h3 {
    font-size: 1.3rem;
  }
  
  .features-text p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .article-highlight {
    padding: 1rem;
    margin: 1rem 0;
  }
  
  .article-highlight h4 {
    font-size: 1.1rem;
  }
  
  .article-highlight p {
    font-size: 0.9rem;
  }
  
  .features-highlights {
    gap: 0.8rem;
  }
  
  .highlight-item {
    padding: 0.7rem;
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .highlight-item:hover {
    transform: translateY(-3px);
  }
  
  .highlight-icon {
    font-size: 1.2rem;
  }
  
  .highlight-item span:last-child {
    font-size: 0.9rem;
  }
  
  .logo-container {
    padding: 1rem;
  }
  
  .featured-page {
    max-width: 100%;
    margin-bottom: 1rem;
  }
  
  .femina-logo {
    max-width: 80px;
  }
  
  .logo-caption {
    font-size: 0.9rem;
  }
  
  .mini {
    text-align: center;
    padding: 1.5rem 1rem;
    font-size: 0.85rem;
  }
}

/* Focus styles */
:where(a, button, .btn, .nav__toggle, .contact-card) { outline: none; }
:where(a, button, .btn, .nav__toggle, .contact-card):focus-visible { box-shadow: 0 0 0 .2rem var(--ring); border-radius: .6rem; }

/* Countdown Timer Styles */
.countdown-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a365d 0%, #2c5282 50%, #38a169 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  backdrop-filter: blur(10px);
}

.countdown-container {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  animation: countdownFloat 3s ease-in-out infinite;
}

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

.countdown-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: white;
  margin: 0 0 2rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #ffffff 0%, #e2e8f0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.time-number {
  font-size: clamp(3rem, 8vw, 5rem);
  font-weight: 800;
  color: white;
  font-family: 'Poppins', sans-serif;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  background: linear-gradient(135deg, #ff8c00 0%, #ffa500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: numberPulse 1s ease-in-out infinite alternate;
}

@keyframes numberPulse {
  from { transform: scale(1); }
  to { transform: scale(1.05); }
}

.time-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.time-separator {
  font-size: clamp(3rem, 8vw, 5rem);
  color: white;
  font-weight: 800;
  animation: separatorBlink 1s ease-in-out infinite;
}

@keyframes separatorBlink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

.countdown-message {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  margin: 1rem 0 0;
  font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

/* Launch Button Styles */
.launch-button-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  gap: 2rem;
}

.launch-button {
  background: var(--primary-gradient);
  border: none;
  border-radius: 50px;
  padding: 1.5rem 3rem;
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  animation: launchButtonPulse 2s ease-in-out infinite;
}

@keyframes launchButtonPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.launch-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.launch-button:hover::before {
  left: 100%;
}

.launch-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-xl);
  background: linear-gradient(135deg, #2F855A 0%, #38A169 100%);
}

.launch-icon {
  font-size: 1.5rem;
  animation: rocketBounce 1s ease-in-out infinite alternate;
}

/* Launch Logo Styles */
.launch-logo {
  max-width: 200px;
  height: auto;
  margin-bottom: 1rem;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
  transition: all 0.3s ease;
}

.launch-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.15));
}

@keyframes rocketBounce {
  from { transform: translateY(0px); }
  to { transform: translateY(-5px); }
}

/* Curtain Overlay Styles */
.curtain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10001;
  pointer-events: none;
}

.curtain {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100%;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 50%, #991b1b 100%);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
  transition: transform 2s ease-in-out;
}

.curtain-left {
  left: 0;
  transform: translateX(0);
  border-right: 2px solid rgba(0, 0, 0, 0.3);
}

.curtain-right {
  right: 0;
  transform: translateX(0);
  border-left: 2px solid rgba(0, 0, 0, 0.3);
}

.curtain-left.open {
  transform: translateX(-100%);
}

.curtain-right.open {
  transform: translateX(100%);
}

/* Curtain texture effect */
.curtain::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 2px,
      rgba(0, 0, 0, 0.1) 2px,
      rgba(0, 0, 0, 0.1) 4px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 10px,
      rgba(0, 0, 0, 0.05) 10px,
      rgba(0, 0, 0, 0.05) 20px
    );
  pointer-events: none;
}

/* Responsive adjustments for countdown */
@media (max-width: 768px) {
  .countdown-container {
    padding: 1.5rem;
    margin: 1rem;
  }
  
  .countdown-timer {
    gap: 0.5rem;
  }
  
  .launch-button {
    padding: 1.5rem 3rem;
    font-size: 1.2rem;
  }
  
  .launch-icon {
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .countdown-timer {
    flex-direction: column;
    gap: 1rem;
  }
  
  .time-separator {
    display: none;
  }
  
  .launch-button {
    padding: 1.2rem 2rem;
    font-size: 1rem;
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Modern Gallery Section */
.gallery-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
  gap: 2rem; 
  margin-top: 3rem;
}

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

.gallery-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.gallery-item { 
  position: relative; 
  aspect-ratio: 4/3; 
  border-radius: 20px; 
  overflow: hidden; 
  box-shadow: var(--shadow-lg); 
  border: 1px solid rgba(255,255,255,0.3); 
  transition: all 0.4s ease; 
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}
.gallery-item:hover { 
  transform: translateY(-15px) scale(1.02); 
  box-shadow: 
    var(--shadow-xl),
    0 0 30px rgba(56,161,105,0.3);
}
.gallery-item img,
.gallery-item video { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
  transition: transform 0.3s ease; 
}
.gallery-item:hover img,
.gallery-item:hover video { 
  transform: scale(1.1); 
}
.gallery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  background: #000;
}

/* Video Gallery Items */
.gallery-item--video {
  position: relative;
  cursor: pointer;
}

.gallery-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.3s ease;
  border-radius: 20px;
}

.gallery-item--video:hover .gallery-video-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.5);
}

.gallery-play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gallery-play-button svg {
  color: var(--primary);
  margin-left: 4px; /* Slight offset to center the play icon */
}

.gallery-item--video:hover .gallery-play-button {
  transform: scale(1.1);
  background: white;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.gallery-video-caption {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  font-family: 'Poppins', sans-serif;
  text-align: center;
}
.gallery-overlay { 
  position: absolute; 
  inset: 0; 
  background: 
    linear-gradient(45deg, rgba(56,161,105,0.8) 0%, rgba(255,140,0,0.8) 100%),
    linear-gradient(to bottom, transparent 0%, transparent 50%, rgba(0,0,0,0.9) 100%); 
  opacity: 0; 
  transition: all 0.4s ease; 
  display: flex; 
  align-items: flex-end; 
  padding: 2rem;
  backdrop-filter: blur(5px);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-caption { 
  color: white; 
  font-weight: 600; 
  font-size: 1.1rem; 
  text-shadow: 0 3px 8px rgba(0,0,0,0.7);
  font-family: 'Poppins', sans-serif;
  letter-spacing: 0.5px;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
  transform: translateY(0);
}

/* Floating Action Buttons */
.floating-buttons {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fab {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.fab:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.fab:active {
  transform: translateY(0) scale(0.95);
}

.fab svg {
  color: white;
  transition: all 0.3s ease;
}

/* Scroll to Top Button */
.fab--scroll-top {
  background: linear-gradient(135deg, #38A169 0%, #2F855A 100%);
}

.fab--scroll-top:hover {
  box-shadow: 0 8px 20px rgba(56, 161, 105, 0.4);
}

/* Phone Button */
.fab--phone {
  background: linear-gradient(135deg, #38A169 0%, #2F855A 100%);
}

.fab--phone:hover {
  box-shadow: 0 8px 20px rgba(56, 161, 105, 0.4);
}

/* WhatsApp Button */
.fab--whatsapp {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.fab--whatsapp:hover {
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

/* Instagram Button */
.fab--instagram {
  background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
}

.fab--instagram:hover {
  box-shadow: 0 8px 20px rgba(228, 64, 95, 0.4);
}

/* Hide scroll to top button initially */
.fab--scroll-top {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.fab--scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .floating-buttons {
    right: 15px;
    bottom: 15px;
    gap: 10px;
  }
  
  .fab {
    width: 50px;
    height: 50px;
  }
  
  .fab svg {
    width: 18px;
    height: 18px;
  }
}

/* Home Page Preview Sections */
.section--dermatologists-preview {
  background: linear-gradient(135deg, rgba(56,161,105,0.02) 0%, rgba(255,140,0,0.02) 100%);
  padding: 5rem 0;
}

.dermatologists-preview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.dermatologist-preview-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

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

.dermatologist-preview__image {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.5rem;
  border: 4px solid var(--primary);
}

.dermatologist-preview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dermatologist-preview__content h3 {
  color: var(--primary);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.dermatologist-preview__title {
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.dermatologist-preview__description {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.section--services-preview {
  padding: 5rem 0;
}

.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-preview-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.service-preview-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.service-preview__icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--primary);
}

.service-preview__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-preview-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.section__actions {
  text-align: center;
  margin-top: 3rem;
}

.section--contact-preview {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 5rem 0;
}

.contact-preview {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.contact-preview__content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.contact-preview__content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.contact-preview__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-preview__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-info-item h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.contact-info-item p {
  opacity: 0.9;
  line-height: 1.5;
}

/* Mobile Responsive for Preview Sections */
@media (max-width: 768px) {
  .dermatologists-preview {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .dermatologist-preview-card {
    padding: 1.5rem;
  }
  
  .dermatologist-preview__image {
    width: 100px;
    height: 100px;
  }
  
  .services-preview-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-preview {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .contact-preview__content h2 {
    font-size: 2rem;
  }
  
  .contact-preview__actions {
    justify-content: center;
  }
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 6rem 0 4rem;
  text-align: center;
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.page-header p {
  font-size: 1.2rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Why Choose Us Section */
.section--why-choose {
  background: linear-gradient(135deg, rgba(56,161,105,0.02) 0%, rgba(255,140,0,0.02) 100%);
  padding: 5rem 0;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.why-choose-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.why-choose-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.why-choose__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.why-choose-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.why-choose-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

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

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Mobile Responsive for New Sections */
@media (max-width: 768px) {
  .page-header {
    padding: 4rem 0 3rem;
  }
  
  .page-header h1 {
    font-size: 2.2rem;
  }
  
  .page-header p {
    font-size: 1.1rem;
  }
  
  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .why-choose-card {
    padding: 2rem 1.5rem;
  }
  
  .why-choose__icon {
    width: 70px;
    height: 70px;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* Services Page Styles */
.section--services {
  padding: 5rem 0;
}

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

.service-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

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

.service-card__image {
  height: 200px;
  overflow: hidden;
}

.service-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.service-card__content {
  padding: 2rem;
}

.service-card__content h3 {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-card__content p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

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

.service-features li {
  color: var(--secondary);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  position: relative;
  padding-left: 1.5rem;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

/* Treatment Process Section */
.section--process {
  background: linear-gradient(135deg, rgba(56,161,105,0.02) 0%, rgba(255,140,0,0.02) 100%);
  padding: 5rem 0;
}

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

.process-step {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
}

.process-step:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

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

.process-step h3 {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Mobile Responsive for Services */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .service-card__content {
    padding: 1.5rem;
  }
  
  .service-card__image {
    height: 180px;
  }
  
  .process-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .process-step {
    padding: 2rem 1.5rem;
  }
  
  .process-step__number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

/* Gallery Page Styles */
.section--gallery {
  padding: 5rem 0;
}

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

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #f8f9fa;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.gallery-item--panorama {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-item--panorama img {
  height: 300px;
}

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
  color: white;
  padding: 2rem 1.5rem 1.5rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: white;
}

.gallery-overlay p {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

/* Video Gallery Items */
.gallery-item--video {
  position: relative;
  cursor: pointer;
}

.gallery-video {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 16px;
  background: #000;
}

.gallery-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: all 0.3s ease;
  border-radius: 16px;
}

.gallery-item--video:hover .gallery-video-overlay {
  opacity: 1;
  background: rgba(0, 0, 0, 0.5);
}

.gallery-play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.gallery-play-button svg {
  color: var(--primary);
  margin-left: 4px;
}

.gallery-video-caption {
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  text-align: center;
}

/* Clinic Features Section */
.section--clinic-features {
  background: linear-gradient(135deg, rgba(56,161,105,0.02) 0%, rgba(255,140,0,0.02) 100%);
  padding: 5rem 0;
}

.clinic-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.clinic-feature-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.clinic-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.clinic-feature__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.clinic-feature-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.clinic-feature-card p {
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Mobile Responsive for Gallery */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .gallery-item--panorama {
    grid-column: span 1;
  }
  
  .gallery-item img,
  .gallery-video {
    height: 200px;
  }
  
  .gallery-item--panorama img {
    height: 220px;
  }
  
  .gallery-overlay {
    padding: 1.5rem 1rem 1rem;
  }
  
  .gallery-overlay h3 {
    font-size: 1.1rem;
  }
  
  .gallery-play-button {
    width: 60px;
    height: 60px;
  }
  
  .gallery-play-button svg {
    width: 40px;
    height: 40px;
  }
  
  .gallery-video-caption {
    font-size: 1rem;
  }
  
  .clinic-features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .clinic-feature-card {
    padding: 2rem 1.5rem;
  }
  
  .clinic-feature__icon {
    width: 70px;
    height: 70px;
  }
}

/* Resources Page Styles */
.section--featured-article {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(56,161,105,0.02) 0%, rgba(255,140,0,0.02) 100%);
}

.featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: white;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.featured-article__image {
  border-radius: 16px;
  overflow: hidden;
}

.featured-article__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.featured-article__content h2 {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.featured-article__content p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.article-category {
  background: var(--primary);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.article-date {
  color: var(--muted);
  font-size: 0.9rem;
}

.section--resources {
  padding: 5rem 0;
}

.resources-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.resource-category {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.resource-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.resource-category__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
}

.resource-category h3 {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.resource-category p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

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

.resource-links li {
  margin-bottom: 0.5rem;
}

.resource-links a {
  color: var(--secondary);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
  position: relative;
  padding-left: 1.2rem;
}

.resource-links a::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.resource-links a:hover {
  color: var(--primary);
}

.section--articles {
  background: linear-gradient(135deg, rgba(56,161,105,0.02) 0%, rgba(255,140,0,0.02) 100%);
  padding: 5rem 0;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.article-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.article-card__image {
  height: 200px;
  overflow: hidden;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card__content {
  padding: 2rem;
}

.article-card__content h3 {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.article-card__content p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.article-link {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.article-link:hover {
  color: var(--secondary);
}

.section--newsletter {
  padding: 5rem 0;
}

.newsletter-signup {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  color: white;
}

.newsletter-content h2 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: white;
}

.newsletter-content p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  gap: 1rem;
  background: white;
  border-radius: 10px;
  padding: 0.5rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.form-group input {
  flex: 1;
  border: none;
  outline: none;
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-size: 1rem;
}

.form-group button {
  border-radius: 50px;
  padding: 1rem 2rem;
  white-space: nowrap;
}

/* Mobile Responsive for Resources */
@media (max-width: 768px) {
  .featured-article {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem;
  }
  
  .featured-article__image img {
    height: 250px;
  }
  
  .featured-article__content h2 {
    font-size: 1.6rem;
  }
  
  .resources-categories {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .resource-category {
    padding: 2rem 1.5rem;
  }
  
  .resource-category__icon {
    width: 70px;
    height: 70px;
  }
  
  .articles-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .article-card__content {
    padding: 1.5rem;
  }
  
  .newsletter-signup {
    padding: 2rem;
  }
  
  .newsletter-content h2 {
    font-size: 1.8rem;
  }
  
  .form-group {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .form-group input,
  .form-group button {
    border-radius: 12px;
  }
}

/* Contact Page Styles */
.section--contact-info {
  padding: 5rem 0;
  background: linear-gradient(135deg, rgba(56,161,105,0.02) 0%, rgba(255,140,0,0.02) 100%);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.contact-info-card {
  background: white;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.contact-info__icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.contact-info-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.contact-info-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.contact-info-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: var(--secondary);
}

.contact-info__note {
  font-size: 0.9rem;
  color: var(--muted);
  font-style: italic;
}

.section--contact-form {
  padding: 5rem 0;
}

.contact-form-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

.contact-form-content h2 {
  color: var(--primary);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.contact-form-content p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 2rem;
  font-size: 1.1rem;
}

.appointment-form {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(56, 161, 105, 0.1);
}

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

.btn--full {
  width: 100%;
  padding: 1.2rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.contact-form-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.sidebar-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.sidebar-card h3 {
  color: var(--primary);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

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

.sidebar-list li {
  color: var(--muted);
  padding: 0.5rem 0;
  position: relative;
  padding-left: 1.5rem;
  line-height: 1.5;
}

.sidebar-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.sidebar-card p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

.sidebar-card a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.sidebar-card a:hover {
  color: var(--secondary);
}

.section--map {
  background: linear-gradient(135deg, rgba(56,161,105,0.02) 0%, rgba(255,140,0,0.02) 100%);
  padding: 5rem 0;
}

.map-container {
  text-align: center;
}

.map-container h2 {
  color: var(--primary);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.map-container p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.map-placeholder {
  background: white;
  border-radius: 16px;
  padding: 4rem 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  max-width: 500px;
  margin: 0 auto;
}

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

.map-content svg {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.map-content h3 {
  color: var(--primary);
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.map-content p {
  color: var(--muted);
  margin-bottom: 2rem;
}

/* Mobile Responsive for Contact */
@media (max-width: 768px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .contact-info-card {
    padding: 2rem 1.5rem;
  }
  
  .contact-info__icon {
    width: 70px;
    height: 70px;
  }
  
  .contact-form-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .appointment-form {
    padding: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .contact-form-content h2 {
    font-size: 1.8rem;
  }
  
  .sidebar-card {
    padding: 1.5rem;
  }
  
  .map-container h2 {
    font-size: 1.8rem;
  }
  
  .map-placeholder {
    padding: 3rem 1.5rem;
  }
}

/* Enhanced Lightbox styles */
.lightbox { 
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
  background: rgba(0,0,0,0.95); 
  display: none; 
  justify-content: center; 
  align-items: center; 
  z-index: 9999; 
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.lightbox.active { 
  display: flex; 
  animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.lightbox-content { 
  position: relative; 
  max-width: 95vw; 
  max-height: 95vh; 
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img { 
  max-width: 100%; 
  max-height: 100%; 
  width: auto;
  height: auto;
  object-fit: contain; 
  border-radius: 1rem; 
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.3s ease;
}

.lightbox-content img:hover {
  transform: scale(1.02);
}

.lightbox-content video {
  max-width: 100%; 
  max-height: 100%; 
  width: auto;
  height: auto;
  border-radius: 1rem; 
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  background: #000;
}
.lightbox-close { position: absolute; top: -3rem; right: 0; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center; }
.lightbox-close:hover { background: rgba(255,255,255,0.1); border-radius: 50%; }
.lightbox-nav { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,0.2); border: none; color: white; font-size: 1.5rem; cursor: pointer; width: 3rem; height: 3rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.3s ease; }
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: -4rem; }
.lightbox-next { right: -4rem; }
.lightbox-caption { position: absolute; bottom: -3rem; left: 0; right: 0; color: white; text-align: center; font-weight: 500; }

/* Modern PDF Blog Section */
.blog-grid { 
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); 
  gap: 2.5rem; 
  margin-top: 3rem;
}

.blog-card { 
  background: rgba(255,255,255,0.95); 
  backdrop-filter: blur(20px);
  border-radius: 20px; 
  overflow: hidden; 
  box-shadow: var(--shadow-lg); 
  border: 1px solid rgba(255,255,255,0.3); 
  transition: all 0.4s ease;
  position: relative;
  padding: 2rem;
  text-align: center;
}

.blog-card:hover { 
  transform: translateY(-12px) scale(1.02); 
  box-shadow: 
    var(--shadow-xl),
    0 0 40px rgba(56,161,105,0.2);
}

.blog-card__icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  padding: 1rem;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  transition: all 0.3s ease;
}

.blog-card:hover .blog-card__icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(56,161,105,0.3);
}

.blog-card__content { 
  position: relative;
}

.blog-card__content::before {
  content: '';
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.blog-card__content h3 { 
  margin: 0 0 1rem; 
  font-size: 1.3rem; 
  color: var(--ink);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.blog-card__content p { 
  color: var(--muted); 
  margin: 0 0 1.5rem; 
  line-height: 1.6;
  font-size: 1rem;
}

.blog-card__link { 
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary); 
  font-weight: 600; 
  text-decoration: none; 
  font-size: 1rem;
  padding: 0.8rem 1.5rem;
  background: rgba(56,161,105,0.1);
  border: 2px solid rgba(56,161,105,0.2);
  border-radius: 25px;
  transition: all 0.3s ease;
}

.blog-card__link:hover { 
  background: var(--primary);
  color: white;
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}

.blog-card__link svg {
  transition: transform 0.3s ease;
}

.blog-card__link:hover svg {
  transform: translateX(3px);
}

/* EmailJS Form Styles */
.form-message {
  margin-top: 1rem;
  padding: 1.5rem;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  transition: all 0.4s ease;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: slideInUp 0.5s ease-out;
  position: relative;
  overflow: hidden;
}

.form-message::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  animation: shimmer 2s infinite;
}

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

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

.form-message--success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  border: 2px solid #28a745;
  box-shadow: 0 4px 20px rgba(40, 167, 69, 0.2);
}

.form-message--error {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  color: #721c24;
  border: 2px solid #dc3545;
  box-shadow: 0 4px 20px rgba(220, 53, 69, 0.2);
}

.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}


