/* ============================================================
   CHRISTALE CLEAN - site.css (consolidated)
   All styles merged from main.css + responsive.css + custom.css
   ============================================================ */
/* ============================================================
   CHRISTALE CLEAN â€” main.css
   Pixel-Perfect Samsic.com Clone (Green Brand Edition)
   Montserrat Â· Flat Design Â· Precise Typography Scale
   ============================================================ */


/* ---------- CSS Reset (WordPress-safe) ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: #555555;
  background: #ffffff;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  opacity: 1 !important;
  visibility: visible !important;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Leaflet map tiles — undo global img reset */
.leaflet-container img {
  max-width: none !important;
  height: auto;
  display: inline !important;
}

.leaflet-container {
  overflow: hidden;
}

.leaflet-tile-pane img {
  max-width: none !important;
  width: 256px;
  height: 256px;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

input,
select,
textarea {
  font-family: 'Montserrat', sans-serif;
}

/* ---------- Layout ---------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ---------- Typography System ---------- */

/* Section label / category tag */
.label-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2e8b2e;
  display: block;
  margin-bottom: 12px;
}

/* Section heading */
.section-title {
  font-size: 28px;
  font-weight: 700;
  color: #1c1c1c;
  line-height: 1.25;
  margin-bottom: 8px;
}

/* Large heading (hero, careers) */
.heading-xl {
  font-size: 36px;
  font-weight: 800;
  color: #1c1c1c;
  line-height: 1.1;
}

/* Green underbar decorator */
.green-bar {
  width: 40px;
  height: 3px;
  background: #2e8b2e;
  margin-top: 8px;
  margin-bottom: 20px;
  display: block;
}

.green-bar.center {
  margin-left: auto;
  margin-right: auto;
}

/* Body text override */
.body-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: #555555;
}

/* Subtitle / helper text */
.subtitle-text {
  font-size: 14px;
  color: #888888;
  margin-top: 12px;
  line-height: 1.6;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 13px 28px;
  border-radius: 4px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}

/* Primary green fill button */
.btn-primary {
  background: #2e8b2e;
  color: #ffffff;
  border: 2px solid #2e8b2e;
}

.btn-primary:hover {
  background: #1a6b1a;
  border-color: #1a6b1a;
}

/* Outline button */
.btn-outline {
  background: transparent;
  color: #2e8b2e;
  border: 2px solid #2e8b2e;
}

.btn-outline:hover {
  background: #2e8b2e;
  color: #ffffff;
}

/* Small button (footer) */
.btn-sm {
  padding: 10px 20px;
  font-size: 12px;
}

/* ---------- SCROLL PROGRESS BAR ---------- */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: #2e8b2e;
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  height: 100px;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  height: 100%;
}

.header-logo-img {
  max-height: 80px;
  width: auto;
  display: block;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
}

.nav-links a {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333333;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 0 18px;
  height: 100px;
  line-height: 100px;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.nav-links a:hover {
  color: #2e8b2e;
}

.nav-links a.active {
  color: #2e8b2e;
  border-bottom: 2px solid #2e8b2e;
}

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}

.lang-switch button {
  background: transparent;
  border: 1px solid #cccccc;
  border-radius: 3px;
  color: #666666;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
  cursor: pointer;
}

.lang-switch button.active,
.lang-switch button:hover {
  background: #2e8b2e;
  color: #ffffff;
  border-color: #2e8b2e;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #333333;
  border-radius: 1px;
  transition: all 0.25s ease;
}

.nav-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile nav dropdown */
.mobile-menu {
  display: none;
  position: fixed;
  top: 100px;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  z-index: 998;
  flex-direction: column;
  padding: 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 16px 40px;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s ease, background 0.2s ease;
}

.mobile-menu a:hover,
.mobile-menu a.active {
  color: #2e8b2e;
  background: #f9fdf9;
}

.mobile-menu .lang-switch {
  padding: 16px 40px;
  margin: 0;
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 520px;
  overflow: hidden;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Left-dark, right-transparent overlay â€” exactly like Samsic */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 40%, rgba(0, 0, 0, 0.1) 100%);
  display: flex;
  align-items: center;
  padding-left: 80px;
  padding-right: 40px;
}

.hero-content {
  max-width: 520px;
}

.hero-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a8d8a8;
  margin-bottom: 12px;
}

.hero-headline {
  font-size: 48px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  max-width: 520px;
}

.hero-sub {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 16px;
  max-width: 400px;
  line-height: 1.65;
}

.hero-cta {
  margin-top: 28px;
  background: #2e8b2e;
  color: #ffffff;
  border: none;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.25s ease;
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
}

