/* ============================================
   Al Hilal International Clinic – Green Theme
   ============================================ */

:root {
  --green: #0D7A5E;
  --green-light: #0F8B6E;
  --green-dark: #065A45;
  --green-deeper: #043D2E;
  --green-bg: #E8F5F0;
  --green-bg-dark: #D0EBE2;
  --gold: #C4A46C;
  --gold-light: #D4B87A;
  --white: #FFFFFF;
  --off-white: #F8FBF9;
  --beige: #F5F0EB;
  --text: #2D3A3A;
  --text-light: #6B7D7D;
  --text-dark: #1A2E2E;
  --border: #DCE8E4;
  --shadow-sm: 0 2px 8px rgba(13,122,94,0.06);
  --shadow-md: 0 8px 30px rgba(13,122,94,0.10);
  --shadow-lg: 0 20px 60px rgba(13,122,94,0.12);
  --shadow-green: 0 4px 20px rgba(13,122,94,0.25);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-arabic: 'Tajawal', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-height: 72px;
  --topbar-height: 40px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-height) + var(--topbar-height)); }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.rtl { direction: rtl; font-family: var(--font-arabic), var(--font-body); }
body.rtl .en-text { display: none; }
body.rtl .ar-text { display: inline !important; }
body:not(.rtl) .ar-text { display: none !important; }
body.rtl .hero-cta .btn i, body.rtl .nav-cta i, body.rtl .submenu-arrow { transform: scaleX(-1); }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: inherit; }

.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; max-width: 700px; margin-left: auto; margin-right: auto; }
.section-tag {
  display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--green); margin-bottom: 16px;
  position: relative; padding-left: 40px;
}
.section-tag::before {
  content: ''; position: absolute; left: 0; top: 50%;
  width: 28px; height: 1.5px; background: var(--green);
}
.section-header h2 {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; color: var(--text-dark); margin-bottom: 16px; line-height: 1.25;
}
.section-desc { font-size: 1.05rem; color: var(--text-light); line-height: 1.7; }

.btn {
  display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px;
  border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); border: none; cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white); box-shadow: var(--shadow-green);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(13,122,94,0.35); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); transform: translateY(-2px); }
.btn-full { width: 100%; justify-content: center; }

/* Top Bar */
.top-bar {
  background: var(--green-deeper); color: rgba(255,255,255,0.8);
  font-size: 0.78rem; padding: 8px 0; position: relative; z-index: 1001;
}
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.top-bar-left { display: flex; gap: 20px; flex-wrap: wrap; }
.top-bar-left span { display: inline-flex; align-items: center; gap: 6px; }
.top-bar-left i { color: var(--gold); font-size: 0.7rem; }
.top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-bar-right a { color: rgba(255,255,255,0.85); display: inline-flex; align-items: center; gap: 6px; }
.top-bar-right a:hover { color: var(--gold); }
.lang-toggle {
  background: rgba(255,255,255,0.1); color: var(--white); padding: 4px 14px;
  border-radius: 20px; font-size: 0.75rem; font-weight: 500;
  border: 1px solid rgba(255,255,255,0.2); cursor: pointer; transition: var(--transition);
}
.lang-toggle:hover { background: var(--green); border-color: var(--green); }

/* Navbar */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent; height: var(--nav-height); transition: var(--transition);
}
.navbar.scrolled { border-bottom-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; justify-content: space-between; align-items: center; height: 100%; }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 38px; width: auto; border-radius: 50%; }
.nav-logo-text { font-family: var(--font-heading); font-weight: 600; font-size: 1.15rem; color: var(--text-dark); }

/* Mega Menu */
.nav-menu { display: flex; gap: 4px; align-items: center; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  padding: 8px 16px; font-size: 0.87rem; font-weight: 500;
  color: var(--text); border-radius: var(--radius-sm); transition: var(--transition);
  display: flex; align-items: center; gap: 4px; position: relative;
}
.nav-menu > li > a::after {
  content: ''; position: absolute; bottom: 2px; left: 16px; right: 16px;
  height: 2px; background: var(--green); transform: scaleX(0); transition: var(--transition);
}
.nav-menu > li > a:hover::after, .nav-menu > li > a.active::after { transform: scaleX(1); }
.nav-menu > li > a:hover { color: var(--green); }
.nav-cta {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white); padding: 10px 22px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600;
  display: flex; align-items: center; gap: 8px; box-shadow: var(--shadow-green);
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(13,122,94,0.35); }

