/* ===== ALL POINTS GROUP — SHARED STYLESHEET ===== */
/* Tropical & Vibrant | Coronado, Panama */

:root {
  --green-deep:   #0D5C2E;
  --green-mid:    #1A7A42;
  --green-light:  #2DB065;
  --gold:         #C5872A;
  --gold-light:   #E2A83E;
  --coral:        #E8603A;
  --pacific:      #0B7A8A;
  --sand:         #F5F0E8;
  --cream:        #FDFAF5;
  --dark:         #1A1F1A;
  --text:         #2C2C2C;
  --muted:        #6B7280;
  --white:        #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4, h5 {
  font-family: 'Trebuchet MS', 'Arial', sans-serif;
  line-height: 1.2;
}

/* ── NAVIGATION ── */
nav {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo-mark {
  width: 44px;
  height: 44px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Trebuchet MS', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-logo-sub {
  font-size: 10px;
  color: var(--gold-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 0.25rem;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 13px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  border-radius: 4px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  border-radius: 6px !important;
  font-weight: 700 !important;
}

.nav-cta:hover {
  background: var(--gold-light) !important;
}

/* ── HERO ANIMATIONS ── */
@keyframes waveShift {
  0%   { background-position: center 30%, center 30%; }
  25%  { background-position: center 34%, center 34%; }
  50%  { background-position: center 26%, center 26%; }
  75%  { background-position: center 33%, center 33%; }
  100% { background-position: center 30%, center 30%; }
}

@keyframes shimmer {
  0%   { opacity: 0;   transform: translateX(-120%) skewX(-20deg); }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { opacity: 0;   transform: translateX(220%) skewX(-20deg); }
}

@keyframes shimmer2 {
  0%   { opacity: 0;   transform: translateX(-120%) skewX(-12deg); }
  10%  { opacity: 0.7; }
  90%  { opacity: 0.7; }
  100% { opacity: 0;   transform: translateX(220%) skewX(-12deg); }
}

@keyframes waveGlow {
  0%   { opacity: 0.6; transform: scaleX(1) translateX(0); }
  50%  { opacity: 1;   transform: scaleX(1.05) translateX(-1.5%); }
  100% { opacity: 0.6; transform: scaleX(1) translateX(0); }
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0.18) 0%,
      rgba(11, 70, 35, 0.52) 38%,
      rgba(13, 92, 46, 0.82) 60%,
      rgba(13, 80, 40, 0.96) 80%,
      #0D5C2E 100%
    ),
    url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1920&q=85&auto=format&fit=crop&crop=center')
    center 30% / cover no-repeat;
  animation: waveShift 8s ease-in-out infinite;
  background-size: 100%, cover;
}

/* Shimmer streak 1 — wide bright sweep */
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    transparent 20%,
    rgba(255, 255, 255, 0.04) 35%,
    rgba(180, 220, 255, 0.22) 48%,
    rgba(255, 255, 255, 0.28) 50%,
    rgba(180, 220, 255, 0.22) 52%,
    rgba(255, 255, 255, 0.04) 65%,
    transparent 80%
  );
  animation: shimmer 3.5s ease-in-out infinite;
  pointer-events: none;
}

/* Shimmer streak 2 — thinner, offset timing */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    transparent 25%,
    rgba(255, 255, 255, 0.03) 38%,
    rgba(200, 235, 255, 0.18) 50%,
    rgba(255, 255, 255, 0.03) 62%,
    transparent 75%
  );
  animation: shimmer2 4.5s ease-in-out infinite 1.8s;
  pointer-events: none;
  z-index: 1;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(197,135,42,0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(11,122,138,0.2) 0%, transparent 40%);
  animation: waveGlow 5s ease-in-out infinite;
}

.hero-palm-svg {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
  opacity: 0.08;
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197,135,42,0.2);
  border: 1px solid rgba(197,135,42,0.4);
  color: var(--gold-light);
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  color: var(--white);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  text-decoration: none;
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 14px 28px;
  border-radius: 8px;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 13px 26px;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.4);
  transition: all 0.2s;
}

