/* ===== TRIDEX GROUP — CLEAN CORPORATE TEMPLATE ===== */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap');

:root {
  --navy: #0B1F4D;
  --navy-light: #132B63;
  --blue: #2955C8;
  --blue-soft: #EEF2FF;
  --orange: #E85D2A;
  --orange-soft: #FFF3EE;
  --white: #FFFFFF;
  --off-white: #F7F8FC;
  --grey-50: #F9FAFB;
  --grey-100: #F3F4F6;
  --grey-200: #E5E7EB;
  --grey-300: #D1D5DB;
  --grey-600: #6B7280;
  --grey-700: #4B5563;
  --grey-800: #1F2937;
  --grey-900: #111827;
  --text: #1A1A2E;
  --text-muted: #6B7280;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --max-w: 1200px;
  --font: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-heading: 'Plus Jakarta Sans', 'DM Sans', system-ui, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 16px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08);
  --transition: 0.25s ease;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--grey-200);
  transition: box-shadow var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.navbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.navbar .logo img {
  height: 36px;
  width: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-menu a {
  font: 500 0.875rem var(--font);
  color: var(--grey-700);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-menu a:hover { color: var(--text); background: var(--grey-50); }
.nav-menu a.active { color: var(--blue); font-weight: 600; }
.nav-menu .btn-nav {
  margin-left: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.nav-menu .btn-nav:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

/* Nav dropdown */
.nav-drop { position: relative; }
.nav-drop > a { display: inline-flex; align-items: center; gap: 0.35rem; }
.nav-drop > a::after {
  content: '';
  width: 0; height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid currentColor;
  transition: transform var(--transition);
}
.nav-drop:hover > a::after { transform: rotate(180deg); }
.drop-panel {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: -0.5rem;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s ease;
}
.nav-drop:hover .drop-panel,
.nav-drop:focus-within .drop-panel {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.drop-panel a {
  display: block;
  padding: 0.6rem 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}
.drop-panel a:hover { background: var(--blue-soft); color: var(--blue); }

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 110;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--grey-800);
  border-radius: 2px;
  margin: 5px auto;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font: 600 0.9rem var(--font);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(11,31,77,0.18);
}
.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(11,31,77,0.22);
}
.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(232,93,42,0.2);
}
.btn-orange:hover {
  background: #d14f1f;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,93,42,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--grey-300);
}
.btn-outline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  border: none;
}
.btn-white:hover {
  background: var(--grey-100);
  transform: translateY(-2px);
}

/* ===== HERO ===== */
.hero {
  padding: 7.5rem 0 5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 55%, #1a3d7a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,93,42,0.15), transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(41,85,200,0.12), transparent 70%);
  pointer-events: none;
}
.hero .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  font: 600 0.72rem var(--font);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  margin-bottom: 1.25rem;
}
.hero-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}
.hero h1 {
  font: 800 clamp(2.2rem,4.5vw,3.5rem)/1.08 var(--font-heading);
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}
.hero-text {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.hero-cards { display: grid; gap: 0.75rem; }
.hero-card {
  padding: 1.25rem 1.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  transition: background var(--transition);
}
.hero-card:hover { background: rgba(255,255,255,0.13); }
.hero-card-label {
  font: 600 0.68rem var(--font);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 0.35rem;
}
.hero-card-value {
  font: 600 1rem var(--font);
  color: var(--white);
}

/* Stats bar */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
}
.stats-bar .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 0;
}
.stat-item + .stat-item { border-left: 1px solid var(--grey-200); padding-left: 2rem; }
.stat-number {
  font: 800 2rem var(--font-heading);
  color: var(--orange);
  letter-spacing: -0.03em;
}
.stat-label {
  font: 500 0.85rem var(--font);
  color: var(--text-muted);
  line-height: 1.3;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: 7rem 0 3.5rem;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,93,42,0.12), transparent 70%);
  pointer-events: none;
}
.page-hero .wrap {
  position: relative;
  z-index: 1;
}
.page-hero h1 {
  font: 800 clamp(1.8rem,3.5vw,2.8rem)/1.12 var(--font-heading);
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  max-width: 700px;
}
.page-hero p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  max-width: 600px;
}
.page-hero .hero-tag { margin-bottom: 1rem; }