/* Mega Menu Dropdown */
.mega-menu {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0s 0.3s;
  min-width: 700px; z-index: 999;
  display: flex; padding: 0;
}
.mega-menu.active { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); transition-delay: 0s; }

.mega-menu-left {
  width: 220px; background: var(--green-bg); padding: 20px 0;
  border-radius: var(--radius) 0 0 var(--radius); flex-shrink: 0;
}
.mega-menu-left button, .mega-menu-left .mega-cat {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 12px 24px 12px 28px; font-size: 0.88rem; font-weight: 500;
  color: var(--text); text-align: left; border: none; background: none;
  cursor: pointer; text-decoration: none; position: relative;
  transition: background 0.25s ease, color 0.25s ease, font-weight 0.25s ease;
}
.mega-menu-left button::before, .mega-menu-left .mega-cat::before {
  content: ''; position: absolute; left: 0; top: 50%;
  transform: translateY(-50%) scaleY(0);
  width: 3px; height: 60%;
  background: var(--green);
  border-radius: 0 3px 3px 0;
  transition: transform 0.25s ease;
}
.mega-menu-left button:hover, .mega-menu-left .mega-cat:hover {
  background: var(--green-bg-dark);
}
.mega-menu-left button.active, .mega-menu-left .mega-cat.active {
  background: var(--white); color: var(--green); font-weight: 600;
}
.mega-menu-left button.active::before, .mega-menu-left .mega-cat.active::before {
  transform: translateY(-50%) scaleY(1);
}
.mega-menu-left button .mega-arrow, .mega-menu-left .mega-cat .mega-arrow {
  color: var(--text); font-size: 0.7rem;
  transition: color 0.25s ease, transform 0.3s ease;
}
.mega-menu-left button.active .mega-arrow, .mega-menu-left .mega-cat.active .mega-arrow {
  color: var(--green); transform: translateX(5px);
}

.services-mega { min-width: 260px; }
.services-mega .mega-menu-right { padding: 12px 20px; }
.services-mega .services-divider { border: none; border-top: 1px solid var(--border); margin: 4px 0; }

/* --- Animated Panel System --- */
.mega-menu-right {
  flex: 1; padding: 24px 32px;
  position: relative;
  min-height: 360px;
}
.mega-menu-right.category-mode {
  overflow: hidden;
}
.mega-panel {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  opacity: 1; transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.mega-panel.panel-enter {
  opacity: 0; transform: translateY(10px);
}
.mega-panel.panel-active {
  opacity: 1; transform: translateY(0);
  transition-delay: 0.05s;
}
.mega-panel.panel-leave {
  opacity: 0; transform: translateY(-6px);
  pointer-events: none;
}
.mega-panel.panel-hidden {
  display: none;
}

.mega-col ul li a {
  display: block; padding: 7px 8px; font-size: 0.82rem; font-weight: 400;
  color: var(--text); border-radius: 4px;
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.25s ease;
  position: relative;
}
.mega-col ul li a:hover {
  color: var(--green); background: var(--green-bg); padding-left: 16px;
}
.mega-col h5 {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--green); margin: 16px 0 8px 8px;
}

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; padding: 4px; cursor: pointer;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Hero */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden;
}
.hero video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.3);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 800px; margin: 0 auto; }
.hero-badge {
  display: inline-block; background: var(--gold); color: var(--white);
  padding: 6px 20px; border-radius: 50px; font-size: 0.8rem;
  font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--font-heading); font-size: clamp(2.2rem, 5.5vw, 4.2rem);
  font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 20px;
}
.hero p {
  font-size: clamp(1rem, 1.5vw, 1.2rem); color: rgba(255,255,255,0.8);
  margin-bottom: 36px; line-height: 1.8;
}
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.hero-phone a {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--gold); font-size: 1.2rem; font-weight: 600;
}
.hero-phone a i { font-size: 1rem; }
.hero-phone a:hover { color: var(--white); }

