/* ═══════════════════════════════════════════
   CSS VARIABLES — Exact match to all pages
═══════════════════════════════════════════ */
:root {
  --primary:        #1A8C6E;
  --primary-light:  #E6F5F1;
  --primary-mid:    #2DB892;
  --primary-dark:   #0F6E56;
  --accent:         #FF6B35;
  --accent-light:   #FFF0EB;
  --blue:           #3A7BD5;
  --blue-light:     #EBF3FF;
  --text-dark:      #1C2B3A;
  --text-mid:       #4A5568;
  --text-light:     #718096;
  --bg-page:        #F7FAFA;
  --bg-white:       #FFFFFF;
  --bg-soft:        #F0F9F6;
  --border:         #D9ECE7;
  --border-light:   #EEF6F4;
  --shadow-sm:      0 2px 8px rgba(26,140,110,0.08);
  --shadow-md:      0 4px 20px rgba(26,140,110,0.12);
  --shadow-lg:      0 8px 40px rgba(26,140,110,0.15);
  --radius-sm:      8px;
  --radius-md:      12px;
  --radius-lg:      18px;
  --radius-xl:      24px;
  --font-main:      'Nunito', sans-serif;
  --font-display:   'Playfair Display', serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-main); background: var(--bg-page); color: var(--text-dark); line-height: 1.6; }


/* ═══════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════ */
.breadcrumb-bar { background: var(--bg-white); border-bottom: 1px solid var(--border-light); padding: 11px 24px; }
.breadcrumb-inner { max-width: 1180px; margin: 0 auto; display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-light); }
.breadcrumb-inner a { color: var(--text-light); text-decoration: none; transition: color 0.2s; }
.breadcrumb-inner a:hover { color: var(--primary); }
.breadcrumb-inner .sep { color: var(--border); }
.breadcrumb-inner .current { color: var(--primary); font-weight: 700; }

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.about-hero {
  background: linear-gradient(135deg, #E8F8F3 0%, #F0FBF7 55%, #EBF3FF 100%);
  padding: 72px 24px 0;
  border-bottom: 1.5px solid var(--border-light);
  overflow: hidden;
  position: relative;
}
/* Decorative circles */
.about-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,140,110,0.06) 0%, transparent 70%);
  top: -150px; right: -100px;
  pointer-events: none;
}
.about-hero::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,107,53,0.05) 0%, transparent 70%);
  bottom: 0; left: 10%;
  pointer-events: none;
}
.hero-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  position: relative; z-index: 1;
}
.hero-text { padding-bottom: 56px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--primary-light); color: var(--primary);
  font-size: 12px; font-weight: 800; padding: 6px 16px;
  border-radius: 40px; border: 1.5px solid var(--border);
  text-transform: uppercase; letter-spacing: 0.7px;
  margin-bottom: 18px;
}
.hero-eyebrow::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.5;transform:scale(1.4);} }
.hero-text h1 {
  font-family: var(--font-display);
  font-size: 48px; line-height: 1.15;
  color: var(--text-dark); margin-bottom: 20px;
}
.hero-text h1 em { font-style: normal; color: var(--primary); }
.hero-text p {
  font-size: 16px; color: var(--text-mid); line-height: 1.8;
  max-width: 520px; margin-bottom: 32px;
}
.hero-ctas { display: flex; gap: 14px; align-items: center; margin-bottom: 44px; }
.btn-primary {
  background: var(--primary); color: white;
  padding: 14px 30px; border-radius: 40px;
  font-size: 15px; font-weight: 800; text-decoration: none;
  transition: all 0.2s; box-shadow: 0 4px 16px rgba(26,140,110,0.3);
  display: flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(26,140,110,0.36); }
