 
 
:root {
  /* Green palette (Primary) */
  --green-50:   #f0faf0;
  --green-100:  #dcf0dc;
  --green-200:  #b4dcb4;
  --green-400:  #7ab648;
  --green-500:  #5a9e2f;
  --green-600:  #3d7a1a;
  --green:      #7ab648;
  --green-dark: #5a9e2f;

  /* Blue palette (Secondary) */
  --blue:       #4A9CD6;
  --blue-dark:  #2F6FA3;
  --blue-glow:  #4a9fff;
  --blue-mid:   #2563eb;
  --blue-deep:  #1a3a7c;

  /* Teal accent */
  --teal:       #0d9488;

  /* Dark / navy */
  --navy:       #0b1f33;

  /* Text */
  --text-dark:  #0f1624;
  --text-mid:   #374151;
  --text-light: #6b7280;
  --white:      #ffffff;

  /* Backgrounds */
  --light:      #f4f6f8;
  --silver-50:  #f8f9fb;
  --silver-100: #eef0f5;
  --silver-200: #dde1ea;

  /* Glassmorphism */
  --glass-bg:     rgba(255,255,255,0.68);
  --glass-border: rgba(255,255,255,0.45);

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(90,158,47,.08);
  --shadow-md:   0 8px 32px rgba(90,158,47,.14);
  --shadow-glow: 0 0 32px rgba(122,182,72,.35);
  --shadow-blue: 0 8px 32px rgba(74,156,214,.2);

  /* Border radius */
  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --radius-pill: 50px;

  /* Motion */
  --transition: all .35s cubic-bezier(.4,0,.2,1);
}

/* GLOBAL */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--silver-50);
  color: var(--text-dark);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Syne', sans-serif;
  letter-spacing: -0.02em;
}

section { padding: 90px 0; }

/* TYPOGRAPHY HELPERS */
.text-gradient {
  background: linear-gradient(135deg, var(--blue-mid), var(--green-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-green-gradient {
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* NAVBAR */
.navbar {
  background: white;
  border-bottom: 1px solid var(--silver-200);
}

.nav-link:hover { color: var(--green-500); }

/* BUTTONS */
.btn-primary {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border: none;
  box-shadow: var(--shadow-blue);
}

.btn-success {
  background: linear-gradient(135deg, var(--green-500), var(--green-400));
  border: none;
  box-shadow: var(--shadow-sm);
}

/* CARDS */
.card {
  border: none;
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.card:hover { transform: translateY(-8px); }

/* FOOTER */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,.7);
}


    /* ============================================================
       SECTION LABELS*/

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: .72rem;
      font-weight: 500;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--green-500);
      background: rgba(90,158,47,.08);
      border: 1px solid rgba(90,158,47,.22);
      padding: 5px 14px;
      border-radius: 50px;
      margin-bottom: 18px;
    }

    .section-label::before {
      content: '';
      display: inline-block;
      width: 6px; height: 6px;
      background: var(--green-400);
      border-radius: 50%;
      box-shadow: 0 0 8px var(--green-400);
    }

    /* NAVBAR */
    #mainNav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0;
      transition: var(--transition);
    }

    #mainNav .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 32px;
      /*background: rgba(248,249,251,0.82);*/
      background-color: white;
      backdrop-filter: blur(20px) saturate(180%);
      -webkit-backdrop-filter: blur(20px) saturate(180%);
      border-bottom: 1px solid var(--silver-200);
      transition: var(--transition);
    }

    #mainNav.scrolled .nav-inner {
      padding: 10px 32px;
      background: rgba(248,249,251,0.96);
      box-shadow: var(--shadow-md);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;  /*background-color: white;*/
    }

    .nav-logo .logo-mark {
      width: 52px; height: 52px;
    
      /* background: linear-gradient(135deg, var(--green-500), var(--green-400));*/
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      /*box-shadow: 0 4px 16px rgba(90,158,47,.35);*/
      transition: transform .3s ease; 
    }

    .nav-logo:hover .logo-mark { transform: scale(1.06); }

    .nav-logo .logo-mark i {
      color: white;
      font-size: 1.4rem;
    }

    .nav-logo .logo-text {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.1rem;
      color: var(--text-dark);
      line-height: 1;
    }

    .nav-logo .logo-sub {
      font-size: .62rem;
      font-weight: 400;
      color: var(--text-light);
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
      margin: 0; padding: 0;
    }

    .nav-links a {
      font-size: .88rem;
      font-weight: 500;
      color: var(--text-mid);
      text-decoration: none;
      transition: color .2s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 2px;
      background: var(--green-400);
      border-radius: 2px;
      transition: width .25s ease;
    }

    .nav-links a:hover { color: var(--green-500); }
    .nav-links a:hover::after { width: 100%; }