.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}

.stat-number {
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-family: 'Trebuchet MS', sans-serif;
}

/* ── LOCATION BANNER ── */
.location-banner {
  background: var(--gold);
  padding: 1rem 2rem;
}

.location-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.location-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.5px;
}

.location-dot { width: 6px; height: 6px; background: rgba(255,255,255,0.6); border-radius: 50%; }

/* ── SECTION BASICS ── */
section { padding: 5rem 2rem; }

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

.section-label {
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.section-title {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--dark);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  margin-bottom: 3rem;
}

/* ── ABOUT STRIP ── */
.about-strip {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  position: relative;
}

.panama-map-box {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--pacific) 100%);
  border-radius: 20px;
  padding: 3rem;
  color: white;
  position: relative;
  overflow: hidden;
}

.panama-map-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(197,135,42,0.2) 0%, transparent 60%);
}

.map-label {
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.map-title { font-size: 1.8rem; font-weight: 700; margin-bottom: 1rem; }

.map-desc { font-size: 0.95rem; color: rgba(255,255,255,0.8); line-height: 1.6; }

.map-flag {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

/* ── BUSINESS UNITS ── */
.units-section { background: var(--white); }

.units-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.unit-card {
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s, box-shadow 0.25s;
  display: block;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.unit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.unit-card-header {
  padding: 2rem;
  position: relative;
  overflow: hidden;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.unit-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.unit-card-name {
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.unit-card-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  margin-top: 4px;
  font-family: 'Trebuchet MS', sans-serif;
  letter-spacing: 0.5px;
}

.unit-card-body {
  padding: 1.5rem 2rem 2rem;
  background: var(--sand);
}

.unit-card-desc {
  font-size: 0.92rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.unit-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.unit-tag {
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 10px;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(0,0,0,0.06);
  color: var(--muted);
  text-transform: uppercase;
}

.unit-card-arrow {
  margin-top: 1.2rem;
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Unit color themes */
.unit-apt  .unit-card-header { background: linear-gradient(135deg, #0D5C2E 0%, #1A7A42 100%); }
.unit-vfx  .unit-card-header { background: linear-gradient(135deg, #21295C 0%, #3D4A8A 100%); }
.unit-food .unit-card-header { background: linear-gradient(135deg, #8B1A1A 0%, #C0392B 100%); }
.unit-re   .unit-card-header { background: linear-gradient(135deg, #0B5870 0%, #0B7A8A 100%); }
.unit-s4d  .unit-card-header { background: linear-gradient(135deg, #4A2E6B 0%, #6D44A0 100%); }
.unit-dp   .unit-card-header { background: linear-gradient(135deg, #4A3000 0%, #8B6000 100%); }

.unit-apt  .unit-card-arrow { color: var(--green-mid); }
.unit-vfx  .unit-card-arrow { color: #3D4A8A; }
.unit-food .unit-card-arrow { color: #C0392B; }
.unit-re   .unit-card-arrow { color: var(--pacific); }
.unit-s4d  .unit-card-arrow { color: #6D44A0; }
.unit-dp   .unit-card-arrow { color: #8B6000; }

/* ── HQ FEATURE SECTION ── */
.hq-section {
  background: linear-gradient(135deg, #0D5C2E 0%, #1A7A42 40%, #0B7A8A 100%);
  position: relative;
  overflow: hidden;
}

.hq-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(197,135,42,0.15) 0%, transparent 50%);
}

.hq-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hq-text .section-label { color: var(--gold-light); }
.hq-text .section-title { color: var(--white); }
.hq-text .section-desc { color: rgba(255,255,255,0.8); max-width: 100%; margin-bottom: 2rem; }

.hq-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hq-feature {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.hq-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(255,255,255,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.2);
}

.hq-feature-text h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-family: 'Trebuchet MS', sans-serif;
  margin-bottom: 3px;
}

.hq-feature-text p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.hq-card {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 2.5rem;
  backdrop-filter: blur(8px);
}

.hq-card-flag { font-size: 4rem; margin-bottom: 1rem; display: block; }

.hq-card h3 {
  color: var(--white);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.hq-card-sub {
  color: var(--gold-light);
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hq-card-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.hq-card-details li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
}

.hq-card-details li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  color: white;
}

/* ── GLOBAL PRESENCE ── */
.presence-section { background: var(--sand); }

.flags-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}

.flag-item {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  flex: 1;
  min-width: 180px;
  max-width: 220px;
}

.flag-emoji { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }

.flag-country {
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.flag-role { font-size: 12px; color: var(--muted); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
}

.footer-top {
  padding: 4rem 2rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .nav-logo-name { font-size: 18px; color: var(--white); }
.footer-brand .nav-logo-sub { font-size: 10px; }

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  margin-top: 1rem;
  line-height: 1.6;
  max-width: 280px;
}

.footer-hq {
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: var(--gold-light);
  font-family: 'Trebuchet MS', sans-serif;
  letter-spacing: 0.5px;
}

.footer-col h5 {
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }

.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col ul a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
  font-family: 'Trebuchet MS', sans-serif;
}

.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--green-deep) 0%, var(--green-mid) 50%, var(--pacific) 100%);
  padding: 5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(197,135,42,0.12) 0%, transparent 60%);
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.page-hero-eyebrow {
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white); margin-bottom: 1rem; }

.page-hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.8); max-width: 600px; }

/* ── CONTENT SECTIONS ── */
.content-block { padding: 5rem 2rem; }

.content-block.alt { background: var(--sand); }

.content-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.prose h2 { font-size: 2rem; color: var(--dark); margin-bottom: 1rem; }
.prose h3 { font-size: 1.3rem; color: var(--dark); margin-bottom: 0.5rem; margin-top: 1.5rem; }
.prose p { font-size: 0.97rem; color: var(--text); margin-bottom: 1rem; line-height: 1.75; }

.info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.info-card h4 {
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 1rem;
}

.info-list { list-style: none; }

.info-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-size: 0.92rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.info-list li:last-child { border-bottom: none; }

.info-list-value {
  font-family: 'Trebuchet MS', sans-serif;
  font-weight: 700;
  color: var(--green-mid);
  font-size: 0.88rem;
}

/* ── CONTACT FORM ── */
.contact-section { background: var(--sand); }

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark);
}

.contact-info p { font-size: 0.95rem; color: var(--muted); margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--green-deep);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  color: white;
}

.contact-detail-text h5 {
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}

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

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

.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(0,0,0,0.12);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: Georgia, serif;
  color: var(--text);
  background: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--green-deep);
  color: white;
  border: none;
  border-radius: 8px;
  font-family: 'Trebuchet MS', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover { background: var(--green-mid); }

/* ── UNIT PAGE HERO VARIANTS ── */
.unit-apt-hero  { background: linear-gradient(135deg, #0D5C2E 0%, #1A7A42 100%); }
.unit-vfx-hero  { background: linear-gradient(135deg, #21295C 0%, #3D4A8A 100%); }
.unit-food-hero { background: linear-gradient(135deg, #8B1A1A 0%, #C0392B 100%); }
.unit-re-hero   { background: linear-gradient(135deg, #0B5870 0%, #0B7A8A 100%); }
.unit-s4d-hero  { background: linear-gradient(135deg, #4A2E6B 0%, #6D44A0 100%); }
.unit-dp-hero   { background: linear-gradient(135deg, #4A3000 0%, #8B6000 100%); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  .hero-inner,
  .about-grid,
  .hq-inner,
  .content-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .units-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .hero-stats { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .units-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { display: none; }
}
      