/* ==========================================================
   THE MINDROOT DIGITAL — styles.css
   Light mode · Brand palette: teal + navy + gold
   ========================================================== */

/* ── CSS Variables ── */
:root {
  /* Brand Colors */
  --teal:        #0a9381;
  --teal-dark:   #097770;
  --teal-medium: #008e84;
  --teal-light:  #e6f5f3;
  --navy:        #1e2d35;   /* logo bg, footer */
  --gold:        #c8a86a;   /* CTA accent */
  --gold-dark:   #b8952f;

  /* Backgrounds */
  --bg:          #ffffff;
  --bg-soft:     #f7fafa;
  --bg-teal:     #eaf5f3;

  /* Text */
  --text:        #1a2c2c;
  --text-muted:  #4d6060;
  --text-light:  #7a9090;

  /* UI */
  --border:      #d8e8e5;
  --shadow:      0 4px 20px rgba(0,0,0,0.07);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.10);
  --radius:      12px;
  --radius-lg:   20px;

  /* Fonts */
  --ff-body:     'Poppins', sans-serif;
  --ff-heading:  'Aboreto', system-ui;
  --ff-orb:      'Orbitron', sans-serif;

  --max-w: 1200px;
  --tr: 0.25s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: var(--ff-body); color: var(--text); background: var(--bg); line-height: 1.65; }
img   { max-width: 100%; height: auto; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }
h1, h2, h3, h4 { font-family: var(--ff-heading); line-height: 1.2; color: var(--text); }

/* ── Container ── */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* ── Utility ── */
.clr-teal  { color: var(--teal); }
.fw600     { font-weight: 600; }
.bg-soft   { background: var(--bg-soft); }
.section   { padding: 5rem 0; }

/* ── Divider ── */
.sep-line  { flex: 1; height: 2px; background: var(--teal); border: none; max-width: 50px; }
.sep-label { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; font-size: 0.9rem; }

/* ── Badge Pill ── */
.badge-pill {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.5px; text-transform: uppercase;
  padding: 4px 16px; border-radius: 20px;
  margin-bottom: 1rem;
}
.badge-pill--white {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

/* ── Buttons ── */
.btn {
  display: inline-block; font-family: var(--ff-body); font-weight: 600;
  border-radius: 7px; cursor: pointer; transition: all var(--tr);
  text-align: center; border: none; letter-spacing: 0.2px;
  white-space: nowrap;
}
.btn-primary           { background: var(--teal); color: #fff; padding: 10px 26px; }
.btn-primary:hover     { background: var(--teal-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(10,147,129,0.35); }
.btn-gold              { background: var(--gold); color: #fff; padding: 10px 26px; }
.btn-gold:hover        { background: var(--gold-dark); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(200,168,106,0.4); }
.btn-outline-teal      { background: transparent; color: var(--teal); border: 2px solid var(--teal); padding: 8px 24px; }
.btn-outline-teal:hover{ background: var(--teal); color: #fff; }
.btn-outline-white     { background: transparent; color: #fff; border: 2px solid #fff; padding: 8px 24px; }
.btn-outline-white:hover{ background: rgba(255,255,255,0.15); }
.btn-sm  { padding: 6px 16px; font-size: 0.82rem; }
.btn-lg  { padding: 13px 34px; font-size: 1rem; }

/* ── Section Head ── */
.section-head         { text-align: center; margin-bottom: 3.5rem; }
.section-head h2      { font-size: clamp(1.5rem, 2.5vw, 2.3rem); margin-bottom: 0.7rem; }
.section-head p       { color: var(--text-muted); max-width: 540px; margin: 0 auto; }
.section-cta          { text-align: center; margin-top: 2.5rem; }

/* ── Link Arrow ── */
.link-arrow       { color: var(--teal); font-weight: 600; font-size: 0.9rem; display: inline-block; margin-top: auto; transition: gap var(--tr); }
.link-arrow:hover { color: var(--teal-dark); letter-spacing: 0.4px; }
.link-arrow--white      { color: #fff; }
.link-arrow--white:hover{ color: rgba(255,255,255,0.8); }


/* ==========================================================
   NAVBAR
   ========================================================== */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--tr);
}
.navbar.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.10); border-bottom-color: transparent; }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.8rem 1.5rem;
}
.logo-link { display: flex; align-items: center; }
.nav-logo  { height: 52px; width: auto; border-radius: 8px; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text);
  transition: color var(--tr); position: relative;
}
.nav-links a:not(.btn):hover { color: var(--teal); }
.nav-links a.nav-active {
  color: var(--teal); font-weight: 600;
}
.nav-links a.nav-active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--teal); border-radius: 2px;
}
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--tr); }

