/* =====================================================
   Innovated Metal Fabrication — Main Stylesheet
   Brand Colors:
     Primary:   #229EBD (teal), #003047 (dark navy)
     Secondary: #8FC8E5 (light blue), #FDB714 (gold), #F6851F (orange)
   Font: Nunito Sans (Google Fonts)
===================================================== */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-weight: 900;
  line-height: 1.15;
  color: #003047;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.2rem; }

p { font-weight: 600; }

/* --- Utility --- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  border: none;
  letter-spacing: 0.02em;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: #F6851F;
  color: #fff;
}
.btn-primary:hover { background: #e07310; }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid #fff;
}
.btn-outline:hover { background: rgba(255,255,255,0.15); }

.btn-teal {
  background: #229EBD;
  color: #fff;
}
.btn-teal:hover { background: #1b87a0; }

.section-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #229EBD;
  margin-bottom: 0.6rem;
}

/* =====================================================
   NAVIGATION
===================================================== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 2px solid #f0f4f6;
  box-shadow: 0 2px 12px rgba(0,48,71,0.07);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 238px;  /* fixed height — reserves space before logo loads, no jump */
}

/* Container clips internal PNG whitespace symmetrically top and bottom. */
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  height: 230px;
  overflow: hidden;
}

.nav__logo img {
  display: block;
  height: 300px;   /* taller than container → clips ~35px each side */
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__links a {
  font-weight: 900;
  font-size: 0.95rem;
  color: #003047;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  position: relative;
}

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #229EBD;
  transition: width 0.2s;
}

.nav__links a:hover { color: #229EBD; }
.nav__links a:hover::after { width: 100%; }
.nav__links a.active { color: #229EBD; }
.nav__links a.active::after { width: 100%; }

.nav__cta { margin-left: 1rem; }

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #003047;
  border-radius: 2px;
  transition: all 0.3s;
}

/* =====================================================
   HERO
===================================================== */
.hero {
  background: #003047;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 6rem;
  min-height: 560px;
  display: flex;
  align-items: center;
}

/* Subtle geometric background pattern */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,158,189,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,158,189,0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Teal accent bar */
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, #229EBD, #FDB714);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.hero__eyebrow {
  display: inline-block;
  background: rgba(34,158,189,0.18);
  color: #8FC8E5;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
  border-left: 3px solid #229EBD;
}

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

.hero h1 span { color: #229EBD; }

.hero__sub {
  font-size: 1.15rem;
  color: #8FC8E5;
  margin-bottom: 2.5rem;
  max-width: 560px;
  font-weight: 600;
}

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

.hero__badges {
  display: flex;
  gap: 2rem;
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(143,200,229,0.2);
  flex-wrap: wrap;
}

.hero__badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #8FC8E5;
  font-size: 0.9rem;
  font-weight: 900;
}