.hero-cta:hover {
  background: #1a6b1a;
}

/* Swiper overrides for hero */
.hero-swiper .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: background 0.25s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: #ffffff;
  width: 10px;
  border-radius: 50%;
}

.hero-swiper .swiper-pagination {
  bottom: 20px;
}

/* Swiper nav arrows */
.hero-swiper .swiper-button-next,
.hero-swiper .swiper-button-prev {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  transition: background 0.25s ease;
}

.hero-swiper .swiper-button-next:hover,
.hero-swiper .swiper-button-prev:hover {
  background: rgba(255, 255, 255, 0.35);
}

.hero-swiper .swiper-button-next::after,
.hero-swiper .swiper-button-prev::after {
  font-size: 14px;
  font-weight: 700;
}

/* ============================================================
   PAGE HERO BANNER (inner pages)
   ============================================================ */
.hero-banner {
  position: relative;
  width: 100%;
  height: 380px;
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.65) 40%, rgba(0, 0, 0, 0.15) 100%);
  display: flex;
  align-items: center;
  padding-left: 80px;
}

.hero-banner-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a8d8a8;
  margin-bottom: 12px;
}

.hero-banner-title {
  font-size: 38px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
  max-width: 560px;
}

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 14px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s;
}

.breadcrumb a:hover {
  color: #ffffff;
}

.breadcrumb .sep {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: #ffffff;
  border-bottom: 1px solid #e8e8e8;
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stats-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.stat-item {
  text-align: center;
  padding: 8px 24px;
  border-right: 1px solid #e8e8e8;
}

.stat-item:last-child {
  border-right: none;
}

.stat-number {
  font-size: 52px;
  font-weight: 800;
  color: #1c1c1c;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
}

.stat-suffix {
  color: #2e8b2e;
}

.stat-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999999;
  margin-top: 8px;
  display: block;
}

/* ============================================================
   SECTION PADDING RHYTHM
   ============================================================ */
.section-lg,
.section-md,
.section-sm,
.quote-section,
.careers-section,
.cta-section,
.news-section,
.counter-section,
.president-block,
.contact-section,
.cert-bar,
.stats-bar {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}

.section-lg {
  padding: 96px 0;
}

.section-md {
  padding: 64px 0;
}

.section-sm {
  padding: 48px 0;
}

.bg-white {
  background: #ffffff;
}

.bg-grey {
  background: #f5f5f5;
}

/* ============================================================
   NEWS CARDS
   ============================================================ */
.news-section {
  background: #ffffff;
  padding: 64px 0;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1160px;
  margin: 32px auto 0;
}

/* Flat card â€” no shadow, no border, no radius */
.news-card {
  background: #ffffff;
}

.news-card .card-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.news-card .card-body {
  padding: 20px 0 0;
}

.news-card .card-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2e8b2e;
  display: block;
}

.news-card .card-title {
  font-size: 18px;
  font-weight: 700;
  color: #1c1c1c;
  line-height: 1.3;
  margin-top: 8px;
}

.news-card .card-excerpt {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  margin-top: 8px;
}

.news-card .card-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: #2e8b2e;
  margin-top: 12px;
  transition: color 0.2s ease;
}

.news-card .card-link:hover {
  color: #1a6b1a;
}

/* ============================================================
   QUOTE SECTION
   ============================================================ */
.quote-section {
  background: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.quote-mark {
  display: block;
  font-size: 48px;
  color: #e8e8e8;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: -8px;
}

.quote-text {
  font-size: 24px;
  font-style: italic;
  font-weight: 400;
  color: #333333;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ============================================================
   COUNTER SECTION â€” WHITE background like Samsic
   ============================================================ */
.counter-section {
  background: #ffffff;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding: 56px 0;
}

.counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  text-align: center;
}

.counter-item {
  padding: 8px 24px;
  border-right: 1px solid #e8e8e8;
}

.counter-item:last-child {
  border-right: none;
}

.counter-number-wrap {
  font-size: 56px;
  font-weight: 800;
  color: #1c1c1c;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
}

.counter-suffix {
  color: #2e8b2e;
}

.counter-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #999999;
  margin-top: 10px;
  display: block;
}

/* ============================================================
   CAREERS TEASER
   ============================================================ */
.careers-section {
  background: #ffffff;
  padding: 72px 0;
  overflow: hidden;
}

.careers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.careers-media {
  position: relative;
  overflow: hidden;
}

.careers-media img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
  cursor: pointer;
}

.play-overlay:hover .play-btn-circle {
  background: #2e8b2e;
}

.play-overlay:hover .play-btn-icon {
  color: #ffffff;
}

