/* =============================================
   BRONWEL SUPPLIERS LTD — PREMIUM STYLESHEET
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&family=DM+Serif+Display:ital@0;1&display=swap');

/* ---- CSS Variables ---- */
:root {
  --blue-deep:    #0d2d44;
  --blue-mid:     #1a4d6f;
  --blue-light:   #e8f4f8;
  --cyan:         #00a8cc;
  --cyan-light:   #b3e8f5;
  --orange:       #f39c12;
  --orange-dark:  #d68910;
  --white:        #ffffff;
  --off-white:    #f5f9fb;
  --text-dark:    #0d1f2d;
  --text-mid:     #3a556a;
  --text-light:   #7a98ad;
  --border:       #d0e5ef;
  --shadow-sm:    0 2px 12px rgba(13,45,68,.08);
  --shadow-md:    0 8px 32px rgba(13,45,68,.14);
  --shadow-lg:    0 20px 60px rgba(13,45,68,.2);
  --radius-sm:    6px;
  --radius-md:    14px;
  --radius-lg:    24px;
  --transition:   0.32s cubic-bezier(.4,0,.2,1);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-head:    'Bebas Neue', Impact, sans-serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
}
/* img { max-width: 100%; display: block; }  */
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- Utility ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white); }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ---- Typography ---- */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
}
.eyebrow--orange { color: var(--orange); }

h1, .h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 400;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.18;
  letter-spacing: -.015em;
  font-weight: 400;
}
h3, .h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
}
h4, .h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
}
p.lead {
  font-size: 1.15rem;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 600px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .02em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.12);
  opacity: 0;
  transition: opacity .2s;
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(243,156,18,.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(243,156,18,.45);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--blue-mid);
  border: 2px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
}

.btn-cyan {
  background: var(--cyan);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0,168,204,.3);
}
.btn-cyan:hover {
  background: #0090b0;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,168,204,.4);
}

/* ---- Section Labels ---- */
.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 3px;
  background: var(--cyan);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: 0;
}
.navbar.scrolled {
  background: rgba(13, 29, 44, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 74px;
  padding: 0 40px;
  max-width: 1280px;
  margin: 0 auto;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo {
  height: 60px !important;
  width: auto;
  
}
.navbar-logo-text {
  font-family: var(--font-head);
  font-size: 1.5rem;
  letter-spacing: .05em;
  color: var(--white);
  line-height: 1;
}
.navbar-logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: .6rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--cyan);
  margin-top: 2px;
}
.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar-nav a {
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.8);
  padding: 8px 14px;
  border-radius: 4px;
  transition: color .2s, background .2s;
}
.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--white);
  background: rgba(255,255,255,.1);
}
.navbar-cta {
  margin-left: 16px;
}
.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(10, 26, 40, .92) 0%,
    rgba(13, 45, 68, .78) 50%,
    rgba(0, 168, 204, .15) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 160px 40px 80px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: heroFadeUp .9s cubic-bezier(.4,0,.2,1) both;
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(36px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,168,204,.18);
  border: 1px solid rgba(0,168,204,.35);
  color: var(--cyan-light);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0,168,204,.6); }
  50%       { box-shadow: 0 0 0 6px rgba(0,168,204,0); }
}
.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: italic;
  color: var(--cyan-light);
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 40px;
  max-width: 500px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}


/* Hero Stats Bar */
.hero-stats {
  position: relative;
  z-index: 3;
  background: rgba(13,29,44,.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.08);
}
.hero-stats-inner {
  display: flex;
  justify-content: center;
  divide-x: 1px solid rgba(255,255,255,.1);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
.hero-stat {
  flex: 1;
  text-align: center;
  padding: 22px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.hero-stat:last-child { border-right: none; }
.hero-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2rem;
  color: var(--cyan);
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat span {
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

/* ============================================
   BENEFITS / FEATURES GRID
   ============================================ */
.benefits-section {
  background: var(--off-white);
  position: relative;
}
.benefits-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-mid), var(--cyan), var(--orange));
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.benefit-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-icon {
  width: 52px; height: 52px;
  background: var(--blue-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue-mid);
}
.benefit-card h3 {
  margin-bottom: 10px;
  color: var(--text-dark);
}
.benefit-card p {
  color: var(--text-mid);
  font-size: .95rem;
}

/* ============================================
   SERVICES SECTION & PAGE
   ============================================ */
.services-intro {
  max-width: 700px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}
.service-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--blue-mid);
}
.service-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-card-image img { transform: scale(1.06); }
.service-card-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,45,68,.7) 0%, transparent 60%);
}
.service-card-icon {
  position: absolute;
  bottom: 16px; left: 20px;
  width: 44px; height: 44px;
  background: var(--orange);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 { margin-bottom: 10px; }
.service-card-body p { color: var(--text-mid); font-size: .93rem; margin-bottom: 20px; flex: 1; }
.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}
.service-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .88rem;
  color: var(--text-mid);
}
.service-features li::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ============================================
   ABOUT
   ============================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-split.reverse { direction: rtl; }
