/* ============================================================
   HIYDRA GLOBAL — Design System & Styles
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  /* Brand Palette */
  --orange:        #e8711a;
  --orange-light:  #f5a623;
  --orange-dark:   #c45a10;
  --purple:        #5b2d8e;
  --purple-light:  #7b4cb8;
  --purple-dark:   #3f1d65;
  --gold:          #d4a017;
  --red-accent:    #d93636;

  /* Neutrals */
  --bg-dark:       #0b0e17;
  --bg-section:    #0f1320;
  --bg-card:       #161b2e;
  --text-primary:  #f0f0f5;
  --text-secondary:#a0a5b8;
  --text-muted:    #6b7080;
  --border-subtle: rgba(255,255,255,0.06);

  /* Gradients */
  --grad-brand:   linear-gradient(135deg, var(--orange) 0%, var(--gold) 50%, var(--purple-light) 100%);
  --grad-hero:    linear-gradient(160deg, rgba(11,14,23,.92) 0%, rgba(91,45,142,.55) 50%, rgba(232,113,26,.35) 100%);
  --grad-card:    linear-gradient(145deg, rgba(22,27,46,.85), rgba(22,27,46,.55));
  --grad-cta:     linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);

  /* Glass */
  --glass-bg:     rgba(22,27,46,.55);
  --glass-border: rgba(255,255,255,0.08);
  --glass-blur:   20px;

  /* Spacing */
  --section-pad:  100px 0;
  --container:    1200px;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Transitions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; outline: none; }

/* ---------- Utility ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange-light); margin-bottom: 16px;
}
.section-label::before {
  content: ''; width: 32px; height: 2px;
  background: var(--grad-brand); border-radius: 2px;
}
.section-title {
  font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.15; margin-bottom: 20px;
}
.section-title .highlight {
  background: var(--grad-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-desc {
  color: var(--text-secondary); font-size: 1.05rem; max-width: 620px; line-height: 1.8;
}

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(60px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: .5; }
  100% { transform: scale(1.6); opacity: 0; }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.anim-fade-up   { animation: fadeUp .8s var(--ease-out-expo) both; }
.anim-delay-1   { animation-delay: .15s; }
.anim-delay-2   { animation-delay: .3s; }
.anim-delay-3   { animation-delay: .45s; }
.anim-delay-4   { animation-delay: .6s; }

/* Intersection Observer reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s var(--ease-out-expo), transform .7s var(--ease-out-expo); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  padding: 16px 0; transition: all .4s var(--ease-out-expo);
}
.header.scrolled {
  background: rgba(11,14,23,.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
}
/* For inner pages, header starts dark */
.header--solid {
  background: rgba(11,14,23,.95);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}
.header .container {
  display: flex; align-items: center; justify-content: space-between;
}
.header__logo { display: flex; align-items: center; gap: 12px; }
.header__logo img { height: 80px; width: auto; transition: height .3s; }
.header.scrolled .header__logo img { height: 60px; }

.nav__list { display: flex; gap: 36px; align-items: center; }
.nav__link {
  font-size: .88rem; font-weight: 500; letter-spacing: .5px;
  color: var(--text-secondary); position: relative;
  transition: color .3s;
}
.nav__link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--grad-brand);
  border-radius: 2px; transition: width .35s var(--ease-out-expo);
}
.nav__link:hover { color: var(--text-primary); }
.nav__link:hover::after { width: 100%; }
.nav__link.active { color: var(--orange-light); }
.nav__link.active::after { width: 100%; }

.nav__cta {
  padding: 10px 28px; border-radius: 50px; font-size: .85rem; font-weight: 600;
  background: var(--grad-cta); color: #fff;
  transition: transform .3s, box-shadow .3s;
}
.nav__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,113,26,.35);
}

/* Mobile menu toggle */
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; padding: 8px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all .3s; }

