/* =====================================================
   S & H TRADING INVESTMENT (SL) LTD
   WE BUILD YOUR VISION
   Design: Bold industrial luxury — navy, gold, white
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;600;700;800;900&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
  --navy:       #0d1f3c;
  --navy-mid:   #1a3a6b;
  --navy-light: #243f72;
  --gold:       #f5c518;
  --gold-dark:  #d4a800;
  --gold-pale:  rgba(245,197,24,0.15);
  --white:      #ffffff;
  --off-white:  #f4f6fa;
  --light:      #e8edf5;
  --text:       #0d1a2e;
  --muted:      #4a5568;
  --border:     rgba(13,31,60,0.10);

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --radius:     8px;
  --radius-lg:  16px;
  --shadow-sm:  0 2px 12px rgba(13,31,60,0.08);
  --shadow:     0 6px 30px rgba(13,31,60,0.13);
  --shadow-lg:  0 20px 60px rgba(13,31,60,0.18);
  --transition: 0.35s cubic-bezier(.4,0,.2,1);
  --max-w:      1200px;
}

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

/* ========== LAYOUT UTILITIES ========== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section--dark { background: var(--navy); color: var(--white); }
.section--navy-mid { background: var(--navy-mid); color: var(--white); }
.section--light { background: var(--off-white); }
.section--white { background: var(--white); }

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--navy);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}
.section--dark .section-title,
.section--navy-mid .section-title { color: var(--white); }
.section-lead { font-size: 17px; color: var(--muted); max-width: 580px; line-height: 1.75; }
.section--dark .section-lead,
.section--navy-mid .section-lead { color: rgba(255,255,255,0.72); }
.gold-bar {
  width: 56px; height: 4px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 28px;
}
.center { text-align: center; }
.center .section-lead,
.center .gold-bar { margin-left: auto; margin-right: auto; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: transparent; color: var(--gold); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: transparent; color: var(--navy); }
.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* ========== TOPBAR ========== */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,0.70);
  font-size: 13px; padding: 9px 0;
  border-bottom: 2px solid var(--gold);
}
.topbar__inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 8px;
}
.topbar a { color: rgba(255,255,255,0.70); transition: color .2s; }
.topbar a:hover { color: var(--gold); }
.topbar__contacts { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.topbar__item { display: flex; align-items: center; gap: 6px; font-family: var(--font-display); font-weight: 500; letter-spacing: 0.3px; }
.topbar__item svg { width: 14px; height: 14px; opacity: 0.7; }
.topbar__right { display: flex; align-items: center; gap: 14px; }
.topbar__social {
  width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; transition: var(--transition);
}
.topbar__social:hover { background: var(--gold); color: var(--navy); }

/* ========== HEADER / NAV ========== */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  transition: box-shadow .3s;
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.14); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 78px; padding: 0 24px; max-width: var(--max-w); margin: 0 auto;
}
.nav-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-logo img { height: 52px; width: auto; object-fit: contain; }
.nav-logo__text { display: flex; flex-direction: column; }
.nav-logo__name {
  font-family: var(--font-display); font-size: 18px; font-weight: 900;
  color: var(--navy); letter-spacing: 0.5px; text-transform: uppercase; line-height: 1.1;
}
.nav-logo__name span { color: var(--gold); }
.nav-logo__tagline {
  font-family: var(--font-display); font-size: 10px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase; color: var(--muted);
}
.nav-menu {
  display: flex; align-items: center; gap: 2px;
}
.nav-menu li { position: relative; }
.nav-menu a {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  letter-spacing: 0.8px; text-transform: uppercase; color: var(--text);
  padding: 8px 12px; border-radius: var(--radius); transition: var(--transition);
  display: flex; align-items: center; gap: 4px;
}
.nav-menu a:hover, .nav-menu a.active {
  background: var(--light); color: var(--navy-mid);
}
.nav-menu a.nav-cta {
  background: var(--navy); color: var(--white) !important;
  padding: 9px 18px; margin-left: 6px;
}
.nav-menu a.nav-cta:hover { background: var(--gold); color: var(--navy) !important; }