@media (max-width: 800px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; width: 100%;
    background: #fff; flex-direction: column; padding: 1.5rem 2rem;
    gap: 1.1rem; box-shadow: 0 10px 30px rgba(0,0,0,0.10);
    border-top: 1px solid var(--border);
  }
  .nav-links.open { display: flex; }
  .nav-links a.nav-active::after { display: none; }
}


/* ==========================================================
   HERO (Home page)
   ========================================================== */
.hero {
  position: relative; min-height: 100vh; max-height: 860px;
  display: flex; align-items: center; overflow: hidden;
  padding-top: 72px; /* navbar height */
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,119,112,0.90) 0%, rgba(14,40,40,0.85) 100%);
}
.hero-content {
  position: relative; z-index: 2; width: 100%;
  padding: 3rem 1.5rem;
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem; text-align: center;
}
.hero-logo-wrap { margin-bottom: 0.5rem; }
.hero-logo {
  width: 140px; height: 140px; object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.35);
}
.hero-text { max-width: 780px; }
.hero-text h1 {
  font-size: clamp(1.8rem, 5vw, 3.6rem);
  color: #fff; line-height: 1.2; margin-bottom: 1.2rem;
  font-weight: 400;
}
.hero-text p {
  color: rgba(255,255,255,0.85); font-size: clamp(15px, 1.1vw + 8px, 19px);
  line-height: 1.7; max-width: 660px; margin: 0 auto 1.5rem;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }

/* Industry Tabs */
.industry-cols {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 0; width: 100%; max-width: 820px;
  border: 1px solid rgba(255,255,255,0.2); border-radius: 10px; overflow: hidden;
}
.industry-col {
  flex: 1; min-width: 120px;
  padding: 1.5rem 1rem;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  border-right: 1px solid rgba(255,255,255,0.15);
  transition: background var(--tr); cursor: pointer;
}
.industry-col:last-child { border-right: none; }
.industry-col img { width: 38px; filter: brightness(0) invert(1) opacity(0.7); }
.industry-col span { color: rgba(255,255,255,0.75); font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.industry-col.active-col,
.industry-col:hover { background: rgba(255,255,255,0.12); }
.industry-col.active-col img,
.industry-col:hover img { opacity: 1; filter: brightness(0) invert(1); }
.industry-col.active-col span,
.industry-col:hover span { color: #fff; }


/* ==========================================================
   PAGE HERO (inner pages)
   ========================================================== */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--navy) 100%);
  padding: 8rem 1.5rem 4rem;
  text-align: center;
}
.page-hero-inner { max-width: 700px; margin: 0 auto; }
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 3rem); color: #fff;
  margin-bottom: 0.8rem; font-weight: 400;
}
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 1.2rem; }
.breadcrumb {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.8); }
.breadcrumb a:hover { color: #fff; }


/* ==========================================================
   ABOUT SECTION
   ========================================================== */
.about-inner {
  display: flex; align-items: flex-start; gap: 4rem; flex-wrap: wrap;
}
.about-img-wrap { flex: 1 1 380px; }
.about-img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover; max-height: 540px;
}
.about-content { flex: 1 1 320px; }
.about-content h2 {
  font-size: clamp(1.4rem, 2vw + 0.6rem, 2.2rem);
  margin-bottom: 1rem;
}
.about-content > p { color: var(--text-muted); margin-bottom: 0.8rem; line-height: 1.7; }

/* Pillars Grid */
.pillars-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem;
  margin: 2rem 0;
}
.pillar-item { display: flex; flex-direction: column; gap: 0.4rem; }
.pillar-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--teal-light); display: flex; align-items: center; justify-content: center;
  margin-bottom: 0.3rem;
}
.pillar-icon img { width: 30px; }
.pillar-item h4 { font-family: var(--ff-heading); font-size: 0.95rem; color: var(--text); }
.pillar-item p  { font-size: 0.85rem; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 560px) { .pillars-grid { grid-template-columns: 1fr; } }


/* ==========================================================
   SERVICE CARDS
   ========================================================== */