/* ============================================================
   HERO (Home page)
   ============================================================ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: var(--grad-hero);
  z-index: 1;
}
/* Decorative mesh / noise */
.hero__overlay::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(232,113,26,.12) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(91,45,142,.15) 0%, transparent 50%);
}
.hero__content {
  position: relative; z-index: 2; max-width: 720px;
  padding-top: 80px;
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,113,26,.12); border: 1px solid rgba(232,113,26,.25);
  border-radius: 50px; padding: 6px 18px 6px 8px;
  font-size: .78rem; font-weight: 600; color: var(--orange-light);
  margin-bottom: 28px;
  animation: fadeUp .6s var(--ease-out-expo) both;
}
.hero__badge .dot {
  width: 8px; height: 8px; background: var(--orange); border-radius: 50%;
  position: relative;
}
.hero__badge .dot::after {
  content: ''; position: absolute; inset: -4px;
  border: 2px solid var(--orange); border-radius: 50%;
  animation: pulse-ring 1.5s ease-out infinite;
}
.hero__title {
  font-family: var(--font-heading); font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 24px;
  animation: fadeUp .7s .15s var(--ease-out-expo) both;
}
.hero__title .line { display: block; }
.hero__title .highlight {
  background: var(--grad-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__desc {
  color: var(--text-secondary); font-size: 1.1rem; line-height: 1.85;
  margin-bottom: 40px; max-width: 560px;
  animation: fadeUp .7s .3s var(--ease-out-expo) both;
}
.hero__actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp .7s .45s var(--ease-out-expo) both;
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: .92rem;
  transition: all .35s var(--ease-out-expo);
}
.btn--primary {
  background: var(--grad-cta); color: #fff;
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(232,113,26,.3);
}
.btn--outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.15);
  color: var(--text-primary);
  backdrop-filter: blur(8px);
}
.btn--outline:hover {
  border-color: var(--orange-light);
  background: rgba(232,113,26,.08);
  transform: translateY(-3px);
}

/* Floating stats bar at bottom of hero */
.hero__stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 3;
  background: rgba(22,27,46,.6);
  backdrop-filter: blur(var(--glass-blur)); -webkit-backdrop-filter: blur(var(--glass-blur));
  border-top: 1px solid var(--glass-border);
}
.hero__stats .container {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 28px 24px; text-align: center;
  border-right: 1px solid var(--border-subtle);
  animation: countUp .6s var(--ease-out-expo) both;
}
.stat:last-child { border-right: none; }
.stat__number {
  font-family: var(--font-heading); font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.stat__label { font-size: .8rem; color: var(--text-muted); letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }

/* ============================================================
   PAGE HERO (Inner pages)
   ============================================================ */
.page-hero {
  position: relative; padding: 160px 0 80px; overflow: hidden;
  background: linear-gradient(160deg, var(--bg-dark) 0%, var(--purple-dark) 50%, rgba(232,113,26,.2) 100%);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 70%, rgba(232,113,26,.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 30%, rgba(91,45,142,.1) 0%, transparent 50%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero__label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange-light); margin-bottom: 16px;
}
.page-hero__label::before {
  content: ''; width: 32px; height: 2px; background: var(--grad-brand); border-radius: 2px;
}
.page-hero__title {
  font-family: var(--font-heading); font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900; line-height: 1.1; margin-bottom: 16px;
  animation: fadeUp .7s var(--ease-out-expo) both;
}
.page-hero__title .highlight {
  background: var(--grad-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero__desc {
  color: var(--text-secondary); font-size: 1.1rem; line-height: 1.85;
  max-width: 600px;
  animation: fadeUp .7s .15s var(--ease-out-expo) both;
}
/* Breadcrumb */
.breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-bottom: 24px;
  font-size: .82rem; color: var(--text-muted);
  animation: fadeUp .6s var(--ease-out-expo) both;
}
.breadcrumb a { color: var(--text-secondary); transition: color .3s; }
.breadcrumb a:hover { color: var(--orange-light); }
.breadcrumb__sep { color: var(--text-muted); }
.breadcrumb__current { color: var(--orange-light); }

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: var(--section-pad); position: relative; }
.about .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about__image-wrap {
  position: relative; border-radius: 20px; overflow: hidden;
}
.about__image-wrap img { border-radius: 20px; width: 100%; }
.about__image-wrap::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,113,26,.15) 0%, transparent 60%);
  border-radius: 20px;
}
/* Floating accent card */
.about__float-card {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--glass-bg); backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border); border-radius: 16px;
  padding: 20px 28px; display: flex; align-items: center; gap: 16px;
  animation: float 4s ease-in-out infinite;
  z-index: 2;
}
.about__float-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--grad-brand); display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
}
.about__float-text strong { display: block; font-size: 1.1rem; }
.about__float-text span { font-size: .8rem; color: var(--text-muted); }

