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

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

:root {
  /* EGH palette */
  --rich-cerulean:  #2174A2;
  --oxford-navy:    #0C3661;
  --sunflower-gold: #F7AF26;
  --baltic-blue:    #18547E;
  --forest-green:  #559930;
  /* Light theme (pastel green tint, palette text & accents) */
  --bg:             #f4f9f2;
  --bg-2:           #eef5eb;
  --bg-3:           #e5efe2;
  --text:           #0C3661;
  --text-muted:     rgba(12,54,97,0.82);
  --text-dim:       rgba(12,54,97,0.62);
  --border:         rgba(12,54,97,0.12);
  --border-subtle:  rgba(85,153,48,0.08);
  --accent:         var(--rich-cerulean);
  --accent-light:   #2d8bc4;
  --accent-dim:     rgba(33,116,162,0.1);
  --accent-border:  rgba(33,116,162,0.28);
  --accent-green:   var(--forest-green);
  --green-dim:      rgba(85,153,48,0.1);
  --green-border:   rgba(85,153,48,0.22);
  --accent-gold:    var(--sunflower-gold);
  --gold-dim:       rgba(247,175,38,0.12);
  --gold-border:    rgba(247,175,38,0.35);
  --radius-sm:      8px;
  --radius-md:      16px;
  --radius-lg:      24px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
em, i { font-style: italic; color: var(--accent-green); }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.1;
  font-weight: 600;
}

/* ── LAYOUT ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
.section { padding: 120px 0; }

/* ── UTILITY ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--accent-green);
  opacity: 0.7;
}
.section-title {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 24px;
}
.divider {
  width: 48px; height: 2px;
  background: linear-gradient(90deg, var(--accent-green), var(--accent), transparent);
  margin-bottom: 32px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 36px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(33,116,162,0.35); }
.btn-outline { background: transparent; color: var(--text); border: 1px solid var(--border); }
.btn-outline:hover { border-color: var(--accent-border); background: var(--accent-dim); }
.btn-outline-teal { background: transparent; color: var(--accent); border: 1px solid var(--accent-border); }
.btn-outline-teal:hover { background: var(--accent-dim); border-color: var(--accent); }
.btn-full { width: 100%; justify-content: center; }

/* ── Footer WhatsApp Button ── */
.btn-whatsapp { background: rgba(85,153,48,0.18); color: var(--accent-green); border: 1px solid rgba(85,153,48,0.5); }
.btn-whatsapp { display: inline-flex; align-items: center; gap: 10px; padding: 10px 12px; border-radius: 999px; }
.btn-whatsapp:hover { background: rgba(85,153,48,0.22); transform: translateY(-1px); box-shadow: 0 12px 28px rgba(85,153,48,0.14); }
.btn-whatsapp-icon { width: 18px; height: 18px; flex-shrink: 0; display: block; }
.btn-whatsapp-text { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }

/* ── NAV ── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 300;
  padding: 24px 0;
  transition: all 0.4s ease;
  border-bottom: 1px solid transparent;
}
#nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 18px 0;
  border-color: var(--border);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.nav-logo:hover { opacity: 0.9; }
.nav-logo:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 8px; }
.nav-brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text);
  margin-left: 14px;
  white-space: nowrap;
}
/* Nav logo: mini hero-badge (rounded corners) */
.nav-logo-emblem {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nav-emblem-glow {
  position: absolute;
  inset: -8px;
  border-radius: 20px;
  background: radial-gradient(circle at center, rgba(33,116,162,0.15) 0%, rgba(33,116,162,0.04) 40%, transparent 70%);
  pointer-events: none;
}
.nav-emblem-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 45%, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.9) 35%, rgba(33,116,162,0.08) 100%);
  box-shadow:
    0 0 0 1px rgba(33,116,162,0.2),
    0 0 16px rgba(33,116,162,0.12),
    inset 0 0 12px rgba(255,255,255,0.5);
}
.nav-emblem-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  display: block;
}
.nav-logo:hover .nav-emblem-inner {
  box-shadow:
    0 0 0 1px rgba(33,116,162,0.35),
    0 0 24px rgba(33,116,162,0.2),
    inset 0 0 14px rgba(255,255,255,0.55);
}
.nav-logo-text { font-family: 'Outfit', sans-serif; font-size: 0.7rem; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-top: 2px; }
.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a { padding: 8px 16px; font-size: 0.82rem; font-weight: 500; letter-spacing: 0.03em; color: var(--text-muted); border-radius: 6px; transition: color 0.2s, background 0.2s; }
.nav-links a:hover { color: var(--text); background: var(--accent-dim); }
.nav-links a.active { color: var(--accent); }
.nav-links .nav-pill { background: var(--accent-dim); border: 1px solid var(--accent-border); color: var(--accent) !important; margin-left: 8px; }
.nav-links .nav-pill:hover { background: rgba(33,116,162,0.18) !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: transparent; border: none; outline: none; padding: 4px; -webkit-appearance: none; appearance: none; -webkit-tap-highlight-color: transparent; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--accent); border-radius: 2px; transition: all 0.3s; }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 0 100px;
  box-sizing: border-box;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(85,153,48,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 100% 80%, rgba(33,116,162,0.06) 0%, transparent 60%),
    linear-gradient(160deg, var(--bg-2) 0%, var(--bg) 60%);
}
.hero-grid {
  display: none; /* grid hidden so you can compare – remove this line to restore */
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(33,116,162,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,116,162,0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 80% at 60% 40%, black 20%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.hero-left { display: flex; flex-direction: column; }
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-badge {
  position: relative;
  width: 280px;
  height: 280px;
  border-radius: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: heroBadgeReveal 0.9s 0.5s ease-out forwards;
}
.hero-badge-glow {
  position: absolute;
  inset: -35px;
  border-radius: 75px;
  background: radial-gradient(circle at center, rgba(33,116,162,0.2) 0%, rgba(33,116,162,0.06) 40%, transparent 70%);
  animation: heroBadgeGlow 3.5s ease-in-out infinite;
  pointer-events: none;
}
.hero-badge-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 40px;
  overflow: hidden;
  display: block;
  background: radial-gradient(circle at 50% 45%, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.9) 35%, rgba(33,116,162,0.08) 100%);
  box-shadow:
    0 0 0 1px rgba(33,116,162,0.2),
    0 0 60px rgba(33,116,162,0.15),
    inset 0 0 40px rgba(255,255,255,0.5);
  animation: heroBadgePulse 4s ease-in-out infinite;
}
.hero-badge-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 40px;
  display: block;
}
.hero-title { font-size: clamp(2.4rem, 5.5vw, 4.5rem); font-weight: 600; line-height: 1.05; margin-bottom: 18px; letter-spacing: -0.01em; opacity: 0; animation: fadeUp 0.8s 0.35s ease forwards; }
.hero-title .line { display: block; }
.hero-title em { font-style: italic; color: var(--accent-green); }
.hero-mobile-line { display: none; }
.hero-sub { font-size: 0.95rem; color: var(--text-muted); max-width: 520px; line-height: 1.7; margin-bottom: 28px; font-weight: 300; opacity: 0; animation: fadeUp 0.8s 0.5s ease forwards; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; opacity: 0; animation: fadeUp 0.8s 0.65s ease forwards; margin-bottom: 0; }
@keyframes heroBadgeReveal { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
@keyframes heroBadgeGlow { 0%, 100% { opacity: 0.7; transform: scale(1); } 50% { opacity: 1; transform: scale(1.05); } }
@keyframes heroBadgePulse { 0%, 100% { box-shadow: 0 0 0 1px rgba(33,116,162,0.2), 0 0 60px rgba(33,116,162,0.15), inset 0 0 40px rgba(255,255,255,0.5); } 50% { box-shadow: 0 0 0 1px rgba(33,116,162,0.35), 0 0 80px rgba(33,116,162,0.25), inset 0 0 50px rgba(255,255,255,0.6); } }

/* ── COMPANIES ── */
.companies-section { background: var(--bg-2); position: relative; overflow: hidden; }
.companies-section::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--green-border), var(--accent-border), transparent); }
.companies-intro { margin-bottom: 72px; }
.companies-intro .section-title { max-width: 520px; }
.companies-intro p { color: var(--text-muted); font-size: 1rem; max-width: 480px; font-weight: 300; }
.companies-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.company-card { position: relative; background: linear-gradient(180deg, rgba(33,116,162,0.05) 0%, var(--bg-3) 18%); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; display: flex; flex-direction: column; text-decoration: none; color: var(--text); transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.company-card:hover { transform: translateY(-3px); box-shadow: 0 12px 28px rgba(12,54,97,0.12); }
.company-card.teal-card:hover { border-color: var(--accent-border); }
.company-card.orange-card:hover { border-color: var(--accent-border); }
.card-bar { height: 3px; width: 100%; }
.teal-bar { background: linear-gradient(90deg, var(--rich-cerulean), var(--accent-light), rgba(33,116,162,0.4)); }
.orange-bar { background: linear-gradient(90deg, var(--rich-cerulean), var(--accent-light), rgba(33,116,162,0.4)); }
.card-body { padding: 48px 44px; flex: 1; display: flex; flex-direction: column; }
.card-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 28px; flex-shrink: 0; }
.teal-icon { background: var(--accent-dim); border: 1px solid var(--accent-border); color: var(--accent); }
.orange-icon { background: var(--accent-dim); border: 1px solid var(--accent-border); color: var(--accent); }
.card-pill { display: inline-block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-dim); border: 1px solid var(--border); border-radius: 20px; padding: 4px 12px; margin-bottom: 16px; }
.card-name { font-size: 2.2rem; font-weight: 700; margin-bottom: 16px; line-height: 1.15; }
.card-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; flex: 1; font-weight: 300; }
.card-services { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 40px; }
.card-services li { display: flex; align-items: center; gap: 12px; font-size: 0.85rem; color: var(--text-muted); font-weight: 300; }
.card-services li::before { content: ''; flex-shrink: 0; width: 5px; height: 5px; border-radius: 50%; }
.teal-card .card-services li::before { background: var(--accent); }
.orange-card .card-services li::before { background: var(--accent); }
.card-cta { display: inline-flex; align-items: center; gap: 10px; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; transition: gap 0.2s; }
.teal-card .card-cta { color: var(--accent); }
.orange-card .card-cta { color: var(--accent); }
.company-card:hover .card-cta { gap: 14px; }