/* About */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; height: 500px; }
.about-exp {
  position: absolute; bottom: -20px; right: -20px; background: var(--green);
  color: var(--white); padding: 24px 32px; border-radius: var(--radius);
  text-align: center; box-shadow: var(--shadow-lg);
}
.about-exp-num { display: block; font-size: 2rem; font-weight: 700; line-height: 1; }
.about-exp-label { font-size: 0.8rem; opacity: 0.9; }
.about-text p { margin-bottom: 20px; font-size: 1.02rem; line-height: 1.8; color: var(--text); }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; }
.stat { text-align: center; padding: 20px; background: var(--green-bg); border-radius: var(--radius-sm); }
.stat-num { display: block; font-family: var(--font-heading); font-size: 2rem; font-weight: 700; color: var(--green); line-height: 1; }
.stat-plus { color: var(--green); font-size: 1.5rem; font-weight: 700; }
.stat-label { display: block; font-size: 0.8rem; color: var(--text-light); margin-top: 4px; }

/* Why Choose Us */
.why { background: var(--green-bg); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.why-card {
  background: var(--white); padding: 36px 28px; border-radius: var(--radius);
  text-align: center; transition: var(--transition); border: 1px solid var(--border);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--green); }
.why-icon {
  width: 64px; height: 64px; margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--white);
}
.why-card h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--text-dark); margin-bottom: 10px; }
.why-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* Services */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-cat {
  background: var(--green-bg); padding: 40px 28px; border-radius: var(--radius);
  text-align: center; transition: var(--transition); border: 1px solid transparent;
}
.service-cat:hover { background: var(--white); border-color: var(--green); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.service-cat-icon { font-size: 2rem; color: var(--green); margin-bottom: 16px; }
.service-cat h3 { font-family: var(--font-heading); font-size: 1.15rem; color: var(--text-dark); margin-bottom: 12px; }
.service-cat p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.service-link { color: var(--green); font-weight: 600; font-size: 0.85rem; display: inline-flex; align-items: center; gap: 6px; }
.service-link:hover { gap: 10px; }

/* Treatments Section */
.treatments { background: var(--green-bg); }
.treatments-filter { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
  padding: 10px 24px; border-radius: 50px; font-size: 0.85rem; font-weight: 500;
  color: var(--text); background: var(--white); border: 1px solid var(--border); transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--green); color: var(--white); border-color: var(--green); }
.treatments-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.treatment-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  transition: var(--transition); border: 1px solid var(--border);
}
.treatment-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.treatment-img { position: relative; height: 200px; overflow: hidden; }
.treatment-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.treatment-card:hover .treatment-img img { transform: scale(1.08); }
.treatment-cat-label {
  position: absolute; top: 12px; left: 12px; background: var(--green);
  color: var(--white); padding: 4px 14px; border-radius: 50px;
  font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px;
}
.treatment-info { padding: 24px; }
.treatment-info h3 { font-family: var(--font-heading); font-size: 1.15rem; color: var(--text-dark); margin-bottom: 8px; }
.treatment-info > p { font-size: 0.88rem; color: var(--text-light); margin-bottom: 12px; line-height: 1.7; }
.treatment-info ul li {
  font-size: 0.82rem; color: var(--text); padding: 3px 0; padding-left: 16px; position: relative;
}
.treatment-info ul li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--green);
}

/* Specialists */
.specialists { background: var(--white); }
.specialist-card { background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); transition: var(--transition); }
.specialist-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.specialist-img { height: 280px; overflow: hidden; }
.specialist-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.specialist-card:hover .specialist-img img { transform: scale(1.05); }
.specialist-info { padding: 28px; }
.specialist-info h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--text-dark); margin-bottom: 4px; }
.specialist-role { display: block; color: var(--green); font-size: 0.85rem; font-weight: 600; margin-bottom: 12px; }
.specialist-info p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.specialist-creds span { display: flex; align-items: center; gap: 8px; font-size: 0.78rem; color: var(--text); padding: 4px 0; }
.specialist-creds i { color: var(--green); font-size: 0.7rem; }
.specialists-swiper { padding: 10px 0 60px; }
.specialists-swiper .swiper-button-next, .specialists-swiper .swiper-button-prev { color: var(--green); background: var(--white); width: 44px; height: 44px; border-radius: 50%; box-shadow: var(--shadow-md); }
.specialists-swiper .swiper-button-next::after, .specialists-swiper .swiper-button-prev::after { font-size: 1rem; }
.specialists-swiper .swiper-pagination-bullet-active { background: var(--green); }