.btn-outline {
  background: white; color: var(--primary);
  padding: 13px 28px; border-radius: 40px;
  font-size: 15px; font-weight: 800; text-decoration: none;
  border: 2px solid var(--primary); transition: all 0.2s;
}
.btn-outline:hover { background: var(--primary-light); }
.hero-founded {
  display: inline-flex; align-items: center; gap: 10px;
  background: white; border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  padding: 12px 18px; box-shadow: var(--shadow-sm);
}
.hf-icon { font-size: 28px; }
.hf-label { font-size: 11px; color: var(--text-light); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.hf-val { font-size: 15px; font-weight: 800; color: var(--text-dark); margin-top: 1px; }

/* Hero visual */
.hero-visual { display: flex; flex-direction: column; gap: 0; align-items: center; }
.hero-card-stack { position: relative; width: 100%; height: 360px; }
.hc-main {
  width: 100%; background: white; border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-light); box-shadow: var(--shadow-lg);
  padding: 28px; overflow: hidden; position: absolute; top: 0;
}
.hc-main-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.hc-logo-mini { width: 44px; height: 44px; background: var(--primary); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: white; font-size: 20px; }
.hc-main-title { font-family: var(--font-display); font-size: 18px; color: var(--text-dark); font-weight: 700; }
.hc-main-sub { font-size: 12px; color: var(--text-light); font-weight: 600; margin-top: 2px; }
.services-mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 16px; }
.svc-mini { background: var(--bg-soft); border-radius: var(--radius-sm); border: 1px solid var(--border-light); padding: 10px 6px; text-align: center; }
.svc-mini .sm-icon { font-size: 22px; margin-bottom: 4px; }
.svc-mini .sm-name { font-size: 9px; font-weight: 700; color: var(--text-mid); line-height: 1.3; }
.hc-bottom-row { display: flex; gap: 8px; }
.hcb-item { flex: 1; background: var(--primary-light); border-radius: var(--radius-sm); border: 1px solid var(--border); padding: 8px 10px; text-align: center; }
.hcb-num { font-family: var(--font-display); font-size: 18px; color: var(--primary); font-weight: 700; line-height: 1; }
.hcb-lbl { font-size: 9px; color: var(--text-light); font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; margin-top: 2px; }
/* floating cards */
.float-card {
  position: absolute; background: white; border-radius: var(--radius-md);
  padding: 10px 14px; box-shadow: 0 4px 18px rgba(0,0,0,0.12);
  border: 1px solid var(--border-light);
  display: flex; align-items: center; gap: 8px; z-index: 10;
}
.float-card.fc-1 { bottom: -20px; left: -20px; }
.float-card.fc-2 { top: 40px; right: -24px; }
.float-card .fc-icon { font-size: 22px; }
.float-card .fc-text { font-size: 11px; font-weight: 800; color: var(--text-dark); }
.float-card .fc-sub { font-size: 10px; color: var(--text-light); font-weight: 600; }

/* ═══════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════ */
.stats-strip {
  background: var(--primary);
  padding: 36px 24px;
}
.stats-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 1px;
}
.stat-item { text-align: center; padding: 0 20px; position: relative; }
.stat-item + .stat-item::before {
  content: ''; position: absolute; left: 0; top: 10%; bottom: 10%;
  width: 1px; background: rgba(255,255,255,0.2);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 38px; font-weight: 700; color: white; line-height: 1;
  margin-bottom: 4px;
}
.stat-num span { font-size: 22px; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 600; }
.stat-icon { font-size: 22px; margin-bottom: 6px; }