/* ── ABOUT ── */
.about-section { background: var(--bg); position: relative; }
.about-section::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--green-border), var(--border), transparent); }
.about-section .section-label { color: var(--accent-green); }
.about-section .section-label::before { background: var(--accent-green); }
.about-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 100px; align-items: start; }
.about-text p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.85; font-weight: 300; margin-bottom: 20px; }
.about-text p:last-child { margin-bottom: 0; }
.about-cards { display: flex; flex-direction: column; gap: 24px; }
.vision-card, .mission-card { background: var(--bg-3); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 40px; position: relative; overflow: hidden; }
.vision-card { border-left: 3px solid var(--accent); }
.vision-card::before { content: ''; position: absolute; top: 0; right: 0; width: 120px; height: 120px; background: radial-gradient(circle at top right, rgba(33,116,162,0.06), transparent 70%); }
.mission-card { border-left: 3px solid var(--accent-green); }
.mission-card::before { content: ''; position: absolute; top: 0; right: 0; width: 100px; height: 100px; background: radial-gradient(circle at top right, rgba(85,153,48,0.06), transparent 70%); }
.vm-label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-green); margin-bottom: 16px; display: block; }
.vision-card blockquote { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-style: italic; line-height: 1.45; color: var(--text); font-weight: 400; }
.mission-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.85; font-weight: 300; }

/* ── CTA ── */
.cta-section { background: var(--bg-3); position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(85,153,48,0.08) 0%, transparent 65%); }
.cta-section::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--green-border), var(--accent-border), transparent); }
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 0 auto; }
.cta-inner .section-title { margin-bottom: 16px; }
.cta-inner .section-label { justify-content: center; color: var(--accent-green); }
.cta-inner .section-label::before { display: none; }
.cta-inner .section-title { color: var(--text); }
.cta-sub { color: var(--text-muted); font-size: 1rem; margin-bottom: 44px; font-weight: 300; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  background: var(--bg-2);
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 20% 40%, rgba(85,153,48,0.06) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 80% 30%, rgba(33,116,162,0.05) 0%, transparent 60%),
    linear-gradient(160deg, var(--bg-3) 0%, var(--bg-2) 100%);
}
.page-hero-grid {
  display: none; /* grid hidden – remove this line to restore */
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(33,116,162,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(33,116,162,0.03) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 70% 70% at 70% 40%, black, transparent);
}

