@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ============================================================
   CSS VARIABLES & RESET
   ============================================================ */
:root {
  --primary: #0B2E59;
  --primary-dark: #0a2040;
  --accent: #F58220;
  --accent-hover: #e0731a;
  --text: #1F2937;
  --text-muted: #6B7280;
  --bg: #ffffff;
  --bg-gray: #F9FAFB;
  --border: #E5E7EB;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 3px rgba(11,46,89,0.08);
  --shadow-md: 0 4px 16px rgba(11,46,89,0.10);
  --shadow-xl: 0 12px 40px rgba(11,46,89,0.15);
  --transition: 0.3s ease;
  --nav-height: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.section-title.light { color: #fff; }

.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 640px;
  margin: 16px auto 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--accent-hover); border-color: var(--accent-hover); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); }
.btn-outline-navy {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-navy:hover { background: var(--primary); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}
.btn-white:hover { background: #f5f5f5; transform: translateY(-1px); }
.btn-lg { padding: 18px 36px; font-size: 17px; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: #fff;
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 4px 20px rgba(11,46,89,0.12); border-bottom-color: transparent; }

.navbar .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img { height: 48px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--accent); }

.nav-cta { margin-left: 16px; }

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0; right: 0;
  background: #fff;
  padding: 20px 24px 32px;
  border-top: 1px solid var(--border);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  z-index: 999;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 16px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-height);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(11,46,89,0.96) 40%, rgba(11,46,89,0.70) 70%, rgba(11,46,89,0.20) 100%);
}
.hero .container { position: relative; z-index: 1; padding-top: 48px; padding-bottom: 48px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(8px);
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 800;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin-bottom: 24px;
}

.hero p {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 64px;
}
.highlight-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 20px;
  backdrop-filter: blur(8px);
  transition: background var(--transition);
}
.highlight-card:hover { background: rgba(255,255,255,0.10); }
.highlight-card .icon {
  font-size: 24px;
  margin-bottom: 10px;
  color: var(--accent);
}
.highlight-card span {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 96px 0; background: var(--bg); overflow: hidden; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.about-img-wrap::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 8px solid rgba(245,130,32,0.2);
  border-radius: var(--radius);
}
.about-content .section-label { justify-content: flex-start; }
.about-content .section-label::before { display: none; }
.about-body {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  margin: 20px 0 40px;
}
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.mission-card {
  background: var(--bg-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: box-shadow var(--transition);
}
.mission-card:hover { box-shadow: var(--shadow-md); }
.mission-card .icon { font-size: 28px; margin-bottom: 12px; color: var(--accent); }
.mission-card h3 { font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.mission-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { padding: 96px 0; background: var(--bg-gray); }
.section-header { text-align: center; margin-bottom: 64px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  position: relative;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }
.service-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-card:hover img { transform: scale(1.08); }
.service-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,46,89,0.96) 40%, rgba(11,46,89,0.60) 70%, rgba(11,46,89,0.25) 100%);
  transition: background var(--transition);
}
.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(11,46,89,0.98) 50%, rgba(11,46,89,0.75) 80%, rgba(11,46,89,0.45) 100%);
}
.service-card-top { position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform var(--transition); }
.service-card:hover .service-card-top { transform: scaleX(1); }
.service-card-body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px;
}
.service-icon {
  width: 48px; height: 48px;
  background: rgba(245,130,32,0.2);
  border: 1px solid rgba(245,130,32,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 20px;
  color: var(--accent);
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: var(--accent); }
.service-card h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.service-card p { font-size: 13px; color: rgba(255,255,255,0.75); line-height: 1.55; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why {
  padding: 96px 0;
  position: relative;
  color: #fff;
  overflow: hidden;
}
.why-bg {
  position: absolute;
  inset: 0;
}
.why-bg img { width: 100%; height: 100%; object-fit: cover; }
.why-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11,46,89,0.90);
}
.why .container { position: relative; z-index: 1; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-left .section-label { justify-content: flex-start; color: var(--accent); }
.why-left .section-label::before { display: none; }
.why-left .section-label::after { background: var(--accent); }
.why-left p { font-size: 17px; color: rgba(255,255,255,0.80); line-height: 1.75; margin: 20px 0 36px; max-width: 520px; }
.why-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.why-stat {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 20px;
  text-align: center;
}
.why-stat strong { display: block; font-size: 22px; font-weight: 800; color: var(--accent); }
.why-stat span { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 4px; display: block; }
.why-points { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.why-point {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius);
  padding: 20px;
  transition: border-color var(--transition), background var(--transition);
}
.why-point:hover { background: rgba(255,255,255,0.09); border-color: rgba(245,130,32,0.35); }
.why-point-icon {
  width: 36px; height: 36px;
  background: rgba(245,130,32,0.18);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 12px;
  transition: background var(--transition);
}
.why-point:hover .why-point-icon { background: var(--accent); }
.why-point h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 4px; }
.why-point p { font-size: 12px; color: rgba(255,255,255,0.55); line-height: 1.55; }

