/* ============================================================
   TEAMSGRID — UNIFIED STYLESHEET
   Single source of truth for all 4 pages.
   No conflicts, no duplication.
   ============================================================ */

/* ── 1. DESIGN TOKENS ─────────────────────────────────────── */
:root {
  --navy:        #07111f;
  --blue-deep:   #0b2144;
  --blue-mid:    #153a7a;
  --blue-accent: #2563eb;
  --blue-light:  #3b82f6;
  --blue-pale:   #dbeafe;
  --blue-ghost:  #eff6ff;
  --white:       #ffffff;
  --off-white:   #f8faff;
  --text-dark:   #07111f;
  --text-mid:    #334155;
  --text-muted:  #64748b;
  --gold:        #c9a84c;
  --border:      #e2e8f0;
}

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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
}

/* ── 3. NAVIGATION ────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(7,17,31,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

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

.nav-logo img{
	max-width:160px;
}

.nav-logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
}

.nav-logo-icon svg {
  width: 22px; height: 22px;
  stroke: white; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: #fff; letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--gold); }

.nav-links { display: flex; gap: 4px; align-items: center; }

.nav-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 9px 18px; border-radius: 7px;
  transition: all 0.25s;
  border: 1px solid transparent;
}
.nav-link:hover  { color: #fff; background: rgba(255,255,255,0.07); }
.nav-link.active { color: #fff; background: var(--blue-accent); border-color: var(--blue-accent); }

.nav-cta {
  background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
  color: #fff !important; font-weight: 600;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,99,235,0.45); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px;
}
.hamburger span {
  width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
  display: block;
}

/* Mobile nav drawer */
.mob-nav {
  display: none;
  position: fixed; top: 72px; left: 0; right: 0; z-index: 999;
  background: rgba(7,17,31,0.98);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 14px;
  flex-direction: column; gap: 5px;
}
.mob-nav.open { display: flex; }
.mob-nav .nav-link { padding: 13px 16px; color: rgba(255,255,255,0.75); }
.mob-nav .nav-link:hover  { color: #fff; background: rgba(255,255,255,0.07); }
.mob-nav .nav-link.active { background: var(--blue-accent); color: #fff; }

/* ── 4. SHARED SECTION UTILITIES ──────────────────────────── */
.section    { padding: 90px 5%; }
.section-sm { padding: 80px 5%; }
.s-inner    { max-width: 1200px; margin: 0 auto; }

.s-tag {
  display: inline-block;
  font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--blue-accent); margin-bottom: 11px;
}
.s-tag-light { color: var(--blue-light); }   /* on dark backgrounds */

.s-title {
  font-size: clamp(1.9rem, 2.8vw, 2.7rem);
  color: var(--text-dark); margin-bottom: 15px;
}
.s-title-white { color: #fff; }

.s-sub {
  font-size: 1.02rem; color: var(--text-muted);
  line-height: 1.72; max-width: 560px; font-weight: 300;
}
.s-sub-white { color: rgba(255,255,255,0.6); }

.divider {
  width: 54px; height: 3px;
  background: linear-gradient(90deg, var(--blue-accent), var(--blue-light));
  border-radius: 2px; margin: 18px 0;
}

/* ── 5. BUTTONS ───────────────────────────────────────────── */
.btn-p {
  padding: 14px 30px;
  background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
  color: #fff; border: none; border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 600;
  cursor: pointer; transition: all 0.25s;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-p:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(37,99,235,0.45); }

.btn-o {
  padding: 14px 30px;
  background: transparent;
  color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 500;
  cursor: pointer; transition: all 0.25s; text-decoration: none;
}
.btn-o:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.05); color: #fff; }

/* ── 6. SHARED DARK PAGE HERO (Services / Contact / About) ── */
.page-hero {
  background: var(--navy);
  padding: 130px 5% 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(37,99,235,0.15) 0%, transparent 70%);
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 55px 55px;
}
.page-hero-inner {
  position: relative; z-index: 1;
  max-width: 720px; margin: 0 auto;
}
.page-hero .s-tag { color: var(--blue-light); }
.page-hero h1 { font-size: clamp(2rem,4vw,3rem); color: #fff; margin-bottom: 16px; }
.page-hero p  { font-size: 1.02rem; color: rgba(255,255,255,0.6); line-height: 1.72; font-weight: 300; }

/* ── 7. HOME — HERO ───────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--navy);
  position: relative; display: flex; align-items: center;
  overflow: hidden; padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 65% 50%, rgba(37,99,235,0.16) 0%, transparent 65%),
    radial-gradient(ellipse 40% 40% at 15% 70%, rgba(11,33,68,0.7) 0%, transparent 60%);
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, #000 20%, transparent 100%);
}
.hero-inner {
  position: relative; z-index: 2;
  padding: 80px 5%; max-width: 1280px; margin: 0 auto; width: 100%;
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 70px; align-items: center;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(37,99,235,0.14); border: 1px solid rgba(37,99,235,0.32);
  border-radius: 100px; padding: 6px 15px;
  font-size: 0.78rem; font-weight: 600; color: var(--blue-light);
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 22px;
}
.hero-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--blue-light); animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.35} }

.hero-title { font-size: clamp(2.3rem, 3.8vw, 3.5rem); color: #fff; line-height: 1.13; margin-bottom: 20px; }
.hero-title em { font-style: italic; color: var(--gold); }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.62); line-height: 1.72; margin-bottom: 36px; font-weight: 300; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── 8. HOME — MAP ────────────────────────────────────────── */
.map-wrap {
  position: relative; border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(59,130,246,0.28);
  background: rgba(7,17,31,0.8);
  box-shadow: 0 28px 65px rgba(0,0,0,0.5), 0 0 0 1px rgba(37,99,235,0.12);
  padding: 16px 12px 12px;
}
.map-title {
  font-size: 0.68rem; font-weight: 700;
  color: rgba(255,255,255,0.4); letter-spacing: 0.12em;
  text-transform: uppercase; margin-bottom: 10px; padding-left: 4px;
}
.map-svg-wrap { position: relative; width: 100%; }
.map-svg-wrap svg { width: 100%; height: auto; display: block; }

/* ── 9. HOME — INTRO ──────────────────────────────────────── */
.intro { background: var(--off-white); }
.intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 34px; }
.stat {
  background: #fff; border: 1px solid var(--border);
  border-radius: 12px; padding: 22px; text-align: center;
  transition: all 0.3s; box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.stat:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(37,99,235,0.1); border-color: var(--blue-pale); }
