/* ─── ASFS THEME — MAIN STYLESHEET ───────────────────────────── */
:root {
  --navy:       #0a0e1a;
  --navy2:      #111827;
  --gold:       #c9a84c;
  --gold2:      #e8c96d;
  --white:      #f5f5f0;
  --grey:       #8a909e;
  --light:      #1c2233;
  --card:       #161d2e;
  --radius:     4px;
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--navy);
  color: var(--white);
  font-family: 'Barlow', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
::selection { background: var(--gold); color: var(--navy); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── NAVBAR ──────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 999;
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(10,14,26,.97);
  box-shadow: 0 2px 20px rgba(0,0,0,.5);
}
/* Logo – text fallback */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-shield {
  width: 44px; height: 44px;
  background: var(--gold);
  clip-path: polygon(50% 0%,100% 15%,100% 60%,50% 100%,0% 60%,0% 15%);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 20px;
  color: var(--navy); letter-spacing: 1px; flex-shrink: 0;
}
.logo-text {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 26px; letter-spacing: 3px; color: var(--white);
}
.logo-text span { color: var(--gold); }
/* Logo – image upload */
.logo--image { display: flex; align-items: center; }
.logo--image .custom-logo { max-height: 52px; width: auto; object-fit: contain; }

/* Nav list */
.nav-list { list-style: none; display: flex; gap: 36px; align-items: center; }
.nav-list li a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--white);
  position: relative; padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-list li a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width var(--transition);
}
.nav-list li a:hover { color: var(--gold); }
.nav-list li a:hover::after { width: 100%; }
.nav-list li a.nav-cta {
  background: var(--gold); color: var(--navy) !important;
  padding: 9px 22px !important; border-radius: var(--radius);
  font-weight: 700 !important;
}
.nav-list li a.nav-cta:hover { background: var(--gold2) !important; }
.nav-list li a.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { width: 26px; height: 2px; background: var(--white); display: block; transition: var(--transition); }
#mobile-menu {
  display: none; position: fixed; top: 72px; left: 0; width: 100%;
  background: rgba(10,14,26,.98); padding: 20px 5% 30px; z-index: 998;
}
#mobile-menu.open { display: block; }
.mobile-nav-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mobile-nav-list li a {
  display: block; padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
}
.mobile-nav-list li a:hover { color: var(--gold); }

/* ─── BUTTONS ──────────────────────────────────────────────────── */
.btn-primary {
  background: var(--gold); color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 14px 36px; border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(201,168,76,.3);
}
.btn-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,.4);
}
.btn-outline {
  background: transparent; color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 13px 36px; border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,.3); cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,.08);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--navy); color: var(--white);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 15px 40px; border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,.3);
}
.btn-dark:hover { background: var(--navy2); transform: translateY(-2px); }

/* ─── SECTION BASE ─────────────────────────────────────────────── */
section { padding: 100px 5%; }
.section-tag {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 12px;
}
.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px,5vw,60px);
  letter-spacing: 2px; line-height: 1.05; margin-bottom: 20px;
}
.section-sub { font-size: 16px; color: var(--grey); max-width: 560px; line-height: 1.8; }
.section-body { color: var(--grey); line-height: 1.9; }
.section-center { text-align: center; }
.divider { width: 60px; height: 3px; background: var(--gold); margin: 20px 0 40px; }
.divider--center { margin-left: auto; margin-right: auto; }