.cards-row {
  display: flex; gap: 1.8rem; flex-wrap: wrap; align-items: stretch;
}
.svc-card {
  flex: 1 1 260px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 1rem;
  transition: box-shadow var(--tr), transform var(--tr), background var(--tr), border-color var(--tr);
}
.svc-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  background: var(--teal);
  border-color: var(--teal);
}
.svc-card:hover h3            { color: #fff; }
.svc-card:hover p             { color: rgba(255,255,255,0.88); }
.svc-card:hover .svc-icon-wrap{ background: rgba(255,255,255,0.15); }
.svc-card:hover .svc-list li  { color: rgba(255,255,255,0.88); }
.svc-card:hover .svc-list li::before { color: var(--gold); }
.svc-card:hover .link-arrow   { color: #fff; }


.svc-icon-wrap {
  width: 64px; height: 64px; border-radius: 14px;
  background: var(--teal-light); display: flex; align-items: center; justify-content: center;
  transition: background var(--tr);
}

.svc-icon-wrap img { width: 34px; }
.svc-card h3 { font-size: clamp(1rem, 1.1vw + 6px, 1.25rem); color: var(--text); transition: color var(--tr); }
.svc-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; transition: color var(--tr); }
.svc-list { display: flex; flex-direction: column; gap: 0.45rem; margin-top: 0.3rem; }
.svc-list li {
  font-size: 0.87rem; color: var(--text-muted);
  padding-left: 1.1rem; position: relative; line-height: 1.5;
  transition: color var(--tr);
}
.svc-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 700; transition: color var(--tr); }
.svc-list--white li { color: rgba(255,255,255,0.85); }
.svc-list--white li::before { color: var(--gold); }


/* ==========================================================
   STATS BAR
   ========================================================== */