.play-btn-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.play-btn-icon {
  color: #2e8b2e;
  font-size: 1.2rem;
  margin-left: 4px;
  transition: color 0.25s ease;
}

.careers-content .label-tag {
  margin-bottom: 12px;
}

.careers-content .heading-xl {
  margin-bottom: 0;
}

.careers-content p {
  font-size: 15px;
  color: #555555;
  line-height: 1.75;
  margin-top: 20px;
}

/* ============================================================
   BOTTOM CTA SECTION â€” #f5f5f5 light grey like Samsic
   ============================================================ */
.cta-section {
  position: relative;
  background: #f5f5f5;
  padding: 80px 0;
  text-align: center;
  overflow-x: hidden;
}

.cta-section .cta-bg {
  position: absolute;
  inset: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
  opacity: 0.06;
  pointer-events: none;
}

.cta-section .container {
  position: relative;
  z-index: 1;
}

.cta-section .section-title {
  max-width: 560px;
  margin: 12px auto 0;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER â€” #1a1a1a exactly like Samsic
   ============================================================ */
.footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 56px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid #333333;
}

/* Footer brand column */
.footer-brand .logo-main {
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

.footer-brand .logo-tagline {
  font-size: 11px;
  font-style: italic;
  color: #999999;
  display: block;
  margin-top: 4px;
}

.footer-brand p {
  font-size: 13px;
  color: #aaaaaa;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 240px;
}

/* Footer social icons */
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-col .footer-social a,
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cccccc;
  font-size: 15px;
  transition: background 0.25s ease, color 0.25s ease;
  line-height: 1;
  text-decoration: none;
}

.footer-col .footer-social a:hover,
.footer-social a:hover {
  background: #2e8b2e;
  color: #ffffff;
}

/* Footer column headings */
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #2e8b2e;
  margin-bottom: 16px;
  display: block;
}

/* Footer links */
.footer-col a {
  display: block;
  font-size: 13px;
  color: #cccccc;
  line-height: 2.2;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: #ffffff;
}

/* Footer contact items */
.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.footer-contact-row i {
  color: #2e8b2e;
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 13px;
  width: 14px;
}

.footer-contact-row span {
  font-size: 13px;
  color: #cccccc;
  line-height: 1.6;
}

/* Footer bottom bar */
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom p,
.footer-bottom a {
  font-size: 12px;
  color: #666666;
}

.footer-bottom a:hover {
  color: #999999;
}

.footer-bottom .footer-legal {
  display: flex;
  gap: 16px;
}

/* ============================================================
   PRESIDENT QUOTE BLOCK
   ============================================================ */
.president-block {
  background: #ffffff;
  padding: 80px 0;
}

.president-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 80px;
  align-items: center;
}

.president-quote {
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  color: #1c1c1c;
  line-height: 1.6;
  padding-left: 28px;
  border-left: 3px solid #2e8b2e;
}

.president-profile {
  text-align: center;
}

.president-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 12px;
  border: 3px solid #e8e8e8;
}

.president-name {
  font-size: 15px;
  font-weight: 700;
  color: #1c1c1c;
}

.president-role {
  font-size: 12px;
  color: #999999;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============================================================
   AMBITION SECTION
   ============================================================ */
.ambition-text p {
  font-size: 15px;
  color: #555555;
  line-height: 1.85;
  margin-bottom: 16px;
}

.ambition-text p strong {
  color: #1c1c1c;
  font-weight: 700;
}

/* ============================================================
   WIDE PANORAMIC IMAGE
   ============================================================ */
.wide-image {
  width: 100%;
  height: 340px;
  overflow: hidden;
}

.wide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

/* ============================================================
   SOLUTIONS SECTION
   ============================================================ */
.solutions-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 64px;
  align-items: center;
}

.solutions-video {
  position: relative;
  overflow: hidden;
}

.solutions-video img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.solutions-text p {
  font-size: 15px;
  color: #555555;
  line-height: 1.75;
  margin-bottom: 16px;
}

.solutions-text p strong {
  color: #1c1c1c;
  font-weight: 700;
}

/* ============================================================
   SERVICE CARDS GRID (Prestations page)
   ============================================================ */
.service-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.service-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.service-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-card:hover img {
  transform: scale(1.04);
}

.service-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.1) 100%);
  padding: 20px 18px;
}

.service-card-label {
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
}

.service-card-sub {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================================
   ICON CARDS (Engagements page)
   ============================================================ */
.icon-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 32px;
}