/* Dropdown */
.has-dropdown { position: relative; }
.has-dropdown > a::after { content: '▾'; font-size: 10px; margin-left: 3px; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); min-width: 180px;
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); padding: 8px 0;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: var(--transition); z-index: 100;
}
.has-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 10px 20px; border-radius: 0; font-size: 13px;
  color: var(--text) !important; background: transparent !important;
  border-left: 3px solid transparent;
}
.dropdown-menu a:hover { color: var(--navy-mid) !important; border-left-color: var(--gold); background: var(--off-white) !important; }
.dropdown-menu a.active { color: var(--navy-mid) !important; border-left-color: var(--gold); background: var(--light) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ========== PAGE HERO (inner pages) ========== */
.page-hero {
  padding: calc(80px + 48px) 0 64px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 70%, var(--navy) 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: 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='%23ffffff' fill-opacity='0.025'%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");
}
.page-hero__accent {
  position: absolute; right: -120px; top: -120px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,0.1) 0%, transparent 65%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero .section-tag { color: var(--gold); }
.page-hero h1 {
  font-family: var(--font-display); font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900; color: var(--white); text-transform: uppercase;
  line-height: 1.05; margin-bottom: 16px;
}
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.72); max-width: 600px; }
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.50); margin-bottom: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.50); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }
.breadcrumb::before { content: ''; }
.breadcrumb-sep { color: rgba(255,255,255,0.30); }

/* ========== HERO (homepage) ========== */
.hero {
  position: relative; min-height: 94vh;
  display: flex; align-items: center; overflow: hidden;
  background: var(--navy);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background: linear-gradient(135deg, #060e1d 0%, #0d1f3c 50%, #1a2f55 100%);
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M0 0h40v40H0V0zm40 40h40v40H40V40z'/%3E%3C/g%3E%3C/svg%3E");
}
.hero__glow {
  position: absolute; right: -200px; top: -100px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,0.08) 0%, transparent 65%); z-index: 1;
}
.hero__glow2 {
  position: absolute; left: -100px; bottom: -200px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,58,107,0.6) 0%, transparent 70%); z-index: 1;
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; padding: 60px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero__eyebrow {
  display: inline-block;
  background: var(--gold); color: var(--navy);
  font-family: var(--font-display); font-size: 11px; font-weight: 800;
  letter-spacing: 3px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 4px; margin-bottom: 28px;
}
.hero__title {
  font-family: var(--font-display); font-size: clamp(3.2rem, 6.5vw, 6rem);
  font-weight: 900; line-height: 0.95; color: var(--white);
  text-transform: uppercase; margin-bottom: 28px; letter-spacing: -1px;
}
.hero__title em { font-style: normal; color: var(--gold); display: block; }
.hero__tagline {
  font-family: var(--font-display); font-size: 13px; letter-spacing: 4px;
  text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 24px;
}
.hero__desc {
  color: rgba(255,255,255,0.78); font-size: 17px; line-height: 1.8;
  margin-bottom: 40px; max-width: 520px;
}
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(245,197,24,0.2);
  border-radius: var(--radius); padding: 30px 24px;
  backdrop-filter: blur(8px); transition: var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,0.10); border-color: var(--gold); transform: translateY(-4px); }
.stat-card__num {
  font-family: var(--font-display); font-size: 3.2rem; font-weight: 900;
  color: var(--gold); line-height: 1; margin-bottom: 8px;
}
.stat-card__label {
  font-family: var(--font-display); font-size: 12px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.60);
}
.hero__scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px;
  font-family: var(--font-display); font-size: 10px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,0.35); animation: bounce 2s infinite;
}
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(var(--gold), transparent); }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* ========== CLIENTS / PARTNERS ========== */
.clients { padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.clients__label {
  font-family: var(--font-display); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase; color: var(--muted); margin-bottom: 24px; text-align: center;
}
.clients__logos { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.client-logo {
  font-family: var(--font-display); font-size: 15px; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase; color: var(--muted);
  opacity: 0.55; transition: var(--transition);
}
.client-logo:hover { opacity: 1; color: var(--navy-mid); }

/* ========== SERVICE CARDS ========== */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 64px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: var(--transition);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.service-card__img {
  height: 180px; background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  font-size: 48px; transition: var(--transition); position: relative; overflow: hidden;
}
.service-card__img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(13,31,60,0.5));
}
.service-card:hover .service-card__img { background: var(--navy); }
.service-card__body { padding: 28px 24px; flex: 1; display: flex; flex-direction: column; }
.service-card__title {
  font-family: var(--font-display); font-size: 18px; font-weight: 900;
  text-transform: uppercase; color: var(--navy); letter-spacing: 0.5px; margin-bottom: 12px;
}
.service-card p { font-size: 14px; color: var(--muted); flex: 1; line-height: 1.65; }
.service-card__link {
  display: inline-flex; align-items: center; gap: 6px; margin-top: 18px;
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: var(--navy-mid);
  border-bottom: 2px solid var(--gold); padding-bottom: 2px; transition: var(--transition);
}
.service-card__link:hover { color: var(--gold); }