.stat-n { font-family: 'Playfair Display', serif; font-size: 2.3rem; font-weight: 700; color: var(--blue-accent); }
.stat-l { font-size: 0.8rem; color: var(--text-muted); font-weight: 500; margin-top: 4px; }

.intro-card {
  background: linear-gradient(135deg, var(--blue-deep), var(--navy));
  border-radius: 16px; padding: 38px; color: #fff;
  position: relative; overflow: hidden;
  box-shadow: 0 20px 50px rgba(7,17,31,0.25);
}
.intro-card::before {
  content: ''; position: absolute;
  top: -50px; right: -50px; width: 180px; height: 180px;
  background: rgba(37,99,235,0.18); border-radius: 50%;
}
.intro-card h3 { font-family: 'Playfair Display', serif; font-size: 1.55rem; margin-bottom: 14px; position: relative; }
.intro-card p  { font-size: 0.92rem; line-height: 1.72; color: rgba(255,255,255,0.68); font-weight: 300; position: relative; }

/* ── 10. HOME — SERVICES TILES ────────────────────────────── */
.srv-home { background: #fff; }
.srv-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: 46px; }

.srv-tile {
  border: 1px solid var(--border); border-radius: 14px;
  padding: 28px 22px; cursor: pointer; transition: all 0.3s;
  background: #fff; text-align: left; text-decoration: none;
  color: inherit; display: block;
}
.srv-tile:hover { border-color: var(--blue-accent); transform: translateY(-4px); box-shadow: 0 14px 36px rgba(37,99,235,0.13); }

.srv-ico {
  width: 46px; height: 46px; background: var(--blue-ghost);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; font-size: 1.25rem; transition: all 0.3s;
}
.srv-tile:hover .srv-ico { background: var(--blue-accent); }
.srv-tile-t { font-family: 'Playfair Display', serif; font-size: 1rem; font-weight: 600; color: var(--text-dark); margin-bottom: 8px; }
.srv-arr { margin-top: 14px; font-size: 0.83rem; font-weight: 600; color: var(--blue-accent); display: flex; align-items: center; gap: 5px; opacity: 0; transition: opacity 0.25s; }
.srv-tile:hover .srv-arr { opacity: 1; }