.stats-bar { background: var(--teal-medium); padding: 3.5rem 0; }
.stats-row {
  display: flex; flex-wrap: wrap; justify-content: space-around; gap: 2rem;
}
.stat-item { display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.stat-icon {
  width: 68px; height: 68px; object-fit: cover; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.4);
}
.stat-count { display: flex; align-items: baseline; gap: 2px; }
.stat-num   { font-family: var(--ff-orb); font-size: clamp(1.6rem, 2.5vw, 2.5rem); color: #fff; font-weight: 600; }
.stat-plus  { color: var(--gold); font-size: 1.4rem; font-weight: 700; }
.stat-label { color: rgba(255,255,255,0.85); font-size: 0.9rem; text-align: center; font-weight: 500; }


/* ==========================================================
   PIONEER SECTION
   ========================================================== */
.pioneer-inner {
  display: flex; gap: 5rem; flex-wrap: wrap; align-items: flex-start;
}
.pioneer-left { flex: 1 1 300px; }
.pioneer-left h2 { font-size: clamp(1.3rem, 1.8vw + 0.5rem, 1.9rem); margin-bottom: 1rem; }
.pioneer-left p  { color: var(--text-muted); line-height: 1.7; margin-bottom: 0.8rem; }
.pioneer-right   { flex: 1 1 300px; display: flex; gap: 1rem; }
.pioneer-col     { flex: 1; display: flex; flex-direction: column; gap: 1rem; }

.quality-card {
  border-radius: var(--radius); padding: 2rem 1.5rem;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.8rem;
}
.quality-card img { width: 48px; }
.quality-card h4  { font-size: 0.95rem; font-family: var(--ff-heading); font-weight: 500; }
.quality-card p   { font-size: 0.85rem; line-height: 1.5; }

.quality-card--teal { background: var(--teal); }
.quality-card--teal h4,
.quality-card--teal p  { color: #fff; }

.quality-card--navy { background: var(--navy); }
.quality-card--navy h4,
.quality-card--navy p  { color: #fff; }

.quality-card--light { background: var(--bg-teal); }
.quality-card--light h4 { color: var(--text); }
.quality-card--light p  { color: var(--text-muted); }

@media (max-width: 600px) {
  .pioneer-right { flex-direction: column; }
  .pioneer-col   { flex-direction: row; }
}


/* ==========================================================
   JOURNEY SECTION
   ========================================================== */
.journey-inner {
  display: flex; gap: 4.5rem; flex-wrap: wrap; align-items: flex-start;
}
.journey-left { flex: 1 1 280px; position: sticky; top: 100px; }
.journey-left h2 { font-size: clamp(1.4rem, 2vw + 0.5rem, 2rem); margin-bottom: 1rem; }
.journey-left p  { color: var(--text-muted); line-height: 1.7; margin-bottom: 2rem; }
.journey-btns    { display: flex; gap: 1rem; flex-wrap: wrap; }
.journey-right   { flex: 1 1 300px; display: flex; flex-direction: column; gap: 0; }

.journey-item {
  display: flex; gap: 1.2rem; padding: 1.4rem 1rem;
  border-left: 3px solid var(--border);
  transition: border-color var(--tr), background var(--tr);
  border-radius: 0 8px 8px 0;
}
.journey-item:hover { border-left-color: var(--teal); background: var(--bg-soft); }
.journey-num {
  font-family: var(--ff-orb); font-size: 0.75rem; font-weight: 600;
  color: var(--teal); background: var(--teal-light);
  border-radius: 8px; padding: 3px 8px; height: fit-content;
  white-space: nowrap; flex-shrink: 0; align-self: flex-start; margin-top: 0.2rem;
}
.journey-item h4 { font-family: var(--ff-heading); font-size: 0.97rem; color: var(--text); margin-bottom: 0.4rem; }
.journey-item p  { font-size: 0.87rem; color: var(--text-muted); line-height: 1.5; }

@media (max-width: 900px) {
  .journey-left { position: static; }
}


/* ==========================================================
   FAQ SECTION
   ========================================================== */
.faq-section { background: #f0f7f6; }
.faq-inner {
  display: flex; gap: 4rem; flex-wrap: wrap; align-items: flex-start;
}
.faq-left  { flex: 0 0 300px; min-width: 220px; }
.faq-left h2 { font-size: clamp(1.3rem, 1.6vw + 0.5rem, 1.8rem); margin-bottom: 0.8rem; }
.faq-left p  { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.faq-right { flex: 1 1 300px; display: flex; flex-direction: column; gap: 0.7rem; }

.faq-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: 10px; overflow: hidden;
  transition: box-shadow var(--tr);
}
.faq-item[open] { box-shadow: var(--shadow); border-color: var(--teal); }
.faq-item summary {
  cursor: pointer; padding: 1.1rem 1.3rem;
  font-weight: 600; color: var(--text); font-size: 0.93rem;
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 1.3rem; font-weight: 400;
  color: var(--teal); flex-shrink: 0;
}
.faq-item[open] summary { color: var(--teal); }
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  padding: 0 1.3rem 1.1rem; color: var(--text-muted);
  font-size: 0.88rem; line-height: 1.6;
}

@media (max-width: 800px) {
  .faq-inner { flex-direction: column; gap: 2rem; }
  .faq-left  { flex: none; }
}


/* ==========================================================
   TESTIMONIALS
   ========================================================== */
.tcard-row { display: flex; gap: 2rem; flex-wrap: wrap; }
.tcard {
  flex: 1 1 260px; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 1.2rem;
  transition: box-shadow var(--tr), transform var(--tr);
}
.tcard:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.tcard-stars { color: #e8a020; font-size: 1rem; letter-spacing: 2px; }
.tcard p     { color: var(--text-muted); font-size: 0.9rem; line-height: 1.65; font-style: italic; flex: 1; }
.tcard-author {
  display: flex; align-items: center; gap: 0.9rem;
  border-top: 1px solid var(--border); padding-top: 1rem;
}
.tcard-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--teal); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.82rem; flex-shrink: 0;
}
.tcard-author strong { display: block; font-size: 0.9rem; color: var(--text); }
.tcard-author span   { font-size: 0.78rem; color: var(--text-light); }


/* ==========================================================
   CTA BANNER
   ========================================================== */
.cta-banner {
  position: relative; min-height: 400px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden; padding: 4rem 1.5rem;
}
.cta-banner-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.cta-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(7,119,112,0.88), rgba(14,40,40,0.88));
}
.cta-banner-inner {
  position: relative; z-index: 2; max-width: 700px;
}
.cta-banner-inner h2 {
  color: #fff; font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 400; margin-bottom: 0.8rem;
}
.cta-banner-inner p  { color: rgba(255,255,255,0.85); margin-bottom: 1.8rem; line-height: 1.7; }


/* ==========================================================
   CONTACT SECTION
   ========================================================== */
.contact-inner {
  display: flex; gap: 4rem; flex-wrap: wrap; align-items: flex-start;
}
.contact-info { flex: 0 0 320px; min-width: 260px; }
.contact-info h2 { font-size: clamp(1.3rem, 2vw, 1.8rem); margin-bottom: 0.8rem; }
.contact-info > p { color: var(--text-muted); margin-bottom: 2rem; line-height: 1.7; }

