/*
Theme Name: World Orthocare Clinic
Theme URI: https://worldorthocare.com
Author: Dr. Rasheed Ahmed Bhatti
Description: Official website for World Orthocare Clinic
Version: 1.0
Tags: medical, orthopedic, clinic
*/


:root {
  --navy: #0d4f5c;
  --blue: #0e7490;
  --cyan: #06b6d4;
  --white: #ffffff;
  --gold: #c9a84c;
  --off-white: #f4f8fb;
  --gray: #5a6a7a;
  --light-gray: #e0e8ef;
}
* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'DM Sans',sans-serif; color:var(--navy); background:var(--white); }

/* ===== DOCTOR PROFILE MODAL ===== */
.profile-modal-overlay {
  display:none; position:fixed; inset:0; z-index:9999;
  background:rgba(5,15,30,0.92); backdrop-filter:blur(12px);
  align-items:center; justify-content:center; padding:16px;
}
.profile-modal-overlay.open { display:flex; animation:fadeInOverlay 0.35s ease; }
@keyframes fadeInOverlay { from{opacity:0} to{opacity:1} }

.profile-modal {
  background:#ffffff; border-radius:24px; max-width:860px; width:100%;
  max-height:92vh; overflow-y:auto; position:relative;
  animation:slideUpModal 0.4s cubic-bezier(0.22,1,0.36,1);
  box-shadow:0 40px 100px rgba(0,0,0,0.6);
}
@keyframes slideUpModal { from{transform:translateY(50px);opacity:0} to{transform:translateY(0);opacity:1} }

.profile-modal-close {
  position:absolute; top:16px; right:16px;
  width:36px; height:36px; border-radius:50%; border:none;
  background:rgba(255,255,255,0.2); color:#fff;
  font-size:17px; cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:0.2s; z-index:10;
}
.profile-modal-close:hover { background:rgba(255,255,255,0.45); }