/* ─── HERO ─────────────────────────────────────────────────────── */
#hero {
  min-height: 100vh; position: relative;
  display: flex; align-items: center; overflow: hidden;
}
.hero-slides { position: absolute; inset: 0; z-index: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 1.2s ease;
  background: linear-gradient(135deg, #0d1626 0%, #1a2540 100%);
}
.hero-slide.slide-2 { background: linear-gradient(135deg, #0e1929 0%, #0a1520 100%); }
.hero-slide.slide-3 { background: linear-gradient(135deg, #0f1a2e 0%, #111827 100%); }
.hero-slide.active  { opacity: 1; }
.hero-slide::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,14,26,.82) 40%, rgba(10,14,26,.45));
}
.hero-pattern {
  position: absolute; inset: 0; z-index: 1; opacity: .07;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23c9a84c'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero-content {
  position: relative; z-index: 2; padding: 0 5%; max-width: 900px; margin-top: 72px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,.12); border: 1px solid rgba(201,168,76,.3);
  padding: 6px 16px; border-radius: 40px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 24px;
  animation: fadeUp .8s ease both;
}
.dot {
  width: 6px; height: 6px; background: var(--gold);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.4); }
}
.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px,9vw,110px);
  line-height: .95; letter-spacing: 3px; margin-bottom: 8px;
  animation: fadeUp .9s .1s ease both;
}
.hero-h1 .accent { color: var(--gold); }
.hero-sub {
  font-size: clamp(14px,2vw,18px); font-weight: 300;
  color: rgba(245,245,240,.7); max-width: 560px;
  margin-bottom: 40px; letter-spacing: .5px;
  animation: fadeUp 1s .2s ease both;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 1s .3s ease both;
}
.hero-stats {
  position: absolute; bottom: 50px; left: 5%; right: 5%; z-index: 2;
  display: flex; gap: 48px; flex-wrap: wrap;
  animation: fadeUp 1s .5s ease both;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 42px; color: var(--gold); line-height: 1; }
.stat-label { font-size: 13px; font-weight: 300; color: var(--grey); letter-spacing: 1px; text-transform: uppercase; }
.hero-dots {
  position: absolute; right: 5%; bottom: 50%; transform: translateY(50%);
  z-index: 2; display: flex; flex-direction: column; gap: 10px;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,.3); border: none;
  cursor: pointer; transition: background var(--transition), transform var(--transition);
  padding: 0;
}
.hero-dot.active { background: var(--gold); transform: scale(1.3); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── ABOUT ─────────────────────────────────────────────────────── */
#about { background: var(--navy2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-img-placeholder {
  width: 100%; aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1c2233 0%, #0f1520 100%);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
}
.about-img-placeholder svg { width: 120px; height: 120px; opacity: .25; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: var(--navy);
  padding: 20px 24px; border-radius: var(--radius);
  text-align: center; box-shadow: 0 8px 30px rgba(201,168,76,.4);
}
.about-badge-num { font-family: 'Bebas Neue', sans-serif; font-size: 44px; line-height: 1; }
.about-badge-label { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.about-feat { display: flex; align-items: flex-start; gap: 16px; }
.feat-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; font-size: 20px;
}
.feat-text h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 600; letter-spacing: .5px; margin-bottom: 4px; }
.feat-text p  { font-size: 14px; color: var(--grey); line-height: 1.6; }

/* ─── SERVICES ──────────────────────────────────────────────────── */
#services { background: var(--navy); }
.services-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 60px; flex-wrap: wrap; gap: 24px; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; }
.service-card {
  background: var(--card); border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--radius); padding: 36px 32px;
  position: relative; overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(201,168,76,.2); box-shadow: 0 20px 40px rgba(0,0,0,.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px; background: rgba(201,168,76,.1);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; font-size: 26px; margin-bottom: 24px;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: rgba(201,168,76,.2); }
.service-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 12px; }
.service-card p  { font-size: 14px; color: var(--grey); line-height: 1.7; }
.learn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Barlow Condensed', sans-serif; font-size: 13px;
  font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold);
  margin-top: 20px; opacity: 0; transform: translateX(-8px);
  transition: opacity var(--transition), transform var(--transition);
}
.service-card:hover .learn { opacity: 1; transform: translateX(0); }

/* ─── WHY ───────────────────────────────────────────────────────── */
#why { background: var(--navy2); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 0; }
.why-item {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.06);
}
.why-item:first-child { border-top: 1px solid rgba(255,255,255,.06); }
.why-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 36px;
  color: rgba(201,168,76,.2); min-width: 50px; line-height: 1;
  transition: color var(--transition);
}
.why-item:hover .why-num { color: var(--gold); }
.why-item h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 19px; font-weight: 700; letter-spacing: .5px; margin-bottom: 6px; }
.why-item p  { font-size: 14px; color: var(--grey); line-height: 1.6; }
.why-visual {
  background: var(--card); border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--radius); padding: 48px;
  display: flex; flex-direction: column; gap: 32px;
}
.why-stat-row { display: flex; gap: 40px; flex-wrap: wrap; }
.why-stat     { display: flex; flex-direction: column; gap: 4px; }
.why-stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: var(--gold); line-height: 1; }
.why-stat-label { font-size: 13px; color: var(--grey); letter-spacing: 1px; text-transform: uppercase; }
.why-quote {
  padding: 24px;
  background: rgba(201,168,76,.06); border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; color: rgba(245,245,240,.7);
  font-size: 15px; line-height: 1.8;
}
.why-quote footer { margin-top: 12px; font-style: normal; color: var(--white); }

