/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand: #111111;
  --orange: #ea6a12;
  --orange-dark: #b8500e;
  --orange-light: #ff9d4d;
  --orange-pale: #fef1e6;
  --blue: #0021A5;
  --blue-dark: #001a84;
  --blue-light: #3b5bdb;
  --blue-pale: #e8ecfb;
  --navy: #003f7d;
  --navy-light: #1660a8;
  --white: #ffffff;
  --cream: #faf7f2;
  --gray-light: #ede9e1;
  --gray: #6b7280;
  --gray-dark: #1f2937;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --radius: 12px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--gray-dark);
  line-height: 1.6;
  background-color: var(--cream);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.15; font-family: 'Montserrat', sans-serif; letter-spacing: 0.01em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; line-height: 1.2; font-family: 'Montserrat', sans-serif; letter-spacing: 0.01em; }
h3 { font-size: 1.2rem; font-weight: 600; font-family: 'Montserrat', sans-serif; letter-spacing: 0.01em; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 0.75rem;
  font-family: 'Inter', sans-serif;
}

/* ===== LAYOUT ===== */
.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--gray { background: var(--gray-light); }
.section--green { background: var(--navy); color: var(--white); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  font-family: 'Inter', sans-serif;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--orange); color: var(--brand); }
.btn-primary:hover { background: var(--orange-light); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.55);
}
.btn-outline:hover { background: rgba(255,255,255,0.1); border-color: white; }

.btn-white { background: var(--white); color: var(--navy); }
.btn-white:hover { background: var(--orange-pale); color: var(--orange-dark); }

/* ===== NAV ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand);
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.03em;
}

.nav-logo svg { width: 36px; height: 36px; flex-shrink: 0; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem;
  list-style: none;
}

.nav-links a {
  padding: 0.5rem 0.8rem;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.88rem;
  color: var(--gray-dark);
  transition: background var(--transition), color var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  background: var(--orange-pale);
  color: var(--orange-dark);
}

.nav-cta {
  margin-left: 0.4rem;
  padding: 0.5rem 1.2rem !important;
  font-size: 0.88rem !important;
  background: var(--orange) !important;
  color: var(--brand) !important;
  border-radius: 7px;
}
.nav-cta:hover {
  background: var(--orange-light) !important;
  color: var(--brand) !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--gray-dark);
  position: relative;
  z-index: 200;
}

/* ===== HERO ===== */
.hero {
  background:
    linear-gradient(135deg, rgba(0,63,125,0.88) 0%, rgba(22,96,168,0.8) 55%, rgba(0,42,82,0.88) 100%),
    url('images/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--white);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(234,106,18,0.14);
  border: 1px solid rgba(234,106,18,0.35);
  color: var(--orange-light);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.hero h1 { margin-bottom: 1.25rem; }

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual { display: flex; justify-content: center; }

.hero-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(234,106,18,0.22);
  border-radius: 20px;
  padding: 2rem;
  width: 100%;
  max-width: 360px;
}

.hero-card-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
}

.stat-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-box {
  background: rgba(0,33,165,0.12);
  border: 1px solid rgba(0,33,165,0.3);
  border-radius: 12px;
  padding: 1rem;
  flex: 1;
  text-align: center;
}
.stat-box .stat-num { font-size: 1.6rem; font-weight: 800; color: var(--orange-light); font-family: 'Montserrat', sans-serif; }
.stat-box .stat-label { font-size: 0.72rem; opacity: 0.7; margin-top: 0.2rem; }

.feature-list { display: flex; flex-direction: column; gap: 0.65rem; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
}
.feature-item::before { content: '•'; font-size: 0.9rem; color: var(--orange-light); }


/* ===== VALUE PROPS ===== */
.props-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.prop-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid #e5e7eb;
  transition: transform var(--transition), box-shadow var(--transition);
}
.prop-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }

.prop-icon {
  width: 52px;
  height: 52px;
  background: var(--orange-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.prop-card h3 { margin-bottom: 0.5rem; }
.prop-card p { color: var(--gray); font-size: 0.95rem; }

.value-strip {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid #e5e7eb;
}
.value-strip-item {
  flex: 1;
  padding-left: 2.5rem;
  border-left: 1px solid #e5e7eb;
}
.value-strip-item:first-child { padding-left: 0; border-left: none; }
.value-strip-item h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--gray-dark);
  margin-bottom: 0.4rem;
}
.value-strip-item p { color: var(--gray); font-size: 0.9rem; }

/* ===== HOW IT WORKS ===== */
.steps { display: flex; flex-direction: column; gap: 1.5rem; max-width: 680px; margin: 3rem auto 0; }

.step { display: flex; gap: 1.5rem; align-items: flex-start; }

.step-num {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--orange);
  color: var(--brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
}

.step-content h3 { margin-bottom: 0.3rem; }
.step-content p { color: var(--gray); }

/* ===== CTA BANNER ===== */
.cta-banner { text-align: center; padding: 5rem 0; }
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { font-size: 1.1rem; opacity: 0.8; margin-bottom: 2rem; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: var(--white);
  padding: 4.5rem 0;
  text-align: center;
}
.page-hero p { font-size: 1.1rem; opacity: 0.8; margin-top: 0.75rem; }