/* About page — full-width sections */
.about-full { padding: var(--section-pad); }
.about-full--alt { background: var(--bg-section); }
.about-full .container { max-width: 960px; }
.about-full__header { text-align: center; margin-bottom: 56px; }
.about-full__header .section-desc { margin: 0 auto; }

/* Vision / Mission / Values cards on about page */
.vmv-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.vmv-card {
  background: var(--grad-card); border: 1px solid var(--glass-border);
  border-radius: 20px; padding: 36px 28px; text-align: center;
  position: relative; overflow: hidden;
  transition: all .4s var(--ease-out-expo);
}
.vmv-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-brand); opacity: 0; transition: opacity .4s;
}
.vmv-card:hover { transform: translateY(-6px); border-color: rgba(232,113,26,.2); }
.vmv-card:hover::before { opacity: 1; }
.vmv-card__icon {
  width: 64px; height: 64px; border-radius: 16px; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
}
.vmv-card__icon--vision  { background: rgba(232,113,26,.12); }
.vmv-card__icon--mission { background: rgba(91,45,142,.12); }
.vmv-card__icon--values  { background: rgba(212,160,23,.12); }
.vmv-card__title {
  font-family: var(--font-heading); font-size: 1.15rem; font-weight: 700;
  margin-bottom: 12px;
}
.vmv-card__desc { color: var(--text-secondary); font-size: .92rem; line-height: 1.75; }

/* Fleet / image strip on about page */
.about-fleet {
  padding: 80px 0; position: relative; overflow: hidden;
}
.about-fleet__img {
  border-radius: 20px; overflow: hidden; max-height: 420px;
}
.about-fleet__img img {
  width: 100%; height: 100%; object-fit: cover; border-radius: 20px;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: var(--section-pad); background: var(--bg-section); position: relative; }
.services::before {
  content: ''; position: absolute; top: -1px; left: 0; right: 0; height: 120px;
  background: linear-gradient(to bottom, var(--bg-dark), var(--bg-section));
}
.services__header { text-align: center; margin-bottom: 64px; position: relative; z-index: 1; }
.services__header .section-desc { margin: 0 auto; }
.services__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px;
  position: relative; z-index: 1;
}
.service-card {
  background: var(--grad-card); border: 1px solid var(--glass-border);
  border-radius: 20px; padding: 40px 32px; position: relative; overflow: hidden;
  transition: all .4s var(--ease-out-expo);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-brand); opacity: 0; transition: opacity .4s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(232,113,26,.2); }
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(232,113,26,.1); display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 24px;
  transition: background .4s;
}
.service-card:hover .service-card__icon { background: rgba(232,113,26,.18); }
.service-card__title {
  font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; margin-bottom: 12px;
}
.service-card__desc { color: var(--text-secondary); font-size: .92rem; line-height: 1.75; }
.service-card__link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 20px; font-size: .85rem; font-weight: 600; color: var(--orange-light);
  transition: gap .3s;
}
.service-card__link:hover { gap: 12px; }

/* Services page — detailed service blocks */
.service-detail {
  padding: var(--section-pad); position: relative;
}
.service-detail--alt { background: var(--bg-section); }
.service-detail .container {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.service-detail--reverse .container { direction: rtl; }
.service-detail--reverse .container > * { direction: ltr; }
.service-detail__content { }
.service-detail__number {
  font-family: var(--font-heading); font-size: 4rem; font-weight: 900;
  background: var(--grad-brand);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: .2; line-height: 1; margin-bottom: -16px;
}
.service-detail__title {
  font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800; margin-bottom: 16px;
}
.service-detail__desc {
  color: var(--text-secondary); font-size: 1rem; line-height: 1.85; margin-bottom: 24px;
}
.service-detail__features {
  display: flex; flex-direction: column; gap: 12px;
}
.service-detail__feat {
  display: flex; align-items: center; gap: 12px;
  font-size: .92rem; color: var(--text-secondary);
}
.service-detail__feat-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 8px;
  background: rgba(232,113,26,.1); display: flex; align-items: center; justify-content: center;
  font-size: .8rem;
}
.service-detail__image {
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--glass-border);
}
.service-detail__image img { width: 100%; border-radius: 20px; }