/* ===== SECTIONS ===== */
.section { padding: 5rem 0; }
.section-grey { background: var(--off-white); }

.section-heading { margin-bottom: 3rem; }
.section-heading .label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font: 700 0.7rem var(--font);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.section-heading .label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.section-heading h2 {
  font: 800 clamp(1.6rem,3vw,2.4rem)/1.15 var(--font-heading);
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}
.section-heading p {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}
.section-heading-center { text-align: center; }
.section-heading-center p { margin: 0 auto; }

/* Grids */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 2rem; }
.grid-2-wide { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 3rem; align-items: start; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.25rem; }

/* ===== SERVICE CARDS ===== */
.s-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.s-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--orange));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.s-card:hover::before { transform: scaleX(1); }
.s-card:hover {
  border-color: var(--grey-300);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.s-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--blue-soft);
  color: var(--navy);
  margin-bottom: 1.25rem;
}
.s-card-icon svg { width: 22px; height: 22px; stroke-width: 1.8; }
.s-card-icon--green { background: #E8F8EE; color: #25D366; }
.s-card h3 {
  font: 700 1.15rem var(--font-heading);
  color: var(--text);
  margin-bottom: 0.5rem;
}
.s-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}
.s-card .feature-list { margin-top: 1rem; padding: 0; }
.s-card .feature-list li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.4rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.s-card .feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
}
.s-card .card-action { margin-top: auto; padding-top: 1.5rem; }
.s-card .card-action .btn { width: 100%; }

/* ===== ABOUT BLOCK ===== */
.about-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.about-content .label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font: 700 0.7rem var(--font);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
}
.about-content .label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.about-content h2 {
  font: 800 clamp(1.5rem,2.8vw,2.2rem)/1.15 var(--font-heading);
  color: var(--text);
  margin-bottom: 1rem;
}
.about-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.75rem;
}
.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.about-badge {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: var(--blue-soft);
  color: var(--navy);
  font: 600 0.78rem var(--font);
  border: 1px solid rgba(41,85,200,0.1);
}
.about-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.about-tile {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.about-tile:hover { border-color: var(--grey-300); box-shadow: var(--shadow); }
.about-tile-label {
  font: 600 0.68rem var(--font);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.4rem;
}
.about-tile h3 {
  font: 700 1.1rem var(--font-heading);
  color: var(--text);
  margin-bottom: 0.35rem;
}
.about-tile p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== CTA ===== */
.cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 60%, #1a3d7a 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  right: -8%;
  top: -30%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,93,42,0.15), transparent 70%);
  pointer-events: none;
}
.cta .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
}
.cta h2 {
  font: 800 clamp(1.5rem,2.5vw,2rem)/1.15 var(--font-heading);
  margin-bottom: 0.6rem;
}
.cta p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  max-width: 480px;
}
.cta-btns { display: flex; gap: 0.75rem; flex-shrink: 0; }

/* ===== CONTACT SPLIT LAYOUT ===== */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.contact-info .section-heading { margin-bottom: 1.5rem; }
.contact-grid { display: flex; flex-direction: column; gap: 0.85rem; }

/* Individual Cards */
.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s ease, border-color var(--transition), box-shadow var(--transition);
}
a.contact-card:hover {
  transform: translateY(-3px);
  border-color: var(--grey-300);
  box-shadow: 0 8px 24px rgba(11,31,77,0.1);
}