/* ─── SECTORS ───────────────────────────────────────────────────── */
#sectors { background: var(--navy); }
.sectors-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); gap: 16px; margin-top: 60px; }
.sector-card {
  background: var(--card); border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--radius); padding: 32px 20px; text-align: center;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
  cursor: pointer;
}
.sector-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,.3); background: var(--light); }
.sector-emoji { font-size: 32px; margin-bottom: 14px; }
.sector-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--grey);
  transition: color var(--transition);
}
.sector-card:hover h4 { color: var(--gold); }

/* ─── TESTIMONIALS ──────────────────────────────────────────────── */
#testimonials { background: var(--navy2); text-align: center; }
.testimonials-header { margin-bottom: 60px; }
.testimonials-track {
  display: flex; gap: 24px; overflow-x: auto; padding-bottom: 16px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testi-card {
  background: var(--card); border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--radius); padding: 40px;
  min-width: 340px; max-width: 380px;
  text-align: left; position: relative; flex-shrink: 0;
  transition: transform var(--transition);
}
.testi-card:hover { transform: translateY(-4px); }
.testi-quote {
  font-size: 48px; color: var(--gold); line-height: .8;
  font-family: Georgia, serif; position: absolute;
  top: 24px; right: 28px; opacity: .3;
}
.testi-stars  { color: var(--gold); font-size: 14px; margin-bottom: 16px; letter-spacing: 2px; }
.testi-text   { font-size: 15px; color: rgba(245,245,240,.75); line-height: 1.8; margin-bottom: 24px; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #8b6914);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Bebas Neue', sans-serif; font-size: 18px;
  color: var(--navy); flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: 15px; margin-bottom: 2px; }
.testi-role { font-size: 13px; color: var(--grey); }
.testi-nav  { display: flex; justify-content: center; gap: 12px; margin-top: 40px; }
.testi-btn  {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  background: transparent; color: var(--white);
  font-size: 18px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.testi-btn:hover { border-color: var(--gold); background: rgba(201,168,76,.1); }

/* ─── CLIENTS ───────────────────────────────────────────────────── */
#clients { background: var(--navy); padding: 60px 5%; }
.clients-label {
  text-align: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 3px;
  text-transform: uppercase; color: var(--grey); margin-bottom: 40px;
}
.clients-row { display: flex; overflow: hidden; }
.clients-scroll {
  display: flex; gap: 60px; align-items: center;
  animation: scrollClients 30s linear infinite;
  white-space: nowrap;
}
.clients-scroll:hover { animation-play-state: paused; }
.client-logo {
  font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 3px;
  color: rgba(255,255,255,.2); flex-shrink: 0;
  transition: color var(--transition);
}
.client-logo:hover { color: rgba(201,168,76,.6); }
.client-sep { color: rgba(201,168,76,.3); flex-shrink: 0; }
@keyframes scrollClients {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── BLOG ──────────────────────────────────────────────────────── */
#blog { background: var(--navy2); }
.blog-section-header {
  display: flex; justify-content: space-between;
  align-items: flex-end; flex-wrap: wrap; gap: 20px;
}
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px,1fr)); gap: 24px; margin-top: 60px; }
.blog-card {
  background: var(--card); border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--radius); overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0,0,0,.3); }
.blog-img {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, var(--light), var(--card));
  display: flex; align-items: center; justify-content: center; font-size: 48px;
}
.blog-thumb { width: 100%; height: 180px; object-fit: cover; }
.blog-body { padding: 28px; }
.blog-tag { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.blog-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; line-height: 1.3; margin-bottom: 12px; }
.blog-card h3 a { color: var(--white); }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p  { font-size: 14px; color: var(--grey); line-height: 1.7; margin-bottom: 20px; }
.blog-meta {
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--grey);
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 16px;
}

