/* ===== SEVENTY FOUR HEALTHCARE - MAIN STYLESHEET ===== */

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

:root {
  --navy: #0A1F44;
  --navy-light: #1A3A6E;
  --navy-dark: #060F22;
  --gold: #C9A84C;
  --gold-light: #F0D080;
  --gold-pale: #FDF6E3;
  --white: #FFFFFF;
  --off-white: #F8F9FC;
  --grey-light: #EEF0F5;
  --grey: #8A93A8;
  --grey-dark: #4A5568;
  --text: #1E2A3A;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

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

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  padding: 8px 0;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--gold-light); text-decoration: none; transition: var(--transition); }
.topbar a:hover { color: var(--white); }
.topbar-links { display: flex; gap: 20px; align-items: center; }
.topbar-links span { color: rgba(255,255,255,0.3); }
.cqc-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--gold-light);
}
.cqc-badge .dot { width: 6px; height: 6px; background: #4ade80; border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 2px 20px rgba(10,31,68,0.08);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(10,31,68,0.97);
}
.navbar.scrolled .nav-link { color: rgba(255,255,255,0.85) !important; }
.navbar.scrolled .nav-link:hover, .navbar.scrolled .nav-link.active { color: var(--gold-light) !important; }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}
.nav-logo img { height: 52px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links li a, .nav-link {
  display: block;
  padding: 8px 16px;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 50%; right: 50%;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { left: 16px; right: 16px; }
.nav-link:hover, .nav-link.active { color: var(--gold) !important; }
.nav-cta {
  background: var(--gold);
  color: var(--navy-dark) !important;
  border-radius: 4px;
  padding: 9px 20px !important;
  font-weight: 700 !important;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 15px rgba(201,168,76,0.4); }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span { display: block; width: 25px; height: 2px; background: var(--navy); transition: var(--transition); }

/* ===== CONTAINER ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,15,34,0.88) 0%, rgba(10,31,68,0.75) 50%, rgba(6,15,34,0.65) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 780px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.5);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-title span { color: var(--gold-light); font-style: italic; display: block; }
.hero-sub {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin-bottom: 40px;
  max-width: 580px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.45s ease both;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
  padding: 15px 36px;
  border: none;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.45); }
.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 14px 36px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.hero-stats {
  position: absolute;
  bottom: 48px;
  left: 0; right: 0;
  z-index: 2;
  animation: fadeUp 0.8s 0.6s ease both;
}
.hero-stats-inner {
  display: flex;
  gap: 0;
}
.stat-box {
  flex: 1;
  padding: 20px 28px;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-right: none;
  color: var(--white);
}
.stat-box:first-child { border-radius: 8px 0 0 8px; }
.stat-box:last-child { border-right: 1px solid rgba(255,255,255,0.1); border-radius: 0 8px 8px 0; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label { font-size: 0.78rem; letter-spacing: 0.1em; color: rgba(255,255,255,0.65); margin-top: 4px; }

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

/* ===== SECTION STYLES ===== */
section { padding: 100px 0; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--gold);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title em { color: var(--gold); font-style: italic; }
.section-sub {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--grey-dark);
  max-width: 580px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--navy);
  padding: 28px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,0.8);
}
.trust-icon {
  width: 42px; height: 42px;
  background: rgba(201,168,76,0.2);
  border: 1px solid rgba(201,168,76,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.trust-text strong { display: block; font-size: 0.88rem; color: var(--white); }
.trust-text span { font-size: 0.75rem; color: rgba(255,255,255,0.55); letter-spacing: 0.05em; }

/* ===== ABOUT STRIP ===== */
.about-strip { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.about-img-accent {
  position: absolute;
  bottom: -30px;
  right: -30px;
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  border: 6px solid var(--white);
  box-shadow: 0 10px 40px rgba(10,31,68,0.2);
}
.about-badge {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--gold);
  color: var(--navy-dark);
  border-radius: 8px;
  padding: 16px 20px;
  text-align: center;
  box-shadow: 0 8px 25px rgba(201,168,76,0.4);
}
.about-badge .big { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; line-height: 1; }
.about-badge .small { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }
.about-list { margin: 28px 0; display: flex; flex-direction: column; gap: 12px; }
.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--grey-dark);
}
.about-list-item::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
  margin-top: 5px;
  flex-shrink: 0;
}

