/* ============================================
   Easy Fast Foodstuff Co. - Main Stylesheet
   ============================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue: #0b5ed7;
  --blue-mid: #1468d8;
  --blue-light: #eaf3ff;
  --green: #22c55e;
  --green-dark: #16a34a;
  --white: #ffffff;
  --off-white: #f6f9ff;
  --text: #0f172a;
  --text-muted: #475569;
  --border: rgba(11,94,215,0.14);
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 18px 50px rgba(2, 32, 71, 0.10);
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  color: #000;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== NAVIGATION ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5%;
  height: 127px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #1a3c1a 0%, #2d5a2d 30%, #6b2e2e 70%, #4a1f1f 100%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 72px; height: 80px;
  flex-shrink: 0;
  margin-top: 5px;
  filter: drop-shadow(-4px 6px 12px rgba(0,0,0,0.4)) drop-shadow(2px -2px 6px rgba(255,255,255,0.08));
  transition: filter 0.4s ease;
  border-radius: 0;
  position: relative;
  z-index: 10;
  object-fit: contain;
}

.nav-logo:hover .logo-mark {
  filter: drop-shadow(-6px 10px 20px rgba(0,0,0,0.55)) drop-shadow(3px -3px 8px rgba(255,255,255,0.12));
}

.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 26px; color: var(--white); }
.logo-sub { font-family: 'Inter', sans-serif; font-size: 18px; color: rgba(255,255,255,0.6); letter-spacing: 0.04em; text-transform: uppercase; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  padding: 8px 20px;
  border-radius: 100px;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  box-shadow: 0 10px 24px rgba(11,94,215,0.18);
  position: relative;
  text-align: center;
  white-space: nowrap;
}

.nav-links a:hover {
  background: var(--blue-mid);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(11,94,215,0.25);
}

.nav-cta {
  /* Inherits all styles from .nav-links a */
}

/* ===== LANGUAGE SWITCHER ===== */
.lang-nav-item {
  display: flex;
  align-items: center;
}

.lang-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(180deg, var(--blue), #3b82f6);
  border: none;
  border-radius: 100px;
  padding: 8px 20px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  font-family: inherit;
  box-shadow: 0 10px 24px rgba(11,94,215,0.18);
  white-space: nowrap;
}

.lang-btn:hover {
  background: linear-gradient(180deg, #3b82f6, var(--blue));
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(11,94,215,0.25);
}

.lang-icon { font-size: 16px; line-height: 1; }
.lang-label { font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; }
.lang-arrow { font-size: 10px; opacity: 0.7; transition: transform 0.2s; }

.lang-switcher.open .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #1a3c1a;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 6px;
  min-width: 140px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: all 0.2s ease;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}

.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 8px;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 13px;
  transition: background 0.15s;
  white-space: nowrap;
  font-weight: 400;
}

.lang-dropdown a:hover {
  background: rgba(255,255,255,0.12);
  color: var(--white);
}

.lang-dropdown a.active {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-weight: 600;
}

@media (max-width: 960px) {
  .lang-switcher {
    margin-left: auto;
  }
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: white;
  color: #000;
  padding: 150px 5% 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}

.hero,
.hero * {
  color: #000 !important;
}

.hero a {
  color: #000 !important;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(255,255,255,0.12), transparent 28%),
              radial-gradient(circle at bottom right, rgba(255,255,255,0.08), transparent 22%);
  pointer-events: none;
}

