/* ============================================================
   SSE GLOBAL ENERGY - SHARED STYLESHEET
   Brand Colors: Green #1a7a2e | Gold #f5a500 | Dark Navy #0a1628
   ============================================================ */

/* ----- FONTS ----- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Open+Sans:wght@300;400;600&display=swap');

/* ----- RESET & BASE ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 17px; }

body {
  font-family: 'Open Sans', sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.7;
}

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ----- CSS VARIABLES ----- */
:root {
  --green:      #1a7a2e;
  --green-dark: #0d4a1a;
  --green-light:#eaf4ec;
  --gold:       #f5a500;
  --gold-dark:  #c78400;
  --navy:       #0a1628;
  --navy-mid:   #12243a;
  --white:      #ffffff;
  --light-gray: #f5f5f5;
  --mid-gray:   #e0e0e0;
  --dark:       #1a1a1a;
  --text-gray:  #555555;
  --radius:     6px;
  --shadow:     0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.16);
  --transition: all 0.3s ease;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 22, 40, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: var(--transition);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 50%;
}

.nav-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.2;
}

.nav-title span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a {
  display: block;
  padding: 8px 14px;
  color: #cdd8e3;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-radius: var(--radius);
  transition: var(--transition);
  font-family: 'Montserrat', sans-serif;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
  color: var(--gold);
  background: rgba(245, 165, 0, 0.1);
}

/* CTA button in nav */
.nav-links .nav-cta > a {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 9px 20px;
  border-radius: 4px;
  font-weight: 700;
  transition: var(--transition);
}
.nav-links .nav-cta > a:hover {
  background: var(--gold-dark);
  color: white !important;
}

/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--navy);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  min-width: 260px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 200;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li a {
  display: block;
  padding: 11px 18px;
  color: #cdd8e3;
  font-size: 0.85rem;
  font-family: 'Open Sans', sans-serif;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.dropdown-menu li:last-child a { border-bottom: none; }

.dropdown-menu li a:hover {
  background: rgba(245, 165, 0, 0.12);
  color: var(--gold);
  padding-left: 24px;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  z-index: 999;
  overflow-y: auto;
  padding: 24px;
}

.mobile-menu.open { display: block; }

.mobile-menu ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu ul li a {
  display: block;
  padding: 13px 16px;
  color: #cdd8e3;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  border-radius: var(--radius);
  transition: var(--transition);
}
.mobile-menu ul li a:hover {
  background: rgba(245,165,0,0.1);
  color: var(--gold);
}
.mobile-sub { padding-left: 16px !important; font-weight: 400 !important; font-size: 0.85rem !important; color: #8899aa !important; }


/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.35;
  filter: grayscale(20%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.92) 0%, rgba(13,74,26,0.6) 60%, rgba(10,22,40,0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 24px 80px;
}

.hero-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  max-width: 720px;
  margin-bottom: 22px;
  line-height: 1.2;
}

.hero h1 span { color: var(--gold); }

.hero p {
  font-size: 1.18rem;
  color: #b0c4d8;
  max-width: 600px;
  margin-bottom: 36px;
  line-height: 1.85;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Page hero (shorter, for inner pages) */
.page-hero {
  padding: 140px 24px 80px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--green-dark) 60%, var(--navy) 100%);
  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='%23ffffff' fill-opacity='0.03'%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-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 1.12rem;
  color: #b0c4d8;
  max-width: 600px;
  margin: 0 auto;
}

.page-hero .breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: #8899aa;
  font-family: 'Montserrat', sans-serif;
}

.page-hero .breadcrumb a { color: var(--gold); }
.page-hero .breadcrumb span { color: #8899aa; }


/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245,165,0,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
  transform: translateY(-2px);
}

.btn-green {
  background: var(--green);
  color: white;
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,122,46,0.35);
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.8rem;
}


/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 88px 24px;
}

.section-light { background: var(--white); }
.section-gray  { background: var(--light-gray); }
.section-dark  { background: var(--navy); color: white; }
.section-green { background: var(--green); color: white; }

.section-header {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-header.left { text-align: left; margin-left: 0; }

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.section-header h2 {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.08rem;
  color: var(--text-gray);
  line-height: 1.85;
}

.section-dark .section-header p,
.section-green .section-header p { color: rgba(255,255,255,0.75); }

.section-divider {
  width: 56px;
  height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px auto 0;
}

.section-header.left .section-divider { margin-left: 0; }

.container {
  max-width: 1200px;
  margin: 0 auto;
}


/* ============================================================
   CARDS
   ============================================================ */
.card-grid {
  display: grid;
  gap: 28px;
}

.card-grid-2 { grid-template-columns: repeat(2, 1fr); }
.card-grid-3 { grid-template-columns: repeat(3, 1fr); }
.card-grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--mid-gray);
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

.card-img {
  height: 220px;
  background: var(--light-gray);
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card-img img { transform: scale(1.05); }

.card-body {
  padding: 24px;
}

.card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.card-body p {
  font-size: 0.97rem;
  color: var(--text-gray);
  line-height: 1.75;
  margin-bottom: 18px;
}

.card-body .card-link {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.card-body .card-link:hover { color: var(--gold); gap: 10px; }


/* Service icon cards */
.icon-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: var(--shadow);
}

.icon-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.icon-card .icon {
  width: 64px;
  height: 64px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.8rem;
  transition: var(--transition);
}

.icon-card:hover .icon {
  background: var(--gold);
}

.icon-card h3 {
  font-size: 1.08rem;
  color: var(--navy);
  margin-bottom: 12px;
}

.icon-card p {
  font-size: 0.94rem;
  color: var(--text-gray);
  line-height: 1.75;
}

/* Icon cards inside dark sections - override for legibility */
.section-dark .icon-card {
  background: #152638;
  border-color: rgba(255,255,255,0.12);
  border-top: 3px solid var(--gold);
}

.section-dark .icon-card h3 {
  color: #ffffff;
}

.section-dark .icon-card p {
  color: #b8ccdc !important;
  font-size: 0.95rem;
}


/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--green);
  padding: 48px 24px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.stat-item h3 {
  font-size: 2.4rem;
  color: var(--white);
  margin-bottom: 4px;
}