/* ===== SERVICES ===== */
.services-section { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 60px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 12px;
  overflow: hidden;
  transition: var(--transition);
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(10,31,68,0.12);
  border-color: var(--gold);
}
.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.service-card-body { padding: 28px; }
.service-icon {
  width: 52px; height: 52px;
  background: var(--gold-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--gold); }
.service-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card-text {
  font-size: 0.92rem;
  line-height: 1.7;
  color: var(--grey-dark);
}
.service-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  border-top: 1px solid var(--grey-light);
  padding-top: 14px;
  width: 100%;
}

/* ===== CONDITIONS ===== */
.conditions-section { background: var(--navy); color: var(--white); }
.conditions-section .section-title { color: var(--white); }
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 60px;
  border-radius: 12px;
  overflow: hidden;
}
.condition-item {
  background: rgba(255,255,255,0.04);
  padding: 50px 40px;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
}
.condition-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 0;
  background: var(--gold);
  transition: var(--transition);
}
.condition-item:hover { background: rgba(201,168,76,0.06); }
.condition-item:hover::before { width: 100%; }
.condition-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201,168,76,0.15);
  line-height: 1;
  margin-bottom: 8px;
}
.condition-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 14px;
}
.condition-text {
  font-size: 0.93rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.65);
}
.condition-icon {
  position: absolute;
  top: 40px;
  right: 40px;
  font-size: 2rem;
  opacity: 0.35;
}

/* ===== LOCATIONS ===== */
.locations-section { background: var(--off-white); }
.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
  margin-top: 50px;
}
.location-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 10px;
  padding: 28px 20px;
  text-align: center;
  transition: var(--transition);
  cursor: default;
}
.location-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(10,31,68,0.1);
}
.location-pin { font-size: 1.6rem; margin-bottom: 10px; }
.location-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; font-weight: 600; color: var(--navy); }
.location-sub { font-size: 0.75rem; color: var(--grey); letter-spacing: 0.05em; margin-top: 4px; }

/* ===== WHY US ===== */
.why-section { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-features { display: flex; flex-direction: column; gap: 28px; margin-top: 40px; }
.why-feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.why-feature-icon {
  width: 52px; height: 52px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.why-feature-title { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.why-feature-text { font-size: 0.92rem; line-height: 1.7; color: var(--grey-dark); }
.why-img-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.why-img-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}
.why-img-grid img:first-child { height: 420px; grid-row: 1/3; }

/* ===== TEAM / APPROACH ===== */
.approach-section { background: var(--navy-dark); color: var(--white); }
.approach-section .section-title { color: var(--white); }
.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.approach-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: var(--transition);
}
.approach-card:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }
.approach-num {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201,168,76,0.3);
  line-height: 1;
  margin-bottom: 16px;
}
.approach-title { font-family: 'Playfair Display', serif; font-size: 1.25rem; color: var(--white); margin-bottom: 12px; }
.approach-text { font-size: 0.9rem; line-height: 1.75; color: rgba(255,255,255,0.6); }

/* ===== CTA BAND ===== */
.cta-band {
  background: linear-gradient(135deg, var(--gold) 0%, #A8732C 100%);
  padding: 80px 0;
}
.cta-band-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy-dark);
  font-weight: 700;
}
.cta-band p { color: rgba(10,31,68,0.75); margin-top: 8px; font-size: 1.05rem; }
.btn-dark {
  background: var(--navy-dark);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: var(--transition);
  display: inline-block;
}
.btn-dark:hover { background: var(--navy); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.3); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 30px;
  border: 1px solid var(--grey-light);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: var(--gold);
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 24px;
  opacity: 0.3;
}
.testimonial-text { font-size: 0.95rem; line-height: 1.8; color: var(--grey-dark); margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
}
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.testimonial-role { font-size: 0.78rem; color: var(--grey); }