/* ============================================================
   INDUSTRIES
   ============================================================ */
.industries { padding: 96px 0; background: var(--bg); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.industry-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.industry-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.industry-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); border-color: rgba(245,130,32,0.25); }
.industry-card:hover::after { transform: scaleX(1); }
.industry-icon {
  width: 56px; height: 56px;
  background: var(--primary);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  color: #fff;
  margin-bottom: 20px;
  transition: background var(--transition), transform var(--transition);
}
.industry-card:hover .industry-icon { background: var(--accent); transform: scale(1.08); }
.industry-card h3 { font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.industry-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ============================================================
   PROCESS
   ============================================================ */
.process {
  padding: 96px 0;
  background: var(--primary);
  color: #fff;
}
.process .section-header { margin-bottom: 64px; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.process-step { text-align: center; position: relative; }
.process-circle {
  width: 80px; height: 80px;
  border: 2px solid rgba(245,130,32,0.4);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
  color: var(--accent);
  background: rgba(255,255,255,0.05);
  position: relative;
  transition: background var(--transition);
}
.process-step:hover .process-circle { background: rgba(245,130,32,0.12); }
.process-num {
  position: absolute;
  top: -6px; right: -6px;
  width: 24px; height: 24px;
  background: var(--accent);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.process-step h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 10px; }
.process-step p { font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { padding: 96px 0; background: var(--bg-gray); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-4px); }
.testimonial-card:hover::after { transform: scaleX(1); }
.quote-icon { font-size: 36px; color: var(--accent); opacity: 0.7; margin-bottom: 16px; line-height: 1; }
.testimonial-card h3 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.testimonial-card blockquote {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  font-style: italic;
}
.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}
.testimonial-footer .name { font-size: 13px; font-weight: 700; color: var(--primary); }
.testimonial-footer .role { font-size: 12px; color: var(--text-muted); }

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 96px 0; background: var(--bg); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--bg-gray);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item.open { border-color: rgba(245,130,32,0.30); box-shadow: var(--shadow-sm); background: var(--bg); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}
.faq-item.open .faq-question { color: var(--accent); }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition);
  font-size: 10px;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 24px 20px; font-size: 15px; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  background: var(--accent);
  padding: 80px 0;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before, .cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-banner::before { width: 400px; height: 400px; top: -180px; left: -100px; }
.cta-banner::after  { width: 400px; height: 400px; bottom: -180px; right: -100px; }
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { font-size: clamp(26px, 4vw, 42px); font-weight: 800; color: #fff; margin-bottom: 16px; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  backdrop-filter: blur(4px);
  transition: background var(--transition);
}
.cta-phone:hover { background: rgba(255,255,255,0.22); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  position: relative;
  background: var(--primary);
  color: rgba(255,255,255,0.65);
  overflow: hidden;
}
.footer-bg {
  position: absolute;
  inset: 0;
}
.footer-bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.08; }
.footer-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(11,46,89,0.5) 0%, var(--primary) 100%); }
.footer .container { position: relative; z-index: 1; }
.footer-main { padding: 72px 0; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
.footer-logo img { height: 52px; width: auto; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-tagline { font-size: 14px; line-height: 1.7; margin-bottom: 24px; }
.footer-phones a { display: flex; align-items: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.65); margin-bottom: 8px; transition: color var(--transition); }
.footer-phones a:hover { color: var(--accent); }
.footer-col-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: 20px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.65); display: flex; align-items: center; gap: 6px; transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }
.footer-col a .arrow { font-size: 10px; opacity: 0; transform: translateX(-4px); transition: var(--transition); }
.footer-col a:hover .arrow { opacity: 1; transform: translateX(0); }
.footer-address { font-size: 14px; line-height: 1.75; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.35); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page-hero {
  background: var(--primary);
  padding: calc(var(--nav-height) + 64px) 0 64px;
  text-align: center;
  color: #fff;
}
.contact-page-hero h1 { font-size: clamp(32px, 5vw, 56px); font-weight: 800; color: #fff; margin: 16px 0 16px; }
.contact-page-hero p { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto; }

.contact-section { padding: 80px 0; background: var(--bg-gray); }
.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 48px; max-width: 960px; margin: 0 auto; }