.about-split.reverse > * { direction: ltr; }
.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.about-image-wrap:hover img { transform: scale(1.03); }
.about-image-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--orange);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: var(--shadow-md);
}
.about-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
  font-size: 1.02rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 24px;
}
.value-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 16px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  text-align: center;
  transition: var(--transition);
}
.value-pill:hover {
  background: var(--blue-mid);
  color: var(--white);
}
.value-pill:hover svg { stroke: var(--cyan); }
.value-pill span {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

/* ============================================
   INDUSTRIES
   ============================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.industry-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--blue-mid);
  cursor: pointer;
}
.industry-card-bg {
  position: absolute;
  inset: 0;
}
.industry-card-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.industry-card:hover .industry-card-bg img { transform: scale(1.08); }
.industry-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,29,44,.92) 0%,
    rgba(13,29,44,.4) 50%,
    rgba(13,29,44,.1) 100%
  );
  transition: background .3s;
}
.industry-card:hover .industry-card-overlay {
  background: linear-gradient(
    to top,
    rgba(13,29,44,.95) 0%,
    rgba(0,168,204,.2) 100%
  );
}
.industry-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
}
.industry-card-icon {
  width: 44px; height: 44px;
  background: rgba(0,168,204,.2);
  border: 1px solid rgba(0,168,204,.4);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 12px;
  transition: var(--transition);
}
.industry-card:hover .industry-card-icon {
  background: var(--cyan);
  color: var(--white);
  border-color: var(--cyan);
}
.industry-card h3 {
  color: var(--white);
  margin-bottom: 6px;
}
.industry-card-desc {
  color: rgba(255,255,255,.6);
  font-size: .88rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, opacity .3s;
  opacity: 0;
}
.industry-card:hover .industry-card-desc {
  max-height: 80px;
  opacity: 1;
}

/* ============================================
   PROCESS / TIMELINE
   ============================================ */
.process-section {
  background: var(--blue-deep);
  position: relative;
  overflow: hidden;
}
.process-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,168,204,.12), transparent 70%);
  pointer-events: none;
}
.process-section .eyebrow { color: var(--cyan); }
.process-section h2 { color: var(--white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  margin-top: 64px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(100% / 12);
  right: calc(100% / 12);
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), rgba(0,168,204,.1));
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10px;
  position: relative;
  animation: fadeUp .5s ease both;
}
.process-step:nth-child(1) { animation-delay: .1s; }
.process-step:nth-child(2) { animation-delay: .2s; }
.process-step:nth-child(3) { animation-delay: .3s; }
.process-step:nth-child(4) { animation-delay: .4s; }
.process-step:nth-child(5) { animation-delay: .5s; }
.process-step:nth-child(6) { animation-delay: .6s; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.process-step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(0,168,204,.35);
  background: rgba(0,168,204,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.process-step:hover .process-step-num {
  background: var(--cyan);
  color: var(--white);
  border-color: var(--cyan);
  box-shadow: 0 0 30px rgba(0,168,204,.4);
}
.process-step-num .step-n {
  position: absolute;
  top: -8px; right: -8px;
  width: 22px; height: 22px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .65rem;
  font-weight: 700;
  color: var(--white);
}
.process-step h4 {
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
}
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.4);
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,168,204,.6) 0%, rgba(26,77,111,.8) 100%);
}
.cta-banner-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 40px;
}
.cta-banner-content h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner-content p {
  color: rgba(255,255,255,.8);
  max-width: 480px;
  margin: 0 auto 36px;
}

/* ============================================
   PRICING
   ============================================ */