/* ===== CONTACT PAGE ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 140px 0 80px;
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-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.05'%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");
}
.page-hero .section-title { color: var(--white); margin: 0; }
.page-hero .section-label { justify-content: center; }
.breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 16px; }
.breadcrumb a { color: var(--gold-light); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  margin-top: 60px;
}
.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 48px 40px;
}
.contact-info-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 8px;
}
.contact-info-card p { color: rgba(255,255,255,0.65); font-size: 0.92rem; line-height: 1.7; margin-bottom: 36px; }
.contact-item { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-item-icon {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item-label { font-size: 0.75rem; color: rgba(255,255,255,0.45); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 3px; }
.contact-item-value { color: var(--white); font-size: 0.95rem; }
.contact-item-value a { color: var(--gold-light); text-decoration: none; }
.contact-social { display: flex; gap: 12px; margin-top: 36px; }
.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: var(--transition);
  font-size: 0.9rem;
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-dark); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 12px;
  padding: 48px 40px;
}
.contact-form-wrap h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-form-wrap p { color: var(--grey-dark); font-size: 0.92rem; margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--navy); margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--grey-light);
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.93rem;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; margin-top: 8px; padding: 15px; font-size: 0.95rem; }

/* ===== CAREERS SECTION ===== */
.careers-hero { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%); }
.job-listings { margin-top: 60px; }
.job-card {
  background: var(--white);
  border: 1px solid var(--grey-light);
  border-radius: 10px;
  padding: 28px 32px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: var(--transition);
}
.job-card:hover { border-color: var(--gold); box-shadow: 0 8px 25px rgba(10,31,68,0.08); }
.job-title { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.job-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.job-tag {
  background: var(--gold-pale);
  color: var(--navy);
  border-radius: 20px;
  padding: 3px 12px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  border: 1px solid rgba(201,168,76,0.3);
}
.apply-form-section { background: var(--off-white); }
.apply-form-wrap {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 12px;
  padding: 60px;
  border: 1px solid var(--grey-light);
  box-shadow: 0 20px 60px rgba(10,31,68,0.06);
}
.apply-form-wrap h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--navy); margin-bottom: 8px; }
.apply-form-wrap > p { color: var(--grey-dark); margin-bottom: 40px; }
.form-section-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin: 32px 0 20px; border-top: 1px solid var(--grey-light); padding-top: 28px; }
.form-section-title:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.file-upload-wrap {
  border: 2px dashed var(--grey-light);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
}
.file-upload-wrap:hover { border-color: var(--gold); background: var(--gold-pale); }
.file-upload-wrap input { display: none; }
.file-upload-wrap label { cursor: pointer; display: block; }
.file-upload-icon { font-size: 2rem; margin-bottom: 8px; }
.file-upload-text { font-size: 0.88rem; color: var(--grey-dark); }
.file-upload-text strong { color: var(--gold); }
.form-check { display: flex; gap: 10px; align-items: flex-start; margin-top: 20px; }
.form-check input { width: auto; margin-top: 2px; }
.form-check label { font-size: 0.88rem; color: var(--grey-dark); line-height: 1.6; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-about p { font-size: 0.9rem; line-height: 1.75; margin-top: 20px; margin-bottom: 24px; }
.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.3);
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 12px; font-size: 0.88rem; }
.footer-contact-item .icon { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ===== SUCCESS / ERROR MESSAGES ===== */
.alert { padding: 16px 20px; border-radius: 8px; font-size: 0.9rem; margin-bottom: 20px; }
.alert-success { background: #f0fdf4; border: 1px solid #86efac; color: #166534; }
.alert-error { background: #fef2f2; border: 1px solid #fca5a5; color: #991b1b; }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  .about-grid, .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .conditions-grid { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }
  .about-badge { display: none; }
  .why-img-grid img:first-child { height: 250px; grid-row: auto; }
}
@media (max-width: 680px) {
  section { padding: 60px 0; }
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero-stats-inner { flex-direction: column; }
  .stat-box { border-right: 1px solid rgba(255,255,255,0.1) !important; border-radius: 8px !important; margin-bottom: 4px; }
  .topbar { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .apply-form-wrap { padding: 30px 20px; }
  .job-card { flex-direction: column; align-items: flex-start; }
}