/* ── 11. HOME — CTA BAND ──────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-deep) 100%);
  padding: 80px 5%; text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute;
  top: -80px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 350px;
  background: radial-gradient(ellipse, rgba(37,99,235,0.22) 0%, transparent 70%);
  pointer-events: none;
}

/* ── 12. SERVICES PAGE ────────────────────────────────────── */
.edge-banner {
  background: var(--blue-ghost); border: 1px solid var(--blue-pale);
  border-radius: 14px; padding: 26px 34px;
  display: flex; align-items: center; gap: 20px; margin-bottom: 58px;
}
.edge-ico {
  width: 50px; height: 50px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem;
}
.edge-text h3 { font-family: 'Playfair Display', serif; font-size: 1.12rem; color: var(--blue-deep); margin-bottom: 4px; }
.edge-text p  { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; }

.svc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.svc-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 38px;
  transition: all 0.3s; position: relative; overflow: hidden;
  scroll-margin-top: 100px;
}
.svc-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--blue-accent), var(--blue-light));
  opacity: 0; transition: opacity 0.3s;
}
.svc-card:hover { box-shadow: 0 18px 48px rgba(37,99,235,0.11); transform: translateY(-4px); border-color: var(--blue-pale); }
.svc-card:hover::before { opacity: 1; }
.svc-card-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.svc-card h3   { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--text-dark); margin-bottom: 14px; }
.svc-card p    { font-size: 0.92rem; color: var(--text-mid); line-height: 1.78; font-weight: 300; }

.bottom-note {
  background: linear-gradient(135deg, var(--navy), var(--blue-deep));
  border-radius: 16px; padding: 50px; text-align: center;
  color: #fff; margin-top: 48px;
}
.bottom-note h3 { font-family: 'Playfair Display', serif; font-size: 1.65rem; margin-bottom: 14px; }
.bottom-note p  { color: rgba(255,255,255,0.62); font-size: 0.93rem; line-height: 1.72; max-width: 600px; margin: 0 auto 28px; font-weight: 300; }

/* ── 13. ABOUT PAGE ───────────────────────────────────────── */
.about-hero {
  background: var(--navy);
  padding: 130px 5% 80px;
  position: relative; overflow: hidden;
}
.about-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 55% 80% at 25% 60%, rgba(37,99,235,0.18) 0%, transparent 65%);
}
.about-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 55px 55px;
}
.about-hero-inner {
  position: relative; z-index: 1;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-hero .s-tag { color: var(--blue-light); }
.about-hero h1 { font-size: clamp(2rem, 3.8vw, 3rem); color: #fff; margin-bottom: 16px; }
.about-hero p  { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.74; font-weight: 300; }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.val {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.11);
  border-radius: 10px; padding: 15px 17px;
  color: rgba(255,255,255,0.82); font-size: 0.87rem; font-weight: 500;
}
.val em { display: block; font-size: 1.1rem; margin-bottom: 5px; font-style: normal; }

.s-tag-blue { color: var(--blue-accent); }

.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.mission-text h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--text-dark); margin-bottom: 18px; }
.mission-text p  { font-size: 0.93rem; color: var(--text-mid); line-height: 1.78; font-weight: 300; margin-bottom: 18px; }

.offerings-list { list-style: none; }
.offerings-list li {
  padding: 16px 0; border-bottom: 1px solid var(--border);
  display: flex; gap: 14px; align-items: flex-start;
}
.offerings-list li:last-child { border-bottom: none; }
.o-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue-accent); margin-top: 6px; flex-shrink: 0; }
.offerings-list li strong { display: block; font-weight: 600; font-size: 0.94rem; color: var(--text-dark); margin-bottom: 3px; }
.offerings-list li span   { font-size: 0.86rem; color: var(--text-muted); line-height: 1.6; }

.why-sec { background: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 44px; }
.why-card {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: 14px; padding: 28px; transition: all 0.3s;
}
.why-card:hover { border-color: var(--blue-accent); box-shadow: 0 8px 24px rgba(37,99,235,0.09); }
.why-card-ico { font-size: 1.5rem; margin-bottom: 12px; }
.why-card h4  { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--text-dark); margin-bottom: 8px; }
.why-card p   { font-size: 0.86rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

.about-cta { background: linear-gradient(135deg, var(--navy), var(--blue-deep)); padding: 72px 5%; text-align: center; }
.about-cta h2 { font-family: 'Playfair Display', serif; color: #fff; font-size: 2rem; margin-bottom: 14px; }
.about-cta p  { color: rgba(255,255,255,0.6); font-size: 0.93rem; line-height: 1.72; max-width: 560px; margin: 0 auto 28px; font-weight: 300; }

/* ── 14. CONTACT PAGE ─────────────────────────────────────── */
.contact-hero {
  background: var(--navy);
  padding: 130px 5% 80px; text-align: center;
  position: relative; overflow: hidden;
}
.contact-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(37,99,235,0.15) 0%, transparent 70%);
}
.contact-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 55px 55px;
}
.contact-hero-inner { position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.contact-hero .s-tag { color: var(--blue-light); }
.contact-hero h1 { font-size: clamp(2rem,4vw,3rem); color: #fff; margin-bottom: 14px; }
.contact-hero p  { font-size: 1rem; color: rgba(255,255,255,0.6); line-height: 1.74; font-weight: 300; }

.contact-main { padding: 80px 5%; background: var(--off-white); }
.contact-inner {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.45fr; gap: 52px; align-items: start;
}

.info-side h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--text-dark); margin-bottom: 16px; }
.info-side > p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.72; margin-bottom: 28px; font-weight: 300; }