.hero__badge-icon {
  width: 36px;
  height: 36px;
  background: rgba(34,158,189,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #229EBD;
  flex-shrink: 0;
}

/* =====================================================
   SERVICES
===================================================== */
.services {
  padding: 5rem 0;
  background: #f5f8fa;
}

.services__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.services__header p {
  color: #4a6070;
  max-width: 560px;
  margin: 0.75rem auto 0;
}

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

.service-card {
  background: #fff;
  border-radius: 6px;
  padding: 2rem 1.75rem;
  border: 1px solid #e3edf2;
  transition: box-shadow 0.25s, transform 0.2s, border-color 0.25s;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #229EBD, #003047);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-card:hover {
  box-shadow: 0 8px 32px rgba(0,48,71,0.12);
  transform: translateY(-3px);
  border-color: #229EBD;
}

.service-card:hover::before { transform: scaleX(1); }

.service-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.service-card p {
  font-size: 0.9rem;
  color: #4a6070;
  line-height: 1.65;
  font-weight: 600;
}

/* Service card — photo at top, bleeds to card edges */
.service-card__image {
  display: block;
  width: calc(100% + 3.5rem);
  height: 180px;
  object-fit: cover;
  margin: -2rem -1.75rem 1.5rem -1.75rem;
  border-radius: 6px 6px 0 0;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card__image {
  transform: scale(1.03);
}

/* Clip overflow so image zoom doesn't spill outside card */
.service-card { overflow: hidden; }

/* Featured service card — text left, photo right */
.service-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 0;
  align-items: stretch;
  background: linear-gradient(135deg, #003047 0%, #0a4a6a 100%);
  border-color: transparent;
  color: #fff;
  padding: 0;
  overflow: hidden;
}

.service-card--featured__content {
  padding: 2.25rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.service-card--featured__content h3 { color: #fff; font-size: 1.15rem; margin-bottom: 0.75rem; }

.service-card--featured__content p { color: rgba(255,255,255,0.8); margin-bottom: 1.25rem; }

.service-card--featured__photo {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.service-card--featured::before { background: linear-gradient(90deg, #229EBD, #FDB714); }

.service-card--featured:hover { border-color: #229EBD; }

.service-card--featured:hover .service-card--featured__photo {
  transform: scale(1.03);
  transition: transform 0.5s ease;
}

.service-card--featured .service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1.25rem;
}

.service-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: rgba(34,158,189,0.2);
  border: 1px solid rgba(34,158,189,0.4);
  border-radius: 3px;
  font-size: 0.78rem;
  font-weight: 900;
  color: #8FC8E5;
  letter-spacing: 0.03em;
}

/* Coordination card */
.service-card--coordination {
  grid-column: 1 / -1;
  background: #f0f7fa;
  border-color: #229EBD;
  border-left: 4px solid #229EBD;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

@media (max-width: 900px) {
  .service-card--featured {
    grid-template-columns: 1fr;
  }
  .service-card--featured__photo {
    min-height: 220px;
    max-height: 260px;
  }
}

@media (max-width: 640px) {
  .service-card--featured,
  .service-card--coordination {
    grid-column: 1;
  }
  .service-card--featured__photo { max-height: 200px; }
}

/* Hero background photo overlay */
.hero__bg-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

/* About page — photo replacing the dark capability box */
.about-story__photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 220px;
  gap: 8px;
  border-radius: 8px;
  overflow: hidden;
}

.about-story__photo-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.about-story__photo-grid img:hover { transform: scale(1.04); }

.about-story__photo-grid img:first-child {
  grid-column: 1 / -1;
}

@media (max-width: 640px) {
  .about-story__photo-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .about-story__photo-grid img:first-child { grid-column: 1; }
}

/* Careers page ambient photo */
.careers-hero-photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  z-index: 0;
}

/* =====================================================
   CAREERS PAGE
===================================================== */
.careers-intro {
  padding: 5rem 0;
  background: #fff;
}

.careers-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.careers-intro__text h2 { margin-bottom: 1rem; }

.careers-intro__text p {
  color: #4a6070;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.careers-perks {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.careers-perk {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
}

.careers-perk__icon {
  width: 36px;
  height: 36px;
  background: #e8f5f9;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.careers-perk__icon svg {
  width: 18px;
  height: 18px;
  stroke: #229EBD;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.careers-perk__text strong {
  display: block;
  font-weight: 900;
  color: #003047;
  font-size: 0.9rem;
}

.careers-perk__text span {
  font-size: 0.85rem;
  color: #4a6070;
  font-weight: 600;
}

.apply-form-card {
  background: #fff;
  border: 1px solid #e3edf2;
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,48,71,0.06);
}

.apply-form-card h3 { margin-bottom: 0.4rem; }
.apply-form-card > p { font-size: 0.9rem; color: #4a6070; margin-bottom: 1.75rem; }

.apply-form-card .form-group input[type="file"] {
  padding: 0.5rem;
  border: 1.5px dashed #d0dde5;
  background: #f8fafc;
  cursor: pointer;
  font-size: 0.875rem;
}

.apply-form-card .form-group input[type="file"]:focus {
  border-color: #229EBD;
  background: #f0f7fa;
}

@media (max-width: 900px) {
  .careers-intro__grid { grid-template-columns: 1fr; }
}

/* =====================================================
   VALUE PROPS
===================================================== */
.values {
  padding: 5rem 0;
  background: #fff;
}

.values__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

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

.value-card {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 6px;
  border: 1px solid #e3edf2;
}

.value-card__number {
  font-size: 3rem;
  font-weight: 900;
  color: #229EBD;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.value-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.75rem;
}

.value-card p {
  font-size: 0.9rem;
  color: #4a6070;
  line-height: 1.65;
}

/* =====================================================
   CAPABILITIES SPECS SECTION
===================================================== */
.caps-specs {
  padding: 5rem 0;
  background: #003047;
  position: relative;
  overflow: hidden;
}

.caps-specs::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,158,189,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,158,189,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.caps-specs .container { position: relative; z-index: 1; }

.caps-specs__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.caps-specs__header h2 { color: #fff; }
.caps-specs__header p { color: #8FC8E5; max-width: 600px; margin: 0.75rem auto 0; }

.caps-specs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.caps-spec-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(34,158,189,0.2);
  border-radius: 6px;
  padding: 1.75rem;
  transition: background 0.25s, border-color 0.25s;
}

.caps-spec-card:hover {
  background: rgba(34,158,189,0.1);
  border-color: #229EBD;
}

.caps-spec-card__label {
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #229EBD;
  margin-bottom: 0.6rem;
  display: block;
}

.caps-spec-card h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.caps-spec-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.caps-spec-card ul li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
  padding-left: 1rem;
  position: relative;
}

.caps-spec-card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: #229EBD;
  border-radius: 50%;
}

@media (max-width: 900px) {
  .caps-specs__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .caps-specs__grid { grid-template-columns: 1fr; }
}

/* =====================================================
   CTA BANNER
===================================================== */
.cta-banner {
  background: linear-gradient(135deg, #229EBD 0%, #1a7d97 100%);
  padding: 4rem 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner h2 { color: #fff; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-top: 0.5rem; }

/* =====================================================
   FOOTER
===================================================== */
.footer {
  background: #003047;
  color: rgba(255,255,255,0.75);
  padding: 3.5rem 0 1.5rem;
}

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

.footer__brand img {
  height: 40px;
  width: auto;
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

.footer__col h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color 0.2s;
  font-weight: 600;
}

.footer__col ul li a:hover { color: #229EBD; }

.footer__contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.6rem;
  font-weight: 600;
}

.footer__contact-item svg {
  width: 16px;
  height: 16px;
  stroke: #229EBD;
  flex-shrink: 0;
  margin-top: 3px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.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;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer__bottom a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}
.footer__bottom a:hover { color: #229EBD; }

/* =====================================================
   PAGE HERO (interior pages)
===================================================== */
.page-hero {
  background: #003047;
  padding: 4rem 0 3.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,158,189,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,158,189,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}

.page-hero::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(to bottom, #229EBD, #FDB714);
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero p { color: #8FC8E5; font-size: 1.1rem; max-width: 560px; }

/* =====================================================
   ABOUT PAGE
===================================================== */
.about-story {
  padding: 5rem 0;
}

.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-story__text h2 { margin-bottom: 1rem; }
.about-story__text p {
  color: #4a6070;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about-story__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.stat-box {
  background: #f5f8fa;
  border: 1px solid #e3edf2;
  border-radius: 6px;
  padding: 1.5rem;
  border-left: 3px solid #229EBD;
}

.stat-box__number {
  font-size: 2rem;
  font-weight: 900;
  color: #003047;
  line-height: 1;
}

.stat-box__label {
  font-size: 0.85rem;
  color: #4a6070;
  margin-top: 0.3rem;
  font-weight: 600;
}

/* Values Section */
.company-values {
  padding: 5rem 0;
  background: #fff;
}

.company-values__header {
  text-align: center;
  margin-bottom: 3rem;
}

.company-values__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.company-value-card {
  padding: 2rem;
  border-radius: 6px;
  border: 1px solid #e3edf2;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}

.company-value-card:hover { box-shadow: 0 4px 16px rgba(0,48,71,0.08); }

.company-value-card__icon {
  width: 48px;
  height: 48px;
  background: #e8f5f9;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.company-value-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: #229EBD;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.company-value-card h3 { margin-bottom: 0.4rem; font-size: 1rem; }
.company-value-card p { font-size: 0.9rem; color: #4a6070; line-height: 1.65; }

/* =====================================================
   CONTACT PAGE
===================================================== */
.contact-section {
  padding: 5rem 0;
}

.contact-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-info h2 { margin-bottom: 0.75rem; }
.contact-info > p { color: #4a6070; margin-bottom: 2rem; line-height: 1.7; }

.contact-detail {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.contact-detail__icon {
  width: 40px;
  height: 40px;
  background: #e8f5f9;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail__icon svg {
  width: 20px;
  height: 20px;
  stroke: #229EBD;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail__label {
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #229EBD;
  display: block;
  margin-bottom: 0.15rem;
}

.contact-detail__value {
  font-size: 0.95rem;
  color: #003047;
  font-weight: 900;
  line-height: 1.5;
}

.contact-detail__value a {
  color: #003047;
  transition: color 0.2s;
}
.contact-detail__value a:hover { color: #229EBD; }

/* Quote Form */
.quote-form-card {
  background: #fff;
  border: 1px solid #e3edf2;
  border-radius: 8px;
  padding: 2.5rem;
  box-shadow: 0 4px 24px rgba(0,48,71,0.06);
}

.quote-form-card h3 {
  margin-bottom: 0.4rem;
}

.quote-form-card > p {
  font-size: 0.9rem;
  color: #4a6070;
  margin-bottom: 1.75rem;
}

.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: 900;
  color: #003047;
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.form-group label span { color: #F6851F; }

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #d0dde5;
  border-radius: 4px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #003047;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: #229EBD;
  box-shadow: 0 0 0 3px rgba(34,158,189,0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-submit {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  margin-top: 0.5rem;
}

.form-success {
  display: none;
  background: #e8f5f9;
  border: 1px solid #229EBD;
  border-radius: 6px;
  padding: 1.25rem;
  color: #003047;
  text-align: center;
  margin-top: 1rem;
  font-weight: 900;
}

/* FAQ */
.faq-section {
  padding: 5rem 0;
  background: #f5f8fa;
}

.faq-section__header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: #fff;
  border: 1px solid #e3edf2;
  border-radius: 6px;
  overflow: hidden;
}

.faq-item__question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 900;
  font-size: 0.975rem;
  color: #003047;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color 0.2s;
}

.faq-item__question:hover { color: #229EBD; }

.faq-item__question svg {
  width: 18px;
  height: 18px;
  stroke: #229EBD;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item.open .faq-item__question svg { transform: rotate(45deg); }

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s;
  padding: 0 1.5rem;
}

.faq-item.open .faq-item__answer {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}

.faq-item__answer p {
  font-size: 0.9rem;
  color: #4a6070;
  line-height: 1.7;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 900px) {
  .services__grid,
  .values__grid,
  .team__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-story__grid {
    grid-template-columns: 1fr;
  }

  .about-story__stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-section__grid {
    grid-template-columns: 1fr;
  }

  .company-values__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .nav__links { display: none; flex-direction: column; }
  .nav__links.open {
    display: flex;
    position: absolute;
    top: 238px;
    left: 0;
    right: 0;
    background: #fff;
    padding: 1.5rem;
    border-bottom: 2px solid #f0f4f6;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  }
  .nav__cta { display: none; }
  .nav__toggle { display: flex; }
  .nav { position: relative; }

  .hero { padding: 4rem 0; }
  .hero__badges { gap: 1.25rem; }

  .services__grid,
  .values__grid,
  .team__grid,
  .footer__grid {
    grid-template-columns: 1fr;
  }

  .cta-banner__inner { text-align: center; justify-content: center; }

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

  .footer__grid { grid-template-columns: 1fr; }
}
