/* ================================
   AGAST GROUP SERVICES — LIGHT THEME
   ================================ */

:root {
  --navy:        #0d1b35;
  --navy-mid:    #1a3058;
  --navy-light:  #243c6a;
  --green:       #2aab52;
  --green-dark:  #1e8c3f;
  --green-light: #eaf7ee;
  --green-soft:  rgba(42,171,82,0.1);
  --white:       #ffffff;
  --light-bg:    #f7f9fc;
  --light-bg2:   #f0f4f8;
  --text-dark:   #1a202c;
  --text-mid:    #4a5568;
  --text-gray:   #718096;
  --border:      #e2e8f0;
  --shadow-xs:   0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.07);
  --shadow:      0 4px 24px rgba(0,0,0,0.09);
  --shadow-lg:   0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl:   0 16px 60px rgba(0,0,0,0.14);
  --transition:  all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font:        'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius:      10px;
  --radius-lg:   18px;
  --radius-xl:   28px;
}

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

/* TYPOGRAPHY */
h1 { font-size: clamp(2rem, 4.5vw, 3.4rem); font-weight: 700; line-height: 1.18; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 700; line-height: 1.22; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 600; }
p  { color: var(--text-gray); line-height: 1.75; }

/* UTILITY */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-green  { color: var(--green); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }
.bg-navy     { background: var(--navy); }
.bg-light    { background: var(--light-bg); }
.section-label {
  display: inline-block;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--green);
  margin-bottom: 10px;
}
.section-header { margin-bottom: 52px; }
.section-header h2 { margin-bottom: 10px; }
.section-header p  { max-width: 560px; font-size: 1rem; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }
.divider {
  width: 50px; height: 3px; background: var(--green);
  border-radius: 2px; margin: 14px 0 0;
}
.divider.center { margin: 14px auto 0; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius);
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.01em;
  transition: var(--transition); cursor: pointer;
}
.btn-green {
  background: var(--green); color: var(--white);
  box-shadow: 0 4px 16px rgba(42,171,82,0.28);
}
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(42,171,82,0.35); }
.btn-outline-navy {
  background: transparent; color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }
.btn-outline-white {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-white {
  background: var(--white); color: var(--navy);
  box-shadow: var(--shadow);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* TOP INFO BAR */
.top-bar {
  background: var(--navy); padding: 9px 0;
  font-size: 0.8rem; color: rgba(255,255,255,0.75);
}
.top-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.top-bar-item { display: flex; align-items: center; gap: 7px; }
.top-bar-item svg { opacity: 0.75; flex-shrink: 0; }
.top-bar-social { display: flex; align-items: center; gap: 4px; }
.top-bar-social span { margin-right: 8px; }
.top-bar-social a {
  width: 26px; height: 26px; border-radius: 5px;
  background: rgba(255,255,255,0.1); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.72rem; font-weight: 700; transition: var(--transition);
}
.top-bar-social a:hover { background: var(--green); }

/* NAVBAR */
.navbar {
  background: var(--white); position: sticky; top: 0; z-index: 1000;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06); transition: var(--transition);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; max-width: 1200px; margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 11px; flex-shrink: 0;
}
.nav-logo-icon {
  width: 42px; height: 42px; flex-shrink: 0;
}
.nav-logo-text {}
.nav-logo-name {
  font-size: 1.45rem; font-weight: 800; letter-spacing: 0.06em;
  color: var(--navy); line-height: 1;
}
.nav-logo-sub {
  font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-gray); margin-top: 1px; font-weight: 500;
}
.nav-links {
  display: flex; align-items: center; gap: 4px;
}
.nav-links > li { position: relative; }
.nav-links a {
  display: flex; align-items: center; gap: 4px;
  padding: 8px 14px; border-radius: 7px;
  font-size: 0.88rem; font-weight: 500; color: var(--text-dark);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--green); }
