/* ===== DESIGN TOKENS ===== */
:root {
  --navy: #0B1F3A;
  --navy-dark: #071529;
  --navy-light: #132d52;
  --black: #000000;
  --charcoal: #1a1a2e;
  --charcoal-light: #2a2a3e;
  --white: #ffffff;
  --white-muted: #e0e6ed;
  --gold: #c9a84c;
  --gold-light: #e0c068;
  --accent-blue: #1e90ff;
  --accent-blue-light: #4da6ff;
  --grey-100: #f5f7fa;
  --grey-200: #e4e8ee;
  --grey-300: #c5cdd8;
  --grey-600: #6b7a8d;
  --grey-800: #2d3748;
  --success: #10b981;
  --danger: #ef4444;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.25);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-primary: 'Inter', 'Segoe UI', sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-primary);
  background: var(--white);
  color: var(--grey-800);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }
button, input, textarea, select {
  font-family: var(--font-primary);
  border: none;
  outline: none;
  background: none;
}
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; color: var(--navy); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.6rem); }
.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-subtitle { font-size: 1.1rem; color: var(--grey-600); max-width: 640px; margin: 0 auto 48px; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-gold { color: var(--gold) !important; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.1);
  transform: translateX(-100%);
  transition: var(--transition);
}
.btn:hover::after { transform: translateX(0); }
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy); box-shadow: 0 4px 20px rgba(201,168,76,0.4); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.5); }
.btn-secondary { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-whatsapp { background: #25d366; color: var(--white); }
.btn-whatsapp:hover { background: #1ebe5d; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(37,211,102,0.4); }
.btn-call { background: var(--accent-blue); color: var(--white); }
.btn-call:hover { background: var(--accent-blue-light); transform: translateY(-2px); }
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }
.btn-group { display: flex; flex-wrap: wrap; gap: 12px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: var(--navy);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.navbar .container { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 12px; }
.nav-logo { height: 44px; width: auto; object-fit: contain; }
.nav-brand-text { font-family: var(--font-heading); font-weight: 800; font-size: 1.25rem; color: var(--white); line-height: 1.2; }
.nav-brand-text span { display: block; font-size: 0.65rem; font-weight: 400; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; position: relative; }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta .btn { padding: 10px 24px; font-size: 0.85rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--white); transition: var(--transition); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,21,41,0.92) 0%, rgba(11,31,58,0.75) 50%, rgba(7,21,41,0.9) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 700px; padding: 160px 0 80px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 strong { color: var(--gold); }
.hero p { color: rgba(255,255,255,0.8); font-size: 1.15rem; margin-bottom: 36px; line-height: 1.8; }
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat h3 { font-size: 2rem; color: var(--gold); font-weight: 800; }
.hero-stat p { font-size: 0.85rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }
.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}
.hero-particles .particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(201,168,76,0.3);
  border-radius: 50%;
  animation: float-particle 15s infinite linear;
}
@keyframes float-particle {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) rotate(720deg); opacity: 0; }
}

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy));
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
  border-radius: 50%;
}
.page-header h1 { color: var(--white); margin-bottom: 16px; }
.page-header p { color: rgba(255,255,255,0.7); font-size: 1.1rem; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; margin-top: 20px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }

/* ===== SECTIONS ===== */
.section { padding: 100px 0; }
.section-dark { background: linear-gradient(180deg, var(--navy-dark), var(--navy)); }
.section-grey { background: var(--grey-100); }
.section-gradient { background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--grey-200);
  position: relative;
  z-index: 10;
}
.trust-items { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 12px; }
.trust-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-md);
  color: var(--gold);
  font-size: 1.4rem;
}
.trust-item h4 { font-size: 0.95rem; color: var(--navy); }
.trust-item p { font-size: 0.8rem; color: var(--grey-600); }