.pricing-table-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  margin-top: 48px;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-table th {
  background: var(--blue-mid);
  color: var(--white);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 18px 32px;
  text-align: left;
}
.pricing-table th:last-child { text-align: right; }
.pricing-table td {
  padding: 20px 32px;
  font-size: .97rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-dark);
}
.pricing-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--blue-mid);
  font-family: var(--font-head);
  font-size: 1.3rem;
  letter-spacing: .04em;
}
.pricing-table tr:last-child td { border-bottom: none; }
.pricing-table tr:hover td { background: var(--blue-light); }
.pricing-note {
  background: var(--blue-light);
  padding: 20px 32px;
  font-size: .88rem;
  color: var(--text-mid);
  border-top: 1px solid var(--border);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info {
  background: var(--blue-deep);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(0,168,204,.18), transparent 70%);
}
.contact-info h2 { color: var(--white); margin-bottom: 16px; }
.contact-info p { color: rgba(255,255,255,.65); margin-bottom: 40px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-detail-icon {
  width: 44px; height: 44px;
  background: rgba(0,168,204,.15);
  border: 1px solid rgba(0,168,204,.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}
.contact-detail-text strong {
  display: block;
  color: rgba(255,255,255,.5);
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.contact-detail-text span {
  color: var(--white);
  font-size: .97rem;
}
.contact-map {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 32px;
  height: 180px;
  background: var(--blue-mid);
}
.contact-map img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .6;
}
.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.contact-form p {
  color: var(--text-mid);
  margin-bottom: 32px;
  font-size: .93rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.form-group label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--text-mid);
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text-dark);
  background: var(--off-white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(0,168,204,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }

/* ============================================
   PAGE HERO (Inner pages)
   ============================================ */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-top: 74px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,22,34,.9) 0%,
    rgba(13,45,68,.7) 60%,
    rgba(0,168,204,.15) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 40px 56px;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.page-hero-content .eyebrow { color: var(--cyan); }
.page-hero-content h1 { color: var(--white); }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s; }
.breadcrumb a:hover { color: var(--cyan); }
.breadcrumb::after { content: '/'; }

/* ============================================
   WHY US SECTION
   ============================================ */
.whyus-section {
  background: var(--blue-deep);
  position: relative;
  overflow: hidden;
}
.whyus-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(243,156,18,.08), transparent 70%);
}
.whyus-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.whyus-text .eyebrow { color: var(--cyan); }
.whyus-text h2 { color: var(--white); margin-bottom: 20px; }
.whyus-text p { color: rgba(255,255,255,.65); margin-bottom: 36px; }
.whyus-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.whyus-point {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.whyus-point-icon {
  width: 46px; height: 46px;
  background: rgba(0,168,204,.12);
  border: 1px solid rgba(0,168,204,.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
  flex-shrink: 0;
}
.whyus-point h4 { color: var(--white); margin-bottom: 4px; }
.whyus-point p { color: rgba(255,255,255,.55); font-size: .9rem; margin: 0; }
.whyus-image {
  position: relative;
}
.whyus-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.whyus-image-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.whyus-accent {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--orange);
  color: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.whyus-accent strong {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  letter-spacing: .04em;
  line-height: 1;
  margin-bottom: 4px;
}
.whyus-accent span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  opacity: .9;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--blue-deep);
  color: rgba(255,255,255,.6);
}
.footer-top {
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .navbar-logo-text {
  font-size: 2rem;
  margin-bottom: 16px;
  display: block;
}
.footer-brand p {
  font-size: .9rem;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
}
.footer-social:hover {
  background: var(--cyan);
  color: var(--white);
}
.footer-col h5 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: .88rem;
  color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-links a:hover { color: var(--cyan); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .88rem;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; color: var(--cyan); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  font-size: .8rem;
}
.footer-bottom a {
  color: rgba(255,255,255,.5);
  margin-left: 16px;
  transition: color .2s;
}
.footer-bottom a:hover { color: var(--cyan); }

/* ============================================
   DIVIDERS / EXTRAS
   ============================================ */
.wave-divider {
  line-height: 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
}
.sep-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--orange));
  border-radius: 2px;
  margin: 20px 0 32px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .process-steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .whyus-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-split { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section-pad { padding: 64px 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .hero-stats-inner { flex-direction: column; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); }
  .footer-top { grid-template-columns: 1fr; }
  .navbar-nav { display: none; }
  .navbar-cta { display: none; }
  .navbar-toggle { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .hero-content { padding: 120px 24px 80px; }
  .page-hero-content { padding: 0 24px 40px; }
  .values-grid { grid-template-columns: 1fr; }
}