/* ============================================================
   WHY CHOOSE US — 2x2 Grid (Fixed)
   ============================================================ */
.why-us { padding: var(--section-pad); }
.why-us__header { text-align: center; margin-bottom: 56px; }
.why-us__header .section-desc { margin: 0 auto; }
.why-us__grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px;
}
.why-card {
  background: var(--grad-card); border: 1px solid var(--glass-border);
  border-radius: 20px; padding: 36px 32px;
  display: flex; gap: 20px; align-items: flex-start;
  position: relative; overflow: hidden;
  transition: all .4s var(--ease-out-expo);
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-brand); opacity: 0; transition: opacity .4s;
}
.why-card:hover { transform: translateY(-6px); border-color: rgba(232,113,26,.2); }
.why-card:hover::before { opacity: 1; }
.why-card__icon {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.why-card__icon--experts  { background: rgba(91,45,142,.15); }
.why-card__icon--secure   { background: rgba(232,113,26,.12); }
.why-card__icon--reach    { background: rgba(212,160,23,.12); }
.why-card__icon--customer { background: rgba(91,45,142,.15); }
.why-card__title {
  font-family: var(--font-heading); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px;
}
.why-card__desc { color: var(--text-secondary); font-size: .9rem; line-height: 1.75; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 80px 0; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--purple-dark) 0%, var(--bg-dark) 60%, rgba(232,113,26,.15) 100%);
}
.cta-banner::before {
  content: ''; position: absolute; width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,113,26,.12), transparent 70%);
  top: -200px; right: -100px; border-radius: 50%;
}
.cta-banner .container {
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  position: relative; z-index: 1;
}
.cta-banner__text { max-width: 600px; }
.cta-banner__title { font-family: var(--font-heading); font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 12px; }
.cta-banner__desc { color: var(--text-secondary); font-size: 1rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { padding: var(--section-pad); background: var(--bg-section); }
.contact .container { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.contact__info { display: flex; flex-direction: column; gap: 32px; }
.contact__item { display: flex; gap: 16px; }
.contact__icon {
  flex-shrink: 0; width: 50px; height: 50px; border-radius: 14px;
  background: rgba(232,113,26,.1); display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--orange-light);
}
.contact__label { font-size: .78rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 4px; }
.contact__value { font-size: .95rem; color: var(--text-primary); line-height: 1.7; }
.contact__value a { color: var(--orange-light); transition: color .3s; }
.contact__value a:hover { color: var(--orange); }

/* Contact Form */
.contact__form {
  background: var(--grad-card); border: 1px solid var(--glass-border);
  border-radius: 24px; padding: 40px;
}
.contact__form h3 {
  font-family: var(--font-heading); font-size: 1.4rem; font-weight: 700; margin-bottom: 28px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: .82rem; font-weight: 500; color: var(--text-secondary);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px; border-radius: 12px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border-subtle);
  color: var(--text-primary); font-family: var(--font-body); font-size: .92rem;
  transition: border-color .3s, background .3s;
  outline: none;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23a0a5b8' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.form-group select option { background: var(--bg-card); color: var(--text-primary); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange); background: rgba(232,113,26,.04);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-submit {
  width: 100%; padding: 14px; border-radius: 14px;
  background: var(--grad-cta); color: #fff; font-weight: 700; font-size: .95rem;
  transition: all .35s;
}
.form-submit:hover { box-shadow: 0 10px 35px rgba(232,113,26,.3); transform: translateY(-2px); }

/* Map embed — contained */
.contact__map {
  margin-top: 60px; border-radius: 20px; overflow: hidden;
  border: 1px solid var(--glass-border);
  grid-column: 1 / -1;
}
.contact__map iframe {
  width: 100%; height: 400px; border: none; filter: brightness(.85) contrast(1.1) saturate(.5);
  transition: filter .4s;
}
.contact__map iframe:hover { filter: brightness(1) contrast(1) saturate(1); }