/*
    .btn-nav-cta {
      background: linear-gradient(135deg, var(--blue-dark), var(--blue));
      color: white !important;
      padding: 8px 22px;
      border-radius: 50px;
      font-size: .85rem;
      font-weight: 600;
      text-decoration: none;
      transition: var(--transition);
      box-shadow: var(--shadow-blue);
    }

    .btn-nav-cta:hover {
      background: linear-gradient(135deg, var(--green-500), var(--green-400));
      box-shadow: var(--shadow-glow);
      transform: translateY(-1px);
    }
*/

    .btn-nav-cta {
      background: linear-gradient(135deg, var(--blue-dark), var(--blue));
      color: white !important;
      padding: 8px 22px;
      border-radius: 50px;
      font-size: .85rem;
      font-weight: 600;
      text-decoration: none;
      transition: var(--transition);
      box-shadow: 0 4px 16px rgba(90,158,47,.3);
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
    }

    /* Kill the nav underline pseudo-element on the CTA pill */
    .btn-nav-cta::after { display: none !important; }

    .btn-nav-cta:hover {
      background: linear-gradient(135deg, var(--green-500), var(--green-400));
      box-shadow: var(--shadow-glow);
      transform: translateY(-1px);
    }
    
    .hamburger {
      display: none;
      background: none;
      border: none;
      cursor: pointer;
      padding: 4px;
      color: var(--text-dark);
      font-size: 1.4rem;
    }

    .mobile-nav {
      display: none;
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: rgba(248,249,251,0.97);
      backdrop-filter: blur(24px);
      z-index: 999;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 32px;
    }

    .mobile-nav.open { display: flex; }

    .mobile-nav a {
      font-family: 'Syne', sans-serif;
      font-size: 1.6rem;
      font-weight: 700;
      color: var(--text-dark);
      text-decoration: none;
      transition: color .2s;
    }

    .mobile-nav a:hover { color: var(--green-500); }

    .mobile-close {
      position: absolute;
      top: 90px; right: 20px;
      width: 44px; height: 44px;
      background: #fff0f0;
      border: 1.5px solid #fca5a5;
      border-radius: 50%;
      font-size: 1.2rem;
      cursor: pointer;
      color: #e11d28;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .2s ease;
      z-index: 10;
    }

    .mobile-close:hover {
      background: #e11d28;
      border-color: #e11d28;
      color: white;
      transform: rotate(90deg);
    }

    @media (max-width: 768px) {
      .nav-links { display: none; }
      .hamburger { display: block; }
    }

    /* ============================================================
       STATS BAR
    ============================================================ */
    #statsBar {
      padding: 0;
      background: white;
      border-bottom: 1px solid var(--silver-200);
      box-shadow: var(--shadow-sm);
    }

    .stats-inner {
      display: flex;
      align-items: stretch;
      overflow-x: auto;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

    .stats-inner::-webkit-scrollbar { display: none; }

    .stat-item {
      flex: 1;
      min-width: 160px;
      text-align: center;
      padding: 28px 24px;
      border-right: 1px solid var(--silver-200);
      transition: var(--transition);
    }

    .stat-item:last-child { border-right: none; }
    .stat-item:hover { background: var(--green-50); }

    .stat-number {
      font-family: 'Syne', sans-serif;
      font-size: 2rem;
      font-weight: 800;
      color: var(--green-500);
      line-height: 1;
      margin-bottom: 4px;
    }

    .stat-label {
      font-size: .78rem;
      color: var(--text-light);
      font-weight: 400;
      letter-spacing: .04em;
    }

    /* ============================================================
       SERVICES SECTION
    ============================================================ */
    #services {
      background: linear-gradient(160deg, var(--silver-50) 0%, white 50%, rgba(74,156,214,.05) 80%, var(--green-50) 100%);
      position: relative;
      overflow: hidden;
    }

    #services::before {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 420px; height: 420px;
      background: radial-gradient(circle, rgba(122,182,72,.1) 0%, transparent 70%);
      border-radius: 50%;
    }

    .service-card {
      background: var(--glass-bg);
      border: 1px solid var(--glass-border);
      border-radius: var(--radius-lg);
      padding: 36px 30px;
      height: 100%;
      backdrop-filter: blur(14px);
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      position: relative;
      overflow: hidden;
      cursor: default;
    }

    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--green-500), var(--green-400));
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
      opacity: 0;
      transition: opacity .3s;
    }

    .service-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--shadow-md), 0 0 40px rgba(122,182,72,.15);
      border-color: rgba(122,182,72,.3);
    }

    .service-card:hover::before { opacity: 1; }

    .service-icon {
      width: 58px; height: 58px;
      background: linear-gradient(135deg, rgba(90,158,47,.1), rgba(122,182,72,.15));
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
      transition: var(--transition);
    }

    .service-card:hover .service-icon {
      background: linear-gradient(135deg, var(--green-500), var(--green-400));
      box-shadow: 0 8px 24px rgba(90,158,47,.35);
    }

    .service-icon i {
      font-size: 1.6rem;
      color: var(--green-500);
      transition: color .3s;
    }

    .service-card:hover .service-icon i { color: white; }

    .service-title {
      font-family: 'Syne', sans-serif;
      font-size: 1.12rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 10px;
    }

    .service-desc {
      font-size: .9rem;
      color: var(--text-light);
      line-height: 1.7;
      margin-bottom: 0;
    }

    .service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 16px;
    }

    .service-tag {
      font-size: .72rem;
      font-weight: 500;
      color: var(--green-500);
      background: rgba(90,158,47,.08);
      border: 1px solid rgba(90,158,47,.2);
      padding: 3px 10px;
      border-radius: 50px;
    }

    /* ============================================================
       ABOUT SECTION
    ============================================================ */
    #about { background: white; }

    .about-graphic {
      width: 100%;
      border-radius: var(--radius-xl);
      background: linear-gradient(135deg, var(--navy), var(--blue-deep), var(--green-600));
      min-height: 440px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .about-graphic .center-icon {
      position: relative;
      z-index: 2;
      width: 110px; height: 110px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      backdrop-filter: blur(10px);
    }

    .about-graphic .center-icon i {
      font-size: 3.2rem;
      color: white;
    }

    .about-badge {
      position: absolute;
      bottom: 28px; right: 28px;
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.22);
      backdrop-filter: blur(12px);
      border-radius: 14px;
      padding: 14px 20px;
      color: white;
      z-index: 3;
    }

    .about-badge .badge-num {
      font-family: 'Syne', sans-serif;
      font-size: 1.6rem;
      font-weight: 800;
      line-height: 1;
      color: var(--green-400);
    }

    .about-badge .badge-label { font-size: .72rem; letter-spacing: .06em; opacity: .75; }

    .about-text h2 {
      font-size: clamp(1.8rem, 3.5vw, 2.6rem);
      font-weight: 800;
      color: var(--text-dark);
      line-height: 1.2;
      margin-bottom: 22px;
    }

    .about-text p {
      font-size: .97rem;
      color: var(--text-mid);
      line-height: 1.8;
      margin-bottom: 18px;
    }

    .mission-vision {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 28px;
    }

    @media (max-width: 480px) { .mission-vision { grid-template-columns: 1fr; } }

    .mv-card {
      background: var(--silver-50);
      border: 1px solid var(--silver-200);
      border-radius: 14px;
      padding: 20px;
      transition: var(--transition);
    }

    .mv-card:hover {
      border-color: rgba(122,182,72,.35);
      background: rgba(90,158,47,.04);
    }

    .mv-card .mv-icon { font-size: 1.2rem; color: var(--green-500); margin-bottom: 8px; }

    .mv-card h5 {
      font-family: 'Syne', sans-serif;
      font-size: .95rem;
      font-weight: 700;
      margin-bottom: 8px;
      color: var(--text-dark);
    }

    .mv-card p { font-size: .85rem; color: var(--text-light); line-height: 1.6; margin: 0; }

    /* CERTIFICATIONS */
    .cert-strip {
      background: var(--silver-50);
      border: 1px solid var(--silver-200);
      border-radius: var(--radius-lg);
      padding: 28px 32px;
      margin-top: 28px;
    }

    .cert-strip h6 {
      font-family: 'Syne', sans-serif;
      font-size: .82rem;
      font-weight: 700;
      color: var(--text-light);
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 14px;
    }

    .cert-badges { display: flex; flex-wrap: wrap; gap: 10px; }

    .cert-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: white;
      border: 1px solid var(--silver-200);
      border-radius: 10px;
      padding: 8px 14px;
      font-size: .78rem;
      font-weight: 600;
      color: var(--text-mid);
      box-shadow: var(--shadow-sm);
    }

    .cert-badge i { color: var(--green-500); }

    /* ============================================================
       ACCORDION SERVICES
    ============================================================ */
    #accordion-section {
      background: linear-gradient(160deg, var(--silver-100) 0%, var(--green-50) 50%, rgba(74,156,214,.06) 100%);
    }

    .acc-list { list-style: none; padding: 0; margin: 0; }

    .acc-trigger {
      width: 100%;
      background: white;
      border: 1px solid var(--silver-200);
      border-radius: 12px;
      padding: 18px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      text-align: left;
      font-family: 'DM Sans', sans-serif;
      font-size: .95rem;
      font-weight: 500;
      color: var(--text-dark);
      gap: 16px;
      margin-bottom: 10px;
      transition: var(--transition);
    }

    .acc-trigger:hover, .acc-trigger.open {
      background: var(--green-500);
      color: white;
      border-color: var(--green-500);
      box-shadow: 0 4px 20px rgba(90,158,47,.25);
    }

    .acc-icon { font-size: 1.2rem; flex-shrink: 0; transition: transform .3s ease; }
    .acc-trigger.open .acc-icon { transform: rotate(45deg); }

    .acc-body { display: none; padding: 0 4px 14px; }
    .acc-body.open { display: block; }

    .acc-panel {
      background: white;
      border: 1px solid var(--silver-200);
      border-radius: var(--radius-lg);
      padding: 32px;
      height: 100%;
    }

    .acc-panel h3 {
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--green-600);
      margin-bottom: 16px;
    }

    .acc-panel p { font-size: .92rem; color: var(--text-mid); line-height: 1.75; }

    .acc-panel ul {
      padding-left: 20px;
      font-size: .9rem;
      color: var(--text-mid);
      line-height: 1.9;
    }

    .acc-panel .sub-list {
      padding-left: 18px;
      font-size: .86rem;
      color: var(--text-light);
    }

    .acc-panel .sub-heading {
      font-weight: 600;
      color: var(--text-dark);
      font-size: .9rem;
      margin: 12px 0 8px;
    }

    /* ============================================================
       CORE VALUES
    ============================================================ */
    #values { background: linear-gradient(160deg, rgba(74,156,214,.05), var(--green-50) 60%, white); }

    .value-card {
      background: white;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: var(--transition);
      border: 1px solid var(--silver-200);
      height: 100%;
    }

    .value-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-md);
    }

    .value-img {
      height: 180px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      transition: transform 0.6s ease;
    }

    .value-card:hover .value-img { transform: scale(1.03); }

    .value-img.innovation { background: linear-gradient(135deg, var(--navy), var(--blue-deep), var(--green-600)); }
    .value-img.sustainability { background: linear-gradient(135deg, #0d3320, var(--teal), var(--green-500)); }
    .value-img.empathy { background: linear-gradient(135deg, var(--navy), var(--blue-dark), var(--blue)); }
    .value-img.collaboration { background: linear-gradient(135deg, var(--blue-deep), var(--green-600), #5a3e1a); }

    .value-img i {
      position: relative;
      z-index: 2;
      font-size: 3.5rem;
      color: #ffffff;
      text-shadow: 0 3px 8px rgba(0,0,0,.6), 0 0 10px rgba(255,255,255,.5);
    }

    .value-body { padding: 24px 22px; text-align: center; }

    .value-title {
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--green-500);
      margin-bottom: 10px;
    }

    .value-desc { font-size: .88rem; color: var(--text-mid); line-height: 1.7; margin: 0; }

    /* ============================================================
       FAQ / WHY US
    ============================================================ */
    #faq { background: white; padding: 80px 0; }

    .faq-item {
      background: var(--green-500);
      border-radius: 10px;
      margin-bottom: 12px;
      overflow: hidden;
    }

    .faq-trigger {
      width: 100%;
      background: none;
      border: none;
      padding: 18px 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      cursor: pointer;
      text-align: left;
      font-family: 'DM Sans', sans-serif;
      font-size: .95rem;
      font-weight: 500;
      color: white;
      gap: 16px;
    }

    .faq-icon { font-size: 1.2rem; flex-shrink: 0; color: white; transition: transform .3s ease; }
    .faq-trigger.open .faq-icon { transform: rotate(45deg); }

    .faq-answer {
      display: none;
      padding: 0 22px 18px;
      font-size: .9rem;
      color: rgba(255,255,255,.85);
      line-height: 1.7;
    }

    .faq-answer.open { display: block; }

    .faq-image-placeholder {
      background: linear-gradient(135deg, var(--navy), var(--blue-dark), var(--green-600));
      border-radius: var(--radius-lg);
      min-height: 380px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }

    .faq-image-placeholder .overlay-content { text-align: center; color: white; z-index: 2; position: relative; }
    .faq-image-placeholder .overlay-content .icon { font-size: 4rem; display: block; margin-bottom: 16px; opacity: .8; }
    .faq-image-placeholder .overlay-content .title { font-family: 'Syne', sans-serif; font-size: 1.2rem; font-weight: 700; }
    .faq-image-placeholder .overlay-content .subtitle { font-size: .85rem; opacity: .65; margin-top: 6px; }

    /* ============================================================
       WHY CHOOSE US
    ============================================================ */
    #why {
      background: linear-gradient(160deg, var(--navy) 0%, var(--blue-deep) 50%, #0f2d14 100%);
      color: white;
      position: relative;
      overflow: hidden;
    }

    #why::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(74,156,214,.18) 0%, rgba(122,182,72,.1) 50%, transparent 75%);
      border-radius: 50%;
    }

    .why-card {
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius-lg);
      padding: 32px 26px;
      transition: var(--transition);
      height: 100%;
    }

    .why-card:hover {
      background: rgba(255,255,255,.12);
      border-color: rgba(122,182,72,.4);
      transform: translateY(-6px);
    }

    .why-icon {
      width: 54px; height: 54px;
      background: linear-gradient(135deg, rgba(74,156,214,.25), rgba(122,182,72,.2));
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      font-size: 1.5rem;
      color: var(--blue-glow);
    }

    .why-card:hover .why-icon {
      background: linear-gradient(135deg, var(--blue-dark), var(--green-500));
      color: white;
    }

    .why-title {
      font-family: 'Syne', sans-serif;
      font-size: 1.05rem;
      font-weight: 700;
      color: white;
      margin-bottom: 10px;
    }

    .why-desc { font-size: .88rem; color: rgba(255,255,255,.6); line-height: 1.7; margin: 0; }

    /* ============================================================
       CLIENTS SECTION
    ============================================================ */
    #clients { background: var(--silver-50); }

    .client-group {
      background: white;
      border: 1px solid var(--silver-200);
      border-radius: var(--radius-lg);
      padding: 28px;
      margin-bottom: 20px;
      transition: var(--transition);
    }

    .client-group:hover { border-color: rgba(74,156,214,.3); box-shadow: var(--shadow-blue); }

    .client-group-title {
      font-family: 'Syne', sans-serif;
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--blue-dark);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .client-group-title i { font-size: 1rem; }

    .client-chips { display: flex; flex-wrap: wrap; gap: 8px; }

    .client-chip {
      background: var(--silver-50);
      border: 1px solid var(--silver-200);
      border-radius: 8px;
      padding: 6px 14px;
      font-size: .82rem;
      font-weight: 500;
      color: var(--text-mid);
      transition: var(--transition);
    }

    .client-chip:hover {
      background: rgba(74,156,214,.08);
      border-color: rgba(74,156,214,.35);
      color: var(--blue-dark);
    }

    /* ============================================================
       LOCATION
    ============================================================ */
    #location { background: white; }

    .location-card {
      background: var(--silver-50);
      border: 1px solid var(--silver-200);
      border-radius: var(--radius-lg);
      padding: 32px;
      height: 100%;
    }

    .location-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 22px;
    }

    .location-item:last-child { margin-bottom: 0; }

    .loc-icon {
      width: 38px; height: 38px;
      background: rgba(90,158,47,.1);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      color: var(--green-500);
      font-size: 1rem;
    }

    .loc-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: 3px; }
    .loc-value { font-size: .9rem; color: var(--text-dark); line-height: 1.5; font-weight: 500; }

    .map-placeholder {
      background: linear-gradient(135deg, var(--navy), var(--blue-deep), var(--green-600));
      border-radius: var(--radius-xl);
      min-height: 340px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .map-placeholder i { font-size: 3.5rem; opacity: .7; display: block; margin-bottom: 12px; }
    .map-placeholder .map-label { font-family: 'Syne', sans-serif; font-size: 1rem; font-weight: 700; }
    .map-placeholder .map-sub { font-size: .82rem; opacity: .6; margin-top: 6px; }

    /* ============================================================
       CONTACT SECTION
    ============================================================ */
    #contact {
      background: linear-gradient(160deg, rgba(74,156,214,.06) 0%, var(--silver-50) 40%, white 100%);
    }

    .contact-form-wrap {
      background: white;
      border-radius: var(--radius-xl);
      padding: 48px 44px;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--silver-200);
    }

    @media (max-width: 576px) { .contact-form-wrap { padding: 32px 24px; } }

    .form-label {
      font-size: .82rem;
      font-weight: 600;
      color: var(--text-mid);
      letter-spacing: .04em;
      margin-bottom: 6px;
    }

    .form-control {
      border: 1.5px solid var(--silver-200);
      border-radius: 10px;
      padding: 12px 16px;
      font-size: .9rem;
      color: var(--text-dark);
      transition: border-color .2s, box-shadow .2s;
    }

    .form-control:focus {
      border-color: var(--blue);
      box-shadow: 0 0 0 3px rgba(74,156,214,.18);
      outline: none;
    }

    .btn-submit {
      background: linear-gradient(135deg, var(--blue-dark), var(--blue), var(--green-400));
      background-size: 200% 100%;
      background-position: 0% 50%;
      color: white;
      border: none;
      border-radius: 50px;
      padding: 14px 36px;
      font-size: .95rem;
      font-weight: 600;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: var(--shadow-blue);
      width: 100%;
    }

    .btn-submit:hover {
      background-position: 100% 50%;
      transform: translateY(-2px);
      box-shadow: 0 10px 36px rgba(74,156,214,.45);
    }

    .contact-info-wrap {
      padding: 20px 0;
    }

    .contact-info-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 28px;
    }

    .ci-icon {
      width: 46px; height: 46px;
      background: linear-gradient(135deg, var(--blue-dark), var(--blue));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.1rem;
      flex-shrink: 0;
      box-shadow: var(--shadow-blue);
    }

    .ci-label { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-light); margin-bottom: 3px; }
    .ci-value { font-size: .95rem; font-weight: 500; color: var(--text-dark); }

    .offices-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 24px;
    }

    @media (max-width: 480px) { .offices-grid { grid-template-columns: 1fr; } }

    .office-mini {
      background: var(--silver-50);
      border: 1px solid var(--silver-200);
      border-radius: 12px;
      padding: 14px 16px;
      font-size: .82rem;
    }

    .office-mini .o-country {
      font-family: 'Syne', sans-serif;
      font-weight: 700;
      font-size: .85rem;
      color: var(--green-500);
      margin-bottom: 4px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .office-mini p { color: var(--text-light); line-height: 1.5; margin: 0; font-size: .8rem; }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      background: linear-gradient(160deg, var(--navy) 0%, #0a1628 50%, #0d1f0a 100%);
      color: rgba(255,255,255,.6);
      padding: 72px 0 0;
    }

    .footer-logo-area { margin-bottom: 20px; }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      margin-bottom: 18px;
    }

    .footer-brand .fb-mark {
      width: 44px; height: 44px;
      /*background: linear-gradient(135deg, var(--blue-dark), var(--blue));*/
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.2rem;
    }

    .footer-brand .fb-name {
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem;
      font-weight: 800;
      color: white;
      line-height: 1;
    }

    .footer-brand .fb-sub { font-size: .65rem; color: rgba(255,255,255,.4); letter-spacing: .06em; text-transform: uppercase; }

        .footer-tagline { font-size: .85rem; line-height: 1.7; color: rgba(255,255,255,.45); max-width: 480px; }

    .social-links { display: flex; gap: 12px; margin-top: 16px; }

    .social-links a {
      width: 36px; height: 36px;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255,255,255,.55);
      text-decoration: none;
      font-size: .95rem;
      transition: var(--transition);
    }

    .social-links a:hover { background: var(--blue); color: white; border-color: var(--blue); }

    .footer-heading {
      font-family: 'Syne', sans-serif;
      font-size: .82rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255,255,255,.35);
      margin-bottom: 16px;
    }

    .footer-links { list-style: none; padding: 0; margin: 0; }

    .footer-links li { margin-bottom: 10px; }

    .footer-links a {
      color: rgba(255,255,255,.5);
      text-decoration: none;
      font-size: .88rem;
      transition: color .2s;
    }

    .footer-links a:hover { color: var(--green-400); }

    .footer-divider { border-color: rgba(255,255,255,.08); margin: 48px 0 24px; }

    .footer-bottom {
      display: flex;
      flex-direction: column;    /* stack items */
      align-items: center;       /* center everything */
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
      font-size: .8rem;
      color: rgba(255,255,255,.3);
      padding-bottom: 32px;
    }
    /* ============================================================
       BACK TO TOP
    ============================================================ */
    #backToTop {
      position: fixed;
      bottom: 28px; right: 28px;
      width: 44px; height: 44px;
      background: linear-gradient(135deg, var(--green-500), var(--green-400));
      color: white;
      border: none;
      border-radius: 50%;
      font-size: 1.1rem;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(90,158,47,.4);
      z-index: 900;
      display: none;
      align-items: center;
      justify-content: center;
      transition: var(--transition);
    }

    #backToTop.visible { display: flex; }
    #backToTop:hover { transform: translateY(-3px); }

    /* ============================================================
       REVEAL ANIMATIONS
    ============================================================ */
    .reveal {
      opacity: 0;
      transform: translateY(32px);
      transition: opacity .7s ease, transform .7s ease;
    }

    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: .12s; }
    .reveal-delay-2 { transition-delay: .22s; }
    .reveal-delay-3 { transition-delay: .32s; }
    .reveal-delay-4 { transition-delay: .42s; }

    /* ============================================================
       UTILITY
    ============================================================ */
    .text-green { color: var(--green-500) !important; }

    .sustainability-bar {
      background: linear-gradient(135deg, var(--navy), var(--blue-dark), var(--green-600));
      color: white;
      padding: 18px 0;
      text-align: center;
      font-size: .9rem;
    }

    .sustainability-bar i { margin-right: 8px; }

    /* ============================================================
       PAGE BANNER — compact secondary-page header
    ============================================================ */
    .page-banner {
      position: relative;
      padding: 0;
      overflow: hidden;
      margin-top: 81px; /* height of fixed navbar */
    }

    .page-banner-bg {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        125deg,
        rgba(11, 31, 51, .88) 0%,
        rgba(26, 58, 124, .78) 38%,
        rgba(47, 111, 163, .68) 62%,
        rgba(61, 122, 26, .72) 100% ),
        url('../img/clients.png') center/cover no-repeat; 
    }

    /* inner content wrapper */
    .page-banner-inner {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      padding: 52px 0 48px;
    }

    /* breadcrumb */
    .banner-breadcrumb {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: .74rem;
      font-weight: 500;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255,255,255,.52);
      margin-bottom: 18px;
    }

    .banner-breadcrumb a {
      color: rgba(255,255,255,.52);
      text-decoration: none;
      transition: color .2s;
    }

    .banner-breadcrumb a:hover { color: var(--green-400); }

    .banner-breadcrumb .sep {
      color: rgba(255,255,255,.25);
      font-size: .7rem;
    }

    .banner-breadcrumb .current {
      color: var(--green-400);
    }

    /* title */
    .banner-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.7rem, 3.8vw, 2.8rem);
      font-weight: 800;
      color: #fff;
      line-height: 1.12;
      margin: 0 0 12px;
      letter-spacing: -.03em;
    }

    .banner-title span {
      background: linear-gradient(90deg, var(--green-400), var(--blue-glow));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* subtitle */
    .banner-subtitle {
      font-size: clamp(.85rem, 1.6vw, 1rem);
      font-weight: 400;
      color: rgba(255,255,255,.62);
      line-height: 1.6;
      max-width: 520px;
      margin: 0;
    }

    /* thin bottom accent line */
    .page-banner::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blue), var(--green-400), var(--blue-glow));
    }

    @media (max-width: 768px) {
      .page-banner-inner { padding: 40px 0 36px; }
      .banner-title { font-size: clamp(1.5rem, 6vw, 2rem); }
    }

    /* ============================================================
       SEMICONDUCTOR LOGO GRID
    ============================================================ */
    .client-group--semicon {
      grid-column: 1 / -1;
    }

    /* responsive auto-fill grid — each card ~110px wide */
    .semicon-logos {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
      gap: 12px;
      margin-bottom: 4px;
    }

    /* individual logo card */
    .semicon-logo-card {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 9px;
      padding: 16px 10px 12px;
      background: var(--silver-50);
      border: 1px solid var(--silver-200);
      border-radius: var(--radius-md);
      transition: var(--transition);
      cursor: default;
    }

    .semicon-logo-card:hover {
      background: white;
      border-color: rgba(74,156,214,.35);
      box-shadow: 0 4px 18px rgba(74,156,214,.12);
      transform: translateY(-3px);
    }

    /* logo image wrapper — fixed height so all cards align */
    .slc-logo-wrap {
      width: 72px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .slc-logo-wrap img {
      max-width: 72px;
      max-height: 40px;
      width: auto;
      height: auto;
      object-fit: contain;
      /* desaturate slightly for a unified look; saturates on hover */
      filter: grayscale(25%) opacity(.85);
      transition: filter .3s ease;
    }

    .semicon-logo-card:hover .slc-logo-wrap img {
      filter: grayscale(0%) opacity(1);
    }

    /* fallback badge shown when image 404s */
    .slc-fallback {
      width: 72px;
      height: 40px;
      display: none; /* toggled via onerror */
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--blue-deep), var(--blue-dark));
      border-radius: 8px;
    }

    .slc-fallback span {
      font-family: 'Syne', sans-serif;
      font-size: .68rem;
      font-weight: 800;
      color: white;
      letter-spacing: .06em;
    }

    /* company name label below logo */
    .slc-name {
      font-family: 'DM Sans', sans-serif;
      font-size: .72rem;
      font-weight: 600;
      color: var(--text-mid);
      text-align: center;
      line-height: 1.3;
      letter-spacing: .01em;
    }

    .semicon-logo-card:hover .slc-name {
      color: var(--blue-dark);
    }

    /* divider between logo grid and chips */
    .semicon-logos + .client-chips {
      padding-top: 14px;
      border-top: 1px dashed var(--silver-200);
    }

    @media (max-width: 480px) {
      .semicon-logos {
        grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
        gap: 8px;
      }
      .slc-logo-wrap, .slc-fallback { width: 56px; height: 34px; }
      .slc-logo-wrap img { max-width: 56px; max-height: 34px; }
    }

    /* ── WHATSAPP BOX IN FOOTER ── */
    .wa-box {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius-lg);
      padding: 28px;
    }
    .wa-desc {
      font-size: .88rem;
      color: rgba(255,255,255,.55);
      margin-bottom: 14px;
    }
    .wa-textarea {
      width: 100%;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: var(--radius-sm);
      color: #fff;
      padding: 10px 14px;
      font-size: .9rem;
      resize: vertical;
      margin-bottom: 12px;
      transition: border-color .25s, box-shadow .25s;
    }
    .wa-textarea::placeholder { color: rgba(255,255,255,.3); }
    .wa-textarea:focus {
      outline: none;
      border-color: #25d366;
      box-shadow: 0 0 0 3px rgba(37,211,102,.2);
    }
    .wa-btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 11px 24px;
      background: #25d366;
      color: #fff;
      border: none;
      border-radius: var(--radius-pill);
      font-weight: 700;
      font-size: .92rem;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: 0 4px 16px rgba(37,211,102,.3);
    }
    .wa-btn:hover {
      background: #1ebe5d;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(37,211,102,.4);
    }
    .wa-btn:active { transform: translateY(0); }

 