/* Gallery */
.gallery { background: var(--green-bg); }
.gallery-filter { display: flex; justify-content: center; gap: 8px; margin-bottom: 40px; flex-wrap: wrap; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-item img { width: 100%; height: 260px; object-fit: cover; transition: var(--transition-slow); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-label {
  position: absolute; bottom: 12px; left: 12px;
  background: rgba(4,61,46,0.85); color: var(--white);
  padding: 6px 16px; border-radius: 50px; font-size: 0.78rem; font-weight: 500;
}

/* Testimonials */
.testimonials { background: var(--white); }
.testimonials-swiper { padding-bottom: 50px; }
.testimonial-card { background: var(--green-bg); padding: 36px; border-radius: var(--radius); text-align: center; max-width: 600px; margin: 0 auto; }
.testimonial-stars { color: var(--gold); margin-bottom: 20px; font-size: 1.1rem; letter-spacing: 4px; }
.testimonial-card p { font-size: 1rem; line-height: 1.8; color: var(--text); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; justify-content: center; gap: 12px; }
.testimonial-avatar i { font-size: 2.5rem; color: var(--green); }
.testimonial-author strong { display: block; color: var(--text-dark); font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-light); }
.testimonials-swiper .swiper-pagination-bullet-active { background: var(--green); }

/* Contact */
.contact { background: var(--green-bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info-card { background: var(--white); padding: 24px; border-radius: var(--radius); text-align: center; border: 1px solid var(--border); transition: var(--transition); }
.contact-info-card:hover { box-shadow: var(--shadow-md); border-color: var(--green); }
.contact-icon { width: 48px; height: 48px; margin: 0 auto 12px; background: linear-gradient(135deg, var(--green), var(--green-dark)); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.1rem; }
.contact-info-card h3 { font-size: 0.95rem; color: var(--text-dark); margin-bottom: 6px; }
.contact-info-card a, .contact-info-card p { font-size: 0.88rem; color: var(--text-light); }
.contact-info-card a:hover { color: var(--green); }
.contact-map { grid-column: 1 / -1; margin-top: 8px; }
.contact-form { background: var(--white); padding: 40px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); font-size: 0.92rem; color: var(--text);
  background: var(--white); transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(13,122,94,0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-status { margin-top: 16px; padding: 12px; border-radius: var(--radius-sm); font-size: 0.88rem; display: none; }
.form-status.success { display: block; background: #d4edda; color: #155724; }
.form-status.error { display: block; background: #f8d7da; color: #721c24; }

/* Footer */
.footer { background: var(--green-deeper); color: rgba(255,255,255,0.8); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-logo { height: 48px; width: auto; border-radius: 50%; margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); transition: var(--transition); }
.footer-social a:hover { background: var(--green); color: var(--white); transform: translateY(-3px); }
.footer-col h4 { font-family: var(--font-heading); font-size: 1.05rem; color: var(--white); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; }
.footer-contact i { color: var(--gold); width: 16px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-license { color: var(--gold); }

/* Floating WhatsApp */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 999;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  transition: var(--transition); animation: whatsappPulse 2s infinite;
}
@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.35); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.55); }
}
.whatsapp-float:hover { transform: scale(1.08); color: var(--white); }

/* ==========================================
   TREATMENT CATEGORY PAGES
   ========================================== */
.page-hero {
  position: relative; min-height: 50vh; display: flex; align-items: center;
  overflow: hidden; padding: 120px 0 60px;
}
.page-hero-bg {
  position: absolute; inset: 0; background-size: cover; background-position: center;
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 1;
}
.page-hero-content { position: relative; z-index: 2; text-align: center; color: var(--white); }
.page-hero-content h1 {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700; margin-bottom: 12px;
}
.page-hero-content p { font-size: 1.05rem; opacity: 0.9; max-width: 600px; margin: 0 auto; }
.breadcrumb { font-size: 0.82rem; margin-bottom: 16px; opacity: 0.8; }
.breadcrumb a { color: var(--gold); }
.breadcrumb a:hover { text-decoration: underline; }

.treatment-list-page { background: var(--white); }
.treatment-list-page .treatment-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.treatment-detail-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: var(--transition);
}
.treatment-detail-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.treatment-detail-card .td-img { height: 200px; overflow: hidden; }
.treatment-detail-card .td-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition-slow); }
.treatment-detail-card:hover .td-img img { transform: scale(1.08); }
.treatment-detail-card .td-body { padding: 24px; }
.treatment-detail-card .td-body h3 { font-family: var(--font-heading); font-size: 1.15rem; color: var(--text-dark); margin-bottom: 8px; }
.treatment-detail-card .td-body p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 12px; }
.treatment-detail-card .td-body .td-list { margin-bottom: 16px; }
.treatment-detail-card .td-body .td-list li {
  font-size: 0.82rem; color: var(--text); padding: 3px 0; padding-left: 16px; position: relative;
}
.treatment-detail-card .td-body .td-list li::before {
  content: ''; position: absolute; left: 0; top: 10px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--green);
}
.td-cta { display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-weight: 600; font-size: 0.85rem; }
.td-cta:hover { gap: 12px; }