/* Card Icon */
.contact-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-icon--blue  { background: var(--blue-soft); color: var(--blue); }
.contact-icon--navy  { background: #E8ECF5; color: var(--navy); }
.contact-icon--orange{ background: var(--orange-soft); color: var(--orange); }
.contact-icon--green { background: #E8F8EE; color: #25D366; }
.contact-icon--red   { background: #FEECEC; color: #E04040; }

/* Card Body */
.contact-card-body { display: flex; flex-direction: column; gap: 0.15rem; min-width: 0; }
.contact-card-label {
  font: 600 0.65rem var(--font);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-card-value {
  font: 600 0.95rem var(--font-heading);
  color: var(--text);
  word-break: break-word;
}
a.contact-card:hover .contact-card-value { color: var(--blue); }
.contact-card--location { cursor: default; }

/* Map column */
.contact-map { position: sticky; top: 6rem; }
.contact-map .map-wrap { height: 100%; min-height: 480px; }
.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; min-height: 480px; height: 100%; border: 0; display: block; }

/* ===== PAGE CONTENT CARDS ===== */
.content-card {
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.content-card h3 {
  font: 700 1.15rem var(--font-heading);
  color: var(--text);
  margin-bottom: 0.75rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--grey-100);
}
.content-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 0.6rem;
}
.content-card p:last-child { margin-bottom: 0; }
.content-card a { color: var(--blue); text-decoration: underline; text-underline-offset: 2px; }
.content-card a:hover { color: var(--navy); }

/* ===== FLOATING ACTIONS ===== */
.floating-actions {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 90;
  display: grid;
  gap: 0.6rem;
}
.fab {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: var(--white);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.fab:hover { transform: translateY(-3px) scale(1.05); box-shadow: var(--shadow-lg); }
.fab svg { width: 22px; height: 22px; fill: currentColor; }
.fab-wa { background: #25D366; }
.fab-call { background: var(--navy); }

/* ===== FOOTER ===== */
.footer {
  background: var(--grey-900);
  color: var(--white);
}
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr 1fr;
  gap: 2.5rem;
  padding: 4rem 0 3rem;
}
.footer-brand img {
  height: 32px;
  width: auto;
  filter: brightness(10);
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}
.footer-heading {
  font: 700 0.72rem var(--font);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 1rem;
}
.footer-links { display: grid; gap: 0.5rem; }
.footer-links a,
.footer-links p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  line-height: 1.5;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.45); }
.footer-bottom a:hover { color: var(--white); }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: none; }
.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: none; }
.stagger > * { transition-delay: calc(var(--i, 0) * 0.08s); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-block { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-2-wide { grid-template-columns: 1fr; }
  .contact-split { grid-template-columns: 1fr; }
  .contact-map { position: static; }
  .contact-map .map-wrap { min-height: 400px; }
  .cta .wrap { flex-direction: column; text-align: center; }
  .cta p { margin: 0 auto; }
  .footer-main { grid-template-columns: repeat(2, 1fr); }
  .stat-item + .stat-item { padding-left: 1.5rem; }
}

@media (max-width: 768px) {
  .hamburger { display: block; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    align-items: stretch;
    padding: 5rem 1.5rem 2rem;
    background: var(--white);
    border-left: 1px solid var(--grey-200);
    box-shadow: -8px 0 30px rgba(0,0,0,0.06);
    transition: right 0.35s ease;
    gap: 0.15rem;
  }
  .nav-menu.open { right: 0; }
  .nav-menu a { padding: 0.75rem 0.875rem; width: 100%; }
  .nav-menu .btn-nav { margin-left: 0; margin-top: 0.5rem; text-align: center; }
  .nav-drop { width: 100%; }
  .drop-panel {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none;
    padding: 0 0 0 0.75rem;
    min-width: 100%;
    background: transparent;
  }
  .drop-panel a { font-size: 0.82rem; padding: 0.55rem 0.75rem; }

  .hero { padding: 6rem 0 3rem; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .page-hero { padding: 5.5rem 0 2.5rem; }
  .page-hero h1 { font-size: clamp(1.5rem, 5vw, 2rem); }
  .hero-btns { width: 100%; }
  .hero-btns .btn { flex: 1; }

  .stats-bar .wrap { grid-template-columns: 1fr; }
  .stat-item + .stat-item { border-left: none; padding-left: 0; border-top: 1px solid var(--grey-200); padding-top: 1rem; }
  .stat-item { padding: 1rem 0; }

  .grid-3, .grid-2, .grid-4, .grid-2-wide { grid-template-columns: 1fr; }
  .contact-grid { gap: 0.65rem; }
  .contact-card { padding: 0.9rem 1rem; }
  .contact-icon { width: 42px; height: 42px; }
  .about-side { grid-template-columns: 1fr 1fr; }
  .section { padding: 3.5rem 0; }
  .footer-main { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .cta-btns { flex-direction: column; width: 100%; }
  .cta-btns .btn { width: 100%; }
}