.nav-links a.active { color: var(--green); font-weight: 600; position: relative; }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 14px; right: 14px;
  height: 2px; background: var(--green); border-radius: 1px;
}
/* Dropdown */
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 200px; padding: 8px 0; z-index: 100;
}
.nav-links li:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 10px 20px; font-size: 0.86rem;
  color: var(--text-dark); border-radius: 0; transition: var(--transition);
}
.dropdown-menu a:hover { color: var(--green); background: var(--green-light); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); }
/* Mobile menu */
.mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999; flex-direction: column;
  padding: 24px; overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-menu-close { font-size: 1.5rem; cursor: pointer; color: var(--text-dark); }
.mobile-menu a {
  padding: 14px 0; border-bottom: 1px solid var(--border);
  font-size: 1rem; font-weight: 500; color: var(--text-dark);
}
.mobile-menu a:hover { color: var(--green); }
.mobile-menu .btn { margin-top: 20px; justify-content: center; }

/* HERO */
.hero {
  background: var(--white); overflow: hidden; position: relative;
  min-height: 88vh; display: flex; align-items: stretch;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; width: 100%; min-height: 88vh;
}
.hero-content {
  padding: 80px 48px 80px calc((100vw - 1200px) / 2 + 24px);
  max-width: calc(600px + (100vw - 1200px) / 2);
}
.hero-eyebrow { color: var(--green); font-weight: 600; font-size: 0.95rem; margin-bottom: 14px; }
.hero h1 { color: var(--navy); margin-bottom: 8px; font-size: clamp(2rem, 3.5vw, 3rem); }
.hero h1 .hero-green { color: var(--green); display: block; font-size: clamp(2rem, 3.5vw, 3rem); }
.hero-desc { font-size: 1rem; color: var(--text-mid); max-width: 480px; margin: 20px 0 36px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust { display: flex; gap: 20px; flex-wrap: wrap; padding-top: 28px; border-top: 1px solid var(--border); }
.hero-trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--text-mid); font-weight: 500; }
.hero-trust-icon { color: var(--green); font-size: 0.85rem; font-weight: 700; }
/* Hero image — bleeds to right edge, no border-radius */
.hero-image-wrap {
  position: relative; overflow: hidden; height: 100%;
  min-height: 88vh;
}
.hero-image-wrap img { height: 100%; width: 100%; object-fit: cover; object-position: center top; }
.hero-badge {
  position: absolute; bottom: 32px; left: 32px;
  background: var(--white); border-radius: var(--radius);
  padding: 14px 18px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 12px;
}
.hero-badge-icon { font-size: 1.5rem; }
.hero-badge-num { font-size: 1.4rem; font-weight: 800; color: var(--navy); line-height: 1; }
.hero-badge-txt { font-size: 0.72rem; color: var(--text-gray); }

/* SERVICES SECTION */
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  overflow: hidden; transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); border-color: transparent; }
.service-card-img { height: 180px; position: relative; overflow: hidden; }
.service-card-img img { height: 100%; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-icon {
  position: absolute; bottom: -24px; left: 20px;
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(13,27,53,0.3);
  border: 3px solid var(--white);
}
.service-card-icon svg { width: 22px; height: 22px; stroke: white; fill: none; stroke-width: 1.8; }
.service-card-body { padding: 32px 20px 24px; }
.service-card-body h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.05rem; }
.service-card-body p { font-size: 0.85rem; color: var(--text-gray); margin-bottom: 16px; }
.service-link {
  color: var(--green); font-size: 0.85rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 5px; transition: var(--transition);
}
.service-link:hover { gap: 8px; }