.icon-card {
  background: #ffffff;
  padding: 32px 28px 40px;
  text-align: left;
  border-top: 3px solid #e8e8e8;
  transition: all 0.25s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.icon-card:hover {
  border-top-color: #2e8b2e;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.icon-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: #2e8b2e;
  margin-bottom: 16px;
}

.icon-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 10px;
  line-height: 1.3;
}

.icon-card p {
  font-size: 14px;
  color: #666666;
  line-height: 1.7;
}

/* ============================================================
   CHECKLIST
   ============================================================ */
.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 14px;
  color: #444444;
  line-height: 1.5;
}

.checklist li::before {
  content: '';
  width: 20px;
  height: 20px;
  background: #2e8b2e;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='white' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ============================================================
   CERTIFICATION BAR
   ============================================================ */
.cert-bar {
  background: #f5f5f5;
  padding: 40px 0;
  border-top: 1px solid #e8e8e8;
}

.cert-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cert-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 110px;
  height: 52px;
  border: 1px solid #dddddd;
  background: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #888888;
  text-transform: uppercase;
}

/* ============================================================
   VALUES SECTION (2-col)
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.values-text p {
  font-size: 15px;
  color: #555555;
  line-height: 1.85;
  margin-bottom: 14px;
}

.values-text p strong {
  color: #1c1c1c;
  font-weight: 700;
}

/* ============================================================
   MAP SECTION
   ============================================================ */
#map {
  width: 100%;
  height: 460px;
  z-index: 1;
  border: 1px solid #e8e8e8;
  display: block;
}

/* ============================================================
   AGENCY CARDS â€” same flat style as news cards
   ============================================================ */
.agency-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 32px;
}

.agency-card {
  background: #ffffff;
  border-top: 3px solid #2e8b2e;
  padding: 28px 24px;
}

.agency-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 4px;
}

.agency-type {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2e8b2e;
  display: block;
  margin-bottom: 16px;
}

.agency-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #555555;
}

.agency-row i {
  color: #2e8b2e;
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
  font-size: 13px;
}

/* ============================================================
   CONTACT FORM (full Montserrat, clean inputs)
   ============================================================ */
.contact-section {
  background: #f5f5f5;
  padding: 80px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: start;
}

.contact-form-box {
  background: #ffffff;
  padding: 40px;
}

.contact-form-box h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 6px;
}

.contact-form-box p {
  font-size: 14px;
  color: #888888;
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dddddd;
  border-radius: 3px;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #333333;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #aaaaaa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #2e8b2e;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.btn-submit {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  font-size: 13px;
  margin-top: 8px;
}

/* Form success */
.form-success-msg {
  display: none;
  background: #f0fff0;
  border: 1px solid #2e8b2e;
  padding: 16px;
  text-align: center;
  font-size: 14px;
  color: #2e8b2e;
  font-weight: 600;
  margin-top: 16px;
}

/* Form error */
.form-error-msg {
  display: none;
  background: #fff5f5;
  border: 1px solid #e53e3e;
  padding: 16px;
  text-align: center;
  font-size: 14px;
  color: #c53030;
  font-weight: 600;
  margin-top: 16px;
}

/* Button disabled state */
.btn-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

/* Contact info box */
.contact-info-box {
  padding-top: 8px;
}

.contact-info-box h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 24px;
}

.contact-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e8b2e;
  font-size: 15px;
  flex-shrink: 0;
}

.contact-info-text strong {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #333333;
  margin-bottom: 3px;
}

.contact-info-text span {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
}

.contact-map-embed {
  margin-top: 24px;
  height: 300px;
  overflow: hidden;
  border: 1px solid #e8e8e8;
}

.contact-map-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.contact-social {
  margin-top: 20px;
  display: flex;
  gap: 10px;
}

.contact-social a {
  width: 36px;
  height: 36px;
  background: #f5f5f5;
  border: 1px solid #e8e8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555555;
  font-size: 14px;
  transition: all 0.25s ease;
}

.contact-social a:hover {
  background: #2e8b2e;
  color: #ffffff;
  border-color: #2e8b2e;
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 40px;
  height: 40px;
  background: #2e8b2e;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.3s ease;
  z-index: 990;
}

#back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
}

#back-to-top:hover {
  background: #1a6b1a;
}

/* ============================================================
   VIDEO LIGHTBOX
   ============================================================ */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.lightbox-close:hover {
  color: #cccccc;
}

.lightbox-inner {
  width: 90%;
  max-width: 860px;
  aspect-ratio: 16/9;
  background: #000;
}

.lightbox-inner iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Page transition animation is applied via the body rule above */

@keyframes pageFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* ============================================================
   SECTION HEADING HELPER
   ============================================================ */