/* Two-column hero layout */
.page-hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}
.page-hero-left { display: flex; flex-direction: column; }
.page-hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-hero-emblem {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: emblemReveal 0.9s 0.5s ease-out forwards;
}
.page-hero-emblem-glow {
  position: absolute;
  inset: -30px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(33,116,162,0.18) 0%, rgba(33,116,162,0.05) 40%, transparent 70%);
  animation: pageEmblemGlow 3.5s ease-in-out infinite;
  pointer-events: none;
}
.page-hero-emblem-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(33,116,162,0.3);
  pointer-events: none;
}
.page-hero-emblem-ring-1 { inset: -12px; animation: heroBadgeRing 8s linear infinite; }
.page-hero-emblem-ring-2 { inset: -24px; border-color: rgba(33,116,162,0.2); animation: heroBadgeRing 12s linear infinite reverse; }
.page-hero-emblem-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  background: radial-gradient(circle at 50% 45%, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 35%, rgba(33,116,162,0.08) 100%);
  box-shadow:
    0 0 0 1px rgba(33,116,162,0.18),
    0 0 50px rgba(33,116,162,0.12),
    inset 0 0 36px rgba(255,255,255,0.45);
  animation: pageEmblemPulse 4s ease-in-out infinite;
}
.page-hero-emblem .page-hero-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  display: block;
}
@keyframes pageEmblemGlow { 0%, 100% { opacity: 0.75; transform: scale(1); } 50% { opacity: 1; transform: scale(1.04); } }
@keyframes pageEmblemPulse { 0%, 100% { box-shadow: 0 0 0 1px rgba(33,116,162,0.18), 0 0 50px rgba(33,116,162,0.12), inset 0 0 36px rgba(255,255,255,0.45); } 50% { box-shadow: 0 0 0 1px rgba(33,116,162,0.3), 0 0 70px rgba(33,116,162,0.2), inset 0 0 44px rgba(255,255,255,0.55); } }

.breadcrumb { display: inline-flex; align-items: center; gap: 10px; font-size: 0.76rem; color: var(--text-dim); margin-bottom: 32px; }
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent-green); }
.page-hero-title { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 600; line-height: 1.12; margin-bottom: 20px; }
.page-hero-sub { font-size: 1rem; color: var(--text-muted); max-width: 480px; line-height: 1.75; margin-bottom: 36px; font-weight: 300; }
.page-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── MAINTENANCE INTRO ── */
.m-intro { background: var(--bg-2); }
.m-intro-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 100px; align-items: start; }
.m-intro-text p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.85; font-weight: 300; margin-bottom: 20px; }
.m-intro-text p:last-child { margin-bottom: 32px; }
.glance-list { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.glance-item { display: flex; align-items: flex-start; gap: 14px; font-size: 0.88rem; color: var(--text-muted); font-weight: 300; }
.glance-check { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--green-dim); border: 1px solid var(--green-border); display: flex; align-items: center; justify-content: center; color: var(--accent-green); font-size: 0.6rem; margin-top: 2px; }

/* ── SERVICES ── */
.m-services { background: var(--bg-3); }
.m-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.service-card { background: linear-gradient(180deg, rgba(33,116,162,0.04) 0%, var(--bg-3) 15%); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 36px 32px; display: flex; flex-direction: column; gap: 20px; position: relative; transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--rich-cerulean), var(--accent-light)); border-radius: var(--radius-md) var(--radius-md) 0 0; }
.service-card:hover { border-color: var(--accent-border); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(12,54,97,0.08); }
.service-card.emergency-card { border-color: var(--border); }
.service-card.emergency-card::before { background: linear-gradient(90deg, var(--rich-cerulean), var(--accent-light)); }
.service-card.emergency-card:hover { border-color: var(--accent-border); }
.svc-icon { color: var(--accent); }
.emergency-card .svc-icon { color: var(--accent); }
.svc-title { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 700; line-height: 1.2; }
.svc-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.svc-list li { font-size: 0.84rem; color: var(--text-muted); padding-left: 16px; position: relative; line-height: 1.55; font-weight: 300; }
.svc-list li::before { content: ''; position: absolute; left: 0; top: 9px; width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
.emergency-card .svc-list li::before { background: var(--accent); }
.emergency-badge { position: absolute; top: 20px; right: 20px; background: var(--accent); color: #fff; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 10px; border-radius: 20px; }

/* ── DIFFERENCE ── */
.difference-section { background: var(--bg-3); position: relative; overflow: hidden; }
.difference-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(85,153,48,0.06) 0%, transparent 65%); }
.difference-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; text-align: center; }
.difference-inner .section-label { justify-content: center; color: var(--accent-green); }
.difference-inner .section-label::before { display: none; }
.difference-inner p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.9; font-weight: 300; }

/* ── CONTACT ── */
.contact-section { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.8fr; gap: 100px; align-items: start; }
.contact-left p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.8; margin-bottom: 28px; font-weight: 300; }
.emergency-note { display: flex; align-items: center; gap: 12px; font-size: 0.82rem; color: var(--accent-green); background: var(--green-dim); border: 1px solid var(--green-border); border-radius: var(--radius-sm); padding: 20px 24px; margin-top: 1.5rem; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-dim); }
.form-group input, .form-group select, .form-group textarea { background: var(--bg); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 14px 18px; color: var(--text); font-family: 'Outfit', sans-serif; font-size: 0.9rem; font-weight: 300; transition: border-color 0.2s, background 0.2s; outline: none; resize: vertical; -webkit-appearance: none; appearance: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); background: var(--bg-2); }
.form-group select { cursor: pointer; }
.form-group option { background: var(--bg); color: var(--text); }
::placeholder { color: var(--text-dim); }