.hero-bg-pattern {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 55%;
  background: linear-gradient(135deg, rgba(30,95,168,0.6) 0%, rgba(26,58,107,0) 100%);
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-content, .hero-visual, .hero-tag, .hero-stats, .hero-btns {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.hero-content { animation-delay: 0.12s; }
.hero-tag { animation-delay: 0.20s; }
.hero-btns { animation-delay: 0.28s; }
.hero-stats { animation-delay: 0.36s; }
.hero-visual { animation-delay: 0.18s; }

/* Hero circles removed */

.hero-content { position: relative; z-index: 2; max-width: 640px; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(122,184,64,0.15);
  border: 1px solid rgba(122,184,64,0.3);
  border-radius: 100px;
  padding: 6px 16px 6px 6px;
  margin-bottom: 32px;
}

.hero-tag-dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
}

.hero-tag span {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.hero h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(30px, 4vw, 40px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: normal;
  color: var(--green);
}

.hero-desc {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
  font-weight: 300;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 100px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(122,184,64,0.35); }

.btn-secondary {
  background: transparent;
  color: rgba(255,255,255,0.85);
  padding: 14px 32px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.25);
  text-decoration: none;
  font-size: 15px;
  font-weight: 400;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: 64px;
  display: flex;
  gap: 48px;
}

.stat { border-left: 2px solid var(--green); padding-left: 16px; }
.stat-num { font-family: 'Inter', sans-serif; font-size: 32px; font-weight: 800; color: var(--white); }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 2px; }

/* ===== SECTION SHARED ===== */
section { padding: 100px 5%; }

.section-grid-wrap{
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}

