/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --white: #ffffff;
  --light: #f4f7fb;
  --text: #3a3a4a;
  --text-light: #6b7280;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(10,22,40,0.10);
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

a { text-decoration: none; color: inherit; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: var(--navy);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo-icon { font-size: 1.6rem; color: var(--gold); }
.logo-name { display: block; font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); font-weight: 700; line-height: 1.1; }
.logo-sub { display: block; font-size: 0.7rem; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--gold); }
.nav-btn {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: var(--transition) !important;
}
.nav-btn:hover { background: var(--gold-light) !important; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 60%, #0d2444 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-overlay { position: absolute; inset: 0; background: rgba(10,22,40,0.15); }
.hero-content {
  position: relative; z-index: 2;
  max-width: 580px; margin: 0; padding: 130px 48px 60px;
  background: linear-gradient(to right, rgba(10,22,40,0.88) 0%, rgba(10,22,40,0.0) 100%);
}
.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  color: var(--white); line-height: 1.15; margin-bottom: 20px;
}
.hero-content h1 span { color: var(--gold); }
.hero-tag {
  display: inline-block;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  padding: 6px 18px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-sub { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 520px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 60px; }

.btn-primary {
  background: var(--gold); color: var(--navy);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 700; font-size: 0.95rem;
  transition: var(--transition); border: none; cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.35); }
.btn-primary.full-width { width: 100%; text-align: center; }

.btn-outline {
  border: 2px solid rgba(255,255,255,0.4); color: var(--white);
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  transition: var(--transition); display: inline-block;
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats { display: flex; align-items: center; gap: 32px; flex-wrap: wrap; padding-left: 4px; }
.stat strong { display: block; font-size: 1.8rem; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; }
.stat span { font-size: 0.8rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.2); }

/* ===== SECTION COMMON ===== */
.section-tag {
  display: inline-block; color: var(--gold);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--navy); margin-bottom: 16px; }
.section-header h2 span { color: var(--gold); }
.section-header.light h2 { color: var(--white); }
.section-desc { color: var(--text-light); max-width: 560px; margin: 0 auto; }

/* ===== ABOUT ===== */
.about { padding: 100px 0; background: var(--light); }
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-placeholder {
  width: 100%; aspect-ratio: 3/4; max-height: 480px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%);
  border-radius: 20px; display: flex; align-items: center; justify-content: center;
  font-size: 8rem; color: rgba(201,168,76,0.3);
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: var(--navy);
  padding: 14px 20px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 0.85rem;
  box-shadow: var(--shadow);
}
.about-text h2 { font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--navy); margin-bottom: 8px; }
.about-text h2 span { color: var(--gold); }
.about-role { color: var(--gold); font-weight: 600; font-size: 1rem; margin-bottom: 20px; letter-spacing: 1px; text-transform: uppercase; }
.about-text p { color: var(--text-light); margin-bottom: 16px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.highlight { display: flex; align-items: center; gap: 8px; font-weight: 500; font-size: 0.9rem; color: var(--navy); }
.highlight i { color: var(--gold); }

/* ===== SERVICES ===== */
.services { padding: 100px 0; background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--light); border-radius: var(--radius);
  padding: 36px 28px; transition: var(--transition);
  border: 1px solid transparent;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: var(--shadow); background: var(--white); }
.service-icon {
  width: 60px; height: 60px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), #1a3a6b);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--gold); margin-bottom: 20px;
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }

/* ===== WHY US ===== */
.why-us { padding: 100px 0; background: linear-gradient(135deg, var(--navy) 0%, #1a3a6b 100%); }
.why-us .section-tag { color: var(--gold-light); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.why-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 36px 24px; text-align: center;
  transition: var(--transition);
}
.why-card:hover { background: rgba(201,168,76,0.1); border-color: rgba(201,168,76,0.4); transform: translateY(-4px); }
.why-card i { font-size: 2.2rem; color: var(--gold); margin-bottom: 18px; display: block; }
.why-card h3 { color: var(--white); font-size: 1.05rem; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 0.88rem; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--light); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 56px; align-items: start; }
.info-item { display: flex; gap: 18px; margin-bottom: 32px; align-items: flex-start; }
.info-icon {
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.info-item h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); margin-bottom: 4px; }
.info-item p { color: var(--text-light); font-size: 0.95rem; line-height: 1.6; }
.info-item a { color: var(--text-light); transition: var(--transition); }
.info-item a:hover { color: var(--gold); }

