/* ===== CSS VARIABLES ===== */
:root {
  --navy: #071D49;
  --gold: #D49A2A;
  --white: #FFFFFF;
  --dark-text: #1F2937;
  --light-gray: #F3F4F6;
  --gold-hover: #b8841e;
  --navy-light: #0d2d6e;
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
}

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

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-tag.light { color: var(--gold); }
.section-title { font-family: var(--font-heading); font-size: 2.2rem; color: var(--dark-text); margin-bottom: 48px; text-align: center; }
.section-title.light { color: var(--white); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-hover); border-color: var(--gold-hover); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); }
.btn-full { width: 100%; text-align: center; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo img {
  height: 62px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  position: relative;
  z-index: 1001;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle.open span { background: var(--white); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 998;
  backdrop-filter: blur(2px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  background:
    repeating-linear-gradient(0deg,  rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 80px),
    linear-gradient(135deg, var(--navy) 0%, #0d2d6e 60%, #1a3a7a 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
}
.hero-overlay { display: none; }

.hero-content {
  position: relative;
  z-index: 2;
  padding: 140px 60px 80px 80px;
  text-align: center;
}
.hero-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 40px;
  line-height: 1.7;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }

/* guard image fills the right column to the bottom */
.hero-image {
  position: relative;
  height: 100%;
  min-height: 100vh;
  overflow: hidden;
}
.hero-image::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 45%;
  background: linear-gradient(to right, #071D49, transparent);
  z-index: 2;
  pointer-events: none;
}
.hero-image::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 25%;
  background: linear-gradient(to bottom, #071D49, transparent);
  z-index: 2;
  pointer-events: none;
}
.hero-image img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: bottom center;
  display: block;
}

/* ===== ABOUT ===== */
.about { padding: 50px 0; background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-image img {
  width: 100%;
  height: auto;
  display: block;
}
.about-text .section-tag { display: block; }
.about-text h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.3;
}
.about-text p { color: #4B5563; margin-bottom: 16px; font-size: 16px; }
.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--light-gray);
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 13px;
  color: #6B7280;
  font-weight: 600;
  letter-spacing: 0.5px;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 0;
  background: var(--navy);
}
.services .section-tag { text-align: center; display: block; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 30px;
  border-bottom: 3px solid var(--gold);
}
.service-icon {
  width: 68px;
  height: 68px;
  background: rgba(7,29,73,0.06);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon i {
  font-size: 34px;
  color: var(--navy);
}
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: #4B5563;
  margin-bottom: 16px;
  line-height: 1.6;
}
.service-card ul { padding-left: 0; }
.service-card ul li {
  font-size: 13px;
  color: #6B7280;
  padding: 4px 0;
  padding-left: 16px;
  position: relative;
}
.service-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* ===== CASES / WHY CHOOSE ===== */
.cases { padding: 100px 0; background: var(--light-gray); }
.cases .section-title { color: var(--navy); }
.cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.case-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  box-shadow: 0 2px 12px rgba(7,29,73,0.07);
}
.case-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.case-icon--navy { background: var(--navy); }
.case-icon--gold { background: var(--gold); }
.case-icon i { font-size: 36px; color: var(--white); }
.case-content h3 { font-size: 17px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.case-content p { font-size: 14px; color: #4B5563; line-height: 1.6; }

/* ===== CONTACT ===== */
.contact { padding: 100px 0; background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-info .section-tag { display: block; }
.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--navy);
  margin-bottom: 16px;
}
.contact-info > p { color: #4B5563; margin-bottom: 40px; font-size: 16px; }
.contact-details { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(212,154,42,0.12);
  border: 1px solid rgba(212,154,42,0.25);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { font-size: 22px; color: var(--gold); }
.contact-item strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.contact-item p { font-size: 15px; color: #4B5563; }

/* FORM */
.contact-form-wrap {
  background: var(--navy);
  border-radius: 12px;
  padding: 48px 44px;
}
.contact-form h3 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 32px;
}
.form-group { margin-bottom: 20px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  color: var(--white);
  font-size: 15px;
  font-family: var(--font-body);
  transition: border-color 0.3s, background 0.3s;
  outline: none;
}
.form-group select option { background: var(--navy); color: var(--white); }
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  background: rgba(255,255,255,0.1);
}
.form-group textarea { resize: vertical; }

/* ===== FOOTER ===== */
.footer { background: #030c1c; color: rgba(255,255,255,0.75); padding: 72px 0 0; border-top: 3px solid var(--gold); }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-logo {
  display: inline-block;
  background: var(--white);
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 20px;
}
.footer-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.footer-brand p:last-child { font-size: 14px; line-height: 1.7; }
.footer h4 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-links ul li,
.footer-services ul li {
  padding: 5px 0;
  font-size: 14px;
}
.footer-links ul li a:hover { color: var(--gold); }
.footer-contact p { font-size: 14px; margin-bottom: 8px; line-height: 1.6; }
.footer-bottom {
  text-align: center;
  padding: 24px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-content { padding: 120px 40px 80px 48px; }
  .hero-content h1 { font-size: 2.6rem; }
}

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: 270px;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding-top: 88px;
    z-index: 999;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -6px 0 32px rgba(0, 0, 0, 0.2);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { padding: 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .nav-links a { display: block; padding: 16px 32px; color: var(--white); font-size: 15px; }
  .nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(255,255,255,0.04); }
  .hero { grid-template-columns: 1fr; }
  .hero-content { padding: 110px 24px 40px; text-align: center; }
  .hero-content h1 { font-size: 2rem; }
  .hero-cta { justify-content: center; }
  .hero-image { min-height: 360px; }
  .hero-image::before { width: 30%; }
  .about-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .about-stats { gap: 24px; }
  .contact-form-wrap { padding: 32px 24px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { text-align: center; }
}

@media (max-width: 480px) {
  .section-title { font-size: 1.7rem; }
  .hero-content h1 { font-size: 1.7rem; }
  .case-card { flex-direction: column; }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.from-left  { transform: translateX(-22px); }
.reveal.from-right { transform: translateX(22px); }
.reveal.visible {
  opacity: 1;
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.from-left, .reveal.from-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ===== FLOATING BUTTONS ===== */
.floating-buttons {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.floating-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.28);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  text-decoration: none;
  position: relative;
}
.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}
.floating-btn svg { width: 28px; height: 28px; display: block; }
.floating-btn--whatsapp { background: #25D366; }
.floating-btn--call     { background: var(--navy); }

/* Pulse ring on WhatsApp */
.floating-btn--whatsapp::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0;
  animation: pulse-ring 2.4s ease-out infinite;
}
@keyframes pulse-ring {
  0%   { transform: scale(1);   opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 1px, transparent 1px, transparent 80px),
    linear-gradient(135deg, var(--navy) 0%, #0d2d6e 60%, #1a3a7a 100%);
  padding: 148px 0 88px;
  text-align: center;
}
.page-hero .section-tag { color: var(--gold); margin-bottom: 16px; }
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.page-hero p {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== CTA BAND ===== */
.cta-band {
  background: var(--navy);
  padding: 100px 0;
  text-align: center;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(90deg, rgba(255,255,255,0.025) 0px, rgba(255,255,255,0.025) 1px, transparent 1px, transparent 80px);
}
.cta-band .section-tag { color: var(--gold); }
.cta-band h2 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-band > .container > p {
  color: rgba(255,255,255,0.68);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-outline {
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.cta-band .btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.07);
  color: var(--white);
}

/* ===== ABOUT PAGE ===== */
.story-section { padding: 96px 0; background: var(--white); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.story-text h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--dark-text);
  margin-bottom: 20px;
}
.story-text p { color: #4B5563; line-height: 1.8; margin-bottom: 16px; }
.story-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.story-stat {
  background: var(--light-gray);
  border-radius: 8px;
  padding: 24px 20px;
  text-align: center;
  border-bottom: 2px solid var(--gold);
}
.story-stat-num { display: block; font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.story-stat-label { font-size: 0.75rem; color: #6B7280; text-transform: uppercase; letter-spacing: 1.5px; }
.story-image { border-radius: 12px; }
.story-image img { width: 100%; height: auto; display: block; object-fit: contain; }

.mission-section { padding: 88px 0; background: var(--navy); }
.mission-header { text-align: center; margin-bottom: 52px; }
.mission-header h2 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--white); margin-top: 12px; }
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.mission-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 44px 38px;
}
.mission-icon {
  width: 54px;
  height: 54px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 22px;
}
.mission-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 14px;
}
.mission-card p { color: rgba(255,255,255,0.68); line-height: 1.75; }

.values-section { padding: 88px 0; background: var(--light-gray); }
.values-header { text-align: center; margin-bottom: 52px; }
.values-header h2 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--dark-text); margin-top: 12px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 24px;
  text-align: center;
  border-bottom: 3px solid var(--gold);
}
.value-card i { font-size: 30px; color: var(--navy); margin-bottom: 16px; display: block; }
.value-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark-text); margin-bottom: 10px; }
.value-card p { font-size: 0.875rem; color: #6B7280; line-height: 1.6; }

/* ===== SERVICES PAGE ===== */
.services-page-section { padding: 88px 0; background: var(--light-gray); }
.services-page-header { text-align: center; margin-bottom: 52px; }
.services-page-header h2 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--dark-text); margin-top: 12px; }
.services-two-col { grid-template-columns: repeat(2, 1fr); }
.service-card-detail p { color: #4B5563; margin-top: 12px; line-height: 1.7; }
.service-card-detail ul { margin-top: 16px; }
.service-card-detail ul li {
  padding: 7px 0 7px 18px;
  color: #6B7280;
  font-size: 0.875rem;
  position: relative;
  border-bottom: 1px solid #F3F4F6;
}
.service-card-detail ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  transform: translateY(-50%);
}
.service-card-detail ul li:last-child { border-bottom: none; }

