/* ===================================
   OrientLink IntraLogistics — style.css
   =================================== */

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

/* ---- Variables ---- */
:root {
  --navy:      #081B33;
  --navy-dark: #050F1E;
  --navy-mid:  #0D2A4F;
  --navy-light:#102540;
  --red:       #D71920;
  --red-dark:  #B01018;
  --white:     #FFFFFF;
  --light-bg:  #F4F6F9;
  --lighter-bg:#EEF1F6;
  --text-dark: #081B33;
  --text-gray: #4A5568;
  --text-light:#718096;
  --border:    #CBD5E0;
  --shadow:    0 4px 24px rgba(8,27,51,0.12);
  --shadow-lg: 0 8px 40px rgba(8,27,51,0.18);
}

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

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

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; font-weight: 700; }

p { line-height: 1.75; }

/* ---- Layout ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

section { padding: 5rem 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 2px;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(215,25,32,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

/* ---- Navigation ---- */
#site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: var(--navy);
  border-bottom: 3px solid var(--red);
  transition: box-shadow 0.3s;
}
#site-nav.scrolled {
  box-shadow: 0 4px 32px rgba(5,15,30,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding-inline: 1.25rem;
  max-width: 1200px;
  margin-inline: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-img {
  display: block;
}

.nav-links {
  display: none;
  gap: 0.25rem;
}
@media (min-width: 1024px) {
  .nav-links { display: flex; }
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 0.85rem;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.nav-links a.active {
  color: var(--red);
  background: rgba(215,25,32,0.1);
}

.nav-cta {
  display: none;
}
@media (min-width: 1024px) {
  .nav-cta {
    display: inline-flex;
    background: var(--red);
    color: var(--white);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.6rem 1.25rem;
    border-radius: 2px;
    transition: background 0.2s, transform 0.2s;
  }
  .nav-cta:hover {
    background: var(--red-dark);
    transform: translateY(-1px);
  }
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
@media (min-width: 1024px) {
  .nav-hamburger { display: none; }
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--navy-dark);
  padding: 1rem 1.25rem 1.5rem;
}
.mobile-menu.open { display: flex; }
@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}
.mobile-menu a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--red); }
.mobile-menu .mobile-cta {
  margin-top: 1rem;
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 0.85rem;
  border-radius: 2px;
  font-weight: 700;
}

/* ---- Hero Sections ---- */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(8,27,51,0.98) 0%, rgba(13,42,79,0.85) 60%, rgba(8,27,51,0.92) 100%);
  z-index: 1;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 0;
}
.hero-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--red);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin-inline: auto;
  padding: 4rem 1.25rem;
  width: 100%;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.25rem;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
}
.hero h1 { color: var(--white); margin-bottom: 1.25rem; max-width: 800px; }
.hero-lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  margin-bottom: 2.5rem;
  font-weight: 400;
  line-height: 1.8;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Page hero (inner pages — shorter) */
.page-hero {
  min-height: 38vh;
  padding-top: 72px;
}
.page-hero .hero-content { padding: 3rem 1.25rem 2.5rem; }
.page-hero h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }

/* Hero geo shape */
.hero-shape {
  position: absolute;
  right: -5%;
  bottom: -10%;
  width: 50vw;
  max-width: 700px;
  opacity: 0.06;
  z-index: 1;
}

/* ---- Stats Bar ---- */
.stats-bar {
  background: var(--red);
  padding: 2rem 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .stats-inner { grid-template-columns: repeat(4, 1fr); }
}
.stat-item {
  text-align: center;
  padding: 1.25rem 1rem;
  color: var(--white);
}
.stat-number {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 0.4rem;
}

/* ---- Section Labels ---- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.75rem;
}
.section-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
}

.section-header { margin-bottom: 3rem; }
.section-header h2 { color: var(--navy); margin-bottom: 0.75rem; }
.section-header p { color: var(--text-gray); max-width: 580px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin-inline: auto; }
.section-header.light h2 { color: var(--white); }
.section-header.light p { color: rgba(255,255,255,0.7); }

/* ---- Cards ---- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--red);
}
.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(215,25,32,0.08);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--red);
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { color: var(--navy); margin-bottom: 0.75rem; }
.card p { color: var(--text-gray); font-size: 0.92rem; }

/* ---- Grid Layouts ---- */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* ---- Solutions Section ---- */
.solutions-section { background: var(--light-bg); }