.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: #fff;
  height: fit-content;
}
.contact-info-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 32px; }
.info-item { display: flex; gap: 16px; margin-bottom: 28px; }
.info-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.10);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.info-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.50); margin-bottom: 6px; }
.info-value { font-size: 15px; color: #fff; }
.info-value a { color: #fff; display: block; transition: color var(--transition); }
.info-value a:hover { color: var(--accent); }

.contact-form-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

/* ============================================================
   FORM STYLES
   ============================================================ */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-group.full { grid-column: 1 / -1; }
label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
}
label .req { color: var(--accent); }
input, select, textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(11,46,89,0.10);
}
input.error, select.error, textarea.error { border-color: #EF4444; }
.field-error { font-size: 12px; color: #EF4444; margin-top: 5px; display: none; }
.field-error.visible { display: block; }
select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 44px; cursor: pointer; }
textarea { resize: vertical; min-height: 130px; }
.honeypot-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }
.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--transition), transform var(--transition);
}
.submit-btn:hover:not(:disabled) { background: var(--accent-hover); transform: translateY(-1px); }
.submit-btn:disabled { opacity: 0.7; cursor: not-allowed; }
.form-note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 14px; }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 24px;
  gap: 20px;
}
.form-success.visible { display: flex; }
.success-icon {
  width: 80px; height: 80px;
  background: #F0FDF4;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
}
.form-success h3 { font-size: 22px; font-weight: 700; color: var(--primary); }
.form-success p { font-size: 15px; color: var(--text-muted); max-width: 360px; line-height: 1.65; }

.form-error-banner {
  display: none;
  align-items: flex-start;
  gap: 12px;
  background: #FEF2F2;
  border: 1px solid #FECACA;
  border-radius: var(--radius);
  padding: 16px;
  font-size: 14px;
  color: #B91C1C;
  margin-bottom: 20px;
}
.form-error-banner.visible { display: flex; }

/* ============================================================
   LUCIDE ICON SIZING
   ============================================================ */
i[data-lucide], i[data-lucide] svg {
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: middle;
  stroke-width: 2;
}

/* Section/card icons — larger contexts */
.highlight-card .icon i[data-lucide],
.mission-card .icon i[data-lucide],
.service-icon i[data-lucide],
.why-point-icon i[data-lucide],
.industry-icon i[data-lucide],
.process-circle > i[data-lucide],
.info-icon i[data-lucide] {
  width: 1.25em;
  height: 1.25em;
}

/* Testimonial quote icon */
.quote-icon i[data-lucide] {
  width: 32px;
  height: 32px;
}

/* FAQ chevron */
.faq-chevron i[data-lucide] {
  width: 16px;
  height: 16px;
  transition: transform 0.35s ease;
}
.faq-item.open .faq-chevron i[data-lucide] {
  transform: rotate(180deg);
}

/* Inline icons in links/buttons */
.footer-phones a i[data-lucide],
.cta-phone i[data-lucide],
.info-value a i[data-lucide] {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
}

/* Loader spinner animation */
@keyframes spin {
  to { transform: rotate(360deg); }
}
.spin-icon svg {
  animation: spin 0.9s linear infinite;
}

/* ============================================================
   FADE-IN ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about-grid, .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .services-grid, .industries-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-highlights { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .mobile-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .mission-grid, .why-stats, .why-points { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .services-grid, .industries-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-highlights { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