.c-detail { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.c-ico {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--blue-ghost); border: 1px solid var(--blue-pale);
  border-radius: 9px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.c-txt strong { display: block; font-size: 0.84rem; color: var(--text-dark); font-weight: 600; margin-bottom: 2px; }
.c-txt span   { font-size: 0.84rem; color: var(--text-muted); }

.info-tip { margin-top: 30px; padding: 20px 22px; background: var(--blue-ghost); border: 1px solid var(--blue-pale); border-radius: 12px; }
.info-tip p { font-size: 0.86rem; color: var(--blue-deep); font-weight: 500; line-height: 1.62; margin: 0; }

.form-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 16px; padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.form-card h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--text-dark); margin-bottom: 24px; }

.form-row { margin-bottom: 20px; }
.form-row label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-dark); margin-bottom: 7px; letter-spacing: 0.02em; }
.form-row input,
.form-row select,
.form-row textarea {
  width: 100%; padding: 12px 15px;
  border: 1px solid var(--border); border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 0.92rem; color: var(--text-dark);
  background: var(--off-white); transition: all 0.22s;
  outline: none; resize: none; appearance: none;
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--blue-accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(37,99,235,0.09);
}
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-submit {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--blue-accent), var(--blue-light));
  color: #fff; border: none; border-radius: 8px;
  font-family: 'DM Sans', sans-serif; font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: all 0.25s; margin-top: 6px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 26px rgba(37,99,235,0.42); }

/* ── 15. FOOTER ───────────────────────────────────────────── */
footer {
  background: var(--navy);
  padding: 52px 5% 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.ft-inner { max-width: 1200px; margin: 0 auto; }
.ft-top {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 50px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ft-tag { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin-top: 11px; line-height: 1.62; }
.ft-col h4 { font-family: 'Playfair Display', serif; font-size: 0.93rem; color: rgba(255,255,255,0.82); margin-bottom: 15px; }

.ft-links { list-style: none; }
.ft-links li { margin-bottom: 9px; }
.ft-links a { font-size: 0.86rem; color: rgba(255,255,255,0.42); text-decoration: none; cursor: pointer; transition: color 0.2s; }
.ft-links a:hover { color: rgba(255,255,255,0.82); }

.socials { display: flex; gap: 10px; margin-top: 16px; }
.soc {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.14); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.25s; text-decoration: none;
}
.soc:hover { border-color: var(--blue-accent); background: rgba(37,99,235,0.18); }
.soc svg { width: 15px; height: 15px; fill: none; stroke: rgba(255,255,255,0.55); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.soc:hover svg { stroke: #fff; }

.ft-bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 22px; font-size: 0.78rem; color: rgba(255,255,255,0.28);
}

/* ── 16. RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .srv-grid { grid-template-columns: 1fr 1fr; }
  .why-grid  { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links  { display: none; }
  .hamburger  { display: flex; }

  /* Home hero */
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }

  /* Intro */
  .intro-grid { grid-template-columns: 1fr; gap: 36px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }

  /* Services tiles */
  .srv-grid   { grid-template-columns: 1fr 1fr; }

  /* Services page cards */
  .svc-grid   { grid-template-columns: 1fr; }

  /* About */
  .about-hero-inner { grid-template-columns: 1fr; }
  .values-grid      { grid-template-columns: 1fr 1fr; }
  .mission-grid     { grid-template-columns: 1fr; }
  .why-grid         { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; }
  .form-2col     { grid-template-columns: 1fr; }

  /* Footer */
  .ft-top { grid-template-columns: 1fr; gap: 28px; }
  .ft-bot { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .srv-grid    { grid-template-columns: 1fr; }
  .why-grid    { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-btns   { flex-direction: column; }
  .hero-btns a { text-align: center; justify-content: center; }
}