.contact-form { background: var(--white); border-radius: 20px; padding: 40px; box-shadow: var(--shadow); }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 14px 18px; border-radius: 10px;
  border: 1.5px solid #e5e7eb; font-family: 'Inter', sans-serif;
  font-size: 0.95rem; color: var(--text); background: var(--light);
  margin-bottom: 16px; transition: var(--transition); outline: none;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); background: var(--white); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row input { margin-bottom: 0; }
.contact-form textarea { resize: vertical; }

/* ===== FOOTER ===== */
.footer { background: var(--navy); padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1.5fr; gap: 48px; padding-bottom: 48px; }
.footer-brand p { color: rgba(255,255,255,0.5); font-size: 0.9rem; margin-top: 16px; max-width: 280px; }
.footer-links h4, .footer-contact h4 { color: var(--gold); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 20px; }
.footer-links ul { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,0.55); font-size: 0.9rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-contact p { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin-bottom: 10px; display: flex; gap: 10px; align-items: flex-start; }
.footer-contact i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 20px 0; text-align: center; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.85rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 24px; gap: 20px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-placeholder { aspect-ratio: 16/9; max-height: 260px; }
  .about-badge { bottom: -16px; right: 16px; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .about-highlights { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-outline { text-align: center; }
}

/* ===== PRELOADER ===== */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; color: var(--white); }
.preloader-icon { font-size: 3rem; color: var(--gold); animation: pulse 1s infinite; display: block; margin-bottom: 16px; }
.preloader-inner p { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: rgba(255,255,255,0.7); letter-spacing: 2px; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity:1; } 50% { transform: scale(1.2); opacity:0.7; } }

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9998;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  width: 0%; transition: width 0.1s linear;
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy-mid);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 8px 0;
  position: fixed; top: 0; left: 0; right: 0; z-index: 999;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.topbar span { color: rgba(255,255,255,0.65); font-size: 0.78rem; display: flex; align-items: center; gap: 6px; }
.topbar i { color: var(--gold); }
.topbar a { color: var(--gold); font-weight: 600; }
.topbar .fa-shield-alt { color: #2ecc71; }

/* push navbar below topbar */
.navbar { top: 37px; }

/* ===== STATS SECTION ===== */
.stats-section { background: var(--white); padding: 70px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-box {
  text-align: center; padding: 36px 20px;
  border-radius: var(--radius);
  background: var(--light);
  border-bottom: 3px solid var(--gold);
  transition: var(--transition);
}
.stat-box:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.stat-box i { font-size: 2rem; color: var(--gold); margin-bottom: 12px; display: block; }
.stat-box strong { display: block; font-family: 'Playfair Display', serif; font-size: 2.4rem; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.stat-box span { font-size: 0.85rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: var(--light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px; box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); }
.stars { color: #f59e0b; margin-bottom: 16px; font-size: 0.9rem; }
.testimonial-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), #1a3a6b);
  color: var(--gold); font-weight: 700; font-size: 0.85rem;
  display: flex; align-items: center; justify-content: center;
}
.testimonial-author strong { display: block; color: var(--navy); font-size: 0.95rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--text-light); }

/* ===== FAQ ===== */
.faq { padding: 100px 0; background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid #e5e7eb; }
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; font-family: 'Inter', sans-serif;
  font-size: 1rem; font-weight: 600; color: var(--navy);
  text-align: left; transition: var(--transition);
}
.faq-question:hover { color: var(--gold); }
.faq-question i { transition: transform 0.3s ease; color: var(--gold); flex-shrink: 0; margin-left: 16px; }
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding: 0 0 20px; color: var(--text-light); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 200px; }