.section-head {
  margin-bottom: 32px;
}

.section-head.center {
  text-align: center;
}

.section-head.center .green-bar {
  margin-left: auto;
  margin-right: auto;
}

/* Text utility */
.text-center {
  text-align: center;
}

.mt-8 {
  margin-top: 8px;
}

.mt-12 {
  margin-top: 12px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-32 {
  margin-top: 32px;
}

.mt-40 {
  margin-top: 40px;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
/* ============================================================
   CHRISTALE CLEAN â€” responsive.css
   Mobile-First Breakpoints â€” 768px / 480px / 375px
   ============================================================ */

/* ---------- 1024px --- Tablet Landscape ---------- */
@media (max-width: 1024px) {
  .nav-inner {
    padding: 0 24px;
  }

  .container {
    padding: 0 24px;
  }

  .hero-overlay {
    padding-left: 48px;
  }

  .hero-banner-overlay {
    padding-left: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .president-inner {
    gap: 48px;
  }

  .service-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- 768px â€” Tablet / Mobile ---------- */
@media (max-width: 768px) {

  /* Typography scale down */
  .hero-headline {
    font-size: 32px;
  }

  .hero-banner-title {
    font-size: 26px;
  }

  .heading-xl {
    font-size: 28px;
  }

  .section-title {
    font-size: 22px;
  }

  .quote-text {
    font-size: 18px;
  }

  .counter-number-wrap {
    font-size: 40px;
  }

  .stat-number {
    font-size: 36px;
  }

  /* Nav */
  #navbar,
  .nav-inner {
    height: 100px;
  }

  .header-logo-img {
    max-height: 75px;
  }

  .nav-links,
  .lang-switch {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .mobile-menu {
    top: 100px;
    max-height: calc(100vh - 100px);
  }

  /* Hero */
  .hero {
    height: 500px;
  }

  .hero-overlay {
    padding-left: 32px;
    padding-right: 24px;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-headline {
    max-width: 100%;
  }

  /* Hero banner inner pages */
  .hero-banner {
    height: 280px;
  }

  .hero-banner-overlay {
    padding-left: 32px;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    padding: 32px 16px;
  }

  .stat-item:nth-child(2n) {
    border-right: none;
  }

  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  /* News */
  .news-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Counter */
  .counter-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .counter-item {
    border-right: none;
    border-bottom: 1px solid #eeeeee;
    padding: 32px 24px;
  }

  .counter-item:last-child {
    border-bottom: none;
  }

  /* Careers */
  .careers-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Service cards */
  .service-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Icon cards */
  .icon-cards-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* President */
  .president-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .president-profile {
    order: -1;
  }

  /* Solutions */
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Values */
  .values-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Agency */
  .agency-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-form-box {
    padding: 24px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }

  /* Button stack */
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  /* Section padding reduced */
  .section-lg {
    padding: 64px 0;
  }

  .section-md {
    padding: 48px 0;
  }

  .section-sm {
    padding: 32px 0;
  }

  /* Wide image height */
  .wide-image {
    height: 220px;
  }

  /* Map */
  #map {
    height: 320px;
  }

  /* Form row */
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  /* Stats bar 3-col */
  .stats-grid.cols-3 {
    grid-template-columns: 1fr;
  }

  .stats-grid.cols-3 .stat-item {
    border-right: none;
    border-bottom: 1px solid #e8e8e8;
  }

  .stats-grid.cols-3 .stat-item:last-child {
    border-bottom: none;
  }
}

/* ---------- 480px â€” Small Mobile ---------- */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .nav-inner {
    padding: 0 16px;
  }

  .mobile-menu a {
    padding: 14px 20px;
  }

  .hero {
    height: 500px;
  }

  .hero-headline {
    font-size: 26px;
  }

  .hero-overlay {
    padding-left: 20px;
    padding-right: 16px;
  }

  .hero-sub {
    font-size: 13px;
  }

  .hero-banner {
    height: 240px;
  }

  .hero-banner-title {
    font-size: 22px;
  }

  .hero-banner-overlay {
    padding-left: 20px;
  }

  .stat-number {
    font-size: 32px;
  }

  .counter-number-wrap {
    font-size: 36px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item {
    border-right: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    padding: 24px 12px;
  }

  .stat-item:nth-child(2n) {
    border-right: none;
  }

  .stat-item:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .news-card .card-img {
    height: 180px;
  }

  .service-card img {
    height: 200px;
  }

  .president-quote {
    font-size: 17px;
    padding-left: 16px;
  }

  .quote-text {
    font-size: 16px;
  }

  .quote-section {
    padding: 40px 0;
  }

  .footer {
    padding: 40px 0 0;
  }

  .footer-grid {
    gap: 24px;
  }

  .section-lg {
    padding: 48px 0;
  }

  .section-md {
    padding: 32px 0;
  }

  .careers-section {
    padding: 48px 0;
  }

  .president-block {
    padding: 48px 0;
  }

  .contact-section {
    padding: 48px 0;
  }

  .cta-section {
    padding: 48px 0;
  }
}

/* ---------- 375px â€” Very Small Mobile ---------- */
@media (max-width: 375px) {
  .hero-headline {
    font-size: 22px;
  }

  .hero-banner-title {
    font-size: 18px;
  }

  .hero-cta,
  .btn {
    padding: 11px 20px;
    font-size: 12px;
  }

  .heading-xl {
    font-size: 24px;
  }

  .section-title {
    font-size: 20px;
  }
}

/* ============================================================
   UTILITY CLASSES (extracted from inline styles)
   ============================================================ */
/* ============================================================
   CHRISTALE CLEAN â€” custom.css
   Refactored styles from HTML files
   ============================================================ */

/* ---------- Flexbox Utilities ---------- */
.u-flex {
  display: flex;
}

.u-flex-wrap {
  flex-wrap: wrap;
}

.u-align-center {
  align-items: center;
}

.u-justify-center {
  justify-content: center;
}

.u-gap-10 {
  gap: 10px;
}

.u-gap-16 {
  gap: 16px;
}

.u-gap-40 {
  gap: 40px;
}

.u-gap-60 {
  gap: 60px;
}

/* Combined Flex Utilities */
.u-flex-center-gap-16 {
  display: flex;
  align-items: center;
  gap: 16px;
}

.u-flex-wrap-center-gap-60 {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: center;
}

.u-flex-center-justify-wrap-gap-40 {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Layout Utilities ---------- */
.u-flex-1-1-400 {
  flex: 1 1 400px;
}

.u-pos-relative {
  position: relative;
}

.u-pos-absolute {
  position: absolute;
}

.u-display-none {
  display: none;
}

.u-display-block {
  display: block;
}

.u-w-full {
  width: 100%;
}

.u-h-auto {
  height: auto;
}

.u-max-w-600 {
  max-width: 600px;
}

.u-max-w-720 {
  max-width: 720px;
}

.u-max-w-760 {
  max-width: 760px;
}

.u-mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Spacing Utilities ---------- */
.u-mb-5 {
  margin-bottom: 5px;
}

.u-mb-8 {
  margin-bottom: 8px;
}

.u-mb-12 {
  margin-bottom: 12px;
}

.u-mb-15 {
  margin-bottom: 15px;
}

.u-mb-20 {
  margin-bottom: 20px;
}

.u-mb-24 {
  margin-bottom: 24px;
}

.u-mb-32 {
  margin-bottom: 32px;
}

.u-mt-5 {
  margin-top: 5px;
}

.u-mt-10 {
  margin-top: 10px;
}

.u-mt-20 {
  margin-top: 20px;
}

.u-mt-24 {
  margin-top: 24px;
}

.u-p-0 {
  padding: 0;
}

.u-py-14 {
  padding-top: 14px;
  padding-bottom: 14px;
}

.u-p-20-30 {
  padding: 20px 30px;
}

/* ---------- Typography Utilities ---------- */
.u-text-center {
  text-align: center;
}

.u-fw-600 {
  font-weight: 600;
}

.u-fw-700 {
  font-weight: 700;
}

.u-fw-800 {
  font-weight: 800;
}

.u-fs-11 {
  font-size: 11px;
}

.u-fs-12 {
  font-size: 12px;
}

.u-fs-13 {
  font-size: 13px;
}

.u-fs-14 {
  font-size: 14px;
}

.u-fs-24 {
  font-size: 24px;
}

.u-lh-1 {
  line-height: 1;
}

.u-ls-1 {
  letter-spacing: 1px;
}

.u-ls-1-5 {
  letter-spacing: 1.5px;
}

.u-text-uppercase {
  text-transform: uppercase;
}

.u-color-white {
  color: #ffffff;
}

.u-color-dark {
  color: #333333;
}

.u-color-green {
  color: #2e8b2e;
}

.u-color-light-green {
  color: #a8d8a8;
}

/* ---------- Visual Utilities ---------- */
.u-bg-green {
  background: #2e8b2e;
}

.u-bg-light-grey {
  background: #e8f4e8;
}

.u-rounded-4 {
  border-radius: 4px;
}

.u-rounded-8 {
  border-radius: 8px;
}

.u-rounded-12 {
  border-radius: 12px;
}

.u-rounded-50 {
  border-radius: 50%;
}

.u-shadow-sm {
  box-shadow: 0 5px 15px rgba(46, 139, 46, 0.3);
}

.u-shadow-md {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.u-border-top-grey {
  border-top: 1px solid #f0f0f0;
}

.u-border-bottom-grey {
  border-bottom: 1px solid #f0f0f0;
}

.u-border-top-dark {
  border-top: 1px solid #333333;
}

.u-object-cover {
  object-fit: cover;
}

.u-mr-5 {
  margin-right: 5px;
}

/* ---------- Component Specific Utilities ---------- */

/* Leaflet Map Pin */
.u-checkmark-pin-map {
  width: 18px;
  height: 18px;
  background: #2e8b2e;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.35);
}

/* Map Popup */
.u-map-popup-inner {
  font-family: 'Montserrat', sans-serif;
  padding: 4px;
  min-width: 220px;
}

.u-map-popup-title {
  font-size: 14px;
  font-weight: 700;
  color: #1c1c1c;
  margin-bottom: 6px;
}

.u-map-popup-row {
  font-size: 12px;
  color: #555;
  margin: 3px 0;
}

/* About Section Box (Expertise) */
.u-about-stats-box {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: #2e8b2e;
  color: #fff;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(46, 139, 46, 0.3);
}

/* Checkmark Circle */
.u-checkmark-circle {
  width: 24px;
  height: 24px;
  background: #e8f4e8;
  color: #2e8b2e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

/* Contact Quick Info Bar Items */
.u-contact-bar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

/* Agency Card Custom Classes */
.u-agency-grid-single {
  grid-template-columns: minmax(300px, 450px);
  justify-content: center;
}

/* Image styles */
.u-img-styled {
  border-radius: 12px;
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* ============================================================
   WORDPRESS COMPATIBILITY OVERRIDES
   These rules prevent WordPress themes from hiding content
   ============================================================ */

/* Force all major containers to be visible */
.container,
.nav-inner,
.hero,
.hero-banner,
.hero-overlay,
.hero-banner-overlay,
.hero-content {
  visibility: visible !important;
  opacity: 1 !important;
}

/* Prevent WordPress wrappers from collapsing content */
.site-content,
.entry-content,
.page-content,
#content,
#primary,
#main,
.wp-site-blocks {
  overflow: visible !important;
  visibility: visible !important;
  opacity: 1 !important;
  max-height: none !important;
  height: auto !important;
}

/* WordPress uses .nav-links for pagination — scope ours */
#navbar .nav-links {
  display: flex;
  align-items: center;
  list-style: none;
}

/* Ensure .container is never hidden by WP themes */
.container {
  display: block !important;
  max-width: 1160px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Prevent WordPress from adding unwanted overflow */
#page,
#wrapper,
.site,
.site-inner {
  overflow-x: hidden;
  overflow-y: visible !important;
}

/* ============================================================
   PREMIUM ANIMATIONS — CSS-native scroll-reveal + hover effects
   Works in both static HTML (via AOS) and WordPress (via JS observer)
   ============================================================ */

/* ---------- Core keyframes ---------- */
@keyframes cc-fadeUp {
  from {
    opacity: 0;
    transform: translateY(36px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cc-fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes cc-fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes cc-scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes cc-growBar {
  from {
    width: 0;
  }

  to {
    width: 40px;
  }
}

@keyframes cc-shimmer {
  0% {
    background-position: -200% center;
  }

  100% {
    background-position: 200% center;
  }
}

@keyframes cc-pulse-green {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(46, 139, 46, 0.25);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(46, 139, 46, 0);
  }
}

@keyframes cc-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes cc-heroSlide {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ---------- Hero content entrance (static HTML) ---------- */
.hero-eyebrow,
.hero-banner-eyebrow {
  animation: cc-heroSlide 0.7s ease-out 0.2s both;
}

.hero-headline {
  animation: cc-heroSlide 0.7s ease-out 0.4s both;
}

.hero-sub {
  animation: cc-heroSlide 0.7s ease-out 0.6s both;
}

.hero-cta {
  animation: cc-heroSlide 0.7s ease-out 0.8s both;
}

.hero-banner-title {
  animation: cc-heroSlide 0.7s ease-out 0.35s both;
}

.breadcrumb {
  animation: cc-heroSlide 0.6s ease-out 0.1s both;
}

/* ---------- Green bar grow animation ---------- */
.green-bar {
  animation: cc-growBar 0.6s ease-out 0.5s both;
}

/* ---------- Label tag shimmer on appear ---------- */
.label-tag {
  background-clip: text;
  -webkit-background-clip: text;
  transition: letter-spacing 0.3s ease;
}

.label-tag:hover {
  letter-spacing: 3px;
}

/* ---------- Scroll-reveal classes (added via JS observer for WP) ---------- */
.cc-reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.cc-reveal.cc-visible {
  opacity: 1;
  transform: none;
}

.cc-reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.cc-reveal-left.cc-visible {
  opacity: 1;
  transform: none;
}

.cc-reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.cc-reveal-right.cc-visible {
  opacity: 1;
  transform: none;
}

/* Stagger delays for grid children */
.cc-reveal:nth-child(2) {
  transition-delay: 0.12s;
}

.cc-reveal:nth-child(3) {
  transition-delay: 0.24s;
}

.cc-reveal:nth-child(4) {
  transition-delay: 0.36s;
}

.cc-reveal:nth-child(5) {
  transition-delay: 0.48s;
}

.cc-reveal:nth-child(6) {
  transition-delay: 0.60s;
}

/* ---------- Icon cards — premium hover ---------- */
.icon-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.icon-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(46, 139, 46, 0.14);
}

.icon-card-icon {
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    background 0.3s ease,
    color 0.3s ease;
}

.icon-card:hover .icon-card-icon {
  transform: scale(1.18) rotate(-4deg);
  background: #2e8b2e;
  color: #ffffff;
}

/* ---------- News cards — lift + border accent ---------- */
.news-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
  border-bottom: 3px solid transparent;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  border-bottom-color: #2e8b2e;
}

.news-card .card-img {
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.news-card:hover .card-img {
  transform: scale(1.04);
}

/* ---------- Service cards — overlay lift ---------- */
.service-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

.service-card img {
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover img {
  transform: scale(1.07);
}

.service-card-overlay {
  transition: background 0.35s ease;
}

.service-card:hover .service-card-overlay {
  background: linear-gradient(to top, rgba(46, 139, 46, 0.85) 0%, rgba(0, 0, 0, 0.25) 100%);
}

/* ---------- Agency cards ---------- */
.agency-card {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.agency-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(46, 139, 46, 0.12);
}

/* ---------- Buttons — premium lift + glow ---------- */
.btn-primary {
  transition: background 0.25s ease, border-color 0.25s ease,
    transform 0.2s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  background: #1a6b1a;
  border-color: #1a6b1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 139, 46, 0.35);
}

.btn-outline {
  transition: background 0.25s ease, color 0.25s ease,
    transform 0.2s ease, box-shadow 0.25s ease;
}

.btn-outline:hover {
  background: #2e8b2e;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(46, 139, 46, 0.3);
}

.hero-cta {
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.hero-cta:hover {
  background: #1a6b1a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(46, 139, 46, 0.4);
}

/* ---------- Nav links — smooth underline grow ---------- */
.nav-links a {
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  right: 18px;
  height: 2px;
  background: #2e8b2e;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a.active::after {
  transform: scaleX(1);
}

/* ---------- Footer social icons ---------- */
.footer-social a {
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.footer-social a:hover {
  transform: translateY(-4px) scale(1.15);
}

/* ---------- Contact info icon boxes ---------- */
.contact-info-icon {
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.contact-info-row:hover .contact-info-icon {
  background: #2e8b2e;
  color: #ffffff;
  transform: scale(1.08);
}

/* ---------- Back-to-top button pulse ---------- */
#back-to-top.visible {
  animation: cc-pulse-green 2.5s ease-in-out infinite;
}

#back-to-top:hover {
  animation: none;
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 20px rgba(46, 139, 46, 0.4);
}

/* ---------- Quote section subtle entrance ---------- */
.quote-section .quote-text {
  transition: transform 0.3s ease;
}

.quote-section:hover .quote-text {
  transform: scale(1.02);
}

/* ---------- Card link arrow animation ---------- */
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.25s ease, color 0.25s ease;
}

.card-link:hover {
  gap: 8px;
}

/* ---------- Wide image subtle zoom on scroll ---------- */
.wide-image img {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.wide-image:hover img {
  transform: scale(1.02);
}

/* ---------- Cert logo hover ---------- */
.cert-logo {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cert-logo:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(46, 139, 46, 0.2);
}

/* ============================================================
   AOS OVERRIDE - Bulletproof WordPress Fallback
   Forces all [data-aos] elements to be visible by default.
   This prevents content from remaining hidden if JS fails to load.
   Our custom JS will dynamically remove the data-aos attribute and apply 
   its own scroll-reveal animations instead.
   ============================================================ */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
}