/* ===== VARIABLES & RESET ===== */
:root {
  --navy: #0d1b4b;
  --navy-dark: #091235;
  --navy-mid: #1a2d6b;
  --gold: #c8972d;
  --gold-light: #e4b84e;
  --gold-pale: #f7ead9;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --text: #1a1a2e;
  --text-muted: #5a6080;
  --border: #e8e4f0;
  --shadow: 0 4px 24px rgba(13,27,75,0.10);
  --shadow-gold: 0 8px 32px rgba(200,151,45,0.20);
  --radius: 16px;
  --radius-sm: 10px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }

/* ===== UTILITIES ===== */
.gold { color: var(--gold); }
.mt { margin-top: 32px; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  letter-spacing: 0.02em;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200,151,45,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn.full { width: 100%; justify-content: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: rgba(9,18,53,0.97);
  backdrop-filter: blur(12px);
  padding: 12px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.2);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--white);
  box-shadow: var(--shadow-gold);
}

.logo-icon.sm { width: 36px; height: 36px; font-size: 1.1rem; border-radius: 10px; }

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.01em;
}

.logo-sub {
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
}

.nav-cta:hover { transform: translateY(-1px); box-shadow: var(--shadow-gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 120px 80px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(200,151,45,0.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 40%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,151,45,0.15);
  border: 1px solid rgba(200,151,45,0.3);
  color: var(--gold-light);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  width: fit-content;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-title em {
  font-style: normal;
  color: var(--gold-light);
}

.hero-sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 52px; }

.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.stat { text-align: center; }
.stat strong { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--white); }
.stat span { color: var(--gold-light); font-size: 1.3rem; font-weight: 700; }
.stat p { color: rgba(255,255,255,0.55); font-size: 0.78rem; margin-top: 2px; letter-spacing: 0.04em; }

.stat-divider { width: 1px; height: 48px; background: rgba(255,255,255,0.15); }

.hero-visual { position: relative; }

.hero-img-wrap {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  box-shadow: 0 24px 80px rgba(0,0,0,0.4);
  animation: drift 10s ease-in-out infinite;
  will-change: transform;
}

.hero-img-wrap img { width: 100%; height: auto; min-height: 320px; max-height: 520px; object-fit: cover; display: block; }

.hero-img-badge {
  position: absolute;
  bottom: 20px; left: 20px;
  background: rgba(9,18,53,0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(200,151,45,0.3);
  border-radius: 12px;
  padding: 12px 18px;
  color: var(--white);
}

.badge-num { display: block; font-weight: 700; font-size: 0.9rem; color: var(--gold-light); }
.badge-sub { font-size: 0.75rem; color: rgba(255,255,255,0.7); }


.hero-card i { font-size: 1.4rem; color: var(--gold); }
.hero-card strong { display: block; font-size: 0.9rem; font-weight: 700; color: var(--navy); }
.hero-card span { font-size: 0.75rem; color: var(--text-muted); }

.hero-card {
  position: absolute;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.15);
  animation: float 3s ease-in-out infinite;
  will-change: transform;
  z-index: 2;
}

