/* ============================================================
   HORIZON — Asset and Facility Management Services
   Stylesheet
   Colors: Navy #1B2B5A | Gold #C9A43E | Light bg #F5F7FC
   ============================================================ */

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

:root {
  --navy: #1B2B5A;
  --navy-dark: #111d3d;
  --navy-light: #253669;
  --gold: #C9A43E;
  --gold-light: #e0bc64;
  --gold-dark: #a8882e;
  --white: #ffffff;
  --off-white: #F5F7FC;
  --light-gray: #eef0f6;
  --mid-gray: #8a92a8;
  --text-dark: #1a1a2e;
  --text-body: #3d4460;
  --border: #dde1ec;
  --shadow: 0 4px 24px rgba(27,43,90,0.10);
  --shadow-lg: 0 8px 40px rgba(27,43,90,0.16);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
}

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

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

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

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

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.gold-text { color: var(--gold); }
.navy-text { color: var(--navy); }

/* ── Layout ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: 5rem 0; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,164,62,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

/* ── Section Labels ── */
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-title {
  margin-bottom: 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--mid-gray);
  max-width: 620px;
  margin-bottom: 3rem;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ── Divider ── */
.gold-line {
  width: 56px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 1.5rem;
}
.text-center .gold-line { margin-left: auto; margin-right: auto; }

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 16px rgba(27,43,90,0.08);
  transition: background var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-link {
  padding: 0.5rem 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy);
  border-radius: 6px;
  transition: all var(--transition);
  position: relative;
}
.nav-link:hover, .nav-link.active {
  color: var(--gold);
}
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  transform: translateX(-50%);
  width: 20px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
/* Dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown > .nav-link::before {
  content: '▾';
  margin-left: 4px;
  font-size: 0.75rem;
}
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius);
  min-width: 260px;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition);
  z-index: 100;
  border-top: 3px solid var(--gold);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.875rem;
  color: var(--navy);
  font-weight: 500;
  transition: all var(--transition);
}
.dropdown-menu a:hover {
  background: var(--off-white);
  color: var(--gold);
  padding-left: 1.6rem;
}
.nav-cta {
  margin-left: 1rem;
}
/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #2d4080 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,164,62,0.15) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,164,62,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}
.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,164,62,0.15);
  border: 1px solid rgba(201,164,62,0.35);
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}
.hero h1 span { color: var(--gold-light); }
.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 580px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ── ABOUT SNIPPET ── */
.about-section {
  background: var(--white);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--mid-gray);
  font-size: 0.85rem;
  border: 2px dashed var(--border);
}
.about-image-placeholder .placeholder-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  opacity: 0.4;
}
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about-badge .num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.about-badge .lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.7);
  margin-top: 0.3rem;
}
.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
.about-stat-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 1.25rem;
  border-left: 4px solid var(--gold);
}
.about-stat-card .num {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.about-stat-card .lbl {
  font-size: 0.78rem;
  color: var(--mid-gray);
  margin-top: 0.3rem;
}

/* ── SERVICES OVERVIEW ── */
.services-section {
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border-bottom: 3px solid transparent;
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--gold);
}
.service-icon {
  width: 56px; height: 56px;
  background: rgba(201,164,62,0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.service-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.6rem;
  color: var(--navy);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--text-body);
  flex: 1;
  line-height: 1.65;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 1.25rem;
  transition: gap var(--transition);
}
.service-link:hover { gap: 0.7rem; color: var(--gold); }