/* ── FOOTER ── */
footer { background: var(--bg-2); border-top: 1px solid var(--border); }
.footer-top { padding: 72px 0 56px; display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 56px; }
/* Footer logo: mini hero-badge (rounded corners) */
.footer-logo-emblem {
  position: relative;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-emblem-glow {
  position: absolute;
  inset: -10px;
  border-radius: 24px;
  background: radial-gradient(circle at center, rgba(33,116,162,0.12) 0%, rgba(33,116,162,0.03) 40%, transparent 70%);
  pointer-events: none;
}
.footer-emblem-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 45%, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.9) 35%, rgba(33,116,162,0.08) 100%);
  box-shadow:
    0 0 0 1px rgba(33,116,162,0.18),
    0 0 20px rgba(33,116,162,0.1),
    inset 0 0 16px rgba(255,255,255,0.5);
}
.footer-emblem-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  display: block;
}

.footer-tagline { font-family: 'Cormorant Garamond', serif; font-size: 1rem; color: var(--accent-green); font-style: italic; margin-bottom: 14px; }
.footer-desc { font-size: 0.82rem; color: var(--text-dim); line-height: 1.75; max-width: 220px; font-weight: 300; }
.footer-col-label { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 20px; }
.footer-top > div:nth-child(2) .footer-col-label { color: var(--accent-green); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-links a { font-size: 0.84rem; color: var(--text-muted); font-weight: 300; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent-green); }

.footer-whatsapp-wrap { margin-top: 16px; }
.footer-whatsapp-wrap .btn { padding: 12px 14px; width: auto; max-width: none; }
.footer-bottom { border-top: 1px solid var(--border); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 0.76rem; color: var(--text-dim); font-weight: 300; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── KEYFRAMES ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes emblemReveal {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes emblemGlow {
  0%, 100% {
    box-shadow: 0 0 0 1px rgba(33,116,162,0.06), 0 16px 40px rgba(12,54,97,0.08), 0 0 36px rgba(33,116,162,0.05);
  }
  50% {
    box-shadow: 0 0 0 1px rgba(33,116,162,0.12), 0 16px 40px rgba(12,54,97,0.08), 0 0 56px rgba(33,116,162,0.1);
  }
}
@keyframes emblemPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.008); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .about-grid, .m-intro-grid, .contact-grid { grid-template-columns: 1fr; gap: 56px; }
  .m-services-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .page-hero-content { grid-template-columns: 1fr; gap: 48px; }
  .page-hero-right { display: none; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .section { padding: 80px 0; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(255,255,255,0.98); backdrop-filter: blur(20px); padding: 20px 24px 28px; border-bottom: 1px solid var(--border); box-shadow: 0 8px 24px rgba(12,54,97,0.08); gap: 4px; }
  .companies-grid { grid-template-columns: 1fr; }
  .hero-content { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-btns { justify-content: center; }
  .hero-mobile-line { display: block; }
  .cta-btns { flex-direction: column; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .footer-top > div:first-child { display: flex; flex-direction: column; align-items: center; }
  .footer-links { align-items: center; }
  .footer-whatsapp-wrap { display: flex; justify-content: center; }
  .footer-whatsapp-wrap .btn { width: auto; max-width: none; }
  .footer-desc { margin: 0 auto; }
  .footer-bottom { justify-content: center; text-align: center; }
  .page-hero-btns { flex-wrap: wrap; justify-content: center; }
  .page-hero-right { display: none; }
  .page-hero-left { text-align: center; }
  .page-hero-left .breadcrumb { justify-content: center; }
  /* Mobile: centre section headings and buttons */
  .section-label { justify-content: center; }
  .section-title { text-align: center; }
  .companies-intro { text-align: center; }
  .about-grid > div:first-child { text-align: center; }
  .about-grid .divider { margin-left: auto; margin-right: auto; }
  .about-cards .vision-card,
  .about-cards .mission-card { text-align: center; }
  .m-intro-grid > div:first-child { text-align: center; }
  .m-intro-grid .divider { margin-left: auto; margin-right: auto; }
  .m-services .container > .reveal { text-align: center; }
  .contact-grid > div:first-child { text-align: center; }
  .contact-grid .divider { margin-left: auto; margin-right: auto; }
  .contact-form .btn-full { display: block; margin-left: auto; margin-right: auto; max-width: 280px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.35rem; }
  .m-services-grid { grid-template-columns: 1fr; }
  .card-body { padding: 32px 28px; }
}