/* ---- Why Us Section ---- */
.why-us { background: var(--navy); }
.why-item {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  transition: border-color 0.3s, background 0.3s;
}
.why-item:hover {
  border-color: var(--red);
  background: rgba(215,25,32,0.05);
}
.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--red);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.why-icon svg { width: 24px; height: 24px; }
.why-item h4 { color: var(--white); margin-bottom: 0.35rem; }
.why-item p { color: rgba(255,255,255,0.65); font-size: 0.88rem; }

/* ---- CTA Banner ---- */
.cta-banner {
  background: var(--red);
  padding: 4rem 0;
}
.cta-banner-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .cta-banner-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cta-banner h2 { color: var(--white); font-size: clamp(1.4rem, 3vw, 2rem); margin-bottom: 0.5rem; }
.cta-banner p { color: rgba(255,255,255,0.82); font-size: 1rem; }

/* ---- Products Page ---- */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.product-card-header {
  background: var(--navy);
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.product-card-header svg {
  width: 36px;
  height: 36px;
  color: var(--red);
  flex-shrink: 0;
}
.product-card-header h3 { color: var(--white); font-size: 1.1rem; }
.product-card-body { padding: 1.5rem 2rem 2rem; }
.product-list { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.product-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-gray);
}
.product-list li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- Services Page ---- */
.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}
.service-row:last-child { border-bottom: none; }
@media (min-width: 768px) {
  .service-row {
    grid-template-columns: 1fr 2fr;
    align-items: start;
  }
  .service-row.reverse { direction: rtl; }
  .service-row.reverse > * { direction: ltr; }
}
.service-number {
  font-size: 5rem;
  font-weight: 800;
  color: rgba(8,27,51,0.06);
  line-height: 1;
  letter-spacing: -0.05em;
}
.service-title-group {}
.service-title-group .section-eyebrow { margin-bottom: 0.5rem; }
.service-title-group h3 { color: var(--navy); font-size: 1.5rem; margin-bottom: 0.75rem; }
.service-title-group p { color: var(--text-gray); margin-bottom: 1.25rem; }
.service-features { display: flex; flex-direction: column; gap: 0.6rem; }
.service-feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 600;
}
.service-feature::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- Commitment Box ---- */
.commitment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .commitment-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .commitment-grid { grid-template-columns: repeat(4, 1fr); }
}
.commitment-item {
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  padding: 2rem 1.5rem;
  text-align: center;
}
.commitment-value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 0.4rem;
}
.commitment-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.8;
}

/* ---- About Page ---- */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .about-intro-grid { grid-template-columns: 1fr 1fr; }
}
.about-graphic {
  background: var(--navy);
  border-radius: 4px;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  min-height: 360px;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-graphic::before {
  content: '';
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: var(--red);
  opacity: 0.08;
  border-radius: 50%;
}
.about-graphic-stat {
  border-left: 3px solid var(--red);
  padding-left: 1rem;
}
.about-graphic-stat .value {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.about-graphic-stat .label {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.value-card {
  background: var(--light-bg);
  border-radius: 4px;
  padding: 2rem;
  border-left: 3px solid var(--red);
  transition: box-shadow 0.3s;
}
.value-card:hover { box-shadow: var(--shadow); }
.value-card h4 { color: var(--navy); margin-bottom: 0.5rem; font-size: 1rem; }
.value-card p { color: var(--text-gray); font-size: 0.88rem; }

.cert-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .cert-grid { grid-template-columns: repeat(4, 1fr); }
}
.cert-badge {
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.cert-badge svg { width: 32px; height: 32px; color: var(--red); }
.cert-badge span { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; }

.timeline { position: relative; padding: 1rem 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 22px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}
@media (min-width: 768px) {
  .timeline::before { left: 50%; transform: translateX(-50%); }
}
.timeline-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  position: relative;
}
@media (min-width: 768px) {
  .timeline-item { width: 50%; margin-left: auto; }
  .timeline-item:nth-child(even) { margin-left: 0; flex-direction: row-reverse; }
}
.timeline-dot {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 0.75rem;
  z-index: 1;
}
.timeline-content {
  padding-top: 0.4rem;
}
.timeline-content h4 { color: var(--navy); margin-bottom: 0.3rem; }
.timeline-content p { color: var(--text-gray); font-size: 0.88rem; }

/* ---- Contact Page ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 2fr 1fr; }
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 2px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.contact-info-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  padding: 2rem;
  height: fit-content;
}
.contact-info-card h3 { font-size: 1.2rem; margin-bottom: 1.5rem; }
.contact-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.contact-detail-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(215,25,32,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail-text strong {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 0.2rem;
}
.contact-detail-text span {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
}
.contact-detail-text a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}
.contact-detail-text a:hover { color: var(--red); }

.map-container {
  border-radius: 4px;
  overflow: hidden;
  height: 320px;
  margin-top: 2rem;
}
.map-container iframe { width: 100%; height: 100%; border: none; }

.form-success {
  display: none;
  background: #d1fae5;
  border: 1.5px solid #059669;
  color: #065f46;
  border-radius: 4px;
  padding: 1rem 1.25rem;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

/* ---- Footer ---- */
footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}
@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-logo-img { display: block; margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h5 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--red); }
.footer-col .contact-line {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.85rem;
}
.footer-col .contact-line svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  max-width: 1200px;
  margin-inline: auto;
  padding: 1.5rem 1.25rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}