/* ── WHY HORIZON ── */
.why-section {
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-top: 1rem;
}
.why-card {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: var(--off-white);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.why-card:hover {
  background: var(--navy);
  border-color: var(--navy);
}
.why-card:hover h3, .why-card:hover p { color: var(--white); }
.why-card:hover .why-num { color: var(--gold-light); }
.why-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.why-card h3 { margin-bottom: 0.5rem; font-size: 1.05rem; }
.why-card p { font-size: 0.875rem; color: var(--mid-gray); margin: 0; transition: color var(--transition); }

/* ── PROCESS / HOW WE ENGAGE ── */
.process-section {
  background: var(--navy);
  color: var(--white);
}
.process-section h2, .process-section .section-label { color: var(--white); }
.process-section .section-label { color: var(--gold-light); }
.process-section .section-subtitle { color: rgba(255,255,255,0.65); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 1rem;
}
.process-step {
  position: relative;
}
.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.process-step h3 { color: var(--white); font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p { color: rgba(255,255,255,0.65); font-size: 0.875rem; margin: 0; }

/* ── FOUNDER ── */
.founder-section {
  background: var(--off-white);
}
.founder-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4rem;
  align-items: start;
}
.founder-image-wrap {
  position: relative;
}
.founder-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--mid-gray);
  font-size: 0.85rem;
  border: 2px dashed var(--border);
}
.founder-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: -30px;
  margin-left: 20px;
}
.founder-card .name { font-size: 1.1rem; font-weight: 700; color: var(--gold-light); }
.founder-card .title { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-top: 0.2rem; }
.awards-list {
  margin-top: 2rem;
}
.award-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}
.award-item:last-child { border-bottom: none; }
.award-icon {
  width: 32px; height: 32px;
  background: rgba(201,164,62,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.award-text { font-size: 0.875rem; color: var(--text-body); }
.award-year { font-size: 0.75rem; color: var(--gold); font-weight: 600; }

/* ── CTA BANNER ── */
.cta-section {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  padding: 4rem 0;
  text-align: center;
}
.cta-section h2 { color: var(--navy); }
.cta-section p { color: rgba(27,43,90,0.75); max-width: 560px; margin: 0.75rem auto 2rem; }

/* ── CONTACT PAGE ── */
.contact-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 140px 0 80px;
  text-align: center;
  color: var(--white);
}
.contact-hero h1 { color: var(--white); }
.contact-hero p { color: rgba(255,255,255,0.75); max-width: 560px; margin: 1rem auto 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  padding: 5rem 0;
}
.contact-info h3 { margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(201,164,62,0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail-text .label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  display: block;
}
.contact-detail-text span { color: var(--text-body); font-size: 0.9rem; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
}
.contact-form-wrap h3 { margin-bottom: 1.75rem; }
.form-group {
  margin-bottom: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 1rem; font-size: 1rem; margin-top: 0.5rem; }
.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  color: #2e7d32;
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
}

/* ── SERVICE INNER PAGE ── */
.service-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.service-hero::after {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,164,62,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.service-hero-content { position: relative; z-index: 1; }
.service-hero-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.service-hero h1 { color: var(--white); margin-bottom: 1rem; }
.service-hero p { color: rgba(255,255,255,0.8); max-width: 620px; font-size: 1.05rem; }

.service-body { padding: 5rem 0; }
.service-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.service-features h3 { margin-bottom: 1.5rem; }
.feature-list { display: flex; flex-direction: column; gap: 0.75rem; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.feature-item .check {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-item span { font-size: 0.9rem; color: var(--text-body); }

.service-image-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--light-gray);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--mid-gray);
  font-size: 0.85rem;
  border: 2px dashed var(--border);
}
.service-image-placeholder .placeholder-icon {
  font-size: 4rem;
  margin-bottom: 0.75rem;
  opacity: 0.35;
}

.service-cta-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
  margin-top: 2rem;
}
.service-cta-box h4 { color: var(--gold-light); margin-bottom: 0.5rem; }
.service-cta-box p { color: rgba(255,255,255,0.7); font-size: 0.875rem; margin-bottom: 1.25rem; }

/* Other services links */
.other-services { padding: 4rem 0; background: var(--off-white); }
.other-services h3 { text-align: center; margin-bottom: 2rem; }
.other-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.other-service-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1.1rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  transition: all var(--transition);
}
.other-service-link:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.other-service-link .icon { font-size: 1.2rem; }

/* ── PAGE HERO (generic) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 580px; margin: 1rem auto 0; font-size: 1.05rem; }
.page-hero .section-label { color: var(--gold-light); }

/* ── FOOTER ── */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 44px; margin-bottom: 1.25rem;  }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; max-width: 280px; }
.footer-tagline {
  font-size: 0.8rem;
  color: var(--gold-light);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-top: 1rem;
  display: block;
}
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold-light); }
.social-links { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.social-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
  color: rgba(255,255,255,0.6);
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}
.footer-bottom {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: var(--gold-light); }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--gold-light); }
.breadcrumb span { color: var(--gold-light); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-badge { bottom: -10px; right: 10px; }
  .founder-grid { grid-template-columns: 1fr; gap: 2rem; }
  .founder-image-placeholder { max-width: 320px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  section { padding: 3.5rem 0; }
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 2rem;
    box-shadow: 0 8px 24px rgba(27,43,90,0.12);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
    gap: 0;
  }
  .nav-menu.open { max-height: 90vh; overflow-y: auto; }
  .nav-link { padding: 0.75rem 0; border-radius: 0; border-bottom: 1px solid var(--border); }
  .nav-link:last-child { border-bottom: none; }
  .nav-cta { margin: 0.75rem 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    border-top: none;
    border-left: 3px solid var(--gold);
    padding: 0;
    margin-left: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .nav-dropdown.open .dropdown-menu { max-height: 500px; }
  .nav-dropdown > .nav-link { display: flex; justify-content: space-between; align-items: center; }
  .nav-dropdown > .nav-link::before { content: none; }
  .nav-dropdown > .nav-link::after { content: '▾'; font-size: 0.75rem; }
  .nav-dropdown.open > .nav-link::after { content: '▴'; }

  .hero { padding-top: 72px; min-height: auto; padding-bottom: 3rem; }
  .hero-stats { gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .service-body-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .other-services-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.5rem; }
  .hero h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; }
  .hero-stats { flex-direction: column; gap: 1rem; }
  .about-badge { position: static; margin-top: 1rem; display: inline-flex; gap: 1rem; }
  .other-services-grid { grid-template-columns: 1fr; }
}
