/* ============================================================
   GIFTED IRIS HEALTHCARE LLC - Main Stylesheet
   Brand Colors: Deep Black, Gold, Amber, Brown
   ============================================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Cinzel:wght@400;500;600&family=Lato:wght@300;400;700&display=swap');

/* --- CSS Variables --- */
:root {
  --gold:        #C8960A;
  --gold-light:  #F0C030;
  --gold-pale:   #F5DFA0;
  --amber:       #D4891A;
  --brown-dark:  #5C2D08;
  --brown-mid:   #8B4A0A;
  --brown-light: #C47A15;
  --black:       #0A0501;
  --black-soft:  #120A02;
  --black-card:  #1A0E04;
  --white:       #FFF8EE;
  --white-soft:  #F5EDD8;
  --text-light:  #E8D5A0;
  --text-muted:  #A07830;
  --border:      rgba(200, 150, 10, 0.25);
  --shadow:      0 8px 40px rgba(0,0,0,0.5);
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-title:  'Cinzel', serif;
  --font-body:   'Lato', sans-serif;
  --nav-height:  80px;
  --transition:  0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--text-light);
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: var(--gold-light); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-pale); }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ============================================================
   HEADER & NAVIGATION — Two-Tier Layout
   ============================================================ */
:root {
  --header-top-height:    52px;
  --header-bottom-height: 90px;
  --nav-height:           142px;
}

#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: box-shadow var(--transition);
}
#site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.8);
}

/* ── Top Bar: nav + social ── */
.header-top {
  background: rgba(10,5,1,0.98);
  border-bottom: 1px solid var(--border);
  height: var(--header-top-height);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header-top-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  height: var(--header-top-height);
}
.nav-links li { height: 100%; display: flex; align-items: center; }
.nav-links li a {
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-pale);
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  transition: all var(--transition);
}
.nav-links li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 2px;
  background: var(--gold-light);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-links li a:hover,
.nav-links li a.active {
  color: var(--white);
  background: rgba(255,255,255,0.05);
}
.nav-links li a:hover::after,
.nav-links li a.active::after {
  transform: scaleX(1);
}

/* Social Icons */
.header-social {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-social-label {
  font-family: var(--font-title);
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.header-social-icons {
  display: flex;
  gap: 8px;
}
.header-social-icons a {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 12px;
  transition: all var(--transition);
}
.header-social-icons a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* Mobile Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-shrink: 0;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--gold-pale);
  border-radius: 2px;
  transition: all var(--transition);
  display: block;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── nav2: White/Light Bottom Bar variant ── */
.header-bottom.header-bottom-light {
  background: #ffffff !important;
  border-bottom: 3px solid var(--gold) !important;
  box-shadow: 0 2px 20px rgba(0,0,0,0.12);
}
.header-bottom.header-bottom-light .header-contact-label {
  color: var(--brown-mid);
  opacity: 1;
}
.header-bottom.header-bottom-light .header-contact-number {
  color: var(--brown-dark);
  font-size: 14px;
}
.header-bottom.header-bottom-light .header-contact-number i {
  color: var(--gold);
}
.header-bottom.header-bottom-light .header-contact-number:hover {
  color: var(--brown-mid);
}
.header-bottom {
  background: linear-gradient(90deg, var(--brown-dark), var(--brown-mid), var(--brown-dark));
  height: var(--header-bottom-height);
  border-bottom: 1px solid rgba(200,150,10,0.3);
}
.header-bottom-inner {
  max-width: 1400px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
}

/* Logo */
.header-logo a { display: flex; align-items: center; }
.header-logo img {
  height: 82px;
  width: auto;
  object-fit: contain;
}

/* Contact Info */
.header-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}
.header-contact-label {
  font-family: var(--font-title);
  font-size: 9.5px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-pale);
  opacity: 0.8;
}
.header-contact-number {
  font-family: var(--font-title);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--gold-light);
  transition: color var(--transition);
}
.header-contact-number i {
  color: var(--gold-pale);
  margin-right: 7px;
  font-size: 12px;
}
.header-contact-number:hover { color: var(--white); }

/* ============================================================
   HERO SLIDER
   ============================================================ */
#hero-slider {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  margin-top: var(--nav-height);
}
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.slide.active { opacity: 1; }