@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-bottom a { color: rgba(255,255,255,0.5); font-size: 0.8rem; transition: color 0.2s; }
.footer-bottom a:hover { color: var(--red); }

/* ---- WhatsApp Floating Button ---- */
.whatsapp-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 58px;
  height: 58px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.whatsapp-btn svg { width: 30px; height: 30px; }

/* ---- Fade-in Animations ---- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ---- Divider ---- */
.divider { height: 3px; background: var(--red); width: 48px; margin: 1rem 0; }

/* ---- Banner strip ---- */
.gccc-strip {
  background: var(--navy-mid);
  padding: 0.85rem 0;
}
.gccc-strip-inner {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.gccc-strip span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.gccc-strip strong {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
}

/* ---- Light / Dark sections ---- */
.bg-light { background: var(--light-bg); }
.bg-navy { background: var(--navy); }
.bg-white { background: var(--white); }

/* ---- Breadcrumb ---- */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: rgba(255,255,255,0.25); }
.breadcrumb strong { color: var(--red); }

/* ---- Solutions detail (solutions page) ---- */
.solution-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
}
.solution-block:last-child { border-bottom: none; }
@media (min-width: 1024px) {
  .solution-block {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .solution-block.reverse .solution-text { order: -1; }
}
.solution-graphic {
  background: var(--navy);
  border-radius: 4px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.solution-graphic::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 30px 30px;
}
.solution-graphic-icon {
  position: relative;
  z-index: 1;
  color: var(--red);
  opacity: 0.5;
}
.solution-graphic-icon svg { width: 120px; height: 120px; }
.solution-text h3 { color: var(--navy); font-size: 1.6rem; margin-bottom: 0.75rem; }
.solution-text p { color: var(--text-gray); margin-bottom: 1.5rem; line-height: 1.8; }
.feature-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-weight: 600;
}
.feature-item::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* LOGO SIZE OVERRIDES - DO NOT EDIT */
.logo img,
.navbar-brand img,
.nav-logo img {
    height: 90px !important;
    width: auto !important;
    max-height: none !important;
    min-height: 90px !important;
    display: block !important;
}

footer img,
.footer-logo img,
.footer .logo img {
    height: 80px !important;
    width: auto !important;
    max-height: none !important;
    min-height: 80px !important;
    display: block !important;
}

@media (max-width: 768px) {
    .logo img,
    .navbar-brand img,
    .nav-logo img {
        height: 65px !important;
        width: auto !important;
        min-height: 65px !important;
    }

    footer img,
    .footer-logo img,
    .footer .logo img {
        height: 60px !important;
        width: auto !important;
        min-height: 60px !important;
    }
}

.logo-img {
    height: 90px !important;
    width: auto !important;
    max-height: none !important;
    min-height: 90px !important;
    display: block !important;
}

/* SERVICE SECTION ICONS */
.service-card i[data-lucide],
.service-block-icon-wrap i[data-lucide] {
    width: 48px !important;
    height: 48px !important;
    stroke: #D71920 !important;
    stroke-width: 1.5 !important;
    margin-bottom: 16px !important;
    display: block !important;
}

/* WHY CHOOSE SECTION ICONS */
.why-card i[data-lucide],
.why-card-icon i[data-lucide] {
    width: 44px !important;
    height: 44px !important;
    stroke: #D71920 !important;
    stroke-width: 1.5 !important;
    margin-bottom: 16px !important;
    display: block !important;
}