/* Map embed — full width (edge to edge) */
.contact__map-full {
  width: 100%; overflow: hidden;
  border-top: 1px solid var(--glass-border);
}
.contact__map-full iframe {
  width: 100%; height: 450px; border: none;
  filter: brightness(.8) contrast(1.1) saturate(.4);
  transition: filter .4s;
  display: block;
}
.contact__map-full iframe:hover { filter: brightness(1) contrast(1) saturate(1); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { padding: var(--section-pad); }
.faq .container { max-width: 820px; }
.faq__header { text-align: center; margin-bottom: 56px; }
.faq__header .section-desc { margin: 0 auto; }
.faq__list { display: flex; flex-direction: column; gap: 16px; }
.faq__item {
  background: var(--grad-card); border: 1px solid var(--glass-border);
  border-radius: 16px; overflow: hidden;
  transition: border-color .3s;
}
.faq__item.active { border-color: rgba(232,113,26,.2); }
.faq__question {
  width: 100%; padding: 22px 28px; display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
  background: none; color: var(--text-primary);
  font-family: var(--font-heading); font-size: 1rem; font-weight: 600;
  text-align: left; cursor: pointer;
  transition: color .3s;
}
.faq__question:hover { color: var(--orange-light); }
.faq__icon {
  flex-shrink: 0; width: 32px; height: 32px; border-radius: 8px;
  background: rgba(232,113,26,.1); display: flex; align-items: center; justify-content: center;
  transition: transform .35s var(--ease-out-expo), background .3s;
}
.faq__item.active .faq__icon { transform: rotate(45deg); background: rgba(232,113,26,.2); }
.faq__answer {
  max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out-expo);
}
.faq__answer-inner {
  padding: 0 28px 22px;
  color: var(--text-secondary); font-size: .92rem; line-height: 1.8;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  padding: 60px 0 0;
  background: linear-gradient(to top, rgba(11,14,23,1), var(--bg-section));
}
.footer__top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--border-subtle); }
.footer__brand p { color: var(--text-secondary); font-size: .88rem; margin-top: 16px; line-height: 1.75; max-width: 320px; }
.footer__brand img { height: 80px; width: auto; }
.footer__heading { font-family: var(--font-heading); font-size: .95rem; font-weight: 700; margin-bottom: 20px; }
.footer__links li { margin-bottom: 12px; }
.footer__links a { color: var(--text-secondary); font-size: .88rem; transition: color .3s, padding-left .3s; }
.footer__links a:hover { color: var(--orange-light); padding-left: 4px; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 24px 0; font-size: .82rem; color: var(--text-muted);
}
.footer__socials { display: flex; gap: 12px; }
.footer__socials a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.04); border: 1px solid var(--border-subtle);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: var(--text-secondary);
  transition: all .3s;
}
.footer__socials a:hover { background: var(--orange); color: #fff; border-color: var(--orange); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about .container,
  .contact .container,
  .service-detail .container { grid-template-columns: 1fr; }
  .service-detail--reverse .container { direction: ltr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .vmv-grid { grid-template-columns: 1fr; }
  .why-us__grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero__stats .container { grid-template-columns: repeat(2, 1fr); }
  .stat { padding: 20px 16px; }
  .stat:nth-child(2) { border-right: none; }
  .services__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Mobile nav */
  .nav__list {
    position: fixed; top: 0; right: -100%; width: 280px; height: 100vh;
    background: rgba(11,14,23,.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: flex-start;
    padding: 100px 32px 40px; gap: 24px;
    transition: right .4s var(--ease-out-expo);
    border-left: 1px solid var(--glass-border);
  }
  .nav__list.active { right: 0; }
  .nav__toggle { display: flex; z-index: 1001; }
  .nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__toggle.active span:nth-child(2) { opacity: 0; }
  .nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .cta-banner .container { flex-direction: column; text-align: center; }

  .page-hero { padding: 130px 0 60px; }
}

@media (max-width: 480px) {
  .hero__stats .container { grid-template-columns: 1fr; }
  .stat { border-right: none; border-bottom: 1px solid var(--border-subtle); }
  .stat:last-child { border-bottom: none; }
  .hero__title { font-size: 2rem; }
}