section > * {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

.footer-bottom {
  max-width: 1180px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(18px);
  animation: fadeInUp 0.8s ease-out forwards;
  animation-delay: 0.38s;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fade-up {
  opacity: 0;
  transform: translateY(22px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-fade-up.delay-1 { animation-delay: 0.12s; }
.animate-fade-up.delay-2 { animation-delay: 0.24s; }
.animate-fade-up.delay-3 { animation-delay: 0.36s; }

.card-grid{
  display: grid;
  gap: 18px;
  justify-items: stretch;
  align-items: stretch;
}

.modern-blue-wrap{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12px;
}

.modern-animate{
  transform: translateY(12px);
  opacity: 0;
  transition: transform 480ms ease, opacity 480ms ease;
  transition-delay: var(--delay, 0s);
  will-change: transform, opacity;
}

.modern-animate.is-visible{
  transform: translateY(0);
  opacity: 1;
}

.clients .client-logo:nth-child(1) { --delay: 0.08s; }
.clients .client-logo:nth-child(2) { --delay: 0.14s; }
.clients .client-logo:nth-child(3) { --delay: 0.20s; }
.clients .client-logo:nth-child(4) { --delay: 0.26s; }
.clients .client-logo:nth-child(5) { --delay: 0.32s; }
.clients .client-logo:nth-child(6) { --delay: 0.38s; }

.section-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: rgba(122,184,64,0.1);
  border-radius: 100px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--green);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  max-width: 600px;
}

/* ===== ABOUT ===== */
.about { background: var(--white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-top: 60px;
}

.about-visual {
  position: relative;
  padding: 32px;
}

.about-card-main {
  background: var(--blue);
  border-radius: var(--radius);
  padding: 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-card-main::before {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px;
  width: 200px; height: 200px;
  background: rgba(122,184,64,0.15);
  border-radius: 50%;
}

.about-quote {
  font-size: 22px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.9);
  position: relative;
}

.about-quote::before {
  content: '"';
  font-family: 'Syne', sans-serif;
  font-size: 80px;
  color: var(--green);
  position: absolute;
  top: -20px; left: -16px;
  opacity: 0.4;
  line-height: 1;
}

.about-cr {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.about-floater {
  position: absolute;
  bottom: -16px; right: 0;
  background: var(--green);
  border-radius: var(--radius-sm);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(122,184,64,0.3);
}

.about-floater-icon { font-size: 28px; }
.about-floater-text { font-size: 13px; color: var(--white); font-weight: 500; }

.mvv-list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }

.mvv-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.mvv-icon {
  width: 48px; height: 48px;
  flex-shrink: 0;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.mvv-label { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 16px; color: #1a1a2e; margin-bottom: 4px; }
.mvv-text { font-size: 14px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

/* ===== VALUES ===== */
.values { background: var(--off-white); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.value-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid rgba(11,94,215,0.18);
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(2, 32, 71, 0.10);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--green);
  opacity: 1;
}

.value-card:hover { transform: translateY(-12px) scale(1.03); box-shadow: 0 24px 64px rgba(2, 32, 71, 0.22); }

.value-icon {
  font-size: 32px;
  margin-bottom: 16px;
  display: block;
}

.value-name { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 16px; color: #1a1a2e; margin-bottom: 8px; }
.value-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

/* ===== SERVICES ===== */
.services { background: var(--white); }

.services-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--blue);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: transform 0.25s;
}

.service-card:hover { transform: translateY(-4px); }

.service-card-body {
  padding: 36px 28px;
  position: relative;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: -50px; right: -50px;
  width: 150px; height: 150px;
  background: rgba(122,184,64,0.12);
  border-radius: 50%;
  pointer-events: none;
}

.service-num {
  font-family: 'Inter', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: rgba(255,255,255,0.08);
  position: absolute;
  top: 16px; right: 20px;
  line-height: 1;
}

.service-icon { font-size: 36px; margin-bottom: 20px; display: block; }

.service-name {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.service-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.service-tag {
  display: inline-block;
  margin-top: 20px;
  background: rgba(122,184,64,0.25);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
}

/* ===== NATURE OF BUSINESS ===== */
.business { background: var(--off-white); }

.business-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.biz-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  text-align: center;
  transition: all 0.25s;
  overflow: hidden;
}

.biz-card:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 24px 64px rgba(26,58,107,0.25);
}

.biz-card:hover .biz-name,
.biz-card:hover .biz-desc { color: rgba(255,255,255,0.9); }
.biz-card:hover .biz-icon-wrap { background: rgba(255,255,255,0.1); }

.biz-icon-wrap {
  width: 72px; height: 72px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
  transition: background 0.25s;
}

.biz-name { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 18px; color: #1a1a2e; margin-bottom: 12px; transition: color 0.25s; }
.biz-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; font-weight: 300; transition: color 0.25s; }

/* ===== CERTIFICATIONS ===== */
.certs { background: var(--white); }

.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.cert-card {
  background: linear-gradient(145deg, #ffffff 0%, #f0f7ff 100%);
  border: 1px solid rgba(11,94,215,0.25);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 8px 28px rgba(2, 32, 71, 0.12), 0 0 0 1px rgba(11,94,215,0.08) inset;
}

.cert-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 6px;
  height: 100%;
  background: linear-gradient(180deg, var(--green), var(--blue));
}

.cert-card:hover {
  box-shadow: 0 20px 56px rgba(2, 32, 71, 0.20), 0 0 0 2px rgba(11,94,215,0.15) inset;
  transform: translateY(-6px) scale(1.02);
  background: linear-gradient(145deg, #ffffff 0%, #e8f4ff 100%);
}

.cert-badge {
  width: 72px; height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 30px;
  box-shadow: 0 4px 14px rgba(2, 32, 71, 0.10);
}

.cert-code { font-family: 'Inter', sans-serif; font-weight: 800; font-size: 16px; color: #1a1a2e; margin-bottom: 8px; }
.cert-name { font-size: 14px; color: var(--text-muted); line-height: 1.6; font-weight: 400; }
.cert-valid { font-size: 12px; color: var(--green-dark); font-weight: 700; margin-top: 14px; background: linear-gradient(135deg, rgba(122,184,64,0.15), rgba(122,184,64,0.08)); padding: 5px 14px; border-radius: 100px; display: inline-block; border: 1px solid rgba(122,184,64,0.2); }

/* ===== CLIENTS / LOGOS ===== */
.clients { 
  background: rgb(255, 255, 255);
  color: #000;
  padding: 80px 5%;
}

.clients-inner { text-align: center; }
.clients .section-tag { color: var(--green); background: rgba(122,184,64,0.15); }
.clients .section-title { color: var(--green); }

.clients-logos {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  justify-items: stretch;
  align-items: stretch;
  margin-top: 42px;
  width: 100%;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.client-logo {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(2, 32, 71, 0.08);
}

.client-logo:hover {
  transform: translateY(-8px) scale(1.05);
  background: rgba(255,255,255,0.2);
  border-color: var(--green);
  box-shadow: 0 16px 40px rgba(2, 32, 71, 0.18);
}

.client-logo.modern-animate{
  transform: translateY(12px);
  opacity: 0;
}

.client-logo.modern-animate.is-visible{
  transform: translateY(0);
  opacity: 1;
}

.client-logo-img{ display:block; max-width:100%; width:auto; height:auto; max-height:140px; margin:0 auto; object-fit:contain; }

/* ===== HEALTH & SAFETY ===== */
.safety { background: var(--off-white); }

.safety-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.safety-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  border: 1px solid var(--border);
}

.safety-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.safety-card h3 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 20px; color: #1a1a2e; margin-bottom: 12px; }
.safety-card p { font-size: 14px; color: var(--text-muted); line-height: 1.75; font-weight: 300; }

/* ===== CONTACT ===== */
.contact { background: var(--white); }

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  margin-top: 60px;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  background: var(--blue);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
}

.contact-item-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-item-value { font-size: 15px; color: var(--text); font-weight: 500; }

.contact-form {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.form-group label { font-size: 13px; font-weight: 500; color: var(--text); }

.form-group input,
.form-group textarea,
.form-group select {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue-mid);
  box-shadow: 0 0 0 3px rgba(30,95,168,0.08);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 100px;
  padding: 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
}

.form-submit:hover { background: var(--blue-mid); transform: translateY(-1px); }

/* ===== FOOTER ===== */
footer {
  background: rgb(255, 255, 255);
  color: #000;
  padding: 80px 0px 40px;
  border-top: 1px solid rgb(226, 232, 240);
  box-shadow: 0 -2px 24px rgba(0, 0, 0, 0.06);
}

footer h1, footer h2 { color: #000 !important; }
footer h3, footer h4, footer .footer-brand-name { color: var(--green) !important; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-grid > * {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.footer-grid > *:nth-child(1) { animation-delay: 0.14s; }
.footer-grid > *:nth-child(2) { animation-delay: 0.20s; }
.footer-grid > *:nth-child(3) { animation-delay: 0.26s; }
.footer-grid > *:nth-child(4) { animation-delay: 0.32s; }

.footer-brand p { font-size: 14px; line-height: 1.7; margin-top: 16px; font-weight: 300; }
.footer-logo-svg { width: 72px; height: 80px; flex-shrink: 0; object-fit: contain; border-radius: 0; }

.footer-brand-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-titles {
  display: flex;
  flex-direction: column;
}

.footer-brand-name { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 26px; color: var(--white); margin-top: 0; }
.footer-brand-sub { font-size: 18px; color: var(--green); margin-top: 2px; letter-spacing: 0.05em; text-transform: uppercase; }

.footer-col h4 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 14px; color: var(--white); margin-bottom: 20px; letter-spacing: 0.05em; text-transform: uppercase; }

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { text-decoration: none; font-size: 14px; color: #000; transition: color 0.2s; word-break: break-all; }
.footer-links a:hover { color: var(--green); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
}

.footer-bottom .cr-num { color: var(--green); font-weight: 600; }

/* ===== HERO VISUAL ===== */
.hero-visual {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; gap: 16px;
}
.hero-img-main {
  border-radius: 20px; overflow: hidden; height: 320px; position: relative;
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-img-main::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 55%, rgba(26,58,107,0.55));
}
.hero-img-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.hero-img-small { border-radius: 14px; overflow: hidden; height: 150px; }
.hero-img-small img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: 20px; left: 20px; z-index: 3;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px; padding: 12px 18px;
  display: flex; align-items: center; gap: 10px;
}
.hero-badge-icon { font-size: 22px; }
.hero-badge-text { font-size: 12px; color: rgba(255,255,255,0.9); }
.hero-badge-text strong { display: block; font-size: 14px; color: var(--white); font-weight: 600; }

/* ===== ABOUT IMAGE STACK ===== */
.about-img-stack { position: relative; height: 480px; }
.about-img-bg {
  position: absolute; top: 0; left: 0; right: 48px; bottom: 48px;
  border-radius: 20px; overflow: hidden;
}
.about-img-bg img { width: 100%; height: 100%; object-fit: cover; }
.about-img-fg {
  position: absolute; bottom: 0; right: 0; width: 55%; height: 52%;
  border-radius: 16px; overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 16px 48px rgba(26,58,107,0.15);
}
.about-img-fg img { width: 100%; height: 100%; object-fit: cover; }
.about-years {
  position: absolute; top: 20px; right: 28px;
  background: var(--blue); color: var(--white);
  border-radius: 14px; padding: 18px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(26,58,107,0.3);
}
.about-years-num { font-family: 'Syne', sans-serif; font-size: 34px; font-weight: 800; color: var(--green); line-height: 1; }
.about-years-label { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.05em; }

/* ===== ABOUT SLIDESHOW ===== */
.about-slideshow {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(26,58,107,0.15);
  background: var(--white);
}

.slideshow-container {
  position: relative;
  width: 100%;
  height: 480px;
}

.slide {
  display: none;
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 40px 24px 24px;
  color: var(--white);
}

.slide-number {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  background: rgba(255,255,255,0.2);
  padding: 3px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.slide-title {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--white);
}

.slide-text {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  font-weight: 300;
}

.slide-prev, .slide-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 12px 16px;
  color: var(--white);
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 50%;
  background: rgba(0,0,0,0.35);
  transition: background 0.3s;
  text-decoration: none;
  user-select: none;
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide-prev { left: 12px; }
.slide-next { right: 12px; }

.slide-prev:hover, .slide-next:hover {
  background: rgba(0,0,0,0.6);
}

.slide-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active, .dot:hover {
  background: var(--white);
}

.fade {
  animation-name: slideFade;
  animation-duration: 1s;
}

@keyframes slideFade {
  from { opacity: 0.4; }
  to { opacity: 1; }
}

@media (max-width: 960px) {
  .slideshow-container { height: 360px; }
  .about-slideshow { max-width: 100%; }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== ADMIN BUTTON ===== */
.admin-btn {
  display: inline-block;
  background: transparent;
  color: var(--text-muted) !important;
  font-size: 12px !important;
  padding: 4px 12px !important;
  border: 1px solid var(--border);
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
}

.admin-btn:hover {
  background: var(--blue) !important;
  color: var(--white) !important;
  border-color: var(--blue);
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  cursor: pointer;
  z-index: 200;
  padding: 8px;
  transition: background 0.2s;
  margin-left: auto;
}

.hamburger:hover {
  background: rgba(255,255,255,0.2);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  margin: 3px 0;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.5);
  z-index: 98;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -320px;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1a3c1a 0%, #2d5a2d 30%, #6b2e2e 70%, #4a1f1f 100%);
  z-index: 99;
  padding: 100px 24px 40px;
  overflow-y: auto;
  transition: right 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: -8px 0 30px rgba(0,0,0,0.3);
}

.mobile-nav-panel.open {
  right: 0;
}

.mobile-nav-panel .nav-links {
  display: flex !important;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-panel .nav-links a {
  display: block;
  padding: 12px 20px;
  font-size: 16px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  box-shadow: none;
  white-space: normal;
  text-align: left;
}

.mobile-nav-panel .nav-links a:hover {
  background: rgba(255,255,255,0.15);
  transform: none;
}

.mobile-nav-panel .lang-nav-item {
  margin-top: 12px;
}

.mobile-nav-panel .lang-switcher {
  width: 100%;
}

.mobile-nav-panel .lang-btn {
  width: 100%;
  justify-content: center;
  background: rgba(255,255,255,0.1);
}

.mobile-nav-panel .lang-dropdown {
  width: 100%;
  right: auto;
  left: 0;
}

/* ===== RESPONSIVE ===== */

/* Tablet & Small Laptop (960px and below) */
@media (max-width: 960px) {
  /* Navigation */
  nav {
    padding: 0 4%;
    height: 80px;
  }
  
  .logo-mark {
    width: 52px;
    height: 58px;
  }
  
  .logo-name {
    font-size: 20px;
  }
  
  .logo-sub {
    font-size: 14px;
  }
  
  .nav-links {
    display: none;
  }
  
  .hamburger {
    display: flex;
  }
  
  /* Hero */
  .hero {
    grid-template-columns: 1fr;
    padding: 110px 4% 60px;
    min-height: auto;
  }
  
  .hero-visual {
    display: none;
  }
  
  .hero h1 {
    font-size: clamp(28px, 6vw, 36px);
  }
  
  .hero-desc {
    font-size: 15px;
  }
  
  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 40px;
  }
  
  .stat-num {
    font-size: 26px;
  }
  
  /* Sections */
  section {
    padding: 60px 4%;
  }
  
  .section-title {
    font-size: clamp(26px, 5vw, 36px);
  }
  
  /* About Page */
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }
  
  .about-img-stack {
    height: 320px;
  }
  
  .about-slideshow {
    max-width: 100%;
  }
  
  .slideshow-container {
    height: 320px;
  }
  
  .slide-dots {
    bottom: 8px;
  }
  
  .slide-prev, .slide-next {
    width: 36px;
    height: 36px;
    font-size: 16px;
    padding: 8px;
  }
  
  .slide-title {
    font-size: 16px;
  }
  
  .slide-caption {
    padding: 30px 16px 16px;
  }
  
  /* Grid sections */
  .values-grid, .services-grid, .business-cards {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .services-intro {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 36px;
  }
  
  .certs-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .cert-card-img-wrap {
    width: 120px;
    height: 120px;
  }
  
  .service-card-body {
    padding: 24px 20px;
  }
  
  .service-name {
    font-size: 15px;
  }
  
  .service-num {
    font-size: 32px;
  }
  
  /* Contact */
  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 40px;
  }
  
  .contact-form {
    padding: 28px;
  }
  
  /* Safety */
  .safety-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 36px;
  }
  
  /* Business cards */
  .biz-card {
    padding: 20px;
  }
  
  .biz-icon-wrap {
    width: 56px;
    height: 56px;
    font-size: 24px;
  }
  
  .biz-name {
    font-size: 16px;
  }
  
  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  
  .footer-brand-name {
    font-size: 20px;
  }
  
  .footer-logo-svg {
    width: 52px;
    height: 58px;
  }
  
  /* Clients */
  .clients-logos {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
  }
  
  .client-logo {
    min-height: 90px;
    padding: 6px 10px;
  }
  
  /* Service detail page */
  .service-detail {
    padding: 130px 4% 60px;
  }
  
  .service-detail-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .service-detail-info {
    padding: 28px;
  }
  
  .service-detail-title {
    font-size: 22px;
  }
  
  /* News page */
  .news-page {
    padding: 130px 4% 60px;
  }
  
  .news-article {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }
  
  .news-title {
    font-size: 20px;
  }
  
  /* Certifications page */
  .docs-grid {
    gap: 20px;
  }
}

/* Small Tablet & Large Phone (768px and below) */
@media (max-width: 768px) {
  nav {
    height: 70px;
  }
  
  .logo-mark {
    width: 44px;
    height: 50px;
  }
  
  .logo-name {
    font-size: 17px;
  }
  
  .logo-sub {
    font-size: 12px;
  }
  
  .hero {
    padding: 100px 4% 50px;
  }
  
  .hero h1 {
    font-size: clamp(26px, 7vw, 32px);
  }
  
  .hero-btns {
    flex-direction: column;
    gap: 12px;
  }
  
  .hero-btns a {
    text-align: center;
    justify-content: center;
  }
  
.hero-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 24px;
  }
  
  .stat {
    padding-left: 12px;
  }
  
  .stat-num {
    font-size: 24px;
  }
  
  section {
    padding: 50px 4%;
  }
  
  .section-title {
    font-size: clamp(22px, 5vw, 30px);
  }
  
  .section-desc {
    font-size: 14px;
  }
  
  .values-grid, .services-grid, .business-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .certs-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  
  .cert-card-img-wrap {
    width: 100px;
    height: 100px;
  }
  
  .cert-code {
    font-size: 15px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 28px;
  }
  .footer-grid .footer-brand {
    grid-column: 1 / -1;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    font-size: 12px;
  }
  
  .clients-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .client-logo {
    min-height: 80px;
  }
  
  .about-slideshow {
    border-radius: 14px;
  }
  
  .slideshow-container {
    height: 260px;
  }
  
  .slide-caption {
    padding: 24px 14px 14px;
  }
  
  .slide-title {
    font-size: 15px;
  }
  
  .slide-text {
    font-size: 12px;
  }
  
  .slide-dots {
    bottom: 6px;
    gap: 6px;
  }
  
  .dot {
    width: 8px;
    height: 8px;
  }
  
  .contact-form {
    padding: 20px;
  }
  
  .service-detail {
    padding: 110px 4% 40px;
  }
  
  .service-detail-number {
    font-size: 36px;
  }
  
  .service-detail-title {
    font-size: 20px;
  }
  
  .service-detail-description {
    font-size: 14px;
  }
  
  .news-article {
    padding: 20px;
    gap: 16px;
  }
  
  .docs-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* Phone (480px and below) */
@media (max-width: 480px) {
  nav {
    height: 64px;
    padding: 0 3%;
  }
  
  .logo-mark {
    width: 38px;
    height: 44px;
  }
  
  .logo-text {
    display: flex;
  }
  
  .logo-name {
    font-size: 14px;
  }
  
  .logo-sub {
    font-size: 10px;
  }
  
  .hamburger {
    width: 38px;
    height: 38px;
  }
  
  .hamburger span {
    width: 18px;
    margin: 2.5px 0;
  }
  
  .hero {
    padding: 85px 3% 40px;
  }
  
  .hero h1 {
    font-size: clamp(24px, 7vw, 30px);
  }
  
  .hero-tag {
    margin-bottom: 20px;
  }
  
  .hero-desc {
    font-size: 14px;
    margin-bottom: 28px;
  }
  
  .btn-primary, .btn-secondary {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  section {
    padding: 40px 3%;
  }
  
  .section-tag {
    font-size: 11px;
    margin-bottom: 14px;
  }
  
  .section-title {
    font-size: clamp(20px, 6vw, 26px);
    margin-bottom: 14px;
  }
  
  .slideshow-container {
    height: 220px;
  }
  
  .slide-caption {
    padding: 18px 12px 12px;
  }
  
  .slide-number {
    font-size: 10px;
    padding: 2px 10px;
    margin-bottom: 6px;
  }
  
  .slide-title {
    font-size: 14px;
  }
  
  .slide-text {
    font-size: 11px;
    line-height: 1.4;
  }
  
  .slide-prev, .slide-next {
    width: 30px;
    height: 30px;
    font-size: 14px;
  }
  
  .slide-dots {
    bottom: 4px;
    gap: 5px;
  }
  
  .dot {
    width: 7px;
    height: 7px;
  }
  
  .about-grid {
    gap: 28px;
    margin-top: 28px;
  }
  
  .mvv-list {
    gap: 16px;
    margin-top: 20px;
  }
  
  .mvv-item {
    gap: 14px;
  }
  
  .mvv-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }
  
  .mvv-label {
    font-size: 14px;
  }
  
  .mvv-text {
    font-size: 13px;
  }
  
  .service-card-body {
    padding: 20px 16px;
  }
  
  .service-icon {
    font-size: 28px;
    margin-bottom: 14px;
  }
  
  .service-name {
    font-size: 14px;
  }
  
  .service-desc {
    font-size: 12px;
  }
  
  .service-num {
    font-size: 28px;
  }
  
  .value-card {
    padding: 24px 20px;
  }
  
  .biz-card {
    padding: 16px;
  }
  
  .biz-card-body {
    padding: 16px;
  }
  
  .clients-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .client-logo {
    min-height: 70px;
    padding: 4px 8px;
  }
  
  .cert-card {
    padding: 24px 16px;
  }
  
  .cert-card-img-wrap {
    width: 90px;
    height: 90px;
    padding: 8px;
  }
  
  .contact-form {
    padding: 16px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 10px 14px;
    font-size: 13px;
  }
  
  .contact-item {
    gap: 12px;
  }
  
  .contact-item-icon {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
  
  .news-article {
    padding: 16px;
    gap: 14px;
    margin-bottom: 32px;
  }
  
  .news-title {
    font-size: 17px;
  }
  
  .news-content {
    font-size: 14px;
    line-height: 1.6;
  }
  
  .news-date {
    font-size: 12px;
  }
  
.footer-grid {
    gap: 24px;
    grid-template-columns: 1fr;
  }
  
  .footer-logo-svg {
    width: 44px;
    height: 50px;
  }
  
  .footer-brand-name {
    font-size: 17px;
  }
  
  .footer-brand-sub {
    font-size: 14px;
  }
  
  .footer-brand p {
    font-size: 13px;
  }
  
  .footer-col h4 {
    font-size: 13px;
    margin-bottom: 14px;
  }
  
  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px 16px;
  }
  
  .footer-links a {
    font-size: 13px;
    word-break: break-all;
  }
  
  /* Service detail */
  .service-detail {
    padding: 100px 3% 30px;
  }
  
  .service-detail-back {
    font-size: 13px;
    margin-bottom: 20px;
  }
  
  .service-detail-info {
    padding: 20px;
  }
  
  .service-detail-number {
    font-size: 30px;
  }
  
  .service-detail-title {
    font-size: 18px;
  }
  
  .service-detail-description {
    font-size: 13px;
  }
  
  .service-nav {
    flex-direction: column;
    gap: 12px;
  }
  
  .service-nav a {
    font-size: 13px;
  }
  
/* Mobile nav panel adjustment */
  .mobile-nav-panel {
    width: 100%;
    right: -100%;
  }
  
/* Reduce padding-top on mobile for sections */
  .about[style*="padding-top"], .certs[style*="padding-top"], 
  .contact[style*="padding-top"], .safety[style*="padding-top"],
  .business[style*="padding-top"],
  #projects[style*="padding-top"], .page-hero {
    padding-top: 100px !important;
  }

  .news-page, .news-page[style*="padding-top"] {
    padding-top: 100px !important;
  }
  
  /* Mobile nav brand */
  .mobile-nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  
  .mobile-nav-brand .logo-mark {
    width: 50px;
    height: 56px;
    margin-top: 0;
  }
  
  .mobile-nav-brand-text {
    display: flex;
    flex-direction: column;
  }
  
  .mobile-nav-brand-name {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--white);
    line-height: 1.2;
  }
  
  .mobile-nav-brand-sub {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-top: 2px;
  }
}

