:root {
  --navy: #14245A;
  --navy-deep: #0d183d;
  --navy-soft: #1d315f;
  --red: #F21824;
  --gold: #D4AF37;
  --white: #FFFFFF;
  --off-white: #f4f6fb;
  --gray-100: #eef1f8;
  --gray-200: #dfe5f1;
  --gray-400: #7d879d;
  --gray-700: #2d3a52;
  --shadow-soft: 0 18px 45px rgba(20, 36, 90, 0.12);
  --shadow-card: 0 16px 42px rgba(20, 36, 90, 0.12);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: min(1200px, calc(100% - 32px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--off-white);
  color: var(--navy);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: 110px 0; }
.alt-section { background: linear-gradient(180deg, rgba(20,36,90,0.03), rgba(20,36,90,0.01)); }
.eyebrow { display: inline-block; margin: 0 0 12px; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.eyebrow.accent { color: var(--red); }
.section-heading { margin-bottom: 38px; }
.section-heading h2, .page-hero-inner h1, .hero-copy h1 {
  margin: 0;
  letter-spacing: -0.04em;
}
.section-heading h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
  max-width: 760px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: all 0.35s ease;
}
.site-header.is-scrolled {
  background: rgba(20, 36, 90, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 12px 30px rgba(14, 23, 52, 0.18);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--white);
  position: relative;
  z-index: 2;
}
.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), #f5d675);
  color: var(--navy);
  font-size: 1.05rem;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
}
.brand-text {
  font-size: 0.72rem;
  line-height: 1.2;
  max-width: 150px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: rgba(255,255,255,0.83);
  font-size: 0.93rem;
  font-weight: 500;
  transition: color 0.25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta { margin-left: 8px; }
body.mobile-menu-open {
  overflow: hidden;
}
.nav-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 16px 26px;
  font-weight: 700;
  transition: all 0.25s ease;
  cursor: pointer;
}
.btn-primary {
  background: linear-gradient(135deg, var(--red), #ff3d46);
  color: var(--white);
  box-shadow: 0 14px 25px rgba(242, 24, 36, 0.2);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(242,24,36,0.25); }
.btn-secondary {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-secondary:hover { background: rgba(255,255,255,0.12); }

.hero {
  position: relative;
  min-height: 760px;
  background: linear-gradient(120deg, rgba(12, 20, 45, 0.9), rgba(20, 36, 90, 0.7)),
    url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  color: var(--white);
  display: flex;
  align-items: center;
}
.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(212,175,55,0.18), transparent 25%),
              radial-gradient(circle at 80% 30%, rgba(242,24,36,0.12), transparent 20%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 42px;
  align-items: end;
  padding: 100px 0 90px;
}
.hero-copy h1 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.94;
  margin-bottom: 14px;
}
.hero-copy h2 {
  margin: 0 0 18px;
  font-size: clamp(1.6rem, 2vw, 2.3rem);
  color: rgba(255,255,255,0.9);
  font-weight: 600;
}
.hero-text {
  max-width: 630px;
  font-size: 1.12rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-panel {
  display: grid;
  gap: 18px;
}
.mini-card {
  background: rgba(11,17,33,0.46);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  backdrop-filter: blur(6px);
}
.mini-card .label { display: block; color: var(--gold); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 12px; }
.mini-card strong { font-size: 1.08rem; }

.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  background: linear-gradient(120deg, rgba(20,36,90,0.9), rgba(20,36,90,0.75));
  color: var(--white);
}
.page-hero-about { background: linear-gradient(120deg, rgba(20,36,90,0.8), rgba(20,36,90,0.8)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat; }
.page-hero-businesses { background: linear-gradient(120deg, rgba(20,36,90,0.8), rgba(20,36,90,0.8)), url('https://images.unsplash.com/photo-1522202176988-66273c2fd55f?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat; }
.page-hero-global { background: linear-gradient(120deg, rgba(20,36,90,0.82), rgba(20,36,90,0.72)), url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat; }
.page-hero-projects { background: linear-gradient(120deg, rgba(20,36,90,0.82), rgba(20,36,90,0.72)), url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat; }
.page-hero-news { background: linear-gradient(120deg, rgba(20,36,90,0.82), rgba(20,36,90,0.72)), url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat; }
.page-hero-careers { background: linear-gradient(120deg, rgba(20,36,90,0.82), rgba(20,36,90,0.72)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat; }
.page-hero-contact { background: linear-gradient(120deg, rgba(20,36,90,0.82), rgba(20,36,90,0.72)), url('https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat; }
.page-hero-supermarket { background: linear-gradient(120deg, rgba(20,36,90,0.82), rgba(20,36,90,0.72)), url('https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat; }
.page-hero-japan { background: linear-gradient(120deg, rgba(20,36,90,0.82), rgba(20,36,90,0.72)), url('https://images.unsplash.com/photo-1540959733332-eab4deabeeaf?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat; }
.page-hero-dubai { background: linear-gradient(120deg, rgba(20,36,90,0.82), rgba(20,36,90,0.72)), url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat; }
.page-hero-real-estate { background: linear-gradient(120deg, rgba(20,36,90,0.82), rgba(20,36,90,0.72)), url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat; }
.page-hero-tyre { background: linear-gradient(120deg, rgba(20,36,90,0.82), rgba(20,36,90,0.72)), url('https://images.unsplash.com/photo-1489824904134-891ab64532f1?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat; }
.page-hero-trading { background: linear-gradient(120deg, rgba(20,36,90,0.82), rgba(20,36,90,0.72)), url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat; }
.page-hero-inner {
  position: relative;
  z-index: 1;
  padding: 120px 0 70px;
}
.page-hero-inner h1 { font-size: clamp(2.4rem, 4vw, 4rem); line-height: 1.05; margin-bottom: 12px; }
.page-hero-inner p:last-child { font-size: 1.14rem; color: rgba(255,255,255,0.8); }

.content-layout { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 38px; align-items: start; }
.content-layout h2, .feature-box h3, .reason-card h3, .project-card h3, .news-card h3 { margin-top: 0; }
.info-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(20,36,90,0.06);
}
.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 24px; }
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 11px;
  width: 10px; height: 10px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--red));
}
.three-col { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.feature-box, .reason-card, .project-card, .news-card, .form-shell {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20,36,90,0.05);
  box-shadow: var(--shadow-soft);
}
.feature-box { padding: 28px 24px; }

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}
.business-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(20,36,90,0.06);
  box-shadow: var(--shadow-soft);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.business-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 55px rgba(20,36,90,0.16);
  border-color: rgba(212,175,55,0.5);
}
.business-image {
  height: 230px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.business-card:hover .business-image { transform: scale(1.06); }
.business-content { padding: 24px 24px 22px; }
.business-number {
  display: inline-block;
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}
.business-card h3 { margin: 0 0 10px; font-size: 1.7rem; line-height: 1.18; }
.business-category { color: var(--red); font-size: 0.85rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700; margin: 0 0 14px; }
.business-content p { margin-top: 0; }
.card-actions { margin-top: 18px; }
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--navy);
}
.btn-link span { display: inline-block; transition: transform 0.3s ease; }
.business-card:hover .btn-link span { transform: translateX(6px); }
.image-supermarket { background-image: url('https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=900&q=80'); }
.image-japan { background-image: url('https://images.unsplash.com/photo-1540959733332-eab4deabeeaf?auto=format&fit=crop&w=900&q=80'); }
.image-dubai { background-image: url('https://images.unsplash.com/photo-1512453979798-5ea266f8880c?auto=format&fit=crop&w=900&q=80'); }
.image-real-estate { background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?auto=format&fit=crop&w=900&q=80'); }
.image-tyre { background-image: url('https://images.unsplash.com/photo-1489824904134-891ab64532f1?auto=format&fit=crop&w=900&q=80'); }
.image-trading { background-image: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=900&q=80'); }

.spotlight-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 38px; align-items: center; }
.spotlight-copy h2 { margin: 0 0 18px; font-size: clamp(2rem, 3vw, 3rem); }
.panel-box {
  background: linear-gradient(140deg, rgba(20,36,90,0.98), rgba(20,36,90,0.8));
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.panel-tag { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; display: block; margin-bottom: 16px; }
.panel-box strong { font-size: clamp(1.5rem,2vw,2rem); line-height:1.2; }

.presence-wrap { background: rgba(20,36,90,0.03); border-radius: var(--radius-lg); padding: 30px; }
.world-map {
  position: relative;
  min-height: 420px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(20,36,90,0.08), rgba(212,175,55,0.08));
  border: 1px solid rgba(20,36,90,0.06);
}
.world-map::before {
  content: "";
  position: absolute;
  inset: 20px 12% 26px 12%;
  border-radius: 24px;
  background:
    radial-gradient(circle at 15% 35%, rgba(20,36,90,0.06), transparent 14%),
    radial-gradient(circle at 62% 22%, rgba(20,36,90,0.06), transparent 14%),
    radial-gradient(circle at 78% 52%, rgba(20,36,90,0.06), transparent 12%);
  border: 1px solid rgba(20,36,90,0.08);
}
.map-pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 116px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(20,36,90,0.12);
}
.map-pin::before {
  content: "";
  width: 10px; height: 10px; border-radius: 50%; background: var(--gold); margin-right: 8px;
}
.map-pin.pk { left: 26%; top: 58%; }
.map-pin.jp { left: 72%; top: 30%; }
.map-pin.ae { left: 61%; top: 52%; }

.reasons-grid, .projects-grid, .news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.reason-card, .project-card, .news-card { padding: 28px 22px; }
.icon-wrap {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-weight: 800; color: var(--navy); background: linear-gradient(135deg, rgba(212,175,55,0.18), rgba(242,24,36,0.12));
  margin-bottom: 18px;
}

.stats-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.stat-card {
  background: linear-gradient(180deg, var(--navy), #1d315f);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  box-shadow: var(--shadow-card);
}
.stat-label { display: block; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.8; margin-bottom: 10px; }
.stat-card strong { font-size: clamp(1.4rem, 2vw, 2rem); line-height: 1.15; }

.project-tag, .news-tag { display: inline-block; margin-bottom: 12px; background: rgba(212,175,55,0.12); color: var(--navy); border-radius: 99px; padding: 8px 12px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; }
.project-card p, .news-card p { margin-bottom: 0; }

.cta-box {
  display: flex; justify-content: space-between; align-items: center; gap: 24px;
  background: linear-gradient(120deg, rgba(20,36,90,1), rgba(20,36,90,0.96));
  border-radius: var(--radius-lg);
  padding: 32px 30px;
  color: var(--white);
  box-shadow: var(--shadow-card);
}
.cta-box h2 { margin: 0; font-size: clamp(1.8rem,3vw,2.8rem); line-height: 1.1; }

.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.82);
  padding-top: 60px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 28px;
  padding-bottom: 28px;
}
.footer-brand-link { color: var(--white); }
.site-footer h3 {
  color: var(--white);
  margin-top: 0;
  margin-bottom: 14px;
  font-size: 1.05rem;
}
.site-footer ul {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 10px;
}
.site-footer a { color: rgba(255,255,255,0.78); }
.site-footer a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
}
.footer-bottom-inner {
  display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 18px 0 28px;
}
.social-links { display: flex; gap: 14px; flex-wrap: wrap; }

.back-to-top {
  position: fixed; right: 26px; bottom: 26px; width: 54px; height: 54px; display: grid; place-items: center; border-radius: 50%; background: linear-gradient(135deg, var(--gold), #f5d675); color: var(--navy); box-shadow: 0 18px 32px rgba(20,36,90,0.2); opacity: 0; visibility: hidden; transform: translateY(12px); transition: all 0.25s ease; z-index: 90;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }

.form-shell {
  padding: 30px; max-width: 900px; margin: 0 auto;
}
.contact-form { display: grid; gap: 20px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.contact-form label {
  display: grid; gap: 8px;
  font-weight: 600;
  color: var(--navy);
}
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%; border: 1px solid rgba(20,36,90,0.15); border-radius: 12px; background: var(--off-white); padding: 14px 16px; outline: none; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  border-color: rgba(20,36,90,0.45); box-shadow: 0 0 0 4px rgba(20,36,90,0.08);
}
.form-note { margin: 0; color: var(--gray-400); font-size: 0.92rem; }

.faq-shell { max-width: 900px; margin: 0 auto; }
.faq-list { display: grid; gap: 14px; }
.faq-item { background: var(--white); border-radius: 16px; border: 1px solid rgba(20,36,90,0.08); overflow: hidden; }
.faq-question {
  width: 100%; border: 0; background: transparent; color: var(--navy); padding: 20px 22px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-weight: 700; text-align: left; cursor: pointer;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding: 0 22px 20px; margin: 0; color: var(--gray-700); }
.faq-item.is-open .faq-answer { max-height: 220px; }
.faq-icon { font-size: 1.5rem; line-height: 1; color: var(--red); }

.cards-list { display: flex; flex-wrap: wrap; gap: 14px; }
.info-pill {
  background: var(--white); border: 1px solid rgba(20,36,90,0.08); border-radius: 999px; padding: 12px 18px; box-shadow: var(--shadow-soft); font-weight: 600;
}

.mt-lg { margin-top: 36px; }
.business-grid-page { padding-top: 24px; }

@media (max-width: 980px) {
  .hero-inner, .spotlight-grid, .content-layout, .footer-grid, .business-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .three-col, .reasons-grid, .projects-grid, .news-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .stats-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 768px) {
  .site-header {
    background: rgba(20, 36, 90, 0.96);
    box-shadow: 0 12px 30px rgba(14, 23, 52, 0.18);
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 110;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 50px;
    height: 50px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.04);
    cursor: pointer;
    padding: 0 12px;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
  }

  .nav-toggle:hover,
  .nav-toggle:focus-visible {
    background: rgba(255,255,255,0.08);
    border-color: rgba(212,175,55,0.7);
    outline: none;
  }

  .nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.25s ease, opacity 0.25s ease;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 82px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
    background: rgba(20,36,90,0.98);
    border-radius: 18px;
    padding: 0 18px;
    box-shadow: 0 30px 40px rgba(20,36,90,0.18);
    border: 1px solid rgba(255,255,255,0.08);
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-12px);
    transition: opacity 0.25s ease, transform 0.25s ease, max-height 0.3s ease, visibility 0.25s ease, padding 0.25s ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    visibility: visible;
    max-height: 620px;
    padding: 18px;
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 6px;
  }

  .nav-links a {
    width: 100%;
    padding: 13px 0;
    font-size: 1rem;
    color: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .nav-links a.active,
  .nav-links a:hover {
    color: var(--gold);
  }

  .nav-menu .nav-cta {
    width: 100%;
    margin-left: 0;
    margin-top: 4px;
    padding: 14px 18px;
    background: linear-gradient(135deg, var(--red), #ff3d46);
  }

  .business-grid, .three-col, .form-grid, .reasons-grid, .projects-grid, .news-grid, .stats-grid, .footer-grid, .spotlight-grid, .content-layout { grid-template-columns: 1fr; }
  .section { padding: 82px 0; }
  .cta-box, .footer-bottom-inner { flex-direction: column; align-items: flex-start; }
  .hero { min-height: 680px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