/* ===== MAP ===== */
.map-wrap { border-radius: var(--radius); overflow: hidden; margin-top: 24px; box-shadow: var(--shadow); }

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 900;
  background: #25d366; color: var(--white);
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px; border-radius: 50px;
  font-weight: 600; font-size: 0.9rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-btn i { font-size: 1.4rem; }
.whatsapp-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }

/* ===== CALL BUTTON (mobile only) ===== */
.call-btn {
  display: none;
  position: fixed; bottom: 28px; left: 28px; z-index: 900;
  background: var(--gold); color: var(--navy);
  width: 56px; height: 56px; border-radius: 50%;
  align-items: center; justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  transition: var(--transition);
}
.call-btn:hover { transform: scale(1.1); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 96px; right: 28px; z-index: 900;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--gold);
  border: 2px solid rgba(201,168,76,0.3);
  font-size: 1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--gold); color: var(--navy); }

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .topbar-inner { justify-content: center; }
  .topbar span:first-child { display: none; }
  .navbar { top: 33px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .whatsapp-btn span { display: none; }
  .whatsapp-btn { padding: 14px; border-radius: 50%; }
  .call-btn { display: flex; }
}
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
}

/* ===== REVIEW FORM ===== */
.review-form-wrap {
  max-width: 600px; margin: 56px auto 0;
  background: var(--white); border-radius: 20px;
  padding: 40px; box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  text-align: center;
}
.review-form-wrap h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--navy); margin-bottom: 6px; }
.review-form-wrap > p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 24px; }

.review-form { display: flex; flex-direction: column; gap: 14px; }
.review-form input[type="text"],
.review-form textarea {
  width: 100%; padding: 13px 18px; border-radius: 10px;
  border: 1.5px solid #e5e7eb; font-family: 'Inter', sans-serif;
  font-size: 0.95rem; color: var(--text); background: var(--light);
  outline: none; transition: var(--transition); resize: vertical;
}
.review-form input:focus, .review-form textarea:focus { border-color: var(--gold); background: var(--white); }

.star-rating { display: flex; align-items: center; gap: 12px; justify-content: center; }
.star-rating span { font-size: 0.9rem; color: var(--text-light); font-weight: 500; }
.stars-input { display: flex; gap: 6px; }
.stars-input i {
  font-size: 1.6rem; color: #d1d5db; cursor: pointer;
  transition: color 0.15s ease, transform 0.15s ease;
}
.stars-input i:hover, .stars-input i.active { color: #f59e0b; }
.stars-input i:hover { transform: scale(1.2); }

/* dynamic reviews */
.dynamic-reviews { margin-top: 36px; display: flex; flex-direction: column; gap: 20px; }
.dynamic-review-card {
  background: var(--white); border-radius: var(--radius);
  padding: 24px 28px; box-shadow: var(--shadow);
  border-left: 4px solid var(--gold);
  animation: slideIn 0.4s ease;
  text-align: left;
}
@keyframes slideIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
.dynamic-review-card .stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 8px; }
.dynamic-review-card p { color: var(--text-light); font-size: 0.95rem; font-style: italic; margin-bottom: 12px; }
.dynamic-review-card .reviewer { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.dynamic-review-card .review-date { font-size: 0.78rem; color: var(--text-light); margin-left: 8px; }

/* ===== DELETE REVIEW BUTTON ===== */
.dynamic-review-card { position: relative; }
.delete-review {
  position: absolute; top: 14px; right: 14px;
  background: none; border: none; cursor: pointer;
  color: #d1d5db; font-size: 0.85rem;
  transition: color 0.2s ease, transform 0.2s ease;
  padding: 4px;
}
.delete-review:hover { color: #e74c3c; transform: scale(1.2); }
.dynamic-review-card { transition: opacity 0.3s ease, transform 0.3s ease; }

/* ===== SOCIAL LINKS ===== */
.social-links { display: flex; gap: 10px; margin-top: 20px; }
.social-links a {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem; transition: var(--transition);
}
.social-links a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-2px); }
.social-links a svg { display: block; }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 9997;
  background: var(--navy-mid);
  border-top: 2px solid rgba(201,168,76,0.3);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner p { color: rgba(255,255,255,0.75); font-size: 0.88rem; flex: 1; }