/* Slide overlays */
/* Slide backgrounds - local images */
.slide-1 {
  background-image:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('../images/slide1.jpg');
}
.slide-2 {
  background-image:
    linear-gradient(rgba(0,0,0,0.42), rgba(0,0,0,0.42)),
    url('../images/slide2.jpg');
}
.slide-3 {
  background-image:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('../images/slide3.jpg');
}
.slide-4 {
  background-image:
    linear-gradient(rgba(0,0,0,0.42), rgba(0,0,0,0.42)),
    url('../images/slide4.jpg');
}
.slide-5 {
  background-image:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('../images/slide6.jpg');
}
.slide-6 {
  background-image:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('../images/slide5.jpg');
}

.slide-content {
  position: absolute;
  bottom: 18%;
  left: 8%;
  max-width: 680px;
  transform: translateY(30px);
  opacity: 0;
  transition: all 1s ease 0.4s;
}
.slide.active .slide-content {
  transform: translateY(0);
  opacity: 1;
}
.slide-tag {
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}
.slide-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5.5vw, 72px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}
.slide-title span { color: var(--gold-light); font-style: italic; }
.slide-desc {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 28px;
  font-weight: 300;
  line-height: 1.8;
}
.slide-btn {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 14px 32px;
  border-radius: 2px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(200,150,10,0.4);
}
.slide-btn:hover {
  background: linear-gradient(135deg, var(--gold-pale), var(--gold-light));
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,150,10,0.5);
}

/* Slider controls */
.slider-controls {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.slider-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.slider-dot.active {
  background: var(--gold);
  width: 28px;
  border-radius: 4px;
}
.slider-arrows {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  pointer-events: none;
  z-index: 10;
}
.slider-arrow {
  pointer-events: all;
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(200,150,10,0.4);
  background: rgba(10,5,1,0.6);
  color: var(--gold);
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(4px);
}
.slider-arrow:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section { padding: 90px 0; }
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.section-label {
  font-family: var(--font-title);
  font-size: 10.5px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-title em { color: var(--gold-light); font-style: italic; }
.section-subtitle {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.8;
  margin-bottom: 50px;
}
.gold-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 18px 0 28px;
}
.gold-divider.centered { margin: 18px auto 28px; }
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ============================================================
   STATS BAR
   ============================================================ */
#stats-bar {
  background: linear-gradient(90deg, var(--brown-dark), var(--brown-mid), var(--brown-dark));
  padding: 40px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item {
  padding: 10px 20px;
  border-right: 1px solid rgba(200,150,10,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-family: var(--font-title);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-pale);
  opacity: 0.8;
}

/* ============================================================
   ABOUT PREVIEW (Home)
   ============================================================ */
#about-preview {
  background: linear-gradient(135deg, var(--brown-dark), var(--black-soft));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 4px;
  filter: brightness(0.9) saturate(0.9);
}
.about-image-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 130px; height: 130px;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  box-shadow: 0 8px 30px rgba(200,150,10,0.4);
}
.about-image-badge .badge-num {
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.about-image-badge .badge-text {
  font-family: var(--font-title);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--black);
  margin-top: 4px;
}
.about-text p {
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.85;
}
.about-features {
  margin: 28px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.feature-icon {
  width: 36px; height: 36px;
  flex-shrink: 0;
  background: rgba(200,150,10,0.1);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 14px;
}
.feature-text strong {
  display: block;
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2px;
}
.feature-text span {
  font-size: 13.5px;
  color: var(--text-muted);
}
.btn-primary {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--black);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 13px 30px;
  border-radius: 2px;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(200,150,10,0.3);
  border: none;
  cursor: pointer;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(200,150,10,0.45);
  color: var(--black);
}
.btn-outline {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  background: transparent;
  padding: 12px 28px;
  border-radius: 2px;
  border: 1px solid var(--gold);
  transition: all var(--transition);
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--black);
  transform: translateY(-2px);
}

/* ============================================================
   SERVICES PREVIEW
   ============================================================ */
#services-preview {
  background: var(--black);
}
/* ============================================================
   SERVICE CARDS — Rectangular Image with Decorative Arc
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 20px;
}
.service-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  border-color: rgba(200,150,10,0.55);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(200,150,10,0.12);
}

/* Image wrapper */
.service-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.88) saturate(0.9);
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.06);
  filter: brightness(0.95) saturate(1);
}