/* ========== PROJECT CARDS ========== */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 64px; }
.project-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition);
  display: flex; flex-direction: column;
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-card__img {
  height: 220px; background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  position: relative; overflow: hidden;
}
.project-card__cat {
  position: absolute; top: 16px; left: 16px;
  background: var(--gold); color: var(--navy);
  font-family: var(--font-display); font-size: 11px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 12px; border-radius: 4px;
}
.project-card__body { padding: 26px; flex: 1; }
.project-card__title { font-family: var(--font-display); font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 10px; line-height: 1.3; text-transform: uppercase; }
.project-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.project-card__meta { margin-top: 16px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.project-card__client { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--navy-mid); }

/* ========== TEAM CARDS ========== */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 28px; margin-top: 64px; }
.team-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition);
  border: 1px solid var(--border);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.team-card__img {
  height: 240px; background: linear-gradient(160deg, var(--light), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 72px; position: relative;
}
.team-card__img::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: linear-gradient(transparent, var(--white));
}
.team-card__body { padding: 20px 24px 28px; }
.team-card__name { font-family: var(--font-display); font-size: 22px; font-weight: 900; color: var(--navy); margin-bottom: 4px; text-transform: uppercase; }
.team-card__role { font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--navy-mid); border-bottom: 2px solid var(--gold); padding-bottom: 10px; margin-bottom: 14px; display: inline-block; }
.team-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }

/* ========== VMV CARDS ========== */
.vmv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.vmv-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 44px 36px; transition: var(--transition);
}
.vmv-card:hover { background: rgba(255,255,255,0.10); border-color: var(--gold); transform: translateY(-4px); }
.vmv-card__icon {
  width: 56px; height: 56px; background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: 24px;
}
.vmv-card__title { font-family: var(--font-display); font-size: 24px; font-weight: 900; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
.vmv-card p { color: rgba(255,255,255,0.75); font-size: 15px; line-height: 1.75; }

/* ========== NEWS CARDS ========== */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 64px; }
.news-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: var(--transition);
  display: flex; flex-direction: column;
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.news-card__img {
  height: 200px; background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex; align-items: center; justify-content: center; font-size: 48px;
  position: relative; overflow: hidden;
}
.news-card__cat {
  position: absolute; bottom: 14px; left: 14px;
  background: var(--gold); color: var(--navy);
  font-family: var(--font-display); font-size: 10px; font-weight: 800;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 4px;
}
.news-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.news-card__date { font-family: var(--font-display); font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.news-card__title { font-family: var(--font-display); font-size: 18px; font-weight: 800; color: var(--navy); margin-bottom: 12px; line-height: 1.3; flex: 1; }
.news-card p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.news-card__more { margin-top: 18px; font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--navy-mid); border-bottom: 2px solid var(--gold); padding-bottom: 2px; display: inline-flex; align-items: center; gap: 5px; transition: var(--transition); }
.news-card__more:hover { color: var(--gold); }