.cookie-banner a { color: var(--gold); text-decoration: underline; }
.cookie-banner i { color: var(--gold); margin-right: 6px; }
.cookie-btns { display: flex; gap: 10px; }
.cookie-accept {
  background: var(--gold); color: var(--navy);
  border: none; padding: 8px 20px; border-radius: 50px;
  font-weight: 700; font-size: 0.85rem; cursor: pointer;
  transition: var(--transition);
}
.cookie-accept:hover { background: var(--gold-light); }
.cookie-decline {
  background: transparent; color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.2); padding: 8px 20px;
  border-radius: 50px; font-size: 0.85rem; cursor: pointer;
  transition: var(--transition);
}
.cookie-decline:hover { color: var(--white); border-color: rgba(255,255,255,0.5); }

/* ===== LANGUAGE TOGGLE ===== */
.lang-toggle {
  position: fixed; top: 80px; right: 16px; z-index: 998;
  background: var(--navy);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px; padding: 4px 10px;
  display: flex; align-items: center; gap: 6px;
  font-size: 0.75rem; color: rgba(255,255,255,0.4);
  box-shadow: var(--shadow);
}
.lang-btn {
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.45); font-size: 0.75rem;
  font-weight: 600; padding: 2px 4px; border-radius: 4px;
  transition: var(--transition);
}
.lang-btn.active { color: var(--gold); }
.lang-btn:hover { color: var(--gold-light); }