/* Decorative gold arc at the bottom of the image */
.service-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 52px;
  background: var(--black-card);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 2;
}

/* Gold arc outline sitting on top of the wave */
.service-img-wrap::before {
  content: '';
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 130%;
  height: 52px;
  border-top: 3px solid var(--gold);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 3;
  transition: border-color var(--transition);
}
.service-card:hover .service-img-wrap::before {
  border-color: var(--gold-light);
}

/* Card body */
.service-card-body {
  padding: 20px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}
.service-card-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
  flex: 1;
}
.service-link {
  font-family: var(--font-title);
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  padding: 9px 22px;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: all var(--transition);
  display: inline-block;
  align-self: center;
}
.service-link:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* ============================================================
   JOB CARDS
   ============================================================ */
.job-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 14px;
  transition: all var(--transition);
}
.job-card:hover {
  border-color: rgba(200,150,10,0.5);
  transform: translateX(6px);
  box-shadow: 0 8px 30px rgba(200,150,10,0.08);
}
.job-card-info h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 8px;
}
.job-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.job-meta span {
  font-family: var(--font-title);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}
.job-meta span i { color: var(--gold); font-size: 11px; }
.cred-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
}
.cred-card:hover {
  border-color: rgba(200,150,10,0.5);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(200,150,10,0.1);
}
.cred-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cred-icon {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: rgba(200,150,10,0.12);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--gold);
  transition: all var(--transition);
}
.cred-card:hover .cred-icon {
  background: var(--gold);
  color: var(--black);
}
.cred-card-header h3 {
  font-family: var(--font-title);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 3px;
}
.cred-card-header span {
  font-size: 12px;
  color: var(--text-muted);
}
.cred-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}
.cred-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,150,10,0.1);
  border: 1px solid rgba(200,150,10,0.3);
  border-radius: 20px;
  padding: 6px 16px;
  font-family: var(--font-title);
  font-size: 9.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  width: fit-content;
}
.cred-badge i { font-size: 11px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 20px;
}
.team-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all var(--transition);
}
.team-card:hover {
  border-color: rgba(200,150,10,0.5);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(200,150,10,0.1);
}
.team-card-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.team-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
  filter: brightness(0.9) saturate(0.85);
}
.team-card:hover .team-card-img-wrap img {
  transform: scale(1.05);
  filter: brightness(0.7) saturate(0.7);
}
.team-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.team-card:hover .team-card-overlay {
  opacity: 1;
}
.team-social {
  display: flex;
  gap: 10px;
}
.team-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  transition: all var(--transition);
}
.team-social a:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.team-card-body {
  padding: 22px 22px 26px;
  text-align: center;
}
.team-card-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 5px;
}
.team-position {
  font-family: var(--font-title);
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}
.team-divider {
  width: 40px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto 14px;
}
.team-card-body p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.75;
}
@media (max-width: 900px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .team-grid { grid-template-columns: 1fr; }
}
.staff-checklist {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.staff-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-light);
  line-height: 1.6;
}
.staff-checklist li i {
  color: var(--gold);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   WHY CHOOSE US CARDS
   ============================================================ */
.why-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 36px 30px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}
.why-card:hover {
  border-color: rgba(200,150,10,0.5);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(200,150,10,0.1);
}
.why-card-num {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.1;
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
  transition: opacity var(--transition);
}
.why-card:hover .why-card-num {
  opacity: 0.2;
}
.why-card-icon {
  width: 52px; height: 52px;
  background: rgba(200,150,10,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin-bottom: 18px;
  transition: all var(--transition);
}
.why-card:hover .why-card-icon {
  background: var(--gold);
  color: var(--black);
}
.why-card h3 {
  font-family: var(--font-title);
  font-size: 12.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.why-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}
.ins-ref-card {
  background: linear-gradient(160deg, #2E1A08 0%, #1A0E04 100%);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.ins-ref-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200,150,10,0.5);
  box-shadow: 0 16px 40px rgba(200,150,10,0.1);
}
.ins-ref-card-alt {
  background: linear-gradient(160deg, #1A1004 0%, #0D0802 100%);
  border-color: rgba(200,150,10,0.35);
}
.ins-ref-icon {
  width: 64px; height: 64px;
  background: rgba(200,150,10,0.12);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  color: var(--gold);
}
.ins-ref-icon-alt {
  background: rgba(200,150,10,0.18);
  border-color: rgba(200,150,10,0.4);
  color: var(--gold-light);
}
.ins-ref-card h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}
.ins-ref-card > p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}
.ins-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}
.ins-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.ins-badge {
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(200,150,10,0.15);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 12px;
  margin-top: 2px;
}
.ins-badge-alt {
  background: rgba(200,150,10,0.2);
  border-color: rgba(200,150,10,0.4);
  color: var(--gold-light);
}
.ins-list li > div strong {
  display: block;
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 2px;
}
.ins-list li > div span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Testimonial heading highlight */
.testimonial-highlight {
  color: var(--gold-light);
  font-style: italic;
  position: relative;
  display: inline-block;
}
.testimonial-highlight::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
#testimonials {
  background: linear-gradient(135deg, #3D1F08 0%, #2A1205 50%, #3D1F08 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
/* Subtle dark texture overlay */
#testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,150,10,0.07) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(200,150,10,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.testimonial-card {
  background: linear-gradient(160deg, #2E1A08 0%, #1F1006 100%);
  border: 1px solid rgba(200,150,10,0.3);
  border-radius: 12px;
  padding: 36px 30px 30px;
  position: relative;
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200,150,10,0.55);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5), 0 0 0 1px rgba(200,150,10,0.2);
}
/* Large decorative quote mark */
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 12px; left: 22px;
  font-family: var(--font-display);
  font-size: 90px;
  line-height: 1;
  color: var(--gold);
  opacity: 0.18;
  pointer-events: none;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16.5px;
  color: #F5E8C8;
  line-height: 1.75;
  margin-bottom: 24px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(200,150,10,0.15);
}
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-title);
  font-size: 17px;
  color: var(--black);
  font-weight: 600;
  flex-shrink: 0;
  box-shadow: 0 2px 10px rgba(200,150,10,0.3);
}
.author-info strong {
  display: block;
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 3px;
}
.author-info span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
#cta-banner {
  background: linear-gradient(135deg, rgba(92,45,8,0.92) 0%, rgba(10,5,1,0.95) 100%),
    url('../images/cta-banner.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 90px 30px;
}
#cta-banner .section-title { color: var(--white); }
#cta-banner .section-subtitle { color: var(--gold-pale); margin: 0 auto 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 70px 0 0;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand img {
  height: 110px;
  width: auto;
  margin-bottom: 20px;
  opacity: 0.9;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 22px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 14px;
  transition: all var(--transition);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}