/* ─── CTA BAND ──────────────────────────────────────────────────── */
#cta-band {
  background: linear-gradient(135deg, var(--gold) 0%, #a6792a 100%);
  padding: 60px 5%; text-align: center;
}
#cta-band h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px,5vw,56px);
  color: var(--navy); letter-spacing: 3px; margin-bottom: 12px;
}
#cta-band p { color: rgba(10,14,26,.7); font-size: 17px; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ─── CONTACT ───────────────────────────────────────────────────── */
#contact { background: var(--navy); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start; }
.contact-info  { display: flex; flex-direction: column; gap: 28px; }
.contact-item  { display: flex; gap: 18px; align-items: flex-start; }
.contact-icon  {
  width: 50px; height: 50px; min-width: 50px;
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.2);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; font-size: 22px;
}
.contact-item h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 17px; font-weight: 700; letter-spacing: .5px; margin-bottom: 4px; }
.contact-item p  { font-size: 14px; color: var(--grey); }
.contact-item a  { color: var(--grey); transition: color var(--transition); }
.contact-item a:hover { color: var(--gold); }
.contact-form {
  background: var(--card); border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--radius); padding: 44px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.form-group label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: var(--grey);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); padding: 13px 16px;
  color: var(--white); font-family: 'Barlow', sans-serif;
  font-size: 15px; width: 100%; resize: none;
  transition: border-color var(--transition), background var(--transition);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--gold);
  background: rgba(201,168,76,.04);
}
.form-group select option { background: var(--navy2); }
.form-submit {
  width: 100%; background: var(--gold); color: var(--navy);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 16px; border: none; border-radius: var(--radius); cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}
.form-submit:hover { background: var(--gold2); transform: translateY(-2px); }
.form-submit:disabled { opacity: .7; cursor: wait; }
.cf-feedback {
  font-size: 14px; margin-bottom: 16px; padding: 12px 16px;
  border-radius: var(--radius); display: none;
}
.cf-feedback.success { background: rgba(39,174,96,.1); color: #2ecc71; border: 1px solid rgba(39,174,96,.2); display: block; }
.cf-feedback.error   { background: rgba(192,57,43,.1);  color: #e74c3c; border: 1px solid rgba(192,57,43,.2);  display: block; }

/* ─── FOOTER ─────────────────────────────────────────────────────── */
footer {
  background: var(--navy2);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 60px 5% 30px;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand .logo   { margin-bottom: 16px; }
.footer-brand p       { font-size: 14px; color: var(--grey); line-height: 1.8; margin: 0 0 24px; }
.footer-social        { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; font-size: 13px; font-weight: 700;
  transition: border-color var(--transition), background var(--transition);
}
.social-link:hover { border-color: var(--gold); background: rgba(201,168,76,.1); color: var(--gold); }
.footer-col h5 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 15px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--white); margin-bottom: 20px;
}
.footer-col ul       { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a  { font-size: 14px; color: var(--grey); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 14px; color: var(--grey); }
.footer-contact-item a { color: var(--grey); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; font-size: 13px; color: var(--grey);
}
.footer-bottom a { color: var(--grey); margin: 0 4px; transition: color var(--transition); }
.footer-bottom a:hover { color: var(--gold); }

/* ─── SCROLL REVEAL ──────────────────────────────────────────────── */
.reveal          { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible  { opacity: 1; transform: none; }
.reveal--delay   { transition-delay: .15s; }

/* ─── RESPONSIVE ─────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid, .why-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-badge { bottom: -10px; right: 10px; }
}
@media (max-width: 768px) {
  .nav-list, .hero-dots { display: none; }
  .hamburger { display: flex; }
  .hero-stats  { gap: 24px; bottom: 32px; }
  .stat-num    { font-size: 32px; }
  .services-header { flex-direction: column; align-items: flex-start; }
  .sectors-grid    { grid-template-columns: repeat(2, 1fr); }
  .form-row        { grid-template-columns: 1fr; }
  section { padding: 70px 5%; }
  .testi-card { min-width: 290px; }
}
@media (max-width: 480px) {
  .hero-h1  { font-size: 52px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .blog-section-header { flex-direction: column; align-items: flex-start; }
}