.card-1 { top: -20px; left: -30px; animation-delay: 0s; }
.card-2 { bottom: 60px; right: -20px; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== MARQUEE ===== */
.marquee-wrap {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  padding: 16px 0;
  overflow: hidden;
}

.marquee {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: marquee 25s linear infinite;
  width: max-content;
}

.marquee span {
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
}

.dot { color: rgba(255,255,255,0.6) !important; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== SECTION HEADERS ===== */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-tag {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.gold-tag { background: rgba(200,151,45,0.15); color: var(--gold-light); }

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

.light-title { color: var(--white); }

.section-desc { color: var(--text-muted); font-size: 1.05rem; line-height: 1.7; }
.light-desc { color: rgba(255,255,255,0.65); }

/* ===== ABOUT ===== */
.about { background: var(--off-white); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-imgs { position: relative; }

.about-img-main {
  border-radius: var(--radius);
  width: 100%;
  height: 480px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-img-sec {
  position: absolute;
  bottom: -32px; right: -32px;
  width: 200px; height: 240px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
}

.about-years-badge {
  position: absolute;
  top: 24px; left: -24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  padding: 20px 24px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.about-years-badge strong { display: block; font-size: 2rem; font-family: 'Playfair Display', serif; font-weight: 900; }
.about-years-badge span { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; opacity: 0.9; }

.about-content .section-tag { margin-bottom: 12px; }

.about-lead {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin: 16px 0 32px;
}

.about-points { display: flex; flex-direction: column; gap: 20px; }

.about-point {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-point i {
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.about-point strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.about-point p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* ===== SERVICES ===== */
.services { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  position: relative;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(200,151,45,0.2);
}

.service-card.featured {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-color: transparent;
  color: var(--white);
}

.service-icon {
  width: 56px; height: 56px;
  background: var(--gold-pale);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 20px;
}

.service-card.featured .service-icon {
  background: rgba(200,151,45,0.15);
  color: var(--gold-light);
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
}

.service-card.featured h3 { color: var(--white); }

.service-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; margin-bottom: 16px; }
.service-card.featured p { color: rgba(255,255,255,0.7); }

.service-card ul { display: flex; flex-direction: column; gap: 6px; }
.service-card ul li {
  font-size: 0.85rem;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.service-card ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.service-card.featured ul li { color: rgba(255,255,255,0.65); }
.service-card.featured ul li::before { color: var(--gold-light); }

.card-featured-badge {
  position: absolute;
  top: 20px; right: 20px;
  background: rgba(200,151,45,0.15);
  border: 1px solid rgba(200,151,45,0.3);
  color: var(--gold-light);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 50px;
}

/* ===== INDUSTRIES ===== */
.industries { background: var(--off-white); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.industry-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 32px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.business-card {
  background: var(--white);
  border: 1px solid rgba(228,228,236,0.9);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.business-card h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--navy);
}

.business-card p {
  margin-bottom: 18px;
  color: var(--text-muted);
  line-height: 1.75;
}

.business-card ul {
  list-style: none;
  padding-left: 0;
}

.business-card li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

.business-card li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}

.industry-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(200,151,45,0.25);
}

.industry-icon {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--gold-light);
  margin: 0 auto 16px;
}

.industry-card h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.ind-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 3px 10px;
  border-radius: 50px;
  letter-spacing: 0.04em;
}

/* ===== JOBS ===== */
.jobs { background: var(--white); }

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.single-job-grid {
  justify-items: center;
}

.job-card {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
  transition: transform 0.3s;
  max-width: 760px;
}

.job-card:hover { transform: scale(1.02); }

.job-card img { width: 100%; height: 320px; object-fit: cover; }

.job-label {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 50px;
}

.job-info {
  padding: 24px 26px;
  background: var(--white);
}

.job-info h4 { font-weight: 700; color: var(--navy); margin-bottom: 8px; font-size: 1.35rem; }
.job-info span {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.job-info p {
  margin-bottom: 18px;
  color: var(--text-muted);
  line-height: 1.75;
}

.job-info ul {
  list-style: none;
  padding-left: 0;
}

.job-info li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--text-muted);
  line-height: 1.7;
}

.job-info li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}

.jobs-cta { text-align: center; }

/* ===== VISION ===== */
.vision { background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%); }
.vision .section-header { margin-bottom: 56px; }

.vision-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.vision-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}

.vision-card:hover { background: rgba(255,255,255,0.08); transform: translateY(-4px); }

.vision-card img { width: 100%; height: 200px; object-fit: cover; opacity: 0.8; }

.vision-content { padding: 24px; }
.vision-content i { font-size: 1.5rem; color: var(--gold-light); margin-bottom: 12px; display: block; }
.vision-content h3 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); margin-bottom: 10px; }
.vision-content p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.65; }

/* ===== CONTACT ===== */
.contact { background: var(--off-white); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}

.contact-info { display: flex; flex-direction: column; gap: 24px; }

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: all 0.3s;
}

.info-block:hover { box-shadow: var(--shadow); border-color: rgba(200,151,45,0.2); }

.info-block i {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.info-block strong { display: block; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.info-block a, .info-block span { font-size: 0.88rem; color: var(--text-muted); }
.info-block a:hover { color: var(--gold); }

.contact-social { display: flex; gap: 12px; }
.contact-social a {
  width: 44px; height: 44px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1rem;
  transition: all 0.3s;
}

.contact-social a:hover {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ===== FORM ===== */
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }

.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy); letter-spacing: 0.02em; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,151,45,0.08);
}

.form-group textarea { resize: vertical; }

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  padding: 20px;
  background: #e8f5e9;
  border-radius: var(--radius-sm);
  margin-top: 16px;
}

.form-success i { font-size: 2rem; color: #2e7d32; }
.form-success strong { color: #1b5e20; }
.form-success span { color: #388e3c; font-size: 0.85rem; }
.form-success.show { display: flex; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.footer-tagline { color: rgba(255,255,255,0.4); font-size: 0.85rem; font-style: italic; }

.footer-col h5 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a,
.footer-col ul li span {
  color: rgba(255,255,255,0.5);
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
}

/* ===== BACK TO TOP ===== */
.back-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
  border: none;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: var(--shadow-gold);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  z-index: 999;
}

.back-top.show { opacity: 1; visibility: visible; }
.back-top:hover { transform: translateY(-3px); }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible { opacity: 1; transform: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 120px 40px 60px; text-align: center; }
  .hero-content { max-width: 600px; margin: 0 auto; }
  .hero-sub { margin: 0 auto 36px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .card-1 { left: 0; }
  .card-2 { right: 0; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .vision-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-imgs { max-width: 480px; margin: 0 auto; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy-dark); padding: 24px; gap: 8px; }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .hero { padding: 100px 24px 60px; }
  .hero-stats { gap: 16px; }
  .stat-divider { height: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .jobs-grid { grid-template-columns: 1fr 1fr; }
  .vision-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 24px; }
  .about-img-sec { display: none; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .jobs-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}