/* WHY CHOOSE US (dark navy banner) */
.why-section { background: var(--navy); padding: 64px 0; }
.why-section h2 { color: var(--white); text-align: center; margin-bottom: 48px; }
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.why-card { text-align: center; color: var(--white); }
.why-icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.why-icon svg { width: 26px; height: 26px; stroke: white; fill: none; stroke-width: 1.6; }
.why-card h4 { color: var(--white); margin-bottom: 8px; font-size: 0.95rem; }
.why-card p { font-size: 0.8rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* STATS BAR */
.stats-bar { background: var(--white); padding: 56px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.stat-card { text-align: center; padding: 24px; }
.stat-icon { width: 48px; height: 48px; margin: 0 auto 14px; display: flex; align-items: center; justify-content: center; background: var(--green-light); border-radius: 50%; }
.stat-icon svg { width: 24px; height: 24px; stroke: var(--green); fill: none; stroke-width: 1.8; }
.stat-num {
  font-size: 2.4rem; font-weight: 800; color: var(--navy); line-height: 1;
  margin-bottom: 6px;
}
.stat-num span { color: var(--green); }
.stat-label { font-size: 0.82rem; color: var(--text-gray); font-weight: 500; }

/* CTA / PARTNER SECTION */
.partner-section { background: var(--light-bg); padding: 72px 0; }
.partner-inner {
  display: grid; grid-template-columns: 1fr 1.1fr 0.7fr;
  gap: 40px; align-items: center;
}
.partner-content h2 { color: var(--navy); margin-bottom: 14px; }
.partner-content p { margin-bottom: 28px; }
.partner-img-wrap {
  border-radius: var(--radius-xl); overflow: hidden;
  height: 380px; box-shadow: var(--shadow-lg);
}
.partner-badge {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 24px; box-shadow: var(--shadow-lg);
  text-align: center; border-top: 4px solid var(--green);
}
.partner-badge-icon { font-size: 2.2rem; margin-bottom: 14px; color: var(--navy); }
.partner-badge-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-gray); font-weight: 600; margin-bottom: 8px; }
.partner-badge-val { font-size: 2.2rem; font-weight: 800; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.partner-badge-sub { font-size: 1rem; font-weight: 600; color: var(--green); }

/* CERTIFICATIONS */
.cert-section { background: var(--white); padding: 52px 0; border-top: 1px solid var(--border); }
.cert-inner { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.cert-label { font-size: 0.82rem; font-weight: 700; color: var(--text-mid); max-width: 140px; line-height: 1.4; text-transform: uppercase; letter-spacing: 0.04em; flex-shrink: 0; }
.cert-logos { display: flex; align-items: center; gap: 36px; flex-wrap: wrap; flex: 1; }
.cert-item {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  font-weight: 800; font-size: 0.9rem; color: var(--navy);
  opacity: 0.7; transition: var(--transition);
}
.cert-item:hover { opacity: 1; }
.cert-icon { font-size: 1.8rem; margin-bottom: 4px; }
.cert-name { font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-gray); }

/* PAGE HERO (inner pages) */
.page-hero {
  background: var(--navy); padding: 80px 0 64px; position: relative; overflow: hidden;
}
.page-hero-bg-img {
  position: absolute; inset: 0; opacity: 0.12;
}
.page-hero-bg-img img { height: 100%; }
.page-hero-content { position: relative; z-index: 1; }
.breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 0.82rem; color: rgba(255,255,255,0.55); }
.breadcrumb a { color: var(--green); transition: var(--transition); }
.breadcrumb a:hover { opacity: 0.85; }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero h1 span { color: var(--green); }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 560px; font-size: 1rem; }

/* CARDS — general */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: var(--transition);
}
.card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-4px); }
.card-pad { padding: 28px; }

/* FEATURE CARDS */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.feature-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 24px; transition: var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow-lg); border-color: var(--green); transform: translateY(-4px); }
.feature-icon-wrap {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 18px;
}
.feature-card h4 { color: var(--navy); margin-bottom: 8px; }
.feature-card p { font-size: 0.85rem; }

/* VALUES */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 24px;
  text-align: center; transition: var(--transition);
}
.value-card:hover { box-shadow: var(--shadow-lg); border-color: var(--green); transform: translateY(-4px); }
.value-icon { font-size: 2rem; margin-bottom: 16px; }
.value-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 1.1rem; }
.value-card p { font-size: 0.85rem; }

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.team-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); text-align: center;
}
.team-card:hover { box-shadow: var(--shadow-lg); border-color: transparent; transform: translateY(-6px); }
.team-img { height: 220px; overflow: hidden; }
.team-img img { height: 100%; transition: transform 0.5s ease; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-info { padding: 22px 18px; }
.team-info h4 { color: var(--navy); margin-bottom: 4px; }
.team-info .role { font-size: 0.78rem; color: var(--green); font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; }
.team-info p { font-size: 0.82rem; margin-top: 10px; }

/* PROCESS */
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 28px; left: 12%; right: 12%; height: 2px;
  background: linear-gradient(90deg, var(--green), var(--navy));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; padding: 0 10px; }