.footer-col h4 {
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 14px;
  color: var(--text-muted);
}
.footer-contact li i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
  font-size: 13px;
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 30px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}
.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links a {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-top: var(--nav-height);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,5,1,0.75);
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero-content .page-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.page-hero-content .breadcrumb {
  font-family: var(--font-title);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--gold);
  text-transform: uppercase;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--gold-pale); }

/* ============================================================
   TEAM HEX CARDS
   ============================================================ */
.team-hex-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.team-hex {
  position: relative;
  width: 220px;
  height: 220px;
  cursor: default;
  transition: transform var(--transition);
}
.team-hex:hover {
  transform: translateY(-8px);
}

/* Hexagon shape using clip-path */
.team-hex-inner {
  width: 100%;
  height: 100%;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(160deg, var(--black-card) 0%, rgba(92,45,8,0.4) 100%);
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 24px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
}
/* Gold border effect using a slightly larger pseudo hex behind */
.team-hex::before {
  content: '';
  position: absolute;
  inset: -3px;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: linear-gradient(160deg, var(--gold), var(--amber), var(--brown-dark));
  z-index: -1;
  transition: opacity var(--transition);
  opacity: 0.6;
}
.team-hex:hover::before {
  opacity: 1;
}
.team-hex:hover .team-hex-inner {
  background: linear-gradient(160deg, rgba(30,15,3,0.95) 0%, rgba(92,45,8,0.7) 100%);
}