/* ===== SERVICE CARDS ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--grey-200);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card-img { height: 200px; overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-icon {
  position: absolute;
  bottom: -20px;
  left: 24px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  z-index: 2;
}
.service-card-body { padding: 32px 24px 24px; }
.service-card-body h3 { margin-bottom: 8px; font-size: 1.15rem; }
.service-card-body p { font-size: 0.9rem; color: var(--grey-600); margin-bottom: 16px; }
.service-card-link { font-size: 0.85rem; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 6px; }
.service-card-link:hover { gap: 10px; color: var(--navy); }

/* ===== INDUSTRY CARDS ===== */
.industries-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.industry-card {
  text-align: center;
  padding: 36px 20px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  transition: var(--transition);
  cursor: default;
}
.industry-card:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); transform: translateY(-4px); }
.industry-icon { 
  font-size: 2rem; 
  margin: 0 auto 20px; 
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), transparent);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  color: var(--gold);
  transition: var(--transition);
}
.industry-card:hover .industry-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 25px rgba(201,168,76,0.4);
  border-color: transparent;
}
.industry-card h4 { color: var(--white); font-size: 0.95rem; }

/* ===== WHY CHOOSE US ===== */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-item-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.why-item h4 { font-size: 1rem; margin-bottom: 4px; }
.why-item p { font-size: 0.88rem; color: var(--grey-600); }
.why-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.why-image img { width: 100%; height: 100%; object-fit: cover; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-card .quote-icon { font-size: 2rem; color: var(--gold); opacity: 0.3; margin-bottom: 12px; }
.testimonial-card p { font-size: 0.95rem; color: var(--grey-600); margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-author h4 { font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--grey-600); }
.testimonial-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 8px; letter-spacing: 2px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 60%);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); margin-bottom: 16px; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-bottom: 32px; position: relative; z-index: 1; font-size: 1.1rem; }
.cta-banner .btn-group { justify-content: center; position: relative; z-index: 1; }

/* ===== FOOTER ===== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.9rem; margin-top: 16px; line-height: 1.8; }
.footer h4 { color: var(--white); font-size: 1rem; margin-bottom: 20px; position: relative; padding-bottom: 12px; }
.footer h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--gold); }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; font-size: 0.9rem; }
.footer-contact .icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }

/* ===== FLOATING BUTTONS ===== */
.floating-btns { position: fixed; bottom: 24px; right: 24px; display: flex; flex-direction: column; gap: 12px; z-index: 999; }
.float-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-lg);
}
.float-btn:hover { transform: scale(1.1); }
.float-btn-wa { background: #25d366; }
.float-btn-call { background: var(--accent-blue); }
.float-btn-top { background: var(--navy); font-size: 1rem; opacity: 0; pointer-events: none; }
.float-btn-top.visible { opacity: 1; pointer-events: auto; }

/* ===== FORMS ===== */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--grey-100);
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--grey-800);
  transition: var(--transition);
}
.form-control:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 4px rgba(201,168,76,0.1); }
.form-control::placeholder { color: var(--grey-300); }
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7a8d' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-error { font-size: 0.8rem; color: var(--danger); margin-top: 4px; display: none; }
.form-control.error { border-color: var(--danger); }