.process-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.1rem; margin: 0 auto 18px;
  border: 3px solid var(--white); box-shadow: var(--shadow);
}
.process-step h4 { color: var(--navy); margin-bottom: 8px; font-size: 0.95rem; }
.process-step p { font-size: 0.82rem; }

/* TESTIMONIALS */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testi-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px; transition: var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-lg); border-color: var(--green); }
.testi-stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 3px; margin-bottom: 14px; }
.testi-text { font-size: 0.9rem; color: var(--text-mid); font-style: italic; margin-bottom: 20px; line-height: 1.75; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.testi-name { font-weight: 600; font-size: 0.88rem; color: var(--navy); }
.testi-role { font-size: 0.76rem; color: var(--text-gray); margin-top: 2px; }

/* JOBS */
.jobs-grid { display: flex; flex-direction: column; gap: 14px; }
.job-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; transition: var(--transition); cursor: pointer;
}
.job-card:hover { box-shadow: var(--shadow-lg); border-color: var(--green); }
.job-title { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 10px; }
.job-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.job-tag { display: inline-flex; align-items: center; gap: 5px; font-size: 0.76rem; color: var(--text-gray); background: var(--light-bg); border: 1px solid var(--border); padding: 4px 10px; border-radius: 100px; }
.job-type { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; padding: 4px 12px; border-radius: 100px; }
.job-type.full { background: #e8f7ee; color: var(--green); border: 1px solid rgba(42,171,82,0.25); }
.job-type.part { background: #e8f0fb; color: var(--navy); border: 1px solid rgba(13,27,53,0.2); }

/* FORM */
.form-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow);
}
.form-title { font-size: 1.35rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-subtitle { font-size: 0.86rem; color: var(--text-gray); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.form-label { font-size: 0.8rem; font-weight: 600; color: var(--text-dark); }
.form-input, .form-select, .form-textarea {
  background: var(--light-bg); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 12px 14px;
  color: var(--text-dark); font-size: 0.9rem; transition: var(--transition); width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--green); background: var(--white);
  box-shadow: 0 0 0 3px rgba(42,171,82,0.12);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-gray); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 14px; font-size: 0.95rem; border-radius: var(--radius); margin-top: 6px; }

/* CONTACT INFO */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; align-items: start; }
.contact-detail-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 20px; transition: var(--transition);
  margin-bottom: 14px;
}
.contact-detail-card:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.contact-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: var(--green-light); color: var(--green);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.contact-detail-label { font-size: 0.74rem; color: var(--text-gray); font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; margin-bottom: 3px; }
.contact-detail-val { font-weight: 600; font-size: 0.92rem; color: var(--navy); }
.contact-detail-sub { font-size: 0.78rem; color: var(--text-gray); margin-top: 2px; }