.team-hex-icon {
  width: 58px; height: 58px;
  background: rgba(200,150,10,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 14px;
  transition: all var(--transition);
}
.team-hex:hover .team-hex-icon {
  background: var(--gold);
  color: var(--black);
}
.team-hex-inner h3 {
  font-family: var(--font-title);
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.team-hex-inner p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 900px) {
  .team-hex { width: 180px; height: 180px; }
  .team-hex-inner h3 { font-size: 12px; }
  .team-hex-inner p { font-size: 11px; }
}
@media (max-width: 600px) {
  .team-hex-grid { gap: 20px; }
  .team-hex { width: 150px; height: 150px; }
  .team-hex-icon { width: 44px; height: 44px; font-size: 20px; }
}
.card-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.gi-card {
  background: var(--black-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: all var(--transition);
}
.gi-card:hover {
  border-color: rgba(200,150,10,0.4);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.gi-card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  filter: brightness(0.85) saturate(0.85);
  transition: all var(--transition);
}
.gi-card:hover .gi-card-img { filter: brightness(0.95) saturate(1); }
.gi-card-body { padding: 24px; }
.gi-card-tag {
  font-family: var(--font-title);
  font-size: 9.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.gi-card-body h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.3;
}
.gi-card-body p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}

/* Form Elements */
.gi-form label {
  display: block;
  font-family: var(--font-title);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.gi-form input,
.gi-form select,
.gi-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 3px;
  padding: 12px 16px;
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 14px;
  transition: border-color var(--transition);
  margin-bottom: 20px;
}
.gi-form input:focus,
.gi-form select:focus,
.gi-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.gi-form textarea { resize: vertical; min-height: 130px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 500px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(200,150,10,0.2); }
  .stat-item:nth-child(2n) { border-bottom: none; }
  .card-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root {
    --header-top-height:    50px;
    --header-bottom-height: 65px;
    --nav-height:           115px;
  }

  /* Top bar inner — hamburger left, social right */
  .header-top-inner {
    padding: 0 16px;
    justify-content: space-between;
  }

  /* COMPLETELY hide nav links — override display:flex */
  .header-top-inner nav { position: static; }
  .nav-links {
    display: none !important;
    position: fixed !important;
    top: var(--nav-height) !important;
    left: 0 !important;
    right: 0 !important;
    height: auto !important;
    flex-direction: column !important;
    background: #0A0501 !important;
    z-index: 9999 !important;
    border-bottom: 2px solid rgba(200,150,10,0.4) !important;
    padding: 0 !important;
    gap: 0 !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.6) !important;
  }
  /* Only show when open class is added */
  .nav-links.open {
    display: flex !important;
  }
  .nav-links li {
    width: 100%;
    height: auto !important;
    border-bottom: 1px solid rgba(200,150,10,0.1);
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links li a {
    font-family: var(--font-title);
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 16px 24px !important;
    height: auto !important;
    display: block !important;
    color: var(--gold-pale) !important;
    border-left: 3px solid transparent;
  }
  .nav-links li a:hover,
  .nav-links li a.active {
    border-left-color: var(--gold) !important;
    background: rgba(200,150,10,0.08) !important;
    color: var(--white) !important;
  }
  .nav-links li a::after { display: none !important; }

  /* Show hamburger */
  .nav-toggle { display: flex !important; }

  /* Hide social label, shrink social icons */
  .header-social-label { display: none; }
  .header-social-icons { gap: 6px; }
  .header-social-icons a { width: 26px; height: 26px; font-size: 11px; }

  /* Hide phone numbers in bottom bar */
  .header-contact { display: none; }

  /* Bottom bar padding */
  .header-bottom-inner { padding: 0 16px; }
  .header-logo img { height: 52px; }

  /* Content layout */
  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; }
  .card-grid-2, .card-grid-3, .card-grid-4 { grid-template-columns: 1fr; }
  .team-hex-grid { gap: 16px; }
  .team-hex { width: 155px; height: 155px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root {
    --header-top-height:    50px;
    --header-bottom-height: 60px;
    --nav-height:           110px;
  }
  .stats-grid { grid-template-columns: 1fr; }
  .slide-content { left: 5%; right: 5%; }
  .team-hex { width: 130px; height: 130px; }
  .team-hex-inner h3 { font-size: 11px; }
  .team-hex-inner p { font-size: 10px; }
  .header-social { display: none; }
}

/* ============================================================
   UTILITY / ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