/* ═══════════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════════ */
.section-wrap { padding: 80px 24px; }
.section-inner { max-width: 1180px; margin: 0 auto; }
.section-tag {
  display: inline-block; background: var(--primary-light);
  color: var(--primary); font-size: 12px; font-weight: 800;
  padding: 5px 16px; border-radius: 40px;
  text-transform: uppercase; letter-spacing: 0.7px;
  margin-bottom: 10px; border: 1px solid var(--border);
}
.section-tag.orange { background: var(--accent-light); color: var(--accent); border-color: #FFD5C4; }
.section-tag.blue { background: var(--blue-light); color: var(--blue); border-color: #C5DCFF; }
.section-title {
  font-family: var(--font-display);
  font-size: 38px; line-height: 1.2;
  color: var(--text-dark); margin-bottom: 10px;
}
.section-title em { font-style: normal; color: var(--primary); }
.section-desc { font-size: 15px; color: var(--text-light); max-width: 520px; line-height: 1.7; }

/* ═══════════════════════════════════════════
   WHO WE ARE
═══════════════════════════════════════════ */
.who-wrap { background: var(--bg-white); }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.who-text .section-desc { max-width: 100%; margin-bottom: 20px; }
.who-text p { font-size: 14px; color: var(--text-mid); line-height: 1.85; margin-bottom: 14px; }
.who-text p strong { color: var(--text-dark); font-weight: 700; }
.who-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 24px; }
.wh-item {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px 14px;
  background: var(--bg-soft); border-radius: var(--radius-md);
  border: 1.5px solid var(--border-light);
  transition: all 0.2s;
}
.wh-item:hover { border-color: var(--border); box-shadow: var(--shadow-sm); }
.wh-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.wh-title { font-size: 13px; font-weight: 800; color: var(--text-dark); margin-bottom: 2px; }
.wh-sub { font-size: 11px; color: var(--text-light); line-height: 1.5; }

/* Who visual */
.who-visual { position: relative; }
.who-img-card {
  background: linear-gradient(135deg, var(--primary-light) 0%, #D4F0E8 100%);
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border);
  padding: 36px 28px;
  text-align: center; position: relative;
  overflow: hidden;
}
.who-img-card::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(26,140,110,0.08);
}
.wi-big-emoji { font-size: 80px; margin-bottom: 14px; position: relative; z-index: 1; }
.wi-tagline { font-family: var(--font-display); font-size: 22px; color: var(--primary); font-weight: 700; margin-bottom: 6px; position: relative; z-index: 1; }
.wi-sub { font-size: 13px; color: var(--text-mid); line-height: 1.6; position: relative; z-index: 1; }
.wi-since { display: inline-block; background: var(--primary); color: white; font-size: 12px; font-weight: 800; padding: 6px 18px; border-radius: 20px; margin-top: 14px; position: relative; z-index: 1; }
/* floating badge on visual */
.who-float {
  position: absolute;
  background: white; border-radius: var(--radius-md);
  padding: 12px 16px; box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border-light);
  display: flex; align-items: center; gap: 10px;
}
.who-float.wf1 { bottom: -16px; left: -16px; }
.who-float.wf2 { top: -16px; right: -16px; }
.who-float .wf-icon { font-size: 24px; }
.who-float .wf-val { font-family: var(--font-display); font-size: 18px; color: var(--primary); font-weight: 700; line-height: 1; }
.who-float .wf-label { font-size: 11px; color: var(--text-light); font-weight: 600; }

/* ═══════════════════════════════════════════
   MISSION & VISION
═══════════════════════════════════════════ */
.mv-wrap { background: var(--bg-soft); }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.mv-card {
  border-radius: var(--radius-xl); padding: 36px 32px;
  border: 1.5px solid var(--border); position: relative; overflow: hidden;
  transition: all 0.3s;
}
.mv-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.mv-card.mission { background: var(--primary); }
.mv-card.vision  { background: var(--bg-white); }
.mv-card::before {
  content: ''; position: absolute;
  width: 220px; height: 220px; border-radius: 50%;
  pointer-events: none;
}
.mv-card.mission::before { background: rgba(255,255,255,0.06); top: -80px; right: -60px; }
.mv-card.vision::before  { background: rgba(26,140,110,0.05); bottom: -80px; left: -60px; }

.mv-top { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.mv-icon-wrap {
  width: 56px; height: 56px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0;
}
.mission .mv-icon-wrap { background: rgba(255,255,255,0.15); }
.vision  .mv-icon-wrap { background: var(--primary-light); }
.mv-label { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.mission .mv-label { color: rgba(255,255,255,0.7); }
.vision  .mv-label  { color: var(--primary); }
.mv-heading { font-family: var(--font-display); font-size: 26px; font-weight: 700; }
.mission .mv-heading { color: white; }
.vision  .mv-heading { color: var(--text-dark); }
.mv-body { font-size: 14px; line-height: 1.85; margin-bottom: 24px; }
.mission .mv-body { color: rgba(255,255,255,0.85); }
.vision  .mv-body  { color: var(--text-mid); }
.mv-points { display: flex; flex-direction: column; gap: 10px; }
.mv-point { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; line-height: 1.6; }
.mission .mv-point { color: rgba(255,255,255,0.9); }
.vision  .mv-point  { color: var(--text-mid); }
.mv-point .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; margin-top: 5px; }
.mission .dot { background: rgba(255,255,255,0.6); }
.vision  .dot { background: var(--primary); }

/* Values strip under M&V */
.values-strip { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-top: 24px; }
.val-card {
  background: var(--bg-white); border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-light); padding: 22px 16px;
  text-align: center; transition: all 0.25s;
}
.val-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); background: var(--primary-light); }
.val-icon { font-size: 32px; margin-bottom: 10px; }
.val-title { font-size: 14px; font-weight: 800; color: var(--text-dark); margin-bottom: 5px; }
.val-desc { font-size: 12px; color: var(--text-light); line-height: 1.6; }