/* MAP */
.map-wrap {
  border-radius: var(--radius-xl); overflow: hidden; height: 340px;
  border: 1.5px solid var(--border); box-shadow: var(--shadow-sm);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ACCORDION */
.accordion { display: flex; flex-direction: column; gap: 10px; }
.acc-item { background: var(--white); border: 1.5px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.acc-header { display: flex; justify-content: space-between; align-items: center; padding: 18px 22px; cursor: pointer; transition: var(--transition); }
.acc-header:hover { background: var(--light-bg); }
.acc-header h4 { font-size: 0.92rem; color: var(--navy); }
.acc-icon { font-size: 1.1rem; color: var(--green); transition: var(--transition); font-weight: 700; }
.acc-item.open .acc-icon { transform: rotate(45deg); }
.acc-item.open { border-color: var(--green); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.38s ease, padding 0.3s; padding: 0 22px; }
.acc-item.open .acc-body { max-height: 200px; padding: 0 22px 18px; }
.acc-body p { font-size: 0.87rem; color: var(--text-gray); line-height: 1.7; }

/* CTA BANNER */
.cta-banner {
  background: var(--navy); border-radius: var(--radius-xl);
  padding: 60px 48px; text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(42,171,82,0.1);
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.7); max-width: 520px; margin: 0 auto 32px; position: relative; }
.cta-banner-btns { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; }

/* GALLERY */
.gallery-row { display: grid; grid-template-columns: repeat(12, 1fr); gap: 14px; }
.gallery-cell { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.gallery-cell img { height: 100%; transition: transform 0.5s ease; }
.gallery-cell:hover img { transform: scale(1.04); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,53,0.75), transparent 55%);
  opacity: 0; transition: var(--transition);
  display: flex; align-items: flex-end; padding: 16px;
}
.gallery-cell:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--white); font-size: 0.85rem; font-weight: 600; }

/* FOOTER */
footer { background: var(--navy); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 48px; margin-bottom: 56px; }
.footer-brand p { font-size: 0.86rem; color: rgba(255,255,255,0.55); margin: 16px 0 24px; max-width: 280px; line-height: 1.7; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6); display: flex; align-items: center;
  justify-content: center; font-size: 0.8rem; font-weight: 700;
  transition: var(--transition);
}
.social-btn:hover { background: var(--green); border-color: var(--green); color: var(--white); }
.footer-col h5 { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 0.87rem; color: rgba(255,255,255,0.65); transition: var(--transition); }
.footer-col ul a:hover { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--green); }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* TOAST */
.toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  background: var(--navy); border: 1px solid rgba(42,171,82,0.35);
  border-radius: var(--radius-lg); padding: 14px 22px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-xl); transform: translateY(100px); opacity: 0;
  transition: var(--transition); pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { font-size: 1.3rem; }
.toast-msg { font-size: 0.88rem; font-weight: 500; color: var(--white); }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 56px 24px 40px; max-width: 100%; }
  .hero-image-wrap { height: 340px; min-height: 340px; }
  .partner-inner { grid-template-columns: 1fr; }
  .partner-img-wrap { height: 280px; order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .top-bar-item:nth-child(2) { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .cert-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .values-grid { grid-template-columns: 1fr; }
  .gallery-row { grid-template-columns: 1fr 1fr; }
  .gallery-cell { grid-column: span 1 !important; }
  .cta-banner { padding: 40px 24px; }
  .job-card { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .btn { justify-content: center; }
  .hero h1 { font-size: 2rem; }
  .top-bar-inner { justify-content: center; }
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--light-bg); }
::-webkit-scrollbar-thumb { background: var(--green); border-radius: 3px; }
::selection { background: rgba(42,171,82,0.2); color: var(--text-dark); }

/* FLOATING CTA */
.float-cta {
  position: fixed; bottom: 28px; right: 28px; z-index: 997;
  background: var(--green); color: var(--white);
  padding: 13px 22px; border-radius: 50px;
  display: flex; align-items: center; gap: 9px;
  font-size: 0.88rem; font-weight: 600;
  box-shadow: 0 4px 24px rgba(42,171,82,0.45);
  transition: var(--transition); text-decoration: none;
  animation: floatIn 0.6s 1.5s ease both;
}
.float-cta:hover { background: var(--green-dark); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(42,171,82,0.55); }
.float-cta svg { flex-shrink: 0; }
@keyframes floatIn { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }

/* HERO SOCIAL ICONS & TRUST ICON */
.hero-trust-icon svg { width: 14px; height: 14px; stroke: var(--green); fill: none; stroke-width: 2.5; vertical-align: middle; }

/* HOW IT WORKS (process) — icon ring */
.process-icon-ring {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 18px;
  border: 3px solid var(--white); box-shadow: var(--shadow);
  position: relative; z-index: 1;
}
.process-icon-ring svg { width: 26px; height: 26px; stroke: white; fill: none; stroke-width: 1.6; }

/* CERT BADGE STYLED */
.cert-badge {
  display: flex; flex-direction: column; align-items: center;
  padding: 14px 20px; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); background: var(--white);
  transition: var(--transition); gap: 4px; min-width: 100px;
}
.cert-badge:hover { border-color: var(--green); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.cert-badge-logo {
  font-size: 1.05rem; font-weight: 800; letter-spacing: 0.08em; line-height: 1;
}
.cert-badge-name { font-size: 0.68rem; color: var(--text-gray); text-transform: uppercase; letter-spacing: 0.06em; text-align: center; }

/* SVG ICON UTILITY */
.icon-svg { display: inline-flex; align-items: center; justify-content: center; }

/* SOCIAL SVG BTN */
.social-btn svg { width: 15px; height: 15px; }
.top-bar-social a svg { width: 14px; height: 14px; }

/* VIDEO PLACEHOLDER SECTION */
.video-section { position: relative; overflow: hidden; }
.video-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,53,0.88) 0%, rgba(13,27,53,0.72) 100%);
  z-index: 1;
}
.video-bg img { height: 100%; object-position: center; }
.video-content { position: relative; z-index: 2; text-align: center; padding: 100px 24px; }
.play-btn {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--white); display: inline-flex;
  align-items: center; justify-content: center;
  margin-bottom: 28px; box-shadow: 0 0 0 12px rgba(255,255,255,0.15);
  transition: var(--transition); cursor: pointer; border: none;
}
.play-btn:hover { transform: scale(1.1); box-shadow: 0 0 0 18px rgba(255,255,255,0.1); }
.play-btn svg { width: 28px; height: 28px; fill: var(--navy); margin-left: 4px; }