/* Services Page */
.services-page-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-full-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 28px;
  text-align: center; border: 1px solid var(--border); transition: var(--transition);
}
.service-full-card:hover { box-shadow: var(--shadow-md); border-color: var(--green); transform: translateY(-4px); }
.service-full-card .sf-icon {
  width: 64px; height: 64px; margin: 0 auto 16px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--white);
}
.service-full-card h3 { font-family: var(--font-heading); font-size: 1.2rem; color: var(--text-dark); margin-bottom: 10px; }
.service-full-card p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin-bottom: 16px; }
.service-full-card ul { text-align: left; margin: 0 auto; max-width: 280px; }
.service-full-card ul li {
  font-size: 0.82rem; padding: 4px 0; color: var(--text);
  display: flex; align-items: center; gap: 8px;
}
.service-full-card ul li i { color: var(--green); font-size: 0.65rem; }
.sf-footer { display: flex; justify-content: center; gap: 12px; margin-top: 20px; }
.sf-footer a { font-size: 0.82rem; color: var(--green); font-weight: 600; }
.sf-footer a:hover { text-decoration: underline; }

/* Responsive */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .treatment-list-page .treatment-grid { grid-template-columns: repeat(2, 1fr); }
  .services-page-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .mega-menu { min-width: 600px; }
}

@media (max-width: 768px) {
  .top-bar-left span:not(:first-child) { display: none; }
  .top-bar-inner { justify-content: center; }

  .nav-menu {
    position: fixed; top: var(--nav-height); left: 0; width: 100%;
    background: var(--white); flex-direction: column; padding: 0;
    box-shadow: var(--shadow-md); max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease; z-index: 999;
    border-bottom: 2px solid var(--green);
  }
  .nav-menu.active { max-height: 80vh; overflow-y: auto; }
  .nav-menu { align-items: stretch; }
  .nav-menu > li > a { width: 100%; padding: 14px 24px; border-bottom: 1px solid var(--border); justify-content: center; }
  .nav-menu > li > a::after { display: none; }
  .mega-menu {
    position: static; transform: none; min-width: auto; flex-direction: column;
    box-shadow: none; border: none; border-radius: 0;
    max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  }
  .mega-menu.active { max-height: 1000px; transform: none; }
  .mega-menu-left { width: 100%; border-radius: 0; display: flex; flex-wrap: wrap; padding: 8px 0; }
  .mega-menu-left button, .mega-menu-left .mega-cat { padding: 10px 20px; font-size: 0.82rem; width: 50%; }
  .mega-menu-right { padding: 16px 20px; min-height: 260px; }
  .mega-panel { grid-template-columns: 1fr; }
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image img { height: 350px; }
  .about-exp { right: 0; bottom: -20px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .treatments-grid { grid-template-columns: 1fr; }
  .treatment-list-page .treatment-grid { grid-template-columns: 1fr; }
  .services-page-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
  .specialist-img { height: 220px; }
  .whatsapp-float { bottom: 16px; right: 16px; width: 48px; height: 48px; font-size: 1.3rem; }
  .mega-menu-left button, .mega-menu-left .mega-cat { width: 100%; }
  .treatment-detail-page .container > div[style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
  .page-hero { min-height: 45vh; }
  .page-hero-content p { font-size: 0.95rem; }
  .breadcrumb { font-size: 0.78rem; gap: 4px; flex-wrap: wrap; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-header h2 { font-size: 1.6rem; }
  .hero h1 { font-size: 1.8rem; }
  .about-stats { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }
  .contact-form { padding: 24px; }
  .gallery-grid { grid-template-columns: 1fr; }
}