/* ===== CLINIC STATUS ===== */
.clinic-status { display: flex; align-items: center; gap: 6px; font-weight: 600; font-size: 0.78rem; }
.clinic-status .dot {
  width: 8px; height: 8px; border-radius: 50%;
  animation: blink 1.5s infinite;
}
.clinic-status.open-now .dot { background: #2ecc71; }
.clinic-status.closed-now .dot { background: #e74c3c; animation: none; }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

/* ===== KMPDC FOOTER ===== */
.footer-bottom { flex-direction: column; gap: 6px; }
.kmpdc { color: rgba(255,255,255,0.25) !important; font-size: 0.78rem !important; }
.kmpdc span { color: rgba(201,168,76,0.6); font-weight: 600; }
.kmpdc i { color: rgba(201,168,76,0.5); }

/* ===== FORM VALIDATION ===== */
.field-error {
  border-color: #e74c3c !important;
  background: #fff5f5 !important;
}
.error-msg {
  color: #e74c3c; font-size: 0.78rem;
  margin-top: -10px; margin-bottom: 10px;
  display: flex; align-items: center; gap: 4px;
}

/* ===== REAL IMAGES ===== */
.about-img-placeholder {
  background: none !important;
  padding: 0;
}
.about-img-placeholder img {
  display: block;
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
}

/* ===== CHATBOT ===== */
.chatbot-wrap { position: fixed; bottom: 28px; left: 28px; z-index: 1000; display: flex; flex-direction: column; align-items: flex-start; }

.chatbot-toggle {
  width: 58px; height: 58px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #1a3a6b);
  border: 2px solid var(--gold); color: var(--gold);
  font-size: 1.4rem; cursor: pointer;
  box-shadow: 0 4px 20px rgba(10,22,40,0.35);
  transition: var(--transition); position: relative;
  display: flex; align-items: center; justify-content: center;
}
.chatbot-toggle:hover { transform: scale(1.08); background: var(--gold); color: var(--navy); }

.chat-badge {
  position: absolute; top: -4px; right: -4px;
  background: #e74c3c; color: #fff;
  width: 20px; height: 20px; border-radius: 50%;
  font-size: 0.7rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.chat-badge.hidden { display: none; }

.chatbot-box {
  width: 340px; background: var(--white);
  border-radius: 18px; box-shadow: 0 8px 40px rgba(10,22,40,0.2);
  margin-bottom: 12px; overflow: hidden;
  display: none; flex-direction: column;
  border: 1px solid rgba(201,168,76,0.2);
  max-height: 520px;
}
.chatbot-box.open { display: flex; animation: chatPop 0.3s ease; }
@keyframes chatPop { from { opacity:0; transform: scale(0.9) translateY(10px); } to { opacity:1; transform: scale(1) translateY(0); } }

.chatbot-header {
  background: linear-gradient(135deg, var(--navy), #1a3a6b);
  padding: 14px 16px;
  display: flex; align-items: center; justify-content: space-between;
}
.chatbot-header-info { display: flex; align-items: center; gap: 10px; }
.chatbot-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(201,168,76,0.2); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1rem;
}
.chatbot-header strong { display: block; color: var(--white); font-size: 0.9rem; }
.chatbot-header span { font-size: 0.72rem; color: rgba(255,255,255,0.5); }
.chatbot-close { background: none; border: none; color: rgba(255,255,255,0.5); cursor: pointer; font-size: 1rem; transition: var(--transition); }
.chatbot-close:hover { color: var(--white); }

.chatbot-messages {
  flex: 1; overflow-y: auto; padding: 16px;
  display: flex; flex-direction: column; gap: 12px;
  background: #f8fafc;
}
.bot-msg, .user-msg { display: flex; gap: 8px; align-items: flex-start; }
.user-msg { flex-direction: row-reverse; }
.bot-icon { color: var(--gold); font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.bot-msg p, .user-msg p {
  background: var(--white); border-radius: 12px;
  padding: 10px 14px; font-size: 0.88rem; line-height: 1.5;
  color: var(--text); box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  max-width: 85%;
}
.user-msg p { background: var(--navy); color: var(--white); border-radius: 12px 12px 2px 12px; }
.bot-msg p { border-radius: 2px 12px 12px 12px; }

.chatbot-suggestions { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.chatbot-suggestions button {
  background: var(--white); border: 1.5px solid rgba(201,168,76,0.4);
  border-radius: 20px; padding: 7px 14px;
  font-size: 0.82rem; color: var(--navy); cursor: pointer;
  text-align: left; transition: var(--transition); font-family: 'Inter', sans-serif;
}
.chatbot-suggestions button:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

.chatbot-input-row {
  display: flex; gap: 8px; padding: 12px 14px;
  border-top: 1px solid #e5e7eb; background: var(--white);
}
.chatbot-input-row input {
  flex: 1; padding: 10px 14px; border-radius: 50px;
  border: 1.5px solid #e5e7eb; font-family: 'Inter', sans-serif;
  font-size: 0.88rem; outline: none; transition: var(--transition);
}
.chatbot-input-row input:focus { border-color: var(--gold); }
.chatbot-input-row button {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  border: none; cursor: pointer; font-size: 0.9rem;
  transition: var(--transition); flex-shrink: 0;
}
.chatbot-input-row button:hover { background: var(--gold-light); }

@media (max-width: 768px) {
  .chatbot-box { width: 300px; }
  .chatbot-wrap { bottom: 90px; }
}

/* ===== HERO CONTENT MOBILE ===== */
@media (max-width: 768px) {
  .hero-content {
    max-width: 100%;
    padding: 120px 24px 60px;
    background: linear-gradient(to bottom, rgba(10,22,40,0.75) 0%, rgba(10,22,40,0.55) 100%);
  }
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
  background: none; border: 2px solid rgba(255,255,255,0.3);
  color: var(--gold); width: 38px; height: 38px; border-radius: 50%;
  cursor: pointer; font-size: 0.95rem;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); margin-left: 8px;
}
.theme-toggle:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }

/* ===== LIGHT THEME ===== */
body.light-theme {
  --navy: #f0f4ff;
  --navy-mid: #e2e8f8;
  --white: #ffffff;
  --light: #f8faff;
  --text: #1a1a2e;
  --text-light: #4a5568;
  background: #f8faff;
}
body.light-theme .navbar { background: #fff; box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
body.light-theme .navbar:not(.scrolled) { background: rgba(255,255,255,0.95); }
body.light-theme .logo-name { color: #1a1a2e; }
body.light-theme .nav-links a { color: #1a1a2e; }
body.light-theme .topbar { background: #1a1a2e; }
body.light-theme .footer { background: #1a1a2e; }
body.light-theme .why-us { background: linear-gradient(135deg, #1a1a2e 0%, #2d3a6b 100%); }
body.light-theme .service-card { background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
body.light-theme .service-card:hover { background: #fff; }
body.light-theme .stat-box { background: #fff; box-shadow: 0 2px 16px rgba(0,0,0,0.06); }
body.light-theme .contact-form { box-shadow: 0 4px 24px rgba(0,0,0,0.08); }
body.light-theme .faq-question { color: #1a1a2e; }
body.light-theme .theme-toggle { border-color: rgba(0,0,0,0.2); color: var(--gold); }
body.light-theme .hamburger span { background: #1a1a2e; }

/* ===== TEAM SECTION ===== */
.team-section { padding: 0 0 80px; background: var(--light); }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.team-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px; box-shadow: var(--shadow);
  border-top: 3px solid var(--gold);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(10,22,40,0.12); }
.team-avatar {
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #1a3a6b);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--gold); margin-bottom: 18px;
  overflow: hidden;
}
.team-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: 4px; }
.team-role { color: var(--gold); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.team-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; margin-bottom: 18px; }
.team-tags { display: flex; flex-direction: column; gap: 6px; }
.team-tags span { font-size: 0.82rem; color: var(--navy); font-weight: 500; display: flex; align-items: center; gap: 6px; }
.team-tags i { color: var(--gold); font-size: 0.75rem; }

@media (max-width: 768px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ===== MOBILE IMPROVEMENTS ===== */
@media (max-width: 768px) {

  /* About photo — shorter, face-focused */
  .about-img-placeholder img {
    height: 280px;
    object-position: center 15%;
  }

  /* Hide badge on mobile — overlaps photo */
  .about-badge { display: none; }

  /* About grid — tighter spacing */
  .about-grid { gap: 28px; }

  /* Hero — stronger text contrast on mobile */
  .hero-content {
    padding: 110px 20px 50px;
    background: linear-gradient(to bottom, rgba(10,22,40,0.82) 0%, rgba(10,22,40,0.65) 100%);
  }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 0.95rem; }

  /* Stats — show all 3 in a row */
  .hero-stats { gap: 16px; justify-content: flex-start; }
  .stat strong { font-size: 1.4rem; }
  .stat span { font-size: 0.7rem; }

  /* Team cards — full width */
  .team-card { padding: 24px 20px; }
  .team-avatar { width: 100px; height: 100px; font-size: 1.4rem; }

  /* Services grid — single column on small phones */
  .services-grid { gap: 16px; }
  .service-card { padding: 24px 20px; }

  /* Why us cards */
  .why-card { padding: 24px 16px; }

  /* Testimonials */
  .testimonial-card { padding: 24px 20px; }

  /* Contact form */
  .contact-form { padding: 24px 16px; }

  /* FAQ */
  .faq-question { font-size: 0.92rem; }
}

@media (max-width: 400px) {
  .hero-content h1 { font-size: 1.8rem; }
  .about-img-placeholder img { height: 220px; }
}

/* ===== VISION MISSION VALUES ===== */
.vmv-section { padding: 100px 0; background: var(--white); }
.vmv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-bottom: 64px; }
.vmv-card {
  border-radius: var(--radius); padding: 40px 32px;
  border-top: 4px solid var(--gold);
  background: var(--light);
  transition: var(--transition);
}
.vmv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.vmv-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: linear-gradient(135deg, var(--navy), #1a3a6b);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--gold); margin-bottom: 20px;
}
.vmv-card h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--navy); margin-bottom: 14px; }
.vmv-card p { color: var(--text-light); font-size: 0.92rem; line-height: 1.8; }
.vmv-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.vmv-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-light); font-size: 0.9rem; line-height: 1.6; }
.vmv-list li i { color: var(--gold); font-size: 0.75rem; margin-top: 4px; flex-shrink: 0; }

/* SERVICE CHARTER */
.charter-wrap {
  background: linear-gradient(135deg, var(--navy), #1a3a6b);
  border-radius: 20px; padding: 48px;
}
.charter-header { display: flex; align-items: center; gap: 16px; margin-bottom: 36px; }
.charter-header i { font-size: 2rem; color: var(--gold); }
.charter-header h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--white); }
.charter-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.charter-item {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); padding: 24px 20px;
  display: flex; gap: 16px; align-items: flex-start;
}
.charter-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--gold);
  opacity: 0.6; line-height: 1; flex-shrink: 0;
}
.charter-item p { color: rgba(255,255,255,0.75); font-size: 0.88rem; line-height: 1.7; }
.charter-item strong { color: var(--gold-light); }

/* ===== ORG CHART ===== */
.orgchart-section { padding: 100px 0; background: var(--light); }
.orgchart-wrap { display: flex; flex-direction: column; align-items: center; gap: 40px; }
.org-center { display: flex; justify-content: center; }
.org-box {
  background: var(--white); border-radius: var(--radius);
  padding: 20px 28px; text-align: center;
  box-shadow: var(--shadow); border-bottom: 3px solid var(--gold);
  min-width: 180px;
}
.org-box i { font-size: 1.6rem; color: var(--gold); display: block; margin-bottom: 8px; }
.org-box strong { display: block; color: var(--navy); font-size: 0.9rem; font-weight: 700; }
.org-box span { font-size: 0.78rem; color: var(--text-light); }
.org-admin { background: var(--navy); border-bottom-color: var(--gold); }
.org-admin strong { color: var(--white); font-size: 1rem; }
.org-admin span { color: var(--gold); }
.org-admin i { color: var(--gold); font-size: 2rem; }
.org-branches { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }
.org-branch { display: flex; flex-direction: column; align-items: center; }
.org-regulators { width: 100%; }
.org-reg-label { text-align: center; font-size: 0.78rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.org-reg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.org-reg-box {
  background: var(--white); border-radius: var(--radius);
  padding: 16px 20px; font-size: 0.82rem; color: var(--text-light);
  border-left: 3px solid var(--gold); display: flex; align-items: flex-start; gap: 10px;
  box-shadow: 0 2px 8px rgba(10,22,40,0.06);
}
.org-reg-box i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ===== PATIENT RIGHTS & RESPONSIBILITIES ===== */
.rights-section { padding: 100px 0; background: var(--white); }
.rights-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.rights-card {
  border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow);
}
.rights-card-header {
  background: linear-gradient(135deg, var(--navy), #1a3a6b);
  padding: 28px 32px; display: flex; align-items: center; gap: 16px;
}
.rights-card-header i { font-size: 1.8rem; color: var(--gold); }
.rights-card-header h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); }
.rights-list { list-style: none; padding: 28px 32px; background: var(--light); display: flex; flex-direction: column; gap: 12px; }
.rights-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; color: var(--text); line-height: 1.6; }
.rights-list li i { color: var(--gold); font-size: 0.75rem; margin-top: 4px; flex-shrink: 0; }

/* ===== RESPONSIVE FOR NEW SECTIONS ===== */
@media (max-width: 1024px) {
  .vmv-grid { grid-template-columns: 1fr 1fr; }
  .charter-grid { grid-template-columns: 1fr 1fr; }
  .org-reg-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .vmv-grid { grid-template-columns: 1fr; }
  .charter-grid { grid-template-columns: 1fr; }
  .charter-wrap { padding: 32px 24px; }
  .rights-grid { grid-template-columns: 1fr; }
  .org-reg-grid { grid-template-columns: 1fr; }
  .org-branches { gap: 16px; }
}

/* ===== DISPUTE RESOLUTION ===== */
.dispute-section { padding: 100px 0; background: var(--light); }
.dispute-areas { margin-bottom: 48px; text-align: center; }
.dispute-intro { color: var(--text-light); font-size: 0.9rem; margin-bottom: 16px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.dispute-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.dispute-tags span {
  background: var(--white); border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px; padding: 8px 20px;
  font-size: 0.85rem; color: var(--navy); font-weight: 500;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 2px 8px rgba(10,22,40,0.06);
}
.dispute-tags span i { color: var(--gold); }
.dispute-steps { display: flex; flex-direction: column; gap: 24px; }
.dispute-step {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 40px; display: flex; gap: 32px; align-items: flex-start;
  box-shadow: var(--shadow); border-left: 4px solid var(--gold);
  transition: var(--transition);
}
.dispute-step:hover { transform: translateX(4px); }
.dispute-step-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; color: var(--gold);
  opacity: 0.4; line-height: 1; flex-shrink: 0; min-width: 56px;
}
.dispute-step-content h4 { font-size: 1.05rem; color: var(--navy); font-weight: 700; margin-bottom: 10px; }
.dispute-step-content p { color: var(--text-light); font-size: 0.9rem; line-height: 1.8; }
.dispute-reg-list { list-style: none; margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.dispute-reg-list li { color: var(--text-light); font-size: 0.88rem; padding-left: 16px; position: relative; line-height: 1.6; }
.dispute-reg-list li::before { content: '—'; position: absolute; left: 0; color: var(--gold); }

@media (max-width: 768px) {
  .dispute-step { flex-direction: column; gap: 12px; padding: 24px; }
  .dispute-step-num { font-size: 2rem; }
}

/* ===== INSURANCE PARTNERS ===== */
.partners-section { padding: 100px 0; background: var(--navy); }
.partners-section .section-tag { color: var(--gold-light); }
.partners-section .section-header h2 { color: var(--white); }
.partners-section .section-desc { color: rgba(255,255,255,0.55); }
.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.partner-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex; align-items: center; gap: 14px;
  transition: var(--transition);
}
.partner-card:hover {
  background: rgba(201,168,76,0.1);
  border-color: rgba(201,168,76,0.5);
  transform: translateY(-3px);
}
.partner-card i { color: var(--gold); font-size: 1.3rem; flex-shrink: 0; }
.partner-card span { color: rgba(255,255,255,0.8); font-size: 0.88rem; line-height: 1.5; font-weight: 500; }

@media (max-width: 1024px) { .partners-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .partners-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .partners-grid { grid-template-columns: 1fr; } }

/* ===== LOGO IMAGE ===== */
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
}

.preloader-logo {
  width: 100px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto 16px;
}

/* ===== DR. DINO CORPORATE HERO ===== */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(10,22,40,0.18);
  min-height: 520px;
}
.about-hero-img {
  position: relative;
  overflow: hidden;
}
.about-hero-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-hero-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.92), transparent);
  padding: 24px 20px;
}
.about-credentials {
  display: flex; align-items: center; gap: 10px;
  color: var(--gold); font-size: 0.85rem; font-weight: 600;
}
.about-credentials i { font-size: 1.1rem; }
.about-hero-content {
  background: linear-gradient(135deg, var(--navy), #1a3a6b);
  padding: 48px 44px;
  display: flex; flex-direction: column; justify-content: center;
}
.about-hero-content h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--white); margin-bottom: 8px; }
.about-hero-content h2 span { color: var(--gold); }
.about-hero-content .about-role { color: var(--gold); font-size: 0.85rem; margin-bottom: 20px; }
.about-hero-content p { color: rgba(255,255,255,0.7); font-size: 0.92rem; line-height: 1.8; margin-bottom: 14px; }
.about-hero-content .highlight { color: rgba(255,255,255,0.85); }
.about-hero-content .highlight i { color: var(--gold); }

/* ===== TEAM PORTRAIT CARDS ===== */
.team-card-portrait {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card-portrait:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(10,22,40,0.14); }
.team-portrait-wrap {
  position: relative;
  height: 320px;
  overflow: hidden;
}
.team-portrait-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
.team-card-portrait:hover .team-portrait-wrap img { transform: scale(1.04); }
.team-portrait-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(10,22,40,0.92), transparent);
  padding: 20px 20px 16px;
}
.team-portrait-overlay h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 4px; }
.team-portrait-overlay .team-role { color: var(--gold); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; font-weight: 600; margin: 0; }
.team-card-body { padding: 24px 24px 28px; }
.team-card-body p { color: var(--text-light); font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .about-hero { grid-template-columns: 1fr; }
  .about-hero-img { height: 320px; }
  .about-hero-content { padding: 32px 24px; }
  .team-portrait-wrap { height: 260px; }
}