/* HERO BADGE SVG */
.hero-badge-icon svg { width: 28px; height: 28px; stroke: var(--green); fill: none; stroke-width: 1.6; }

/* PARTNER BADGE SVG */
.partner-badge-icon svg { width: 36px; height: 36px; stroke: var(--navy); fill: none; stroke-width: 1.5; }

/* VALUE SVG ICON */
.value-icon { display: flex; align-items: center; justify-content: center; width: 56px; height: 56px; border-radius: 16px; background: var(--green-light); margin: 0 auto 16px; }
.value-icon svg { width: 26px; height: 26px; stroke: var(--green); fill: none; stroke-width: 1.8; }

/* FEATURE SVG ICON */
.feature-icon-wrap { display: flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 14px; background: var(--green-light); margin-bottom: 18px; }
.feature-icon-wrap svg { width: 24px; height: 24px; stroke: var(--green); fill: none; stroke-width: 1.8; }

/* CONTACT SVG ICON */
.contact-icon { display: flex; align-items: center; justify-content: center; }
.contact-icon svg { width: 22px; height: 22px; stroke: var(--green); fill: none; stroke-width: 1.8; }

/* GUARANTEE CARD */
.guarantee-card {
  padding: 28px 20px; background: var(--green-light);
  border-radius: var(--radius-lg); border: 1px solid rgba(42,171,82,0.15);
  text-align: center;
}
.guarantee-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; box-shadow: var(--shadow-sm); }
.guarantee-icon svg { width: 24px; height: 24px; stroke: var(--green); fill: none; stroke-width: 1.8; }

/* BEFORE/AFTER STRIP */
.proof-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.proof-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; height: 260px; }
.proof-card img { height: 100%; }
.proof-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,27,53,0.85) 0%, rgba(13,27,53,0.1) 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px;
}
.proof-tag {
  display: inline-block; background: var(--green); color: var(--white);
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 4px; margin-bottom: 6px;
}
.proof-label { color: var(--white); font-weight: 600; font-size: 0.9rem; }

@media (max-width: 768px) {
  .float-cta span { display: none; }
  .float-cta { padding: 14px; border-radius: 50%; width: 52px; height: 52px; justify-content: center; }
  .proof-grid { grid-template-columns: 1fr; }
}