/* ===== SERVICES PAGE ===== */
.services-compare {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  border-radius: var(--radius);
  padding: 2.5rem;
  border: 2px solid #e5e7eb;
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.service-card:hover { border-color: var(--orange); box-shadow: var(--shadow); }
.service-card.featured { border-color: var(--orange); position: relative; }

.featured-tag {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--brand);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.service-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.35rem; margin-bottom: 0.75rem; }
.service-card > p { color: var(--gray); margin-bottom: 1.5rem; }

.service-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.service-features li { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.95rem; }
.service-features li::before { content: '✓'; color: var(--orange); font-weight: 800; flex-shrink: 0; margin-top: 1px; }

.comparison-table { margin-top: 4rem; overflow-x: auto; }
.comparison-table h2 { margin-bottom: 1.5rem; }

table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
th {
  background: var(--navy);
  color: var(--white);
  padding: 0.9rem 1.25rem;
  text-align: left;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
}
th:first-child { border-radius: 8px 0 0 0; }
th:last-child { border-radius: 0 8px 0 0; }
td { padding: 0.85rem 1.25rem; border-bottom: 1px solid #e5e7eb; background: var(--white); }
tr:last-child td { border-bottom: none; }
tr:nth-child(even) td { background: var(--gray-light); }
td:not(:first-child) { text-align: center; font-weight: 500; }

.check { color: var(--orange); font-size: 1.1rem; }
.cross { color: #d1d5db; }

/* ===== ABOUT PAGE ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-visual {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 20px;
  padding: 3rem;
  color: var(--white);
  text-align: center;
}

.big-icon { font-size: 5rem; margin-bottom: 1rem; }
.about-visual h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.about-visual p { opacity: 0.8; }

.about-text p { color: var(--gray); margin-bottom: 1rem; }
.about-text p:last-child { margin-bottom: 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.value-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
.value-card h3 { margin-bottom: 0.4rem; }
.value-card p { color: var(--gray); font-size: 0.9rem; }

.team-note {
  max-width: 700px;
  margin: 3rem auto 0;
  text-align: center;
  color: var(--gray);
  font-size: 1.05rem;
}

/* ===== TEAM PAGE ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  margin-top: 3rem;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  border: 1px solid #e5e7eb;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.1); }

.team-avatar {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 1.5rem;
  border: 3px solid var(--orange);
  overflow: hidden;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }

.team-card h3 { font-size: 1.45rem; margin-bottom: 0.4rem; }

.team-title {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
  font-family: 'Inter', sans-serif;
}

.team-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 1rem;
}
.team-phone a { color: var(--blue-dark); transition: color var(--transition); }
.team-phone a:hover { color: var(--blue); }
.team-phone.team-email { font-size: 0.9rem; }

.team-card p { color: var(--gray); font-size: 0.92rem; line-height: 1.65; }

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { color: var(--gray); margin-bottom: 2rem; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-detail h4 { font-size: 0.85rem; color: var(--gray); font-weight: 500; margin-bottom: 0.15rem; }
.contact-detail p { font-weight: 600; color: var(--gray-dark); }

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid #e5e7eb;
}
.contact-form h3 { margin-bottom: 1.75rem; font-size: 1.3rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-dark);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  color: var(--gray-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(234,106,18,0.12);
}
.form-group textarea { resize: vertical; min-height: 110px; }

.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: var(--orange-dark);
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 0.75rem; }
.form-success h3 { margin-bottom: 0.5rem; }
.form-success p { color: var(--gray); }

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
}

.footer-brand .nav-logo { color: var(--white); margin-bottom: 0.75rem; }
.footer-brand p { opacity: 0.6; font-size: 0.9rem; max-width: 280px; }

.footer-links h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.45;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { opacity: 0.72; font-size: 0.9rem; transition: opacity var(--transition), color var(--transition); }
.footer-links a:hover { opacity: 1; color: var(--blue-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  opacity: 0.45;
}

/* ===== MOBILE NAV OVERLAY ===== */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gray-dark);
    transition: transform var(--transition), opacity var(--transition), background var(--transition);
    transform-origin: center;
  }
  .nav-toggle.open span { background: white; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    width: 100%;
    height: calc(100% - 68px);
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 99;
    padding: 0;
    overflow-y: auto;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }
  .nav-links li:first-child { border-top: 1px solid rgba(255,255,255,0.07); }

  .nav-links a {
    display: block;
    padding: 1.15rem 2rem;
    font-size: 1.15rem;
    font-weight: 600;
    color: rgba(255,255,255,0.82);
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.06em;
    transition: color 0.2s, background 0.2s;
  }
  .nav-links a:hover, .nav-links a.active {
    background: rgba(234,106,18,0.1);
    color: var(--orange-light);
  }

  .nav-links li:last-child { border-bottom: none; padding: 1.5rem 2rem; }
  .nav-cta {
    margin: 0 !important;
    padding: 0.9rem 2.5rem !important;
    border-radius: 8px !important;
    font-size: 0.95rem !important;
    display: inline-block !important;
    width: auto !important;
    font-family: 'Inter', sans-serif !important;
  }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-subtitle { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }

  .props-grid { grid-template-columns: 1fr; }
  .value-strip { flex-direction: column; gap: 1.5rem; padding-top: 1.5rem; }
  .value-strip-item { padding-left: 0; border-left: none; padding-top: 1.25rem; border-top: 1px solid #e5e7eb; }
  .value-strip-item:first-child { padding-top: 0; border-top: none; }
  .services-compare { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .team-grid { grid-template-columns: 1fr; }
}
