/* =============================================
   AL AMAN HEALTHCARE - Main Stylesheet
   Brand Colors: Navy #1B2A5E, Blue #3A8DC5, Green #6DBE45
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --navy: #1B2A5E;
  --blue: #3A8DC5;
  --green: #6DBE45;
  --light-blue: #EAF4FB;
  --light-green: #F0FAE8;
  --white: #FFFFFF;
  --gray: #F5F7FA;
  --text: #2D3748;
  --text-light: #718096;
  --border: #E2E8F0;
  --shadow: 0 4px 24px rgba(27,42,94,0.10);
  --shadow-lg: 0 12px 48px rgba(27,42,94,0.18);
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 12px;
  --radius-lg: 20px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

/* ---- SCROLL ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-right.visible { opacity: 1; transform: translateX(0); }
.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}
.fade-in.visible { opacity: 1; }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ---- TOP BAR ---- */
.top-bar {
  background: linear-gradient(135deg, #5aab35 0%, var(--green) 100%);
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  padding: 6px 0;
  letter-spacing: 0.01em;
}
.top-bar a { color: rgba(255,255,255,0.75); text-decoration: none; transition: var(--transition); }
.top-bar a:hover { color: white; }
.top-bar .bi { font-size: 0.7rem; }
.top-bar .divider { margin: 0 8px; opacity: 0.25; color: rgba(255,255,255,0.3); }

/* ---- NAVBAR ---- */
.navbar {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid rgba(27,42,94,0.06);
}
.navbar.scrolled {
  border-bottom-color: rgba(27,42,94,0.12);
  box-shadow: 0 4px 30px rgba(27,42,94,0.08);
}
.navbar-brand img { height: 64px; width: auto; transition: var(--transition); }
.navbar.scrolled .navbar-brand img { height: 56px; }
.navbar-nav {
  gap: 4px;
}
.navbar-nav .nav-link {
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--text) !important;
  padding: 8px 16px !important;
  letter-spacing: 0.02em;
  position: relative;
  transition: var(--transition);
  border-radius: 8px;
}
.navbar-nav .nav-link:hover {
  color: var(--blue) !important;
  background: var(--light-blue);
}
.navbar-nav .nav-link.active {
  color: var(--navy) !important;
  font-weight: 600;
}

.btn-request {
  background: transparent;
  color: var(--blue) !important;
  border: 2px solid var(--blue) !important;
  border-radius: 50px;
  padding: 7px 22px !important;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-request::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 50px;
}
.btn-request:hover {
  color: white !important;
  border-color: var(--blue) !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(58,141,197,0.25);
}
.btn-request:hover::before {
  opacity: 1;
}
.btn-request i,
.btn-request span {
  position: relative;
  z-index: 1;
}
.btn-request::after { display: none !important; }

/* Dropdown hover on desktop */
@media (min-width: 992px) {
  .dropdown-hover {
    position: relative;
  }
  .dropdown-hover:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .dropdown-hover .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
    pointer-events: none;
    top: 100%;
    left: 0;
  }
  .dropdown-hover:hover .dropdown-menu {
    pointer-events: auto;
  }
}

.dropdown-menu {
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 12px 0;
  border-top: 3px solid var(--green);
  animation: dropFade 0.25s ease;
}
@keyframes dropFade {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}
.dropdown-item {
  font-size: 0.9rem;
  padding: 9px 20px;
  color: var(--text);
  font-weight: 500;
  transition: var(--transition);
}
.dropdown-item:hover {
  background: var(--light-blue);
  color: var(--blue);
  padding-left: 26px;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--navy) 0%, #243a7a 50%, #1a5c8a 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before { display: none; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: blobFloat 8s ease-in-out infinite;
}
.hero-blob-1 { width: 600px; height: 600px; background: var(--blue); top: -200px; right: -100px; }
.hero-blob-2 { width: 400px; height: 400px; background: var(--green); bottom: -150px; left: -100px; animation-delay: -4s; }
@keyframes blobFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(109,190,69,0.15);
  border: 1px solid rgba(109,190,69,0.3);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--green); }
.hero p {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 300;
}
.btn-hero-primary {
  background: linear-gradient(135deg, var(--green), #5aab35);
  color: white;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(109,190,69,0.35);
}
.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(109,190,69,0.45);
  color: white;
}
.btn-hero-outline {
  border: 2px solid rgba(255,255,255,0.35);
  color: white;
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.98rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.btn-hero-outline:hover {
  background: rgba(255,255,255,0.1);
  color: white;
  transform: translateY(-3px);
}
.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.hero-stat { color: white; }
.hero-stat .num {
  font-family: 'Merriweather', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--green);
  display: block;
  line-height: 1;
}
.hero-stat .label { font-size: 0.8rem; opacity: 0.7; letter-spacing: 0.05em; }