/* ===== MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 480px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(20px) scale(0.95);
  transition: var(--transition);
}
.modal-overlay.active .modal { transform: translateY(0) scale(1); }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; }
.modal-close { width: 36px; height: 36px; border-radius: 50%; background: var(--grey-100); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.2rem; transition: var(--transition); }
.modal-close:hover { background: var(--grey-200); }

/* ===== ABOUT PAGE ===== */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-intro-text .lead { font-size: 1.1rem; color: var(--grey-600); margin-bottom: 20px; }
.about-intro-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.about-intro-image img { width: 100%; }
.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mv-card {
  padding: 40px;
  border-radius: var(--radius-md);
  border: 1px solid var(--grey-200);
  background: var(--white);
}
.mv-card .mv-icon { font-size: 2rem; margin-bottom: 16px; color: var(--gold); }
.mv-card h3 { margin-bottom: 12px; }
.mv-card p { color: var(--grey-600); font-size: 0.95rem; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.value-card:hover { background: rgba(201,168,76,0.1); border-color: var(--gold); transform: translateY(-4px); }
.value-card .value-icon { 
  font-size: 2rem; 
  margin: 0 auto 16px; 
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), transparent);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  color: var(--gold);
  transition: var(--transition);
}
.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 5px 15px rgba(201,168,76,0.3);
  border-color: transparent;
}
.value-card h4 { color: var(--white); margin-bottom: 8px; }
.value-card p { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

/* ===== SERVICE DETAIL ===== */
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 80px; }
.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }
.service-detail-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.service-detail-img img { width: 100%; height: 350px; object-fit: cover; }
.service-detail-content h3 { margin-bottom: 12px; font-size: 1.5rem; }
.service-detail-content p { color: var(--grey-600); margin-bottom: 16px; }
.use-cases { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.use-case-tag { padding: 6px 14px; background: var(--grey-100); border-radius: 50px; font-size: 0.8rem; color: var(--navy); font-weight: 500; }

/* ===== INDUSTRY DETAIL ===== */
.industry-detail-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.industry-detail-card {
  padding: 36px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  transition: var(--transition);
}
.industry-detail-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.industry-detail-card .ind-icon { font-size: 2.4rem; margin-bottom: 16px; }
.industry-detail-card h3 { margin-bottom: 12px; }
.industry-detail-card p { color: var(--grey-600); font-size: 0.93rem; margin-bottom: 16px; }
.industry-detail-card ul li { padding: 4px 0; font-size: 0.88rem; color: var(--grey-600); display: flex; align-items: center; gap: 8px; }
.industry-detail-card ul li::before { content: '✓'; color: var(--gold); font-weight: 700; }

/* ===== CAREERS ===== */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card {
  text-align: center;
  padding: 36px 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--grey-200);
  transition: var(--transition);
}
.benefit-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.benefit-card .benefit-icon { font-size: 2.2rem; margin-bottom: 16px; }
.benefit-card h4 { margin-bottom: 8px; }
.benefit-card p { font-size: 0.88rem; color: var(--grey-600); }
.career-form-section { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.career-form-section .form-container {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--grey-100);
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.contact-info-card:hover { box-shadow: var(--shadow-sm); }
.contact-info-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.contact-info-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-card p { font-size: 0.9rem; color: var(--grey-600); }
.contact-info-card a { color: var(--accent-blue); }
.contact-info-card a:hover { color: var(--gold); }
.contact-form-container {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-200);
}
.map-container { margin-top: 48px; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); height: 400px; }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* ===== CLIENT LOGOS ===== */
.logos-track { display: flex; gap: 60px; align-items: center; justify-content: center; flex-wrap: wrap; padding: 20px 0; }
.logo-item { opacity: 0.4; transition: var(--transition); font-size: 1.1rem; font-weight: 700; color: var(--grey-600); letter-spacing: 2px; text-transform: uppercase; padding: 12px 24px; border: 1px solid var(--grey-200); border-radius: var(--radius-sm); }
.logo-item:hover { opacity: 1; border-color: var(--gold); color: var(--navy); }

/* ===== ANIMATIONS ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.pulse { animation: pulse 2s infinite; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(11,31,58,0.98); flex-direction: column; padding: 24px; gap: 16px; }
  .nav-links.active { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .hero-content { padding: 100px 0 60px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .trust-items { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .about-intro, .service-detail, .career-form-section, .contact-grid { grid-template-columns: 1fr; }
  .service-detail:nth-child(even) { direction: ltr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .industry-detail-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }
  .section { padding: 60px 0; }
  .cta-banner { padding: 60px 0; }
}
@media (max-width: 480px) {
  .trust-items { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: column; gap: 16px; }
  .values-grid { grid-template-columns: 1fr; }
}