.process-section { padding: 88px 0; background: var(--navy); }
.process-header { text-align: center; margin-bottom: 60px; }
.process-header h2 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--white); margin-top: 12px; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: rgba(255,255,255,0.12);
}
.process-step { text-align: center; padding: 0 20px 0; }
.step-num {
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
}
.process-step h3 { color: var(--white); font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.process-step p { color: rgba(255,255,255,0.62); font-size: 0.875rem; line-height: 1.65; }

.industries-section { padding: 88px 0; background: var(--white); }
.industries-header { text-align: center; margin-bottom: 52px; }
.industries-header h2 { font-family: var(--font-heading); font-size: 2.2rem; color: var(--dark-text); margin-top: 12px; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.industry-card {
  border: 1px solid #E5E7EB;
  border-radius: 8px;
  padding: 40px 24px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.industry-card:hover { border-color: var(--gold); box-shadow: 0 8px 28px rgba(0,0,0,0.07); }
.industry-card i { font-size: 36px; color: var(--navy); margin-bottom: 16px; display: block; }
.industry-card h3 { font-size: 1rem; font-weight: 700; color: var(--dark-text); margin-bottom: 8px; }
.industry-card p { font-size: 0.875rem; color: #6B7280; line-height: 1.6; }

/* ===== HOMEPAGE PREVIEW LINK ===== */
.section-cta { text-align: center; margin-top: 48px; }
.section-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: gap 0.3s;
}
.section-cta a:hover { gap: 14px; }

/* ===== RESPONSIVE — NEW COMPONENTS ===== */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .page-hero { padding: 120px 0 60px; }
  .page-hero h1 { font-size: 2.1rem; }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-image { order: -1; }
  .story-image img { height: 280px; }
  .story-stats { grid-template-columns: repeat(2, 1fr); }
  .mission-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .services-two-col { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-band h2 { font-size: 1.9rem; }
  .cta-band { padding: 72px 0; }
}

@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .story-stats { grid-template-columns: 1fr 1fr; }
  .page-hero h1 { font-size: 1.75rem; }
}