/* ═══════════════════════════════════════════
   WHAT WE DO
═══════════════════════════════════════════ */
.wwd-wrap { background: var(--bg-white); }
.services-big-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 48px; }
.svc-card {
  background: var(--bg-white); border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-light);
  padding: 28px 22px; text-align: center;
  transition: all 0.3s; cursor: default; position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: var(--primary); transform: scaleX(0);
  transition: transform 0.3s; transform-origin: left;
}
.svc-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-card-icon {
  width: 68px; height: 68px; border-radius: var(--radius-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 30px; margin: 0 auto 16px;
  transition: all 0.3s;
}
.svc-card:hover .svc-card-icon { background: var(--primary) !important; transform: scale(1.08); }
.svc-card-name { font-size: 15px; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; }
.svc-card-desc { font-size: 12px; color: var(--text-light); line-height: 1.65; margin-bottom: 14px; }
.svc-card-tags { display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; }
.svc-tag { font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 10px; background: var(--bg-soft); border: 1px solid var(--border-light); color: var(--text-mid); }

/* Service type row (Buy / Rent / Refill) */
.service-types { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 24px; }
.st-card {
  border-radius: var(--radius-xl); padding: 28px 24px;
  display: flex; gap: 18px; align-items: flex-start;
  border: 1.5px solid var(--border-light); transition: all 0.25s;
}
.st-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.st-card.buy-card   { background: linear-gradient(135deg, var(--primary-light), #D4F0E8); border-color: var(--border); }
.st-card.rent-card  { background: linear-gradient(135deg, var(--accent-light), #FFE4D4); border-color: #FFD5C4; }
.st-card.refill-card{ background: linear-gradient(135deg, var(--blue-light), #D8ECFF); border-color: #C5DCFF; }
.st-icon { font-size: 40px; flex-shrink: 0; }
.st-title { font-size: 18px; font-weight: 800; color: var(--text-dark); margin-bottom: 6px; font-family: var(--font-display); }
.st-desc { font-size: 13px; color: var(--text-mid); line-height: 1.7; margin-bottom: 12px; }
.st-link { font-size: 13px; font-weight: 800; text-decoration: none; display: inline-flex; align-items: center; gap: 5px; transition: gap 0.2s; }
.buy-card   .st-link { color: var(--primary); }
.rent-card  .st-link { color: var(--accent); }
.refill-card .st-link { color: var(--blue); }
.st-link:hover { gap: 8px; }

/* ═══════════════════════════════════════════
   WHY CHOOSE US
═══════════════════════════════════════════ */
.wcu-wrap { background: var(--bg-soft); }
.wcu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.wcu-items { display: flex; flex-direction: column; gap: 16px; }
.wcu-item {
  display: flex; gap: 16px; padding: 20px 22px;
  background: var(--bg-white); border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-light); transition: all 0.25s;
  cursor: default;
}
.wcu-item:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.wcu-num {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--primary-light); border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: var(--primary);
  flex-shrink: 0;
}
.wcu-item:hover .wcu-num { background: var(--primary); color: white; border-color: var(--primary); }
.wcu-title { font-size: 15px; font-weight: 800; color: var(--text-dark); margin-bottom: 3px; }
.wcu-desc { font-size: 13px; color: var(--text-mid); line-height: 1.6; }

.wcu-visual { position: relative; }
.wcu-main-card {
  background: var(--bg-white); border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-light); padding: 32px;
  box-shadow: var(--shadow-lg);
}
.wcm-header { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid var(--border-light); }
.wcm-avatar { width: 50px; height: 50px; background: var(--primary); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; color: white; }
.wcm-name { font-size: 15px; font-weight: 800; color: var(--text-dark); }
.wcm-role { font-size: 12px; color: var(--text-light); font-weight: 600; }
.wcm-quote { font-size: 14px; color: var(--text-mid); line-height: 1.8; font-style: italic; margin-bottom: 20px; padding: 16px; background: var(--bg-soft); border-radius: var(--radius-md); border-left: 3px solid var(--primary); }
.wcm-rating { display: flex; align-items: center; gap: 8px; }
.wcm-stars { color: #F5A623; font-size: 18px; }
.wcm-rating-text { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.wcm-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.wcs-item { background: var(--bg-soft); border-radius: var(--radius-md); border: 1px solid var(--border-light); padding: 14px; text-align: center; }
.wcs-num { font-family: var(--font-display); font-size: 24px; color: var(--primary); font-weight: 700; line-height: 1; }
.wcs-label { font-size: 11px; color: var(--text-light); font-weight: 600; margin-top: 3px; }

/* ═══════════════════════════════════════════
   TEAM SECTION
═══════════════════════════════════════════ */
.team-wrap { background: var(--bg-white); }
.team-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 48px; }
.team-card {
  background: var(--bg-white); border-radius: var(--radius-xl);
  border: 1.5px solid var(--border-light); overflow: hidden; text-align: center;
  transition: all 0.3s;
}
.team-card:hover { border-color: var(--border); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.team-avatar-wrap {
  height: 160px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.team-avatar {
  width: 90px; height: 90px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px; font-weight: 800; border: 3px solid white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12); z-index: 1;
}
.team-body { padding: 18px 16px 20px; }
.team-name { font-size: 15px; font-weight: 800; color: var(--text-dark); margin-bottom: 3px; }
.team-role { font-size: 12px; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.team-bio { font-size: 12px; color: var(--text-light); line-height: 1.6; margin-bottom: 14px; }
.team-socials { display: flex; justify-content: center; gap: 8px; }
.ts-icon { width: 30px; height: 30px; border-radius: 8px; background: var(--bg-soft); border: 1px solid var(--border-light); display: flex; align-items: center; justify-content: center; font-size: 13px; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.ts-icon:hover { background: var(--primary); border-color: var(--primary); }

/* ═══════════════════════════════════════════
   TIMELINE / JOURNEY
═══════════════════════════════════════════ */
.journey-wrap { background: var(--bg-soft); }
.timeline { position: relative; margin-top: 52px; }
.timeline::before {
  content: ''; position: absolute;
  left: 50%; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, var(--primary) 0%, var(--border) 100%);
  transform: translateX(-50%);
}
.tl-item { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0; align-items: center; margin-bottom: 40px; }
.tl-item:last-child { margin-bottom: 0; }
.tl-content {
  background: var(--bg-white); border-radius: var(--radius-lg);
  border: 1.5px solid var(--border-light); padding: 22px 24px;
  transition: all 0.25s;
}
.tl-content:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.tl-content.right { grid-column: 3; }
.tl-content.left  { grid-column: 1; text-align: right; }
.tl-dot {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--primary); border: 4px solid var(--bg-soft);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; margin: 0 auto; position: relative; z-index: 2;
  box-shadow: 0 0 0 4px rgba(26,140,110,0.15);
}
.tl-year { font-size: 11px; font-weight: 800; color: var(--primary); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 4px; }
.tl-title { font-size: 15px; font-weight: 800; color: var(--text-dark); margin-bottom: 5px; }
.tl-text { font-size: 13px; color: var(--text-mid); line-height: 1.65; }

/* ═══════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════ */
.cta-wrap {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative; overflow: hidden;
}
.cta-wrap::before {
  content: ''; position: absolute;
  width: 400px; height: 400px; border-radius: 50%;
  background: rgba(255,255,255,0.05);
  top: -150px; left: -100px; pointer-events: none;
}
.cta-wrap::after {
  content: ''; position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -100px; right: 5%; pointer-events: none;
}
.cta-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.cta-tag { display: inline-block; background: rgba(255,255,255,0.15); color: white; font-size: 12px; font-weight: 800; padding: 5px 16px; border-radius: 40px; text-transform: uppercase; letter-spacing: 0.7px; margin-bottom: 16px; border: 1px solid rgba(255,255,255,0.2); }
.cta-wrap h2 { font-family: var(--font-display); font-size: 40px; color: white; margin-bottom: 14px; line-height: 1.2; }
.cta-wrap p { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.7; margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-call {
  display: flex; align-items: center; gap: 10px;
  background: white; color: var(--primary);
  padding: 15px 32px; border-radius: 40px;
  font-size: 15px; font-weight: 800; text-decoration: none;
  transition: all 0.2s; box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-cta-call:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
.btn-cta-wa {
  display: flex; align-items: center; gap: 10px;
  background: #25D366; color: white;
  padding: 15px 32px; border-radius: 40px;
  font-size: 15px; font-weight: 800; text-decoration: none;
  transition: all 0.2s; box-shadow: 0 4px 16px rgba(37,211,102,0.35);
}
.btn-cta-wa:hover { background: #1ebe5d; transform: translateY(-2px); }
.btn-cta-products {
  display: flex; align-items: center; gap: 10px;
  background: transparent; color: white;
  padding: 15px 28px; border-radius: 40px;
  font-size: 15px; font-weight: 800; text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5); transition: all 0.2s;
}
.btn-cta-products:hover { background: rgba(255,255,255,0.1); border-color: white; }
.cta-info-row { display: flex; align-items: center; justify-content: center; gap: 28px; margin-top: 28px; flex-wrap: wrap; }
.cta-info-item { display: flex; align-items: center; gap: 7px; font-size: 13px; color: rgba(255,255,255,0.8); font-weight: 600; }
.cta-info-item .dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.5); }

@media (max-width: 1024px) {

  /* Navbar */
  .navbar { gap: 16px; padding: 0 18px; }
  nav a { font-size: 12.5px; padding: 5px 9px; }
  .search-bar { width: 170px; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-text { padding-bottom: 0; }
  .hero-text h1 { font-size: 40px; }
  .hero-visual { max-width: 560px; margin: 0 auto; width: 100%; }
  .hero-card-stack { height: auto; min-height: 320px; }
  .about-hero { padding: 52px 20px 40px; }
  .float-card.fc-1 { left: 0; bottom: -14px; }
  .float-card.fc-2 { right: 0; top: 14px; }

  /* Stats */
  .stats-inner { grid-template-columns: repeat(3, 1fr); gap: 0; }
  .stat-item:nth-child(4),
  .stat-item:nth-child(5) { margin-top: 24px; }

  /* Who We Are */
  .who-grid { grid-template-columns: 1fr; gap: 36px; }
  .who-visual { max-width: 520px; margin: 0 auto; width: 100%; }

  /* Mission & Vision */
  .mv-grid { grid-template-columns: 1fr; gap: 20px; }
  .values-strip { grid-template-columns: repeat(2, 1fr); }

  /* What We Do */
  .services-big-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .service-types { grid-template-columns: 1fr; gap: 16px; }

  /* Why Choose Us */
  .wcu-grid { grid-template-columns: 1fr; gap: 36px; }
  .wcu-visual { max-width: 540px; margin: 0 auto; width: 100%; }

  /* Team */
  .team-grid { grid-template-columns: repeat(2, 1fr); }

  /* Timeline */
  .timeline::before { left: 28px; }
  .tl-item { grid-template-columns: 60px 1fr; gap: 0; }
  .tl-content.left  { grid-column: 2; text-align: left; }
  .tl-content.right { grid-column: 2; }
  .tl-dot { margin: 0; }


  /* Section */
  .section-title { font-size: 32px; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — MOBILE  (max-width: 768px)
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {

    /* ── Breadcrumb ── */
  .breadcrumb-inner { font-size: 12px; }

  /* ── Hero ── */
  .about-hero { padding: 36px 16px 32px; }
  .hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-text h1 { font-size: 30px; line-height: 1.2; }
  .hero-text p { font-size: 14px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn-primary,
  .btn-outline { justify-content: center; padding: 13px 20px; font-size: 14px; }
  .hero-founded { flex-direction: row; }
  .hero-visual { display: none; } /* hide complex card on mobile */

  /* ── Stats ── */
  .stats-strip { padding: 24px 16px; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .stat-item { padding: 0 10px; }
  .stat-item + .stat-item::before { display: none; }
  .stat-num { font-size: 28px; }
  .stat-num span { font-size: 18px; }
  .stat-label { font-size: 12px; }
  .stat-item:last-child { grid-column: span 2; }

  /* ── Section commons ── */
  .section-wrap { padding: 48px 16px; }
  .section-title { font-size: 26px; }
  .section-desc { font-size: 14px; }

  /* ── Who We Are ── */
  .who-grid { grid-template-columns: 1fr; gap: 28px; }
  .who-highlights { grid-template-columns: 1fr; }
  .who-visual { display: none; }
  .who-text h2 { font-size: 26px; }
  .who-text p { font-size: 14px; }

  /* ── Mission & Vision ── */
  .mv-grid { grid-template-columns: 1fr; gap: 16px; }
  .mv-card { padding: 26px 22px; }
  .mv-heading { font-size: 22px; }
  .values-strip { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .val-card { padding: 18px 12px; }
  .val-icon { font-size: 26px; }
  .val-title { font-size: 13px; }
  .val-desc { font-size: 11px; }

  /* ── What We Do ── */
  .services-big-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .svc-card { padding: 20px 14px; }
  .svc-card-icon { width: 56px; height: 56px; font-size: 24px; }
  .svc-card-name { font-size: 13px; }
  .svc-card-desc { font-size: 11px; }
  .service-types { grid-template-columns: 1fr; gap: 14px; }
  .st-card { padding: 20px 18px; gap: 14px; }
  .st-icon { font-size: 32px; }
  .st-title { font-size: 16px; }
  .st-desc { font-size: 13px; }

  /* ── Why Choose Us ── */
  .wcu-grid { grid-template-columns: 1fr; gap: 28px; }
  .wcu-item { padding: 16px 16px; gap: 12px; }
  .wcu-title { font-size: 14px; }
  .wcu-desc { font-size: 13px; }
  .wcu-visual { display: none; }

  /* ── Team ── */
  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .team-avatar-wrap { height: 130px; }
  .team-avatar { width: 76px; height: 76px; font-size: 30px; }
  .team-name { font-size: 14px; }
  .team-bio { font-size: 11px; }

  /* ── Timeline ── */
  .journey-wrap .section-title { font-size: 26px; }
  .timeline::before { left: 20px; top: 0; bottom: 0; }
  .tl-item { grid-template-columns: 48px 1fr; gap: 0; margin-bottom: 28px; }
  .tl-content.left,
  .tl-content.right { grid-column: 2; text-align: left; }
  .tl-dot { width: 36px; height: 36px; font-size: 14px; }
  .tl-content { padding: 16px 18px; }
  .tl-year { font-size: 10px; }
  .tl-title { font-size: 14px; }
  .tl-text { font-size: 13px; }

  /* ── CTA ── */
  .cta-wrap { padding: 52px 16px; }
  .cta-wrap h2 { font-size: 28px; }
  .cta-wrap p { font-size: 14px; margin-bottom: 24px; }
  .cta-buttons { flex-direction: column; align-items: stretch; gap: 10px; }
  .btn-cta-call,
  .btn-cta-wa,
  .btn-cta-products { justify-content: center; padding: 14px 20px; font-size: 14px; }
  .cta-info-row { flex-direction: column; gap: 10px; align-items: flex-start; padding-left: 8px; }

  /* ── Footer ── */
  footer { padding: 36px 16px 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand { grid-column: span 2; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-bottom div { display: flex; flex-wrap: wrap; justify-content: center; gap: 4px; }
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE  (max-width: 480px)
═══════════════════════════════════════════════════════ */
@media (max-width: 480px) {

  /* Hero */
  .hero-text h1 { font-size: 26px; }
  .hero-eyebrow { font-size: 11px; padding: 5px 12px; }

  /* Stats */
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 16px; }
  .stat-item:last-child { grid-column: span 2; }
  .stat-num { font-size: 26px; }

  /* Mission / Vision */
  .mv-card.mission,
  .mv-card.vision { padding: 22px 18px; }
  .mv-heading { font-size: 20px; }

  /* Products 1 col on very small */
  .services-big-grid { grid-template-columns: 1fr; }
  .service-types { grid-template-columns: 1fr; }

  /* Values */
  .values-strip { grid-template-columns: 1fr 1fr; }

  /* Team — 1 col on very small */
  .team-grid { grid-template-columns: 1fr; max-width: 320px; margin: 0 auto; }

  /* Timeline */
  .tl-item { grid-template-columns: 40px 1fr; }
  .tl-dot { width: 30px; height: 30px; font-size: 12px; }

  /* Section titles */
  .section-title { font-size: 22px; }
  .cta-wrap h2 { font-size: 24px; }

  /* Who highlights 1 col */
  .who-highlights { grid-template-columns: 1fr; }

  /* Why choose us items */
  .wcu-num { width: 34px; height: 34px; font-size: 14px; }
}