/* COVER BANNER */
.profile-cover {
  height:130px;
  background:linear-gradient(120deg,#0d4f5c 0%,#0e7490 45%,#06b6d4 100%);
  border-radius:24px 24px 0 0; position:relative; overflow:hidden;
}
.profile-cover::after {
  content:''; position:absolute; inset:0;
  background:repeating-linear-gradient(45deg,rgba(255,255,255,0.02) 0px,rgba(255,255,255,0.02) 1px,transparent 1px,transparent 20px);
}
.profile-cover-badge {
  position:absolute; top:18px; left:24px; z-index:2;
  background:rgba(255,255,255,0.18); border:1px solid rgba(255,255,255,0.45);
  color:#ffffff; font-size:11px; font-weight:700; letter-spacing:2px;
  text-transform:uppercase; padding:5px 14px; border-radius:20px;
}

/* PHOTO ROW */
.profile-photo-row {
  display:flex; align-items:flex-end; gap:20px;
  padding:0 36px; margin-top:-60px; position:relative; z-index:2;
}
.profile-photo-wrap {
  width:130px; height:130px; border-radius:50%; flex-shrink:0;
  border:4px solid #fff; overflow:hidden;
  box-shadow:0 8px 30px rgba(0,0,0,0.3);
  background:linear-gradient(135deg,#1a7a8a,#0d4f5c);
}
.profile-photo-wrap img { width:100%; height:100%; object-fit:cover; object-position:center top; }
.profile-name-area { padding-bottom:10px; }
.profile-name-area h2 {
  font-family:'Playfair Display',serif; font-size:clamp(22px,3.5vw,30px);
  color:#0d4f5c; line-height:1.2; margin:0 0 4px;
}
.profile-name-area .profile-tagline {
  font-size:14px; color:#0e7490; font-weight:600;
}

/* INFO STRIP */
.profile-info-strip {
  display:flex; flex-wrap:wrap; gap:10px 24px;
  padding:14px 36px 18px; border-bottom:1px solid #b2ebf2;
}
.profile-info-item {
  display:flex; align-items:center; gap:7px;
  font-size:13px; color:#4a5568;
}
.profile-info-item svg { flex-shrink:0; }

/* MAIN LAYOUT: sidebar + content */
.profile-layout {
  display:grid; grid-template-columns:230px 1fr; gap:0;
}
.profile-sidebar {
  background:#0d4f5c; padding:28px 22px; border-radius:0 0 0 24px;
}
.profile-sidebar-title {
  font-size:10px; font-weight:700; letter-spacing:2px; text-transform:uppercase;
  color:rgba(255,255,255,0.4); margin-bottom:12px; margin-top:24px;
}
.profile-sidebar-title:first-child { margin-top:0; }
.profile-qual-card {
  background:rgba(255,255,255,0.08); border-radius:10px;
  padding:12px 14px; margin-bottom:10px; border-left:3px solid #67e8f9;
}
.profile-qual-card .deg { font-size:14px; font-weight:700; color:#fff; margin-bottom:2px; }
.profile-qual-card .inst { font-size:12px; color:rgba(255,255,255,0.55); line-height:1.4; }

.profile-stat-mini {
  display:flex; align-items:center; gap:12px;
  background:rgba(255,255,255,0.08); border-radius:10px;
  padding:12px 14px; margin-bottom:10px;
}
.profile-stat-mini .num { font-size:22px; font-weight:800; color:#67e8f9; line-height:1; }
.profile-stat-mini .lbl { font-size:12px; color:rgba(255,255,255,0.6); margin-top:2px; }

/* CONTENT AREA */
.profile-content { padding:28px 32px; }
.profile-section { margin-bottom:28px; }
.profile-section-title {
  font-family:'Playfair Display',serif; font-size:17px; color:#0d4f5c;
  margin-bottom:14px; padding-bottom:10px;
  border-bottom:2px solid #b2ebf2; display:flex; align-items:center; gap:8px;
}
.profile-section-icon { font-size:18px; }

.profile-desc { color:#4a5568; font-size:14px; line-height:1.85; margin-bottom:10px; }

.profile-expertise-list { display:flex; flex-wrap:wrap; gap:8px; }
.profile-exp-tag {
  background:#edf2f7; border:1px solid #cbd5e0; color:#2d3748;
  padding:6px 14px; border-radius:20px; font-size:12.5px; font-weight:500;
  transition:0.2s;
}
.profile-exp-tag:hover { background:#0e7490; color:#fff; border-color:#0e7490; }

/* BOOK BUTTON */
.profile-book-section {
  background:linear-gradient(135deg,#0d4f5c,#0e7490);
  padding:28px 32px; border-radius:0 0 24px 24px; text-align:center;
}
.profile-book-btn {
  display:inline-flex; align-items:center; gap:10px;
  background:#67e8f9; color:#0d4f5c;
  padding:14px 34px; border-radius:30px; text-decoration:none;
  font-weight:700; font-size:15px;
  transition:0.25s; box-shadow:0 6px 20px rgba(0,180,216,0.4);
}
.profile-book-btn:hover { background:#6ee7b7; transform:translateY(-2px); box-shadow:0 10px 28px rgba(0,180,216,0.5); }

/* Doctor Profile Link (clickable name) */
.dr-profile-link {
  cursor:pointer; color:inherit; border-bottom:1.5px dashed var(--cyan);
  transition:color 0.2s, border-color 0.2s;
  text-decoration:none; display:inline;
}
.dr-profile-link:hover { color:var(--cyan); border-bottom-color:var(--cyan); }

@media(max-width:640px){
  .profile-layout { grid-template-columns:1fr; }
  .profile-sidebar { border-radius:0; }
  .profile-photo-row { padding:0 20px; flex-direction:column; align-items:flex-start; margin-top:-50px; }
  .profile-photo-wrap { width:100px; height:100px; }
  .profile-info-strip { padding:12px 20px; }
  .profile-content { padding:20px; }
  .profile-book-section { border-radius:0 0 24px 24px; padding:22px 20px; }
  .profile-cover-badge { font-size:9px; }
}

/* ===== NAV ===== */
nav {
  position:fixed; top:0; width:100%; z-index:1000;
  background:rgba(10,22,40,0.92); backdrop-filter:blur(14px);
  height:68px; display:flex; align-items:center;
  justify-content:space-between; padding:0 5%;
  border-bottom:1px solid rgba(0,180,216,0.2);
}
.logo-area { display:flex; align-items:center; gap:12px; }
.logo-img {
  height:48px; width:48px; border-radius:50%;
  border:2px solid var(--cyan); object-fit:cover;
  background:rgba(0,180,216,0.1);
  display:flex; align-items:center; justify-content:center;
  font-family:'Playfair Display',serif; color:var(--cyan);
  font-size:20px; font-weight:700; overflow:hidden; flex-shrink:0;
}
.logo-text .brand {
  font-family:'Playfair Display',serif; font-size:17px;
  font-weight:700; color:var(--white); line-height:1.1;
}
.logo-text .tagline { font-size:10px; color:var(--cyan); letter-spacing:1.5px; text-transform:uppercase; }
.nav-links { display:flex; gap:28px; list-style:none; }
.nav-links a { color:rgba(255,255,255,0.8); text-decoration:none; font-size:14px; font-weight:500; transition:color 0.2s; }
.nav-links a:hover { color:var(--cyan); }
.nav-cta {
  background:var(--cyan); color:var(--navy); padding:9px 22px;
  border-radius:25px; text-decoration:none; font-size:13px; font-weight:700;
  transition:0.2s; letter-spacing:0.3px;
}
.nav-cta:hover { background:#00d4f8; }

/* ===== HERO SLIDER ===== */
.hero { position:relative; width:100%; height:100vh; overflow:hidden; }
.slides { display:flex; width:300%; height:100%; transition:transform 1.4s cubic-bezier(0.77,0,0.175,1); }
.slide {
  width:33.333%; height:100%; position:relative;
  background-size:cover; background-position:center; flex-shrink:0;
}
.slide::before {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to right, rgba(10,22,40,0.72) 0%, rgba(10,22,40,0.45) 60%, rgba(10,22,40,0.25) 100%);
}
.slide-content {
  position:absolute; top:50%; left:50%; transform:translate(-50%,-50%);
  text-align:center; width:90%; max-width:780px; z-index:2;
}
.slide-badge {
  display:inline-block; border:1px solid rgba(0,180,216,0.6);
  background:rgba(0,180,216,0.12); color:#7ee8fa;
  padding:6px 20px; border-radius:20px; font-size:12px;
  letter-spacing:2px; text-transform:uppercase; margin-bottom:20px;
}
.slide-content h1 {
  font-family:'Playfair Display',serif;
  font-size:clamp(36px,6vw,68px);
  color:var(--white); line-height:1.15; margin-bottom:10px;
}
.slide-content h1 span { color:var(--cyan); font-style:italic; }
.slide-content .sub {
  font-size:clamp(16px,2vw,22px); color:rgba(255,255,255,0.75);
  font-style:italic; margin-bottom:16px; font-weight:300;
}
.slide-content .desc {
  font-size:15px; color:rgba(255,255,255,0.65);
  max-width:560px; margin:0 auto 32px; line-height:1.7;
}
.btn-appt {
  display:inline-flex; align-items:center; gap:8px;
  background:#67e8f9; color:#0d4f5c;
  padding:14px 34px; border-radius:30px; text-decoration:none;
  font-weight:700; font-size:15px; transition:0.25s;
  box-shadow:0 4px 20px rgba(0,180,216,0.4);
}
.btn-appt:hover { background:#00d4f8; transform:translateY(-2px); box-shadow:0 8px 28px rgba(0,180,216,0.5); }

/* SLIDER CONTROLS */
.slider-btn {
  position:absolute; top:50%; transform:translateY(-50%);
  width:48px; height:48px; border-radius:50%;
  background:rgba(255,255,255,0.15); border:1px solid rgba(255,255,255,0.3);
  color:var(--white); font-size:20px; cursor:pointer;
  display:flex; align-items:center; justify-content:center;
  transition:0.2s; z-index:10; backdrop-filter:blur(4px);
}
.slider-btn:hover { background:rgba(0,180,216,0.4); border-color:var(--cyan); }
.slider-btn.prev { left:20px; }
.slider-btn.next { right:20px; }
@media(max-width:900px){
  .slider-btn { width:32px; height:32px; font-size:14px; top:auto; bottom:60px; transform:none; }
  .slider-btn.prev { left:12px; }
  .slider-btn.next { right:12px; }
}
.slider-dots { position:absolute; bottom:28px; left:50%; transform:translateX(-50%); display:flex; gap:10px; z-index:10; }
.dot { width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,0.4); cursor:pointer; transition:0.3s; border:none; }
.dot.active { background:var(--cyan); transform:scale(1.2); }

/* ===== SECTIONS ===== */
section { padding:90px 5%; }
.section-label { font-size:12px; letter-spacing:3px; text-transform:uppercase; color:var(--cyan); font-weight:600; margin-bottom:10px; }
.section-title { font-family:'Playfair Display',serif; font-size:clamp(28px,4vw,42px); color:var(--navy); margin-bottom:16px; line-height:1.2; }
.section-line { width:55px; height:3px; background:var(--cyan); margin-bottom:30px; border-radius:2px; }
.section-line.center { margin:0 auto 40px; }

/* ===== CONDITIONS WE TREAT ===== */
/* ===== CONDITIONS WE TREAT ===== */
#conditions {
  background: linear-gradient(135deg, #f0fbff 0%, #e0f7fa 100%);
  padding: 80px 5%;
}
#conditions .section-label { color: #0e7490; }
#conditions .section-title { color: #0d4f5c; }
#conditions .section-line { background: linear-gradient(90deg, #0e7490, #67e8f9); }

.conditions-intro {
  text-align: center;
  color: #374151;
  font-size: 16px;
  max-width: 700px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

/* 3 featured image cards */
.cond-featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}
.cond-feat-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 30px rgba(6,78,59,0.12);
  background: #fff;
  text-decoration: none;
  display: block;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  cursor: pointer;
}
.cond-feat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(6,78,59,0.2);
}
.cond-feat-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.cond-feat-img-placeholder {
  width: 100%;
  height: 220px;
  background: linear-gradient(135deg, #0d4f5c, #0e7490);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.cond-feat-img-placeholder span.ph-icon { font-size: 52px; }
.cond-feat-img-placeholder span.ph-label {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.cond-feat-body {
  padding: 22px 22px 24px;
  border-top: 3px solid #0e7490;
}
.cond-feat-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  color: #0d4f5c;
  margin: 0 0 10px;
  line-height: 1.3;
}
.cond-feat-body p {
  color: #6b7280;
  font-size: 13.5px;
  line-height: 1.7;
  margin: 0 0 14px;
}
.cond-feat-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: #0e7490; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.cond-feat-link svg { transition: transform 0.2s; }
.cond-feat-card:hover .cond-feat-link svg { transform: translateX(4px); }

/* See More button */
.cond-see-more-wrap {
  text-align: center;
  margin-top: 44px;
}
.cond-see-more-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #0d4f5c, #0e7490);
  color: #fff;
  border: none;
  padding: 15px 38px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 6px 20px rgba(6,78,59,0.25);
  letter-spacing: 0.3px;
}
.cond-see-more-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(6,78,59,0.35);
}
.cond-see-more-btn svg { transition: transform 0.2s; }
.cond-see-more-btn:hover svg { transform: translateY(3px); }

/* All Conditions Modal */
#allCondsModal {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(5,20,15,0.88);
  backdrop-filter: blur(10px);
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 40px 16px;
}
#allCondsModal.open { display: flex; }
.all-conds-box {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 1100px;
  padding: 44px 40px;
  position: relative;
  animation: fadeSlideUp 0.35s ease;
}
@keyframes fadeSlideUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}
.all-conds-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px; border-radius: 50%;
  background: #f0fbff; border: 1.5px solid #b2ebf2;
  color: #0d4f5c; font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.all-conds-close:hover { background: #b2ebf2; }
.all-conds-title {
  font-family: 'Playfair Display', serif;
  font-size: 26px; color: #0d4f5c;
  margin: 0 0 8px; text-align: center;
}
.all-conds-sub {
  text-align: center; color: #6b7280; font-size: 14px; margin: 0 0 32px;
}
.all-conds-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ac-card {
  background: #f8fffe;
  border: 1.5px solid #b2ebf2;
  border-radius: 12px;
  padding: 18px 16px;
  text-decoration: none;
  display: block;
  transition: all 0.2s;
  border-top: 3px solid #0e7490;
}
.ac-card:hover { background: #f0fbff; transform: translateY(-3px); box-shadow: 0 6px 20px rgba(6,78,59,0.1); }
.ac-card-icon { font-size: 24px; margin-bottom: 8px; }
.ac-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 13.5px; color: #0d4f5c;
  margin: 0 0 6px; line-height: 1.35;
}
.ac-card p { color: #9ca3af; font-size: 11.5px; line-height: 1.6; margin: 0; }

@media(max-width:960px){ .cond-featured-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:580px){ .cond-featured-grid { grid-template-columns: 1fr; } }
@media(max-width:860px){ .all-conds-grid { grid-template-columns: repeat(3,1fr); } }
@media(max-width:600px){ .all-conds-grid { grid-template-columns: repeat(2,1fr); } .all-conds-box { padding: 32px 20px; } }
@media(max-width:380px){ .all-conds-grid { grid-template-columns: 1fr; } }

/* ===== ABOUT ===== */
#about { background:var(--off-white); }
.about-intro { color:var(--gray); font-size:16px; line-height:1.85; max-width:750px; margin-bottom:16px; }
.about-cards { display:grid; grid-template-columns:1fr 1fr; gap:24px; margin:36px 0; }
.about-card {
  background:var(--white); padding:32px; border-radius:10px;
  border-top:3px solid var(--cyan); box-shadow:0 2px 16px rgba(0,0,0,0.06);
}
.about-card h3 { font-family:'Playfair Display',serif; font-size:21px; color:var(--navy); margin-bottom:12px; }
.about-card p { color:var(--gray); line-height:1.8; font-size:15px; }
.dr-box {
  display:flex; align-items:center; gap:16px;
  background:linear-gradient(135deg,var(--navy),#1a7a8a);
  padding:22px 28px; border-radius:10px; margin:30px 0;
}
.dr-icon { width:56px; height:56px; border-radius:50%; background:var(--cyan); display:flex; align-items:center; justify-content:center; font-size:24px; flex-shrink:0; }
.dr-box .name { font-family:'Playfair Display',serif; font-size:18px; color:var(--white); }
.dr-box .title { font-size:13px; color:rgba(255,255,255,0.6); margin-top:3px; }
.offer-grid { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-top:20px; }
.offer-item { display:flex; align-items:flex-start; gap:10px; font-size:15px; color:var(--gray); line-height:1.5; }
.offer-item::before { content:'✦'; color:var(--cyan); font-size:10px; margin-top:5px; flex-shrink:0; }
.care-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:0;
  background:linear-gradient(135deg,#0d4f5c,#0e7490);
  border-radius:10px; overflow:hidden; margin-top:36px;
}
.care-box { padding:36px; border-right:1px solid rgba(255,255,255,0.1); }
.care-box:last-child { border-right:none; }
.care-box h3 { font-family:'Playfair Display',serif; font-size:20px; color:#7ee8fa; margin-bottom:12px; }
.care-box p { color:rgba(255,255,255,0.75); font-size:14px; line-height:1.8; }

/* ===== SERVICES ===== */
#services { background:var(--white); overflow:hidden; }
.svc-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; margin-top:44px; max-width:1100px; margin-left:auto; margin-right:auto; }
.svc-card { position:relative; border-radius:16px; overflow:hidden; aspect-ratio:4/3; cursor:pointer; text-decoration:none; display:block; box-shadow:0 8px 32px rgba(0,0,0,0.18); transition:transform 0.35s ease, box-shadow 0.35s ease; }
.svc-card:hover { transform:translateY(-6px) scale(1.02); box-shadow:0 16px 48px rgba(0,0,0,0.3); }
.svc-card img { width:100%; height:100%; object-fit:cover; display:block; transition:transform 0.5s ease; }
.svc-card:hover img { transform:scale(1.06); }
.svc-card-overlay { position:absolute; bottom:0; left:0; right:0; background:linear-gradient(to top, rgba(0,31,63,0.95) 0%, rgba(0,31,63,0.55) 60%, transparent 100%); padding:28px 24px 22px; transition:padding 0.3s; }
.svc-card:hover .svc-card-overlay { padding-bottom:26px; }
.svc-card-num { font-size:11px; font-weight:700; letter-spacing:2px; color:var(--cyan); text-transform:uppercase; margin-bottom:6px; }
.svc-card-title { font-family:'Playfair Display',serif; font-size:21px; color:#fff; margin:0 0 8px; line-height:1.25; }
.svc-card-desc { font-size:13px; color:rgba(255,255,255,0.82); margin:0 0 12px; line-height:1.55; }
.svc-card-btn { display:inline-block; font-size:12px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--cyan); border:1.5px solid var(--cyan); padding:6px 16px; border-radius:20px; transition:background 0.25s, color 0.25s; }
.svc-card:hover .svc-card-btn { background:var(--cyan); color:var(--navy); }
@media (max-width:700px) {
  .svc-grid { grid-template-columns:1fr; gap:18px; }
  .svc-card { aspect-ratio:16/10; }
  .svc-card-title { font-size:18px; }
  .svc-card-overlay { padding:20px 18px 16px; }
}

/* ===== GALLERY ===== */
#gallery { background:var(--navy); }
#gallery .section-title { color:var(--white); }
.gallery-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; margin-top:44px; }
.g-item {
  border-radius:8px; overflow:hidden; aspect-ratio:1;
  background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.08);
  display:flex; align-items:center; justify-content:center;
  cursor:pointer; transition:0.3s;
}
.g-item:hover { border-color:var(--cyan); transform:scale(1.03); }
.g-item img { width:100%; height:100%; object-fit:cover; }
.g-placeholder { text-align:center; color:rgba(255,255,255,0.3); font-size:12px; }
.g-placeholder .pi { font-size:30px; margin-bottom:6px; }
.gallery-upload-btn {
  display:block; margin:26px auto 0; background:transparent;
  border:2px solid var(--cyan); color:var(--cyan);
  padding:11px 26px; border-radius:25px; font-size:14px;
  font-weight:600; cursor:pointer; transition:0.2s;
  font-family:'DM Sans',sans-serif;
}
.gallery-upload-btn:hover { background:var(--cyan); color:var(--navy); }

/* ===== BLOG ===== */
.blog-card {
  background:#fff; border-radius:18px;
  box-shadow:0 4px 22px rgba(0,0,0,0.08);
  overflow:hidden; transition:transform 0.25s, box-shadow 0.25s;
  display:flex; flex-direction:column;
}
.blog-card:hover { transform:translateY(-6px); box-shadow:0 14px 36px rgba(0,0,0,0.13); }
.blog-card-img {
  height:190px; overflow:hidden; position:relative;
  background:linear-gradient(135deg,#0d4f5c,#0e7490);
  display:flex; align-items:center; justify-content:center;
}
.blog-card-img img { width:100%; height:100%; object-fit:cover; transition:transform 0.4s; }
.blog-card:hover .blog-card-img img { transform:scale(1.05); }
.blog-card-cat {
  position:absolute; top:12px; left:12px;
  background:rgba(6,182,212,0.9); color:#fff;
  font-size:10px; font-weight:700; padding:4px 11px;
  border-radius:20px; letter-spacing:0.8px; text-transform:uppercase;
  backdrop-filter:blur(4px);
}
.blog-card-emoji { font-size:52px; }
.blog-card-body { padding:20px 22px; flex:1; display:flex; flex-direction:column; }
.blog-card-date { font-size:11px; color:#9ca3af; margin-bottom:8px; }
.blog-card-title { font-family:'Playfair Display',serif; font-size:17px; color:#0d4f5c; font-weight:700; margin:0 0 10px; line-height:1.4; }
.blog-card-preview { font-size:13px; color:#6b7280; line-height:1.75; flex:1; display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
.blog-read-btn {
  margin-top:16px; display:inline-flex; align-items:center; gap:6px;
  background:linear-gradient(135deg,#0d4f5c,#0e7490); color:#fff;
  border:none; padding:9px 20px; border-radius:20px; font-size:12px;
  font-weight:700; cursor:pointer; font-family:'DM Sans',sans-serif;
  transition:transform 0.2s; align-self:flex-start;
}
.blog-read-btn:hover { transform:translateY(-2px); }
@media(max-width:900px){ #blogGrid{ grid-template-columns:1fr 1fr !important; } }
@media(max-width:550px){ #blogGrid{ grid-template-columns:1fr !important; } }

/* ===== REVIEWS ===== */
/* ── Reviews Section ── */
#reviews { background:linear-gradient(135deg,#f8faff 0%,#eef4ff 100%); }

/* Google Badge Bar */
.grev-bar {
  display:flex; align-items:center; justify-content:center; gap:18px;
  background:#fff; border-radius:16px; padding:18px 28px;
  box-shadow:0 4px 24px rgba(0,0,0,0.08); margin-bottom:40px;
  flex-wrap:wrap;
}
.grev-logo { display:flex; align-items:center; gap:10px; }
.grev-logo svg { width:90px; height:30px; }
.grev-score { text-align:center; }
.grev-score .gscore-num { font-size:38px; font-weight:800; color:#202124; line-height:1; }
.grev-score .gstars { color:#fbbc04; font-size:22px; letter-spacing:2px; }
.grev-score .gtotal { font-size:12px; color:#70757a; margin-top:2px; }
.grev-divider { width:1px; height:50px; background:#e0e0e0; }
.grev-cta a {
  display:inline-flex; align-items:center; gap:8px;
  background:#0e7490; color:#fff; font-weight:600; font-size:14px;
  padding:11px 22px; border-radius:8px; text-decoration:none;
  transition:background 0.2s, transform 0.15s; box-shadow:0 2px 8px rgba(66,133,244,0.35);
}
.grev-cta a:hover { background:#0a6175; transform:translateY(-1px); }
.grev-cta small { display:block; text-align:center; color:#70757a; font-size:11px; margin-top:6px; }
.grev-cta .text-link { display:block !important; background:none !important; color:#0e7490 !important; font-weight:500 !important; font-size:13px !important; padding:0 !important; box-shadow:none !important; text-decoration:underline !important; text-align:center; margin-top:8px; }

/* Slider */
.rv-slider-wrap { position:relative; overflow:hidden; margin-bottom:32px; }
.rv-track {
  display:flex; gap:22px;
  transition:transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change:transform;
}
.review-card {
  background:#fff; padding:26px 28px; border-radius:14px;
  box-shadow:0 4px 20px rgba(0,0,0,0.07);
  min-width:340px; max-width:340px; flex-shrink:0;
  border-top:3px solid #0e7490;
  position:relative;
}
.review-card.google-rv { border-top-color:#0e7490; }
.rv-source-badge {
  position:absolute; top:14px; right:14px;
  background:#f1f3f4; border-radius:6px; padding:3px 8px;
  font-size:10px; font-weight:700; color:#5f6368; letter-spacing:0.4px;
  display:flex; align-items:center; gap:4px;
}
.rv-source-badge.google { background:#e8f0fe; color:#0e7490; }
.rv-header { display:flex; align-items:center; gap:12px; margin-bottom:14px; }
.rv-avatar {
  width:48px; height:48px; border-radius:50%; flex-shrink:0;
  background:linear-gradient(135deg,#0e7490,#0d4f5c);
  display:flex; align-items:center; justify-content:center;
  color:#fff; font-family:'Playfair Display',serif;
  font-size:20px; font-weight:700; overflow:hidden;
}
.rv-avatar img { width:100%; height:100%; object-fit:cover; }
.rv-name { font-weight:700; font-size:15px; color:#202124; }
.rv-stars { color:#fbbc04; font-size:14px; margin-top:3px; }
.rv-text { font-size:14px; color:#5f6368; line-height:1.75; }
.rv-date { font-size:11px; color:#aaa; margin-top:10px; display:flex; align-items:center; gap:5px; }

/* Slider Controls */
.rv-controls {
  display:flex; align-items:center; justify-content:center; gap:16px; margin-bottom:28px;
}
.rv-btn {
  width:40px; height:40px; border-radius:50%; border:2px solid #d0d8f0;
  background:#fff; cursor:pointer; font-size:16px; color:#0e7490;
  display:flex; align-items:center; justify-content:center;
  transition:all 0.2s; box-shadow:0 2px 8px rgba(0,0,0,0.08);
}
.rv-btn:hover { background:#0e7490; color:#fff; border-color:#0e7490; }
.rv-dots { display:flex; gap:7px; }
.rv-dot {
  width:8px; height:8px; border-radius:50%;
  background:#d0d8f0; cursor:pointer; transition:all 0.3s;
}
.rv-dot.active { background:#0e7490; width:22px; border-radius:4px; }

.rv-name { font-weight:600; font-size:15px; color:var(--navy); }
.rv-stars { color:#f5a623; font-size:13px; margin-top:2px; }
.rv-text { font-size:14px; color:var(--gray); line-height:1.7; }
.rv-date { font-size:12px; color:#aaa; margin-top:8px; }
.rv-img { margin-top:10px; border-radius:6px; overflow:hidden; max-height:130px; }
.rv-img img { width:100%; object-fit:cover; }

/* Forms */
.form-box { background:var(--white); padding:30px; border-radius:10px; box-shadow:0 4px 18px rgba(0,0,0,0.08); margin-top:24px; display:none; }
.form-box.open { display:block; }
.form-title { font-family:'Playfair Display',serif; font-size:20px; color:var(--navy); margin-bottom:20px; }
.fg { margin-bottom:16px; }
.fg label { display:block; font-size:12px; font-weight:600; color:var(--navy); margin-bottom:5px; letter-spacing:0.3px; text-transform:uppercase; }
.fg input,.fg textarea,.fg select {
  width:100%; padding:11px 14px; border:1.5px solid var(--light-gray);
  border-radius:6px; font-size:14px; font-family:'DM Sans',sans-serif;
  color:var(--navy); transition:0.2s;
}
.fg input:focus,.fg textarea:focus,.fg select:focus { outline:none; border-color:var(--cyan); }
.fg textarea { resize:vertical; min-height:95px; }
.frow { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
.upload-area {
  border:2px dashed var(--light-gray); border-radius:6px;
  padding:18px; text-align:center; cursor:pointer; transition:0.2s;
}
.upload-area:hover { border-color:var(--cyan); }
.upload-area input { display:none; }
.upload-area p { font-size:13px; color:var(--gray); }
.file-prev { display:flex; gap:8px; flex-wrap:wrap; margin-top:8px; }
.file-prev img { width:65px; height:65px; object-fit:cover; border-radius:4px; }
.btn-sub {
  background:var(--navy); color:var(--white); padding:12px 26px;
  border:none; border-radius:25px; font-size:14px; font-weight:600;
  cursor:pointer; font-family:'DM Sans',sans-serif; transition:0.2s;
}
.btn-sub:hover { background:var(--blue); }
.btn-tog {
  padding:9px 20px; border-radius:25px; font-size:13px; font-weight:600;
  cursor:pointer; transition:0.2s; font-family:'DM Sans',sans-serif;
  border:2px solid var(--navy); background:transparent; color:var(--navy);
}
.btn-tog:hover { background:var(--navy); color:var(--white); }
.btn-tog.c { border-color:var(--cyan); color:var(--cyan); }
.btn-tog.c:hover { background:var(--cyan); color:var(--navy); }
.ok-msg { background:rgba(34,197,94,0.1); border:1px solid rgba(34,197,94,0.3); color:#16a34a; padding:11px 16px; border-radius:6px; font-size:13px; margin-top:12px; display:none; }
.ok-msg.show { display:block; }

/* ===== PRIVACY — DARK REDESIGN ===== */
#privacy {
  background: #0d4f5c;
  position: relative; overflow: hidden;
}
#privacy::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent, var(--cyan), var(--blue), transparent);
  pointer-events: none;
}
#privacy .section-title { color: var(--white); }
.priv-content { max-width: 980px; position: relative; z-index: 1; }
.priv-intro-badge {
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(0,180,216,0.12); border:1px solid rgba(0,180,216,0.3);
  color:var(--cyan); padding:4px 14px; border-radius:20px;
  font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; margin-bottom:16px;
}
.priv-intro-badge::before { content:''; width:5px; height:5px; background:var(--cyan); border-radius:50%; }
.priv-intro-box {
  background: linear-gradient(135deg, rgba(0,180,216,0.07), rgba(30,111,168,0.1));
  border: 1px solid rgba(0,180,216,0.18); border-radius: 20px;
  padding: 34px 38px; margin-bottom: 40px; position: relative; overflow: hidden;
}
.priv-intro-box p { color: rgba(255,255,255,0.72); font-size: 15px; line-height: 1.9; margin-bottom: 10px; }
.priv-intro-box p:last-child { margin-bottom: 0; }
.priv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.priv-sec {
  background: rgba(255,255,255,0.03); border-radius: 14px; padding: 24px 26px;
  border: 1px solid rgba(255,255,255,0.07);
  position: relative; overflow: hidden;
  transition: transform 0.25s, border-color 0.25s, background 0.25s;
}
.priv-sec:hover { transform: translateY(-4px); border-color: rgba(0,180,216,0.28); background: rgba(0,180,216,0.04); }
.priv-sec::before { content:''; position:absolute; top:0; left:0; width:100%; height:2px; background:linear-gradient(90deg,var(--cyan),var(--blue)); opacity:0; transition:opacity 0.25s; }
.priv-sec:hover::before { opacity:1; }
.priv-sec-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(0,180,216,0.12), rgba(30,111,168,0.12));
  border: 1px solid rgba(0,180,216,0.18);
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  font-size: 19px; margin-bottom: 13px;
}
.priv-sec h3 { font-family:'Playfair Display',serif; font-size:16px; color:var(--white); margin-bottom:9px; line-height:1.35; }
.priv-sec p, .priv-sec li { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.85; }
.priv-sec ul { padding-left: 0; margin-top: 8px; list-style: none; }
.priv-sec ul li { margin-bottom: 5px; padding-left: 16px; position: relative; }
.priv-sec ul li::before { content:'›'; position:absolute; left:0; color:var(--cyan); font-weight:700; font-size:16px; line-height:1.5; }
.priv-sec-wide { grid-column: 1 / -1; }
.priv-highlight {
  background: rgba(0,180,216,0.05); border: 1px solid rgba(0,180,216,0.14);
  border-radius: 10px; padding: 14px 16px; margin-top: 11px;
}
.priv-highlight strong { color:var(--cyan); font-size:10px; letter-spacing:1px; text-transform:uppercase; display:block; margin-bottom:7px; }
.priv-no-sell {
  display:inline-flex; align-items:center; gap:7px;
  background:rgba(0,180,216,0.08); border:1px solid rgba(0,180,216,0.22);
  border-radius:30px; padding:6px 15px; margin-top:11px;
  font-size:13px; font-weight:600; color:var(--cyan);
}
@media(max-width:700px) {
  .priv-grid { grid-template-columns: 1fr; }
  .priv-sec-wide { grid-column: auto; }
  .priv-intro-box { padding: 22px 18px; }
}

/* ===== CONTACT ===== */
#contact { background:var(--navy); }
#contact .section-title { color:var(--white); }
.contact-intro { color:rgba(255,255,255,0.65); font-size:15px; line-height:1.8; max-width:620px; margin-bottom:46px; }
.contact-grid { display:grid; grid-template-columns:1fr 1.4fr; gap:46px; align-items:start; }
.cinfo-block { margin-bottom:24px; }
.cinfo-block h4 { font-size:11px; letter-spacing:2.5px; text-transform:uppercase; color:var(--cyan); margin-bottom:8px; }
.cinfo-block p { color:rgba(255,255,255,0.7); font-size:15px; line-height:1.7; }
.timings-box { background:rgba(255,255,255,0.05); border:1px solid rgba(255,255,255,0.1); border-radius:8px; padding:18px; margin-top:18px; }
.timings-box h4 { color:#7ee8fa; font-size:13px; margin-bottom:10px; }
.timings-box p { color:rgba(255,255,255,0.6); font-size:14px; line-height:1.8; }
.appt-btns { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin:22px 0; }
.appt-card { background:rgba(255,255,255,0.05); border:1px solid rgba(0,180,216,0.25); border-radius:8px; padding:16px; text-align:center; }
.appt-card .ai { font-size:26px; margin-bottom:6px; }
.appt-card h5 { color:#7ee8fa; font-size:13px; margin-bottom:5px; }
.appt-card p { color:rgba(255,255,255,0.55); font-size:12px; }
.why-list { list-style:none; display:flex; flex-direction:column; gap:7px; margin-top:14px; }
.why-list li { color:rgba(255,255,255,0.65); font-size:14px; display:flex; align-items:center; gap:9px; }
.why-list li::before { content:'✓'; color:var(--cyan); font-weight:700; }
.cform { background:rgba(255,255,255,0.04); border:1px solid rgba(255,255,255,0.08); border-radius:10px; padding:32px; }
.cform .form-title { color:var(--white); margin-bottom:22px; }
.cform .fg label { color:rgba(255,255,255,0.75); }
.cform .fg input,.cform .fg textarea,.cform .fg select { background:rgba(255,255,255,0.07); border-color:rgba(255,255,255,0.12); color:var(--white); }
.cform .fg input::placeholder,.cform .fg textarea::placeholder { color:rgba(255,255,255,0.3); }
.cform .fg input:focus,.cform .fg textarea:focus { border-color:var(--cyan); }
.cbtn { background:var(--cyan); color:var(--navy); padding:13px 28px; border:none; border-radius:25px; font-size:14px; font-weight:700; cursor:pointer; font-family:'DM Sans',sans-serif; transition:0.2s; width:100%; margin-top:4px; }
.cbtn:hover { background:#00d4f8; }
.emerg { background:rgba(220,38,38,0.1); border:1px solid rgba(220,38,38,0.25); border-radius:8px; padding:14px 18px; margin-top:28px; color:rgba(255,255,255,0.75); font-size:13px; line-height:1.6; }
.emerg strong { color:#f87171; }

/* ===== FOOTER ===== */
footer { background:#0d4f5c; padding:36px 5%; text-align:center; border-top:1px solid rgba(0,180,216,0.15); }
footer p { color:rgba(255,255,255,0.35); font-size:13px; line-height:1.9; }
footer span { color:#7ee8fa; }

/* LIGHTBOX */
.lightbox { display:none; position:fixed; inset:0; background:rgba(0,0,0,0.92); z-index:9999; align-items:center; justify-content:center; }
.lightbox.open { display:flex; }
.lightbox img { max-width:90%; max-height:90vh; border-radius:6px; }
.lb-close { position:absolute; top:18px; right:22px; color:var(--white); font-size:30px; cursor:pointer; }

/* RESPONSIVE */
/* ===== HAMBURGER MENU ===== */
.hamburger {
  display:none; flex-direction:column; gap:5px; cursor:pointer;
  background:none; border:none; padding:6px;
}
.hamburger span {
  display:block; width:24px; height:2px; background:var(--white);
  border-radius:2px; transition:0.3s;
}
.hamburger.open span:nth-child(1){ transform:rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform:rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display:none; position:fixed; top:68px; left:0; right:0;
  background:rgba(10,22,40,0.98); backdrop-filter:blur(14px);
  z-index:999; flex-direction:column; padding:20px 5%;
  border-bottom:1px solid rgba(0,180,216,0.2);
}
.mobile-menu.open { display:flex; }
.mobile-menu a {
  color:rgba(255,255,255,0.85); text-decoration:none;
  padding:14px 0; font-size:15px; font-weight:500;
  border-bottom:1px solid rgba(255,255,255,0.07);
  transition:color 0.2s;
}
.mobile-menu a:hover { color:var(--cyan); }
.mobile-menu .mob-cta {
  margin-top:14px; background:var(--cyan); color:var(--navy);
  padding:12px 24px; border-radius:25px; text-align:center;
  font-weight:700; border:none; font-size:14px;
}

@media(max-width:900px){
  /* Grid layouts */
  .about-cards,.offer-grid,.services-grid,.reviews-grid,.contact-grid,.care-grid,.frow,.appt-btns{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  
  /* Nav */
  .nav-links,.nav-cta{display:none}
  .hamburger{display:flex}
  
  /* Sections padding */
  section { padding:50px 5%; }
  
  /* Hero */
  .slide-content h1 { font-size:clamp(26px,7vw,40px); }
  
  /* Profile modal */
  .profile-hero { flex-direction:column; align-items:flex-start; padding:30px 24px 24px; gap:20px; }
  .profile-photo-wrap { width:110px; height:110px; }
  .profile-qual-grid { grid-template-columns:1fr; }
  .profile-stats-row { grid-template-columns:repeat(3,1fr); gap:10px; }
  .profile-stat { padding:14px 10px; }
  .profile-stat .stat-num { font-size:24px; }
  .profile-body { padding:24px 20px; }
  .profile-hero-info h2 { font-size:clamp(22px,5vw,30px); }
  
  /* Showcase grid */
  #showcase > div:last-child { grid-template-columns:1fr !important; }
  #showcase > div:last-child img { height:220px !important; }
}

@media(max-width:480px){
  nav { padding:0 4%; height:60px; }
  .logo-text .brand { font-size:14px; }
  .logo-img { height:40px; width:40px; }
  
  .profile-stats-row { grid-template-columns:1fr; }
  .profile-badges { gap:6px; }
  .profile-badge { font-size:11px; padding:4px 10px; }
  
  .gallery-grid { grid-template-columns:1fr; }
  
  section { padding:40px 4%; }
  
  .section-title { font-size:clamp(22px,6vw,32px); }
  
  /* Contact form full width */
  .cform { padding:24px 16px; }
}