/* ========== GALLERY GRID ========== */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 56px; }
.gallery-item {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; cursor: pointer; transition: var(--transition); position: relative;
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; font-size: 96px; }
.gallery-item:hover { transform: scale(0.98); }
.gallery-item::after {
  content: '🔍'; position: absolute; inset: 0; background: rgba(13,31,60,0.5);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; opacity: 0; transition: var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* ========== CSR / VALUES ========== */
.csr-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 56px; }
.csr-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); transition: var(--transition);
  display: flex; gap: 24px; align-items: flex-start;
}
.csr-card:hover { border-color: var(--gold); box-shadow: var(--shadow); transform: translateY(-3px); }
.csr-card__icon { font-size: 36px; flex-shrink: 0; }
.csr-card__title { font-family: var(--font-display); font-size: 20px; font-weight: 800; color: var(--navy); text-transform: uppercase; margin-bottom: 10px; }
.csr-card p { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ========== SAFETY ========== */
.safety-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.safety-visual {
  border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; font-size: 96px;
}
.safety-points { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.safety-point {
  display: flex; align-items: flex-start; gap: 10px; font-size: 14px;
  color: rgba(255,255,255,0.80); line-height: 1.5;
}
.safety-point::before {
  content: '✓'; display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); color: var(--navy); font-size: 12px; font-weight: 800;
  flex-shrink: 0; margin-top: 1px;
}

/* ========== CONTACT ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 64px; }
.contact-info h3 { font-family: var(--font-display); font-size: 28px; font-weight: 900; color: var(--white); margin-bottom: 28px; text-transform: uppercase; }
.contact-item { display: flex; gap: 18px; margin-bottom: 28px; align-items: flex-start; }
.contact-item__icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: var(--gold-pale); border: 1px solid var(--gold);
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.contact-item__label { font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-item__val { font-size: 15px; color: rgba(255,255,255,0.82); line-height: 1.6; }
.contact-item__val a { color: rgba(255,255,255,0.82); transition: color .2s; }
.contact-item__val a:hover { color: var(--gold); }
.contact-form {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 44px;
}
.contact-form h3 { font-family: var(--font-display); font-size: 26px; font-weight: 900; color: var(--white); margin-bottom: 30px; text-transform: uppercase; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-family: var(--font-display); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.55); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius); padding: 13px 16px; color: var(--white);
  font-family: var(--font-body); font-size: 15px; outline: none; transition: border-color .2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-group select option { background: var(--navy); }

/* ========== CTA BAND ========== */
.cta-band {
  background: var(--gold); padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ''; position: absolute; inset: 0;
  background: 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='%230d1f3c' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-band .container { position: relative; z-index: 1; text-align: center; }
.cta-band h2 { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; color: var(--navy); text-transform: uppercase; margin-bottom: 14px; }
.cta-band p { font-size: 17px; color: rgba(13,31,60,0.72); margin-bottom: 36px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-band .btn-navy:hover { background: transparent; color: var(--navy); border-color: var(--navy); }

/* ========== FOOTER ========== */
.footer { background: #060d1a; color: rgba(255,255,255,0.60); padding: 70px 0 0; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 50px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer__brand p { font-size: 14px; line-height: 1.75; margin: 18px 0 24px; }
.footer__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 4px; }
.footer__logo img { height: 48px; width: auto; filter: brightness(0) invert(1); opacity: 0.9; }
.footer__logo-text { font-family: var(--font-display); font-size: 17px; font-weight: 900; color: var(--white); text-transform: uppercase; line-height: 1.1; }
.footer__logo-text small { display: block; font-size: 10px; font-weight: 500; letter-spacing: 2px; color: rgba(255,255,255,0.45); margin-top: 2px; }
.footer__socials { display: flex; gap: 10px; }
.footer__social {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; transition: var(--transition);
}
.footer__social:hover { background: var(--gold); color: var(--navy); }
.footer__col-title { font-family: var(--font-display); font-size: 13px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: var(--white); margin-bottom: 22px; }
.footer__links { display: flex; flex-direction: column; gap: 11px; }
.footer__links a { font-size: 14px; color: rgba(255,255,255,0.58); transition: color .2s; }
.footer__links a:hover { color: var(--gold); }
.footer__contact-item { font-size: 13px; color: rgba(255,255,255,0.58); display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; line-height: 1.5; }
.footer__contact-item a { color: rgba(255,255,255,0.58); transition: color .2s; }
.footer__contact-item a:hover { color: var(--gold); }
.footer__bottom {
  padding: 20px 0; display: flex; justify-content: space-between;
  align-items: center; font-size: 13px; flex-wrap: wrap; gap: 10px;
}
.footer__bottom a { color: var(--gold); }

/* ========== REVEAL ANIMATIONS ========== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.35s; }
.reveal-delay-4 { transition-delay: 0.5s; }

/* Hero entrance */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(32px); } to { opacity: 1; transform: translateY(0); } }
.hero-anim-1 { animation: fadeInUp 0.8s ease both; animation-delay: 0.1s; }
.hero-anim-2 { animation: fadeInUp 0.8s ease both; animation-delay: 0.25s; }
.hero-anim-3 { animation: fadeInUp 0.8s ease both; animation-delay: 0.4s; }
.hero-anim-4 { animation: fadeInUp 0.8s ease both; animation-delay: 0.6s; }
.hero-anim-5 { animation: fadeInUp 0.8s ease both; animation-delay: 0.8s; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__stats { margin-top: 0; }
  .services-grid, .projects-grid, .news-grid,
  .vmv-grid, .csr-grid, .team-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 1; grid-row: span 1; }
  .safety-grid, .contact-grid { grid-template-columns: 1fr; }
  .nav-menu { display: none; flex-direction: column; position: absolute; top: 78px; left: 0; right: 0; background: var(--white); padding: 16px 24px 24px; box-shadow: var(--shadow); z-index: 200; border-top: 2px solid var(--gold); }
  .nav-menu.open { display: flex; }
  .nav-menu .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 4px 0 4px 16px; background: var(--off-white); margin-top: 4px; border-radius: var(--radius); }
  .hamburger { display: flex; }
  .topbar__contacts { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 480px) {
  .hero__title { font-size: 3rem; }
  .hero__actions { flex-direction: column; }
  .hero__stats { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