.stat-item h3 span { color: var(--gold); }

.stat-item p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.82);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
}


/* ============================================================
   TWO-COLUMN CONTENT SECTIONS
   ============================================================ */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.two-col.reverse { }

.two-col-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.two-col-img::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 3px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
}

.two-col-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.two-col-text .section-tag { display: block; margin-bottom: 8px; }
.two-col-text h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 18px;
  color: var(--navy);
}

.two-col-text p {
  color: var(--text-gray);
  margin-bottom: 16px;
  font-size: 1.02rem;
  line-height: 1.85;
}


/* ============================================================
   CHECKLIST / BULLET LISTS
   ============================================================ */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 20px 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.7;
}

.check-list li::before {
  content: '✓';
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  background: var(--green);
  color: white;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  margin-top: 1px;
}

.gold-list li::before {
  background: var(--gold);
  color: var(--navy);
}


/* ============================================================
   SERVICE DETAIL PAGE LAYOUT
   ============================================================ */
.service-hero-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

.service-intro {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px;
}

.service-intro p {
  color: var(--text-gray);
  font-size: 1.06rem;
  line-height: 1.9;
  margin-bottom: 16px;
}

.service-sidebar {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 28px;
  color: white;
  height: fit-content;
}

.service-sidebar h3 {
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.service-sidebar ul li {
  padding: 8px 0;
  font-size: 0.88rem;
  color: #b0c4d8;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-sidebar ul li::before {
  content: '▸';
  color: var(--gold);
  font-size: 0.8rem;
}

.service-sidebar ul li:last-child { border-bottom: none; }


/* ============================================================
   TEAM CARDS
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--mid-gray);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.team-card-header {
  background: linear-gradient(135deg, var(--navy), var(--green-dark));
  padding: 32px 24px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  flex-shrink: 0;
  border: 3px solid rgba(255,255,255,0.2);
}

.team-card-header h3 {
  color: white;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.team-role {
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Montserrat', sans-serif;
}

.team-card-body {
  padding: 24px;
}

.team-card-body p {
  font-size: 0.92rem;
  color: var(--text-gray);
  line-height: 1.75;
}


/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h2 {
  font-size: 1.9rem;
  margin-bottom: 16px;
  color: var(--navy);
}

.contact-info p {
  font-size: 0.97rem;
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--green);
  margin-bottom: 4px;
  font-family: 'Montserrat', sans-serif;
}

.contact-detail-text p, .contact-detail-text a {
  font-size: 0.95rem;
  color: var(--dark);
  line-height: 1.6;
}

.contact-detail-text a:hover { color: var(--green); }

/* Form */
.contact-form {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 40px;
}

.contact-form h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-form > p {
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  font-family: 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--mid-gray);
  border-radius: var(--radius);
  font-family: 'Open Sans', sans-serif;
  font-size: 0.93rem;
  color: var(--dark);
  background: white;
  transition: var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(26,122,46,0.12);
}

.form-group textarea { resize: vertical; min-height: 140px; }
.form-group select { cursor: pointer; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-success {
  display: none;
  background: var(--green-light);
  border: 1px solid var(--green);
  border-radius: var(--radius);
  padding: 16px 20px;
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.93rem;
  margin-top: 16px;
}


/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--navy);
  color: white;
  padding: 64px 24px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand .nav-logo {
  height: 56px;
  width: 56px;
  margin-bottom: 14px;
}

.footer-brand h3 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.93rem;
  color: #8899aa;
  line-height: 1.8;
  max-width: 290px;
}

.footer-col h4 {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 18px;
  font-family: 'Montserrat', sans-serif;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
  font-size: 0.92rem;
  color: #8899aa;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.footer-contact-item span:first-child {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 1px;
}

.footer-contact-item span:last-child {
  font-size: 0.86rem;
  color: #8899aa;
  line-height: 1.6;
}

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: #8899aa;
}

.footer-bottom a {
  color: #8899aa;
  transition: var(--transition);
}
.footer-bottom a:hover { color: var(--gold); }


/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-gold    { color: var(--gold); }
.text-green   { color: var(--green); }
.text-white   { color: white; }
.text-navy    { color: var(--navy); }
.bg-gold      { background: var(--gold); }
.bg-green     { background: var(--green); }
.bg-navy      { background: var(--navy); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }
.fw-700 { font-weight: 700; }

/* Gold accent bar (like in brochure) */
.accent-bar {
  display: inline-block;
  width: 4px;
  height: 32px;
  background: var(--gold);
  border-radius: 2px;
  vertical-align: middle;
  margin-right: 12px;
}

/* Highlight box */
.highlight-box {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 18px 22px;
  margin: 24px 0;
}

.highlight-box p {
  font-size: 0.97rem;
  color: var(--green-dark);
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .team-grid   { grid-template-columns: 1fr; }
  .service-intro { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .dropdown-menu { display: none; }
  .nav-toggle { display: flex; }

  .card-grid-2, .card-grid-3 { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .two-col-img::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .hero-content { padding: 100px 20px 60px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .service-hero-img { height: 280px; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 1.9rem; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}