/* REQUEST FORM CARD */
.request-card {
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 8px 32px rgba(27,42,94,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  position: relative;
  z-index: 2;
}
.request-card h4 {
  font-family: 'Merriweather', serif;
  color: var(--navy);
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.request-card .subtitle { color: var(--text-light); font-size: 0.88rem; margin-bottom: 24px; }
.request-card .form-control,
.request-card .form-select {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(4px);
}
.request-card .form-control:focus,
.request-card .form-select:focus {
  background: rgba(255,255,255,0.95);
}
.form-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
  letter-spacing: 0.02em;
}

/* Input icon wrapper */
.input-icon-wrap {
  position: relative;
}

.input-icon-wrap > i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-light);
  font-size: 0.95rem;
  pointer-events: none;
  transition: color 0.3s ease;
  z-index: 3;
}

.input-icon-wrap:focus-within > i {
  color: var(--blue);
}

.input-icon-wrap.input-icon-textarea > i {
  top: 14px;
  transform: none;
}

.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 11px 14px;
  padding-left: 40px;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--gray);
}

.form-select-icon {
  padding-left: 40px;
}

.form-control-icon {
  padding-left: 40px;
}

.form-control:focus, .form-select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(58,141,197,0.12);
  background: white;
}

.form-control::placeholder {
  color: #a0aec0;
  font-weight: 400;
}

.btn-submit {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: white;
  border: none;
  border-radius: 10px;
  padding: 14px;
  font-weight: 700;
  font-size: 0.95rem;
  width: 100%;
  transition: var(--transition);
  cursor: pointer;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue), var(--green));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 10px;
}

.btn-submit:hover::before {
  opacity: 1;
}

.btn-submit i, .btn-submit span {
  position: relative;
  z-index: 1;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(27,42,94,0.3);
}

.btn-submit:active {
  transform: translateY(-1px);
}

/* reCAPTCHA badge - hidden, notice placed in footer */
.grecaptcha-badge { visibility: hidden; opacity: 0; }

/* ---- SECTION STYLES ---- */
section { padding: 90px 0; }
.section-tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-tag::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--green);
  border-radius: 2px;
}
.section-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-title span { color: var(--blue); }
.section-desc { color: var(--text-light); max-width: 560px; font-size: 1rem; line-height: 1.75; }

/* ---- SERVICES ---- */
.services-section {
  background: linear-gradient(135deg, #eef4fb 0%, #f5f0f8 25%, #e8f5ef 50%, #f0f7fe 75%, #f5faf0 100%);
  position: relative;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(58,141,197,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 40%, rgba(109,190,69,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 80%, rgba(27,42,94,0.04) 0%, transparent 50%);
  pointer-events: none;
}
.service-card {
  background: linear-gradient(145deg, rgba(234,244,251,0.5) 0%, rgba(255,255,255,0.7) 40%, rgba(240,250,232,0.5) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.5);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse at 30% 20%, rgba(58,141,197,0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 80%, rgba(109,190,69,0.1) 0%, transparent 60%);
  pointer-events: none;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(58,141,197,0.2);
  color: inherit;
  text-decoration: none;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
  background: var(--light-blue);
  color: var(--blue);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: white;
  transform: rotate(-5deg) scale(1.1);
}
.service-card h5 {
  font-family: 'Merriweather', serif;
  color: var(--navy);
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}
.service-card p { color: var(--text-light); font-size: 0.88rem; line-height: 1.65; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 16px;
  transition: var(--transition);
}
.service-card:hover .service-link { gap: 10px; color: var(--green); }

/* ---- WHY US ---- */
.why-us { background: white; }
.why-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-card:hover { background: var(--light-blue); }
.why-num {
  min-width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  font-family: 'Merriweather', serif;
  flex-shrink: 0;
}
.why-card h6 { color: var(--navy); font-weight: 600; margin-bottom: 4px; font-size: 1rem; }
.why-card p { color: var(--text-light); font-size: 0.87rem; margin: 0; }

/* ---- STATS ---- */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a7a 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::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='%23ffffff' 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");
}
.stat-item { text-align: center; position: relative; z-index: 1; }
.stat-item .count {
  font-family: 'Merriweather', serif;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1;
  display: block;
}
.stat-item .label { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-top: 6px; }
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--gray); }
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.quote-icon {
  font-size: 3.5rem;
  line-height: 1;
  color: var(--light-blue);
  font-family: Georgia, serif;
  font-weight: 700;
  position: absolute;
  top: 20px;
  right: 28px;
}
.testimonial-card p { color: var(--text); font-style: italic; line-height: 1.75; margin-bottom: 20px; }
.stars { color: #F6C900; font-size: 0.85rem; margin-bottom: 12px; }
.reviewer-name { font-weight: 700; color: var(--navy); font-size: 0.92rem; }
.reviewer-role { color: var(--text-light); font-size: 0.82rem; }

/* ---- JOIN TEAM ---- */
.join-team {
  background: linear-gradient(135deg, var(--green), #5aab35);
  color: white;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.join-team::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  top: -200px; right: -100px;
}
.join-team h2 {
  font-family: 'Merriweather', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  margin-bottom: 14px;
}
.join-team p { font-size: 1.05rem; opacity: 0.9; max-width: 600px; }
.btn-join {
  background: var(--navy);
  color: white;
  padding: 15px 38px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  box-shadow: 0 6px 24px rgba(27,42,94,0.3);
}
.btn-join:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(27,42,94,0.4);
  color: white;
}

/* ---- ABOUT PAGE ---- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a4a7a 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.page-hero h1 {
  font-family: 'Merriweather', serif;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: white;
  font-weight: 700;
}
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; }
.breadcrumb-item, .breadcrumb-item a { color: rgba(255,255,255,0.65); font-size: 0.87rem; }
.breadcrumb-item.active { color: var(--green); }
.breadcrumb-divider { color: rgba(255,255,255,0.4); }

/* ---- TEAM CARDS ---- */
.team-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-photo {
  background: linear-gradient(135deg, var(--light-blue), #d0e8f5);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--blue);
}
.team-info { padding: 24px 20px; }
.team-info h5 { font-family: 'Merriweather', serif; color: var(--navy); font-weight: 600; margin-bottom: 4px; }
.team-info span { color: var(--blue); font-size: 0.85rem; font-weight: 500; }

/* ---- SERVICE DETAIL CARDS ---- */
.service-detail-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
}
.service-detail-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-detail-header {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  padding: 36px 28px;
  color: white;
}
.service-detail-header .icon { font-size: 2.8rem; margin-bottom: 14px; display: block; }
.service-detail-header h4 {
  font-family: 'Merriweather', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}
.service-detail-body { padding: 28px; }
.service-detail-body p { color: var(--text-light); font-size: 0.9rem; line-height: 1.75; }
.service-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.87rem;
  color: var(--text);
}
.service-feature::before {
  content: '✓';
  width: 20px; height: 20px;
  background: var(--light-green);
  color: var(--green);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---- CONTACT ---- */
.contact-info-card {
  background: linear-gradient(135deg, var(--navy), #1a4a7a);
  color: white;
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  height: 100%;
}
.contact-info-card h4 { font-family: 'Merriweather', serif; font-size: 1.6rem; margin-bottom: 28px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
.contact-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.15);
}
.contact-item h6 { font-size: 0.82rem; opacity: 0.65; margin-bottom: 4px; letter-spacing: 0.05em; text-transform: uppercase; }
.contact-item p { margin: 0; font-size: 0.95rem; }

/* ---- CAREERS ---- */
.career-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid var(--blue);
  box-shadow: var(--shadow);
  transition: var(--transition);
  margin-bottom: 20px;
}
.career-card:hover { transform: translateX(6px); box-shadow: var(--shadow-lg); border-left-color: var(--green); }
.career-badge {
  display: inline-block;
  background: var(--light-green);
  color: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.career-card h5 { color: var(--navy); font-weight: 700; margin-bottom: 8px; }
.career-card p { color: var(--text-light); font-size: 0.88rem; margin-bottom: 14px; }
.btn-apply {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: white;
  border: none;
  padding: 9px 22px;
  border-radius: 50px;
  font-size: 0.87rem;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-apply:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,42,94,0.25); color: white; }

/* ---- FOOTER ---- */
footer {
  background: #0f1c3d;
  color: rgba(255,255,255,0.75);
  padding: 70px 0 0;
}
footer h6 {
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 12px;
}
footer h6::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 28px; height: 2px;
  background: var(--green);
  border-radius: 2px;
}
footer a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.9rem; transition: var(--transition); }
footer a:hover { color: var(--green); padding-left: 4px; }
footer ul { list-style: none; padding: 0; }
footer ul li { margin-bottom: 10px; }
.footer-brand img { height: 44px; filter: brightness(0) invert(1); margin-bottom: 16px; opacity: 0.85; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 280px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  margin-top: 50px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
}
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  font-size: 0.85rem;
  transition: var(--transition);
}
.social-links a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: white !important;
  padding-left: 0;
  transform: translateY(-3px);
}

/* ---- ALERT / NOTICE ---- */
.alert-success-custom {
  background: var(--light-green);
  border: 1.5px solid rgba(109,190,69,0.3);
  color: #2d6a0a;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-error-custom {
  background: #fff0f0;
  border: 1.5px solid rgba(220,38,38,0.3);
  color: #b91c1c;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.9rem;
  font-weight: 500;
}

/* ---- SCROLL TO TOP ---- */
#scrollTop {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 999;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px rgba(27,42,94,0.3);
}
#scrollTop.show { opacity: 1; transform: translateY(0); }
#scrollTop:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(27,42,94,0.4); }

/* ---- HERO SLIDER ---- */
.hero-slider {
  position: relative;
  min-height: 420px;
}

/* Full-width hero slide backgrounds */
.hero-slider-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slider-bg .slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slider-bg .slide-bg.active {
  opacity: 1;
  animation: kenZoom 4s ease forwards;
}

@keyframes kenZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.12); }
}

.hero-slider-bg .slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,42,94,0.85) 0%, rgba(26,74,122,0.7) 50%, rgba(26,92,138,0.6) 100%);
}

.hero > *:not(.hero-slider-bg):not(.hero-blob) {
  position: relative;
  z-index: 1;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.6s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(12px);
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  transform: translateY(0);
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(109,190,69,0.15);
  border: 1px solid rgba(109,190,69,0.3);
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  animation: slideBadgeIn 0.6s ease forwards;
}

@keyframes slideBadgeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-slide.active .slide-title {
  animation: slideTitleIn 0.7s ease 0.1s forwards;
}

.hero-slide.active .slide-desc {
  animation: slideDescIn 0.7s ease 0.2s forwards;
}

.hero-slide.active .btn-hero-primary,
.hero-slide.active .btn-hero-outline {
  animation: slideBtnIn 0.5s ease 0.3s forwards;
}

.hero-slide.active .hero-stats {
  animation: slideStatsIn 0.6s ease 0.4s forwards;
}

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

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

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

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

.slide-title {
  font-family: 'Merriweather', serif;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 700;
  color: white;
  line-height: 1.15;
  margin-bottom: 20px;
  opacity: 0;
}

.slide-title span { color: var(--green); }

.slide-desc {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.8);
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 300;
  opacity: 0;
}

.hero-slide .btn-hero-primary,
.hero-slide .btn-hero-outline {
  opacity: 0;
}

.hero-slide .hero-stats {
  opacity: 0;
}

/* Slider Navigation */
.slider-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 40px;
}

.slider-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: white;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(8px);
  flex-shrink: 0;
}

.slider-arrow:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--green);
  color: var(--green);
  transform: scale(1.1);
}

.slider-arrow:active {
  transform: scale(0.95);
}

.slider-dots {
  display: flex;
  gap: 10px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.slider-dot:hover {
  background: rgba(255,255,255,0.4);
  transform: scale(1.15);
}

.slider-dot.active {
  background: var(--green);
  border-color: var(--green);
  transform: scale(1.2);
  box-shadow: 0 0 12px rgba(109,190,69,0.4);
}

/* Pause Button */
.slider-pause {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  margin-left: auto;
}

.slider-pause:hover {
  background: rgba(255,255,255,0.15);
  color: white;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 992px) {
  .navbar-nav { gap: 0; }
  .navbar-nav .nav-link { padding: 10px 14px !important; border-radius: 0; }
  .btn-request { border-color: var(--green) !important; color: var(--green) !important; margin-top: 4px; }
  .btn-request:hover { color: white !important; }
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-slider { min-height: 360px; }
  .hero-content { margin-top: 20px; }
  .slider-nav { margin-top: 30px; }
  section { padding: 65px 0; }
}
@media (max-width: 768px) {
  .hero { padding: 80px 0 50px; }
  .hero-slider { min-height: 300px; }
  .hero-stats { gap: 20px; }
  .request-card { padding: 28px 22px; }
  .slider-arrow { width: 38px; height: 38px; font-size: 0.95rem; }
  .slider-dot { width: 10px; height: 10px; }
  .slider-nav { gap: 12px; margin-top: 24px; }
  section { padding: 55px 0; }
  .stats-section { padding: 50px 0; }
}
@media (max-width: 576px) {
  .hero-slider { min-height: 260px; }
  .slider-nav { justify-content: center; }
  .slide-desc { font-size: 0.95rem; }
}