.info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem 0; border-bottom: 1px solid var(--border);
}
.info-item:last-of-type { border-bottom: none; }
.info-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--teal-light); display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.info-icon img { width: 24px; }
.info-item h4 { font-size: 0.9rem; color: var(--text); margin-bottom: 0.2rem; font-family: var(--ff-body); font-weight: 600; }
.info-item a  { color: var(--teal); font-size: 0.9rem; }
.info-item p  { color: var(--text-muted); font-size: 0.88rem; line-height: 1.5; }

.contact-services { margin-top: 2rem; }
.contact-services h4 { font-family: var(--ff-body); font-weight: 700; margin-bottom: 1rem; font-size: 0.95rem; }
.contact-services ul { display: flex; flex-direction: column; gap: 0.5rem; }
.contact-services li { color: var(--text-muted); font-size: 0.88rem; }

/* Form */
.contact-form-wrap { flex: 1 1 320px; }
.contact-form-wrap h2 { font-size: clamp(1.3rem, 2vw, 1.8rem); margin-bottom: 0.5rem; }
.contact-form-wrap > p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.form-row .form-group { flex: 1 1 160px; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.88rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.75rem 1rem;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-family: var(--ff-body); font-size: 0.9rem; color: var(--text);
  background: var(--bg); transition: border-color var(--tr), box-shadow var(--tr);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(10,147,129,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select   { appearance: none; cursor: pointer; }
.req { color: var(--teal); }
.form-submit { width: 100%; margin-top: 0.5rem; }
.form-note   { font-size: 0.8rem; color: var(--text-light); }
.form-success {
  background: var(--teal-light); border: 1px solid var(--teal);
  color: var(--teal-dark); border-radius: 8px; padding: 1rem 1.2rem;
  font-size: 0.9rem;
}
.form-error {
  background: #fff0f0; border: 1px solid #e05a5a;
  color: #c0392b; border-radius: 8px; padding: 1rem 1.2rem;
  font-size: 0.9rem;
}
.form-error a { color: #c0392b; text-decoration: underline; }

@media (max-width: 900px) {
  .contact-inner { flex-direction: column; }
  .contact-info  { flex: none; width: 100%; }
}


/* ==========================================================
   FOOTER
   ========================================================== */
.footer { background: var(--navy); }
.footer-body { padding: 4rem 0; }
.footer-cols { display: flex; gap: 2.5rem; flex-wrap: wrap; align-items: flex-start; }
.footer-col  { flex: 1 1 160px; }

.footer-brand { flex: 1 1 220px; }
.footer-logo  { height: 70px; width: auto; border-radius: 10px; margin-bottom: 1rem; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 1.6; margin-bottom: 0.8rem; }
.footer-email { color: var(--teal-light); font-size: 0.88rem; transition: color var(--tr); }
.footer-email:hover { color: #fff; }

.footer-col h4 {
  color: #fff; font-family: var(--ff-heading); font-size: 0.9rem;
  font-weight: 500; margin-bottom: 1.2rem; letter-spacing: 0.3px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 0.88rem; transition: color var(--tr); }
.footer-col ul li a:hover { color: rgba(255,255,255,0.9); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.2rem 0;
}
.footer-bottom .container {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem;
}
.footer-bottom span { color: rgba(255,255,255,0.4); font-size: 0.82rem; }


/* ==========================================================
   SCROLL REVEAL (JS-driven)
   ========================================================== */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }


/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 900px) {
  .about-inner   { flex-direction: column; }
  .pioneer-inner { flex-direction: column; gap: 2.5rem; }
  .pioneer-right { flex-direction: column; }
  .pioneer-col   { flex-direction: row; }
}
@media (max-width: 700px) {
  .cards-row     { flex-direction: column; }
  .tcard-row     { flex-direction: column; }
  .stats-row     { gap: 2rem; }
  .hero          { min-height: 80vh; max-height: none; }
  .hero-text h1  { font-size: 1.8rem; }
  .industry-cols { max-width: 100%; border-radius: 0; }
  .industry-col  { min-width: 80px; padding: 1rem 0.5rem; }
  .industry-col span { font-size: 10px; }
  .footer-cols   { flex-direction: column; }
  .footer-bottom .container { justify-content: center; text-align: center; }
}
@media (max-width: 500px) {
  .pioneer-col   { flex-direction: column; }
}
