:root {
  --rec-black: #0a0a0a;
  --rec-yellow: #f5c800;
  --rec-yellow-dark: #d4a900;
  --rec-blue: #0099d4;
  --rec-blue-dark: #0077a8;
  --rec-white: #ffffff;
  --rec-gray: #f4f4f4;
  --rec-text: #1a1a1a;
  --rec-green: #218c35;
  --rec-green-light: #e8f5eb;
  --rec-green-mid: #1a7029;
  --topbar-h: 40px;
  --header-h: 90px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Nunito Sans', sans-serif;
  background: #f0f0f0;
  padding-top: calc(var(--topbar-h) + var(--header-h));
}

/* ─── TOPBAR ─────────────────────────────────────────── */
#topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--topbar-h);
  background: var(--rec-black);
  z-index: 1100;
  overflow: hidden;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 20px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar-left a,
.topbar-right a {
  color: #bbb;
  font-size: 12.5px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.3px;
  transition: color 0.25s;
}

.topbar-left a:hover,
.topbar-right a:hover {
  color: var(--rec-yellow);
}

.topbar-left a i,
.topbar-right a i {
  color: var(--rec-yellow);
  font-size: 11px;
}

.topbar-divider {
  width: 1px;
  height: 16px;
  background: #333;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-social a {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1c1c1c;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 11px !important;
  color: #888 !important;
  transition: background 0.25s, color 0.25s !important;
  gap: 0 !important;
}

.topbar-social a:hover {
  background: var(--rec-blue);
  color: #fff !important;
}

.iso-badge {
  font-size: 10.5px;
  color: var(--rec-yellow);
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  border: 1px solid #2a2a2a;
  padding: 2px 8px;
  border-radius: 2px;
}

/* ─── HEADER ─────────────────────────────────────────── */
#mainHeader {
  position: fixed;
  top: var(--topbar-h);
  left: 0;
  right: 0;
  height: var(--header-h);
  background: var(--rec-white);
  z-index: 1099;
  border-bottom: 3px solid var(--rec-yellow);
  transition: box-shadow 0.3s;
}

#mainHeader.scrolled {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

/* yellow diagonal accent strip */
#mainHeader::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 260px;
  width: 50px;
  background: var(--rec-yellow);
  clip-path: polygon(20px 0, 100% 0, calc(100% - 20px) 100%, 0 100%);
  opacity: 0.08;
  pointer-events: none;
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 0;
}

/* LOGO ZONE */
.logo-zone {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding: 0 28px 0 0;
  height: 100%;
  position: relative;
}

.logo-zone::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: #e5e5e5;
}

.logo-zone img {
  height: 60px;
  width: auto;
  object-fit: contain;
}

/* NAV */
.main-nav {
  display: flex;
  align-items: center;
  height: 100%;
  list-style: none;
  padding: 0;
  margin: 0 0 0 auto;
  gap: 0;
}

.main-nav>li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.main-nav>li>a {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--rec-text);
  text-decoration: none;
  padding: 0 18px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  transition: color 0.25s;
}

.main-nav>li>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  height: 3px;
  background: var(--rec-yellow);
  transition: left 0.3s, right 0.3s;
}

.main-nav>li:hover>a,
.main-nav>li>a.active {
  color: var(--rec-blue);
}

.main-nav>li:hover>a::after,
.main-nav>li>a.active::after {
  left: 0;
  right: 0;
}

.main-nav>li>a .nav-arrow {
  font-size: 9px;
  margin-top: 1px;
  transition: transform 0.25s;
}

.main-nav>li:hover>a .nav-arrow {
  transform: rotate(180deg);
}

/* CTA button in nav */
.main-nav>li.nav-cta>a {
  background: linear-gradient(135deg, #218c35 0%, var(--rec-blue) 100%);
  color: #fff;
  padding: 10px 22px;
  margin: 20px 0 20px 10px;
  height: auto;
  border-radius: 3px;
  letter-spacing: 1px;
  font-size: 13px;
}

.main-nav>li.nav-cta>a::after {
  display: none;
}

.main-nav>li.nav-cta>a:hover {
  background: var(--rec-blue-dark);
  color: #fff;
}




/* ─── SIMPLE DROPDOWN ─────────────────────────────────── */
.dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border-top: 3px solid var(--rec-yellow);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 5px 5px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  z-index: 999;
}

.main-nav>li:hover .dropdown-menu-custom {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateY(0);
}

.dropdown-menu-custom a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  font-size: 13.5px;
  color: #444;
  text-decoration: none;
  font-family: 'Nunito Sans', sans-serif;
  transition: background 0.2s, color 0.2s, padding-left 0.2s;
}

.dropdown-menu-custom a i {
  font-size: 12px;
  color: var(--rec-blue);
  width: 14px;
  text-align: center;
}

.dropdown-menu-custom a:hover {
  background: #f4faff;
  color: var(--rec-blue);
  padding-left: 26px;
}

/* ─── HAMBURGER ─────────────────────────────────────────── */
.hamburger-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-left: auto;
  z-index: 1200;
}

.hamburger-btn span {
  display: block;
  height: 2px;
  background: var(--rec-text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s, width 0.3s;
  transform-origin: center;
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ─── MOBILE DRAWER ─────────────────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1149;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s, visibility 0.35s;
  backdrop-filter: blur(2px);
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  background: #fff;
  z-index: 1150;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  background: #dcdcdc;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

.drawer-header img {
  height: 65px;
}

.drawer-close {
  background: none;
  border: none;
  color: #aaa;
  font-size: 20px;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

.drawer-close:hover {
  color: var(--rec-yellow);
}

.drawer-nav {
  flex: 1;
  padding: 10px 0;
}

.drawer-item>a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 22px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--rec-text);
  text-decoration: none;
  border-bottom: 1px solid #f0f0f0;
  transition: color 0.2s, background 0.2s;
}

.drawer-item>a:hover {
  color: var(--rec-blue);
  background: #f7fbff;
}

.drawer-item>a .toggle-icon {
  font-size: 12px;
  color: #aaa;
  transition: transform 0.3s;
}

.drawer-item.open>a .toggle-icon {
  transform: rotate(180deg);
  color: var(--rec-blue);
}

.drawer-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  background: #fafafa;
}

.drawer-item.open .drawer-sub {
  max-height: 600px;
}

.drawer-sub a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px 11px 32px;
  font-size: 13.5px;
  color: #555;
  text-decoration: none;
  border-bottom: 1px solid #efefef;
  transition: color 0.2s, padding-left 0.2s;
}

.drawer-sub a i {
  font-size: 12px;
  color: var(--rec-blue);
  width: 14px;
  text-align: center;
}

.drawer-sub a:hover {
  color: var(--rec-blue);
  padding-left: 38px;
  background: #f0f8ff;
}

.drawer-footer {
  padding: 18px 20px;
  background: #f8f8f8;
  border-top: 1px solid #eee;
  flex-shrink: 0;
}

.drawer-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #555;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.2s;
}

.drawer-contact a:hover {
  color: var(--rec-blue);
}

.drawer-contact a i {
  color: var(--rec-yellow);
  font-size: 12px;
}

.drawer-cta {
  display: block;
  margin-top: 14px;
  background: var(--rec-blue);
  color: #fff;
  text-align: center;
  padding: 11px;
  border-radius: 4px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.25s;
}

.drawer-cta:hover {
  background: var(--rec-blue-dark);
  color: #fff;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1100px) {
  .main-nav>li>a {
    padding: 0 13px;
    font-size: 14px;
  }
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }

  .hamburger-btn {
    display: flex;
  }

  #mainHeader::before {
    display: none;
  }

  .topbar-left .topbar-divider:not(:first-child),
  .topbar-left a:last-of-type {
    display: none;
  }
}

@media (max-width: 576px) {
  .topbar-left {
    gap: 12px;
  }

  .topbar-left a {
    font-size: 11px;
  }

  .iso-badge {
    display: none;
  }

  .mobile-drawer {
    width: 290px;
  }

  :root {
    --header-h: 76px;
  }

  .logo-zone img {
    height: 50px;
  }
}


@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scalePop {
  from {
    opacity: 0;
    transform: scale(0.86);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes lineDraw {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

/* ─── SECTION ─────────────────────────────────────────────── */
.about-section {
  padding: 88px 0;
  background: #f0f2f5;
  overflow: hidden;
}

/* ─── EYEBROW ─────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rec-blue);
  margin-bottom: 12px;
  animation: fadeRight 0.7s ease both 0.1s;
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--rec-yellow);
  border-radius: 2px;
  display: inline-block;
}

/* ─── SECTION TITLE ───────────────────────────────────────── */
.section-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--rec-black);
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  animation: fadeUp 0.7s ease both 0.2s;
}

.section-title .hl {
  color: var(--rec-blue);
  position: relative;
  display: inline-block;
}

.section-title .hl::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  height: 3px;
  background: var(--rec-yellow);
  border-radius: 2px;
  animation: lineDraw 0.6s ease both 0.75s;
  width: 0;
}

/* ═══════════════════════════════════════════════════════
    about-inner: clearfixed container so about-below
    naturally sits after both the float AND the text
═══════════════════════════════════════════════════════ */
.about-inner::after {
  content: '';
  display: table;
  clear: both;
}

/* ─── FLOAT IMAGE ─────────────────────────────────────── */
.about-img-float {
  float: left;
  width: 480px;
  margin: 6px 48px 48px 0;
  position: relative;
  animation: fadeLeft 0.85s ease both 0.25s;
}

.img-stack {
  position: relative;
  width: 100%;
}

.img-primary {
  width: 100%;
  aspect-ratio: 4/4;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  border: 5px solid #fff;
  box-shadow: 6px 12px 44px rgba(0, 0, 0, .14);
  position: relative;
  z-index: 2;
}

.img-secondary {
  position: absolute;
  bottom: -38px;
  right: -28px;
  width: 60%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
  border: 4px solid #fff;
  box-shadow: 4px 8px 28px rgba(0, 0, 0, .15);
  z-index: 3;
  animation: scalePop 0.7s ease both 0.55s;
}

.since-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--rec-yellow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 5;
  box-shadow: 0 6px 24px rgba(245, 200, 0, .45);
  animation: scalePop 0.6s ease both 0.5s;
}

.since-badge strong {
  font-family: 'Rajdhani', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--rec-black);
  line-height: 1;
}

.since-badge span {
  font-size: 9px;
  font-weight: 700;
  color: var(--rec-black);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: .7;
}

.iso-ribbon {
  position: absolute;
  bottom: 14px;
  left: 10px;
  background: var(--rec-black);
  color: var(--rec-yellow);
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 6px;
}

.img-corner-frame {
  position: absolute;
  bottom: -48px;
  left: -18px;
  width: 78px;
  height: 78px;
  border-left: 4px solid var(--rec-blue);
  border-bottom: 4px solid var(--rec-blue);
  border-radius: 0 0 0 4px;
  opacity: .35;
  z-index: 1;
}

/* ─── TEXT CONTENT (wraps beside float) ───────────────── */
.about-text-wrap {
  /* no float, no overflow:hidden — plain block, wraps beside float */
  animation: fadeRight 0.85s ease both 0.3s;
}

.about-lead {
  font-size: 15.5px;
  line-height: 1.85;
  color: #444;
  margin-bottom: 16px;
}

.about-lead strong {
  color: var(--rec-black);
  font-weight: 700;
}

.about-body {
  font-size: 14px;
  line-height: 1.92;
  color: #666;
  margin-bottom: 20px;
}

.usp-list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 18px;
}

.usp-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: #444;
  line-height: 1.5;
}

.usp-list li i {
  flex-shrink: 0;
  margin-top: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(0, 153, 212, .1);
  color: var(--rec-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
}

/* ─── BELOW-FLOAT BLOCK: full width, sits after both cols ─ */
.about-below {
  /* sits in normal flow after the clearfix — full container width */
  padding-top: 36px;
  border-top: 1px solid #e6e6e6;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  animation: fadeUp 0.7s ease both 0.55s;
}

.about-sig {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sig-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--rec-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 19px;
  flex-shrink: 0;
}

.sig-text strong {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--rec-black);
}

.sig-text span {
  font-size: 12px;
  color: #999;
}

.about-cta {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary-rec {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--rec-blue);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 26px;
  border-radius: 3px;
  text-decoration: none;
  transition: background .25s, gap .25s;
}

.btn-primary-rec:hover {
  background: var(--rec-blue-dark);
  color: #fff;
  gap: 14px;
}

.btn-outline-rec {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--rec-black);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 3px;
  border: 1.5px solid #ccc;
  text-decoration: none;
  transition: border-color .25s, color .25s;
}

.btn-outline-rec:hover {
  border-color: var(--rec-yellow);
  color: var(--rec-black);
}

/* ─── STATS BAND ──────────────────────────────────────────── */
.stats-band {
  background: var(--rec-black);
  padding: 52px 0;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rec-yellow), var(--rec-blue) 55%, transparent);
}

.stats-band::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(245, 200, 0, .04);
  pointer-events: none;
}

.stat-card {
  text-align: center;
  padding: 10px 16px;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 18%;
  bottom: 18%;
  width: 1px;
  background: rgba(255, 255, 255, .07);
}

.stat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(245, 200, 0, .1);
  color: var(--rec-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin: 0 auto 12px;
}

.stat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 50px;
  font-weight: 800;
  line-height: 1;
  color: #fff;
  letter-spacing: -1px;
}

.stat-num sup {
  font-size: 22px;
  color: var(--rec-yellow);
  vertical-align: super;
}

.stat-label {
  font-size: 11.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-top: 7px;
}

/* ─── MISSION / VISION / VALUES ──────────────────────────── */
.mission-band {
  background: var(--rec-white);
  padding: 70px 0 78px;
  position: relative;
}

.mission-band::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: var(--rec-yellow);
}

.mvv-header {
  text-align: center;
  margin-bottom: 50px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.mission-card {
  padding: 38px 34px;
  border-right: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.mission-card:last-child {
  border-right: none;
}

.mission-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--rec-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.mission-card:hover::after {
  transform: scaleX(1);
}

.mission-card:hover {
  background: #f7fbfe;
}

.mc-icon {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 18px;
}

.mc-icon.y {
  background: rgba(245, 200, 0, .12);
  color: var(--rec-yellow-dark);
}

.mc-icon.b {
  background: rgba(0, 153, 212, .1);
  color: var(--rec-blue);
}

.mc-icon.d {
  background: rgba(10, 10, 10, .07);
  color: var(--rec-black);
}

.mc-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 21px;
  font-weight: 700;
  color: var(--rec-black);
  margin-bottom: 11px;
  letter-spacing: .3px;
}

.mc-text {
  font-size: 13.5px;
  color: #777;
  line-height: 1.82;
}

/* ─── CERT TRUST BAR ──────────────────────────────────────── */
.cert-band {
  background: var(--rec-gray);
  padding: 44px 0;
  border-top: 1px solid #e4e4e4;
  border-bottom: 1px solid #e4e4e4;
}

.cert-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #c0c0c0;
  text-align: center;
  margin-bottom: 26px;
}

.cert-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.cert-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #999;
  text-decoration: none;
  transition: color .25s;
}

.cert-item i {
  font-size: 20px;
  color: #ccc;
  transition: color .25s;
}

.cert-item:hover {
  color: var(--rec-blue);
}

.cert-item:hover i {
  color: var(--rec-blue);
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 860px) {
  .about-img-float {
    float: none;
    width: 100%;
    margin: 0 0 84px;
  }

  .img-secondary {
    right: -14px;
    bottom: -30px;
  }

  .since-badge {
    top: -14px;
    right: -8px;
  }

  .usp-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .mission-card {
    border-right: none;
    border-bottom: 1px solid #f0f0f0;
  }

  .mission-card:last-child {
    border-bottom: none;
  }

  .about-section {
    padding: 56px 0 0;
  }

  .cert-items {
    gap: 24px;
  }

  .about-below {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .stat-num {
    font-size: 38px;
  }

  .about-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ─── CSS KEYFRAMES ──────────────────────────────────────────── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-22px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes lineDraw {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(22px) scale(.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ════════════════════════════════════════════════════════════════
SECTION SHELL
════════════════════════════════════════════════════════════════ */
.products-section {
  padding: 88px 0 0;
  background: #f0f2f5;
  overflow: hidden;
}

/* ─── SECTION HEADER ─────────────────────────────────────────── */
.sec-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 44px;
}

.sec-header-left {
  animation: fadeLeft .7s ease both .1s;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rec-blue);
  margin-bottom: 10px;
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--rec-yellow);
  border-radius: 2px;
  display: inline-block;
}

.sec-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  color: var(--rec-black);
  letter-spacing: .5px;
  animation: fadeUp .7s ease both .2s;
}

.sec-title .hl {
  color: var(--rec-blue);
  position: relative;
  display: inline-block;
}

.sec-title .hl::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  height: 3px;
  background: var(--rec-yellow);
  border-radius: 2px;
  width: 0;
  animation: lineDraw .6s ease both .75s;
}

.sec-header-right {
  animation: fadeUp .7s ease both .3s;
}

.view-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rec-blue);
  text-decoration: none;
  padding: 10px 20px;
  border: 1.5px solid var(--rec-blue);
  border-radius: 3px;
  transition: background .25s, color .25s, gap .25s;
}

.view-all-btn:hover {
  background: var(--rec-blue);
  color: #fff;
  gap: 13px;
}

/* ─── FILTER TABS ────────────────────────────────────────────── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  animation: fadeUp .7s ease both .35s;
}

.filter-btn {
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 3px;
  border: 1.5px solid #ddd;
  background: #fff;
  color: #888;
  cursor: pointer;
  transition: all .22s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.filter-btn i {
  font-size: 12px;
}

.filter-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--rec-yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s;
}

.filter-btn:hover {
  border-color: #bbb;
  color: var(--rec-text);
}

.filter-btn.active {
  background: var(--rec-black);
  border-color: var(--rec-black);
  color: #fff;
}

.filter-btn.active::after {
  transform: scaleX(1);
}

/* count pill on tab */
.filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  background: rgba(255, 255, 255, .15);
  color: inherit;
  line-height: 1;
}

.filter-btn:not(.active) .filter-count {
  background: #f0f0f0;
  color: #999;
}

/* ─── PRODUCT GRID ───────────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}

/* card hide/show */
.prod-card-wrap {
  animation: cardIn .5s ease both;
  display: block;
}

.prod-card-wrap.hidden {
  display: none;
}

/* stagger via nth-child */
.prod-card-wrap:nth-child(1) {
  animation-delay: .05s;
}

.prod-card-wrap:nth-child(2) {
  animation-delay: .1s;
}

.prod-card-wrap:nth-child(3) {
  animation-delay: .15s;
}

.prod-card-wrap:nth-child(4) {
  animation-delay: .2s;
}

.prod-card-wrap:nth-child(5) {
  animation-delay: .25s;
}

.prod-card-wrap:nth-child(6) {
  animation-delay: .3s;
}

.prod-card-wrap:nth-child(7) {
  animation-delay: .35s;
}

.prod-card-wrap:nth-child(8) {
  animation-delay: .4s;
}

.prod-card-wrap:nth-child(9) {
  animation-delay: .45s;
}

.prod-card-wrap:nth-child(10) {
  animation-delay: .5s;
}

/* ─── PRODUCT CARD ───────────────────────────────────────────── */
.prod-card {
  background: #fff;
  border-radius: 6px;
  border: 1px solid #ebebeb;
  overflow: hidden;
  transition: box-shadow .3s, transform .3s, border-color .3s;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}

.prod-card:hover {
  box-shadow: 0 14px 50px rgba(0, 0, 0, .1);
  transform: translateY(-5px);
  border-color: #ddd;
}

/* image zone */
.prod-img-zone {
  position: relative;
  overflow: hidden;
  background: #f8f8f8;
}

.prod-img-zone img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}

.prod-card:hover .prod-img-zone img {
  transform: scale(1.06);
}

/* blue overlay on hover */
.prod-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 153, 212, .0);
  transition: background .35s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-card:hover .prod-img-overlay {
  background: rgba(0, 153, 212, .18);
}

/* quick-view pill */
.prod-qv {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  white-space: nowrap;
  background: var(--rec-black);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 2px;
  transition: opacity .25s, transform .25s;
  display: flex;
  align-items: center;
  gap: 7px;
  pointer-events: none;
}

.prod-card:hover .prod-qv {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* category badge */
.prod-cat-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  z-index: 2;
}

.badge-solar {
  background: var(--rec-yellow);
  color: var(--rec-black);
}

.badge-cowdung {
  background: var(--rec-blue);
  color: #fff;
}

.badge-process {
  background: var(--rec-black);
  color: var(--rec-yellow);
}

/* featured ribbon */
.prod-featured {
  position: absolute;
  top: 0;
  right: 0;
  background: #e63946;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 0 0 4px;
}

/* card body */
.prod-body {
  padding: 20px 22px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.prod-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--rec-black);
  letter-spacing: .3px;
  margin-bottom: 8px;
  line-height: 1.2;
  transition: color .2s;
}

.prod-card:hover .prod-name {
  color: var(--rec-blue);
}

.prod-desc {
  font-size: 13px;
  color: #777;
  line-height: 1.75;
  margin-bottom: 14px;
  flex: 1;
}

/* spec tags */
.prod-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}

.spec-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 4px 10px;
  border-radius: 2px;
  background: #f4f4f4;
  color: #666;
  border: 1px solid #ebebeb;
}

.spec-tag i {
  font-size: 9px;
  color: var(--rec-blue);
}

/* card footer */
.prod-footer {
  padding: 14px 22px 18px;
  border-top: 1px solid #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.prod-enquire {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rec-blue);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: 3px;
  text-decoration: none;
  transition: background .25s, gap .22s;
  border: none;
  cursor: pointer;
}

.prod-enquire:hover {
  background: var(--rec-blue-dark);
  color: #fff;
  gap: 11px;
}

.prod-details {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: #aaa;
  text-decoration: none;
  transition: color .22s, gap .22s;
}

.prod-details:hover {
  color: var(--rec-blue);
  gap: 9px;
}

/* ─── NO RESULTS MESSAGE ─────────────────────────────────────── */
.no-results {
  display: none;
  text-align: center;
  padding: 50px 20px;
  grid-column: 1/-1;
}

.no-results.show {
  display: block;
}

.no-results i {
  font-size: 40px;
  color: #ddd;
  margin-bottom: 14px;
  display: block;
}

.no-results p {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  color: #bbb;
  letter-spacing: 1px;
}

/* ════════════════════════════════════════════════════════════════
FEATURED CAROUSEL BAND (Owl)
════════════════════════════════════════════════════════════════ */
.carousel-band {
  background: var(--rec-black);
  padding: 64px 0 72px;
  margin-top: 70px;
  position: relative;
  overflow: hidden;
}

.carousel-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rec-yellow), var(--rec-blue) 55%, transparent);
}

/* bg decoration */
.carousel-band::after {
  content: '';
  position: absolute;
  right: -100px;
  bottom: -100px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: rgba(0, 153, 212, .05);
  pointer-events: none;
}

.carousel-band .sec-title {
  color: #fff;
}

.carousel-band .sec-title .hl {
  color: var(--rec-yellow);
}

.carousel-band .sec-title .hl::after {
  background: var(--rec-blue);
}

.carousel-band .eyebrow {
  color: var(--rec-yellow);
}

.carousel-band .eyebrow::before {
  background: rgba(245, 200, 0, .4);
}

/* Owl custom nav */
.owl-nav-custom {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.owl-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .18);
  background: transparent;
  color: rgba(255, 255, 255, .5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: background .25s, border-color .25s, color .25s;
}

.owl-nav-btn:hover {
  background: var(--rec-yellow);
  border-color: var(--rec-yellow);
  color: var(--rec-black);
}

/* custom dots */
.owl-dots {
  margin-top: 22px !important;
}

.owl-dots .owl-dot span {
  background: rgba(255, 255, 255, .2) !important;
  width: 28px !important;
  height: 3px !important;
  border-radius: 2px !important;
  transition: background .25s, width .25s !important;
}

.owl-dots .owl-dot.active span {
  background: var(--rec-yellow) !important;
  width: 44px !important;
}

/* Carousel card */
.carousel-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 6px;
  overflow: hidden;
  transition: background .3s, border-color .3s;
  cursor: pointer;
}

.carousel-card:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .14);
}

.carousel-card .cc-img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
  transition: transform .5s;
  background: #1a2a2a;
}

.carousel-card:hover .cc-img {
  transform: scale(1.05);
}

.cc-body {
  padding: 18px 20px 20px;
}

.cc-badge {
  display: inline-block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.cc-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 8px;
  letter-spacing: .3px;
  transition: color .2s;
}

.carousel-card:hover .cc-name {
  color: var(--rec-yellow);
}

.cc-desc {
  font-size: 12.5px;
  color: rgba(255, 255, 255, .45);
  line-height: 1.7;
}

.cc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--rec-yellow);
  text-decoration: none;
  margin-top: 14px;
  transition: gap .22s;
}

.cc-link:hover {
  gap: 11px;
  color: var(--rec-yellow);
}

/* ════════════════════════════════════════════════════════════════
CTA BAND
════════════════════════════════════════════════════════════════ */
.cta-band {
  background: var(--rec-blue);
  padding: 54px 0;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  left: -60px;
  top: -60px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  pointer-events: none;
}

.cta-band::after {
  content: '';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Rajdhani', sans-serif;
  font-size: 160px;
  font-weight: 800;
  color: rgba(255, 255, 255, .04);
  content: 'GET QUOTE';
  pointer-events: none;
  white-space: nowrap;
  letter-spacing: -4px;
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.cta-text-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  letter-spacing: .4px;
}

.cta-text-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, .65);
  margin-top: 6px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cta-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: var(--rec-blue);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 3px;
  text-decoration: none;
  transition: background .25s, gap .22s;
}

.cta-btn-white:hover {
  background: #f0f0f0;
  color: var(--rec-blue);
  gap: 13px;
}

.cta-btn-outline-w {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 3px;
  border: 1.5px solid rgba(255, 255, 255, .4);
  text-decoration: none;
  transition: border-color .25s, gap .22s;
}

.cta-btn-outline-w:hover {
  border-color: #fff;
  color: #fff;
  gap: 13px;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width:1100px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:768px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sec-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .products-section {
    padding: 60px 0 0;
  }

  .cta-inner {
    flex-direction: column;
  }
}

@media (max-width:576px) {
  .filter-bar {
    gap: 6px;
  }

  .filter-btn {
    font-size: 12px;
    padding: 8px 14px;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-btn-white,
  .cta-btn-outline-w {
    flex: 1;
    justify-content: center;
  }
}

/* ── keyframes ── */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-26px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(26px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes lineDraw {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@keyframes scalePop {
  from {
    opacity: 0;
    transform: scale(0.86);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes tickerScroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes barFill {
  from {
    width: 0;
  }

  to {
    width: var(--bar-w);
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}


/* ════════════════════════════════════════════════════════════
   WHY CHOOSE US — MAIN SECTION (LIGHT)
════════════════════════════════════════════════════════════ */
.wcu-section {
  background: #fff;
  padding: 90px 0 0;
  position: relative;
  overflow: hidden;
}

/* faint green radial wash top-right */
.wcu-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 140, 53, .07) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── SECTION HEADER ────────────────────────────────────── */
.wcu-header {
  text-align: center;
  margin-bottom: 60px;
  animation: fadeUp .7s ease both .1s;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rec-green);
  margin-bottom: 12px;
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--rec-yellow);
  border-radius: 2px;
  display: inline-block;
}

.sec-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(30px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--rec-black);
  letter-spacing: .4px;
}

.sec-title .hl-blue {
  color: var(--rec-blue);
  position: relative;
  display: inline-block;
}

.sec-title .hl-blue::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  height: 3px;
  background: var(--rec-yellow);
  border-radius: 2px;
  width: 0;
  animation: lineDraw .6s ease both .75s;
}

.sec-title .hl-green {
  color: var(--rec-green);
}

.sec-sub {
  font-size: 15px;
  color: #777;
  line-height: 1.82;
  max-width: 580px;
  margin: 14px auto 0;
}


/* ════════════════════════════════════════════════════════════
   SPLIT ROWS  (image  ←→  content, alternating)
════════════════════════════════════════════════════════════ */
.split-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 0;
  border-top: 1px solid #f0f0f0;
}

.split-block:last-of-type {
  border-bottom: 1px solid #f0f0f0;
}

/* image column */
.split-img-col {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.split-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s ease;
}

.split-block:hover .split-img-col img {
  transform: scale(1.04);
}

/* overlay tint */
.split-img-col::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(33, 140, 53, .25) 0%, rgba(0, 0, 0, .18) 100%);
  transition: opacity .4s;
}

.split-img-col.blue-tint::after {
  background: linear-gradient(135deg, rgba(0, 153, 212, .25) 0%, rgba(0, 0, 0, .18) 100%);
}

.split-img-col.yellow-tint::after {
  background: linear-gradient(135deg, rgba(245, 200, 0, .2) 0%, rgba(0, 0, 0, .18) 100%);
}

/* image badge */
.img-badge {
  position: absolute;
  bottom: 22px;
  left: 22px;
  z-index: 3;
  background: rgba(10, 10, 10, .7);
  backdrop-filter: blur(8px);
  color: #fff;
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-left: 3px solid var(--rec-yellow);
}

.img-badge.green-border {
  border-left-color: var(--rec-green);
}

.img-badge.blue-border {
  border-left-color: var(--rec-blue);
}

.img-badge i {
  font-size: 11px;
  color: var(--rec-yellow);
}

.img-badge.green-border i {
  color: #6ee88a;
}

.img-badge.blue-border i {
  color: #5dd5f5;
}

/* floating stat card on image */
.img-stat-card {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 3;
  background: #fff;
  border-radius: 6px;
  padding: 14px 18px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, .14);
  text-align: center;
  min-width: 100px;
  animation: floatY 4s ease-in-out infinite;
}

.img-stat-card strong {
  display: block;
  font-family: 'Rajdhani', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--rec-green);
  line-height: 1;
}

.img-stat-card strong.blue {
  color: var(--rec-blue);
}

.img-stat-card strong.yellow {
  color: var(--rec-yellow-dark);
}

.img-stat-card span {
  font-size: 10.5px;
  color: #888;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  font-family: 'Rajdhani', sans-serif;
  font-weight: 600;
  margin-top: 3px;
  display: block;
}

/* content column */
.split-content-col {
  padding: 56px 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
  position: relative;
}

.split-content-col.bg-light-green {
  background: #f6fdf7;
}

.split-content-col.bg-light-blue {
  background: #f4fbff;
}

.split-content-col.bg-light-yellow {
  background: #fffdf0;
}

/* vertical accent bar inside content */
.split-content-col::before {
  content: '';
  position: absolute;
  left: 0;
  top: 15%;
  bottom: 15%;
  width: 4px;
  border-radius: 2px;
  background: var(--rec-green);
  opacity: .35;
}

.split-content-col.blue-accent::before {
  background: var(--rec-blue);
}

.split-content-col.yellow-accent::before {
  background: var(--rec-yellow);
}

.split-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
  margin-bottom: 16px;
  width: fit-content;
}

.tag-green {
  background: var(--rec-green-light);
  color: var(--rec-green);
}

.tag-blue {
  background: rgba(0, 153, 212, .08);
  color: var(--rec-blue);
}

.tag-yellow {
  background: rgba(245, 200, 0, .12);
  color: var(--rec-yellow-dark);
}

.split-tag i {
  font-size: 10px;
}

.split-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  color: var(--rec-black);
  line-height: 1.15;
  letter-spacing: .3px;
  margin-bottom: 14px;
  animation: fadeLeft .7s ease both .15s;
}

.split-title span.g {
  color: var(--rec-green);
}

.split-title span.b {
  color: var(--rec-blue);
}

.split-title span.y {
  color: var(--rec-yellow-dark);
}

.split-desc {
  font-size: 14.5px;
  color: #666;
  line-height: 1.88;
  margin-bottom: 22px;
}

/* bullet list inside split */
.split-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.split-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 13.5px;
  color: #555;
  line-height: 1.55;
}

.split-bullets li .bul-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  margin-top: 1px;
}

.bul-green {
  background: var(--rec-green-light);
  color: var(--rec-green);
}

.bul-blue {
  background: rgba(0, 153, 212, .1);
  color: var(--rec-blue);
}

.bul-yellow {
  background: rgba(245, 200, 0, .15);
  color: var(--rec-yellow-dark);
}

/* small link arrow */
.split-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: gap .22s;
}

.link-green {
  color: var(--rec-green);
}

.link-blue {
  color: var(--rec-blue);
}

.link-yellow {
  color: var(--rec-yellow-dark);
}

.split-link:hover {
  gap: 13px;
}

/* reverse column order for even rows */
.split-block.reverse .split-img-col {
  order: 2;
}

.split-block.reverse .split-content-col {
  order: 1;
}


/* ════════════════════════════════════════════════════════════
   FEATURE CARDS ROW  (icons + numbers)
════════════════════════════════════════════════════════════ */
.feat-band {
  background: var(--rec-green);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.feat-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rec-yellow), rgba(255, 255, 255, .2) 60%, transparent);
}

.feat-band::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  pointer-events: none;
}

.feat-card {
  text-align: center;
  padding: 10px 20px;
  position: relative;
  animation: fadeUp .55s ease both;
}

.feat-card:nth-child(1) {
  animation-delay: .05s;
}

.feat-card:nth-child(2) {
  animation-delay: .12s;
}

.feat-card:nth-child(3) {
  animation-delay: .19s;
}

.feat-card:nth-child(4) {
  animation-delay: .26s;
}

.feat-card:nth-child(5) {
  animation-delay: .33s;
}

.feat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: rgba(255, 255, 255, .1);
}

.feat-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--rec-yellow);
  margin: 0 auto 14px;
  transition: background .3s, transform .3s;
}

.feat-card:hover .feat-icon {
  background: var(--rec-yellow);
  color: var(--rec-green);
  transform: scale(1.08);
}

.feat-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 42px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -1px;
}

.feat-num sup {
  font-size: 18px;
  color: var(--rec-yellow);
  vertical-align: super;
}

.feat-label {
  font-size: 11.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
  margin-top: 7px;
}

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width:992px) {
  .split-block {
    grid-template-columns: 1fr;
  }

  .split-img-col {
    min-height: 300px;
  }

  .split-block.reverse .split-img-col {
    order: 0;
  }

  .split-block.reverse .split-content-col {
    order: 0;
  }

  .split-content-col {
    padding: 44px 36px;
  }

  .split-content-col::before {
    display: none;
  }
}

@media (max-width:768px) {
  .split-content-col {
    padding: 36px 24px;
  }

  .wcu-section {
    padding: 60px 0 0;
  }

  .feat-band {
    padding: 48px 0;
  }
}

@media (max-width:576px) {
  .feat-card:not(:last-child)::after {
    display: none;
  }
}



/* ════════════════════════════════════════════════════════════════
   TESTIMONIALS — Owl Carousel
════════════════════════════════════════════════════════════════ */
.testimonials-band {
  background: #c3f2ffbf;
  padding: 74px 0 80px;
  position: relative;
  overflow: hidden;
}

.testimonials-band::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rec-yellow), var(--rec-blue) 55%, transparent);
}

/* bg quote mark decoration */
.testimonials-band::after {
  content: '"';
  position: absolute;
  left: -30px;
  top: 20px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 300px;
  font-weight: 800;
  color: rgba(255, 255, 255, .02);
  line-height: 1;
  pointer-events: none;
}

.testi-header {
  text-align: center;
  margin-bottom: 48px;
  animation: fadeUp .7s ease both .1s;
}

.testi-header .sec-eyebrow {
  color: var(--rec-yellow);
}

.testi-header .sec-eyebrow::before {
  background: rgba(245, 200, 0, .3);
}

.testi-header .sec-title {
  color: var(--rec-white);
}

.testi-header .sec-title .hl {
  color: var(--rec-yellow);
}

.testi-header .sec-title .hl::after {
  background: var(--rec-blue);
}

/* Owl custom */
.owl-dots {
  margin-top: 28px !important;
}

.owl-dots .owl-dot span {
  background: rgba(255, 255, 255, .15) !important;
  width: 28px !important;
  height: 3px !important;
  border-radius: 2px !important;
  transition: background .25s, width .25s !important;
}

.owl-dots .owl-dot.active span {
  background: var(--rec-yellow) !important;
  width: 44px !important;
}

.owl-stage-outer {
  padding: 6px 0 10px !important;
}

.testi-card {
  background: #1f1f1ff5;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 6px;
  padding: 32px 28px 28px;
  position: relative;
  transition: background .3s, border-color .3s, transform .3s;
}

.testi-card:hover {
  background: #000000db;
  border-color: rgba(255, 255, 255, .13);
  transform: translateY(-4px);
}

/* top quote icon */
.testi-quote-icon {
  width: 38px;
  height: 38px;
  border-radius: 6px;
  background: rgba(245, 200, 0, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--rec-yellow);
  margin-bottom: 18px;
}

.testi-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.testi-stars i {
  font-size: 12px;
  color: var(--rec-yellow);
}

.testi-text {
  font-size: 13.5px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 22px;
  min-height: 80px;
}

.testi-divider {
  height: 1px;
  background: rgba(255, 255, 255, .07);
  margin-bottom: 18px;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 153, 212, .2);
  border: 2px solid rgba(0, 153, 212, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--rec-blue);
  flex-shrink: 0;
  text-transform: uppercase;
}

.testi-name {
  font-family: 'Rajdhani', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--rec-white);
  letter-spacing: .3px;
}

.testi-role {
  font-size: 11.5px;
  color: rgba(255, 255, 255, .35);
  margin-top: 1px;
}

/* Owl nav */
.testi-owl-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 30px;
}

.tow-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, .15);
  background: #000000cc;
  color: rgba(255, 255, 255, .45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  cursor: pointer;
  transition: background .25s, border-color .25s, color .25s;
}

.tow-btn:hover {
  background: var(--rec-yellow);
  border-color: var(--rec-yellow);
  color: var(--rec-black);
}



/* ─── TICKER BAR ─────────────────────────────────────────────── */
.ticker-bar {
  background: var(--rec-yellow);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}

.ticker-inner {
  display: inline-flex;
  gap: 0;
  animation: tickerScroll 22s linear infinite;
  will-change: transform;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rec-black);
  padding: 0 40px;
}

.ticker-item i {
  font-size: 11px;
  color: var(--rec-blue-dark);
}

.ticker-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .2);
  display: inline-block;
}



/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width:1100px) {
  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reason-card:nth-child(3n) {
    border-right: 1px solid #f0f0f0;
  }

  .reason-card:nth-child(2n) {
    border-right: none;
  }

  .reason-card:nth-child(n+4) {
    border-bottom: 1px solid #f0f0f0;
  }

  .reason-card:nth-child(n+5) {
    border-bottom: none;
  }
}

@media (max-width:900px) {
  .wcu-hero-inner {
    grid-template-columns: 1fr;
  }

  .wcu-ring-wrap {
    display: none;
  }

  .strength-left {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

@media (max-width:768px) {
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .reason-card {
    border-right: none !important;
    border-bottom: 1px solid #f0f0f0 !important;
  }

  .reason-card:last-child {
    border-bottom: none !important;
  }

  .wcu-hero {
    padding: 60px 0 0;
  }

  .wcu-cta-inner {
    flex-direction: column;
  }

  .wcu-cta-actions {
    width: 100%;
  }

  .btn-black-cta,
  .btn-outline-black {
    flex: 1;
    justify-content: center;
  }

  .trust-items {
    gap: 22px;
  }
}

@media (max-width:576px) {
  .wcu-hero-ctas {
    flex-direction: column;
  }

  .btn-yellow,
  .btn-ghost-w {
    width: 100%;
    justify-content: center;
  }
}



/* ════════════════════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════════════════════ */
.cta-section {
  position: relative;
  overflow: hidden;
  background: var(--rec-black);
  padding: 0;
}

/* ── full-bleed image with overlay ── */
.cta-bg-img {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1509391366360-2e959784a276?w=1400&q=80');
  background-size: cover;
  background-position: center;
  opacity: .12;
  pointer-events: none;
}

/* diagonal colour split */
.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  position: relative;
  z-index: 2;
}

/* LEFT — dark panel */
.cta-left {
  background: rgba(10, 10, 10, .92);
  padding: 80px 64px 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 50px) 0, 100% 50%, calc(100% - 50px) 100%, 0 100%);
  margin-right: -50px;
  z-index: 2;
  animation: fadeLeft .8s ease both .1s;
}

/* yellow top-left corner accent */
.cta-left::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--rec-yellow);
}

.cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rec-yellow);
  margin-bottom: 18px;
}

.cta-eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: rgba(245, 200, 0, .4);
  border-radius: 2px;
  display: inline-block;
}

.cta-main-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(28px, 3.5vw, 50px);
  font-weight: 800;
  color: var(--rec-white);
  line-height: 1.1;
  letter-spacing: .4px;
  margin-bottom: 18px;
}

.cta-main-title .y {
  color: var(--rec-yellow);
}

.cta-main-title .g {
  color: #5de87a;
}

.cta-desc {
  font-size: 14.5px;
  color: rgba(255, 255, 255, .55);
  line-height: 1.88;
  margin-bottom: 32px;
  max-width: 440px;
}

.cta-desc strong {
  color: rgba(255, 255, 255, .85);
  font-weight: 600;
}

/* contact rows */
.cta-contact-rows {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.cta-contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  transition: opacity .22s;
}

.cta-contact-row:hover {
  opacity: .8;
}

.ccr-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.ccr-icon.yellow {
  background: rgba(245, 200, 0, .12);
  color: var(--rec-yellow);
}

.ccr-icon.green {
  background: rgba(33, 140, 53, .18);
  color: #6ee88a;
}

.ccr-icon.blue {
  background: rgba(0, 153, 212, .14);
  color: #5dd5f5;
}

.ccr-text small {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .3);
  margin-bottom: 1px;
}

.ccr-text span {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--rec-white);
  letter-spacing: .3px;
}

/* CTA buttons */
.cta-btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-cta-yellow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--rec-yellow);
  color: var(--rec-black);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 3px;
  text-decoration: none;
  animation: pulseGlow 2.8s ease infinite;
  transition: background .25s, gap .22s;
}

.btn-cta-yellow:hover {
  background: var(--rec-yellow-dark);
  color: var(--rec-black);
  gap: 14px;
}

.btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: rgba(255, 255, 255, .7);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 3px;
  border: 1.5px solid rgba(255, 255, 255, .2);
  text-decoration: none;
  transition: border-color .25s, color .25s, gap .22s;
}

.btn-cta-ghost:hover {
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
  gap: 14px;
}

/* RIGHT — green panel with form */
.cta-right {
  background: var(--rec-green);
  padding: 64px 60px 64px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  animation: fadeRight .8s ease both .2s;
  overflow: hidden;
}

/* decorative circle on green panel */
.cta-right::before {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  pointer-events: none;
}

.cta-right::after {
  content: '';
  position: absolute;
  right: 30px;
  top: 30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .04);
  pointer-events: none;
}

.cta-form-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  letter-spacing: .4px;
  margin-bottom: 6px;
}

.cta-form-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 26px;
  line-height: 1.7;
}

/* quick enquiry form */
.quick-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.qf-group {
  position: relative;
}

.qf-group i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: rgba(255, 255, 255, .4);
  pointer-events: none;
}

.qf-group.textarea-group i {
  top: 18px;
  transform: none;
}

.qf-input {
  width: 100%;
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .15);
  border-radius: 4px;
  padding: 12px 14px 12px 40px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: border-color .25s, background .25s;
}

.qf-input::placeholder {
  color: rgba(255, 255, 255, .38);
  font-size: 13.5px;
}

.qf-input:focus {
  border-color: var(--rec-yellow);
  background: rgba(255, 255, 255, .15);
}

.qf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.qf-textarea {
  resize: none;
  height: 90px;
  padding-top: 14px;
  padding-left: 40px;
}

.qf-select {
  appearance: none;
  cursor: pointer;
}

.qf-select option {
  color: var(--rec-text);
  background: #fff;
}

.btn-submit {
  width: 100%;
  background: var(--rec-yellow);
  color: var(--rec-black);
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 14px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: background .25s, gap .22s;
}

.btn-submit:hover {
  background: var(--rec-yellow-dark);
  gap: 14px;
}


/* ════════════════════════════════════════════════════════════
   CTA MINI STRIP (contact strip below split)
════════════════════════════════════════════════════════════ */
.cta-strip {
  background: var(--rec-yellow);
  padding: 20px 0;
  position: relative;
  z-index: 3;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-strip-items {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-strip-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .6px;
  color: var(--rec-black);
  text-decoration: none;
}

.cta-strip-item i {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--rec-black);
  transition: background .25s;
}

.cta-strip-item:hover i {
  background: rgba(0, 0, 0, .18);
}

.cta-strip-divider {
  width: 1px;
  height: 28px;
  background: rgba(0, 0, 0, .12);
}

.cta-strip-badge {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: var(--rec-black);
  color: var(--rec-yellow);
  padding: 6px 16px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.cta-strip-badge i {
  font-size: 10px;
}


/* ════════════════════════════════════════════════════════════
   FAQ SECTION
════════════════════════════════════════════════════════════ */
.faq-section {
  background: #f7f8f9;
  padding: 90px 0 96px;
  position: relative;
  overflow: hidden;
}

/* faint radial wash */
.faq-section::before {
  content: '';
  position: absolute;
  left: -120px;
  bottom: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 140, 53, .05) 0%, transparent 70%);
  pointer-events: none;
}

.faq-section::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 153, 212, .04) 0%, transparent 70%);
  pointer-events: none;
}

/* ── FAQ HEADER ───────────────────────────────────────────── */
.faq-header {
  margin-bottom: 58px;
  animation: fadeUp .7s ease both .1s;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--rec-green);
  margin-bottom: 12px;
}

.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  background: var(--rec-yellow);
  border-radius: 2px;
  display: inline-block;
}

.faq-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: var(--rec-black);
  line-height: 1.1;
  letter-spacing: .4px;
}

.faq-title .hl {
  color: var(--rec-blue);
  position: relative;
  display: inline-block;
}

.faq-title .hl::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  height: 3px;
  background: var(--rec-yellow);
  border-radius: 2px;
  width: 0;
  animation: lineDraw .6s ease both .7s;
}

.faq-sub {
  font-size: 14.5px;
  color: #888;
  line-height: 1.82;
  margin-top: 12px;
  max-width: 540px;
}

/* ── FAQ LEFT SIDEBAR ─────────────────────────────────────── */
.faq-sidebar {
  position: sticky;
  top: 120px;
  animation: fadeLeft .8s ease both .15s;
}

/* category tabs */
.faq-cats {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-cat-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .6px;
  padding: 12px 16px;
  border-radius: 4px;
  border: 1.5px solid #e8e8e8;
  background: #fff;
  color: #888;
  cursor: pointer;
  transition: all .22s;
  width: 100%;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.faq-cat-btn i {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: background .22s, color .22s;
}

.faq-cat-btn .cat-count {
  margin-left: auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #aaa;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .22s, color .22s;
}

.faq-cat-btn::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--rec-green);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .25s;
  border-radius: 0 2px 2px 0;
}

.faq-cat-btn.active::before,
.faq-cat-btn:hover::before {
  transform: scaleY(1);
}

.faq-cat-btn.active {
  border-color: var(--rec-green);
  color: var(--rec-green);
  background: var(--rec-green-light);
}

.faq-cat-btn.active i {
  background: var(--rec-green);
  color: #fff;
}

.faq-cat-btn.active .cat-count {
  background: var(--rec-green);
  color: #fff;
}

.faq-cat-btn:not(.active):hover {
  border-color: #ccc;
  color: var(--rec-text);
  background: #fafafa;
}

.faq-cat-btn:not(.active) i {
  background: #f0f0f0;
  color: #888;
}

/* still need help card */
.faq-help-card {
  background: var(--rec-black);
  border-radius: 6px;
  padding: 28px 24px;
  animation: scalePop .7s ease both .4s;
}

.fhc-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245, 200, 0, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--rec-yellow);
  margin-bottom: 14px;
  animation: floatY 3.5s ease-in-out infinite;
}

.fhc-title {
  font-family: 'Rajdhani', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
  letter-spacing: .3px;
}

.fhc-text {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  line-height: 1.75;
  margin-bottom: 18px;
}

.fhc-btn {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--rec-yellow);
  color: var(--rec-black);
  font-family: 'Rajdhani', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 18px;
  border-radius: 3px;
  text-decoration: none;
  width: fit-content;
  transition: background .25s, gap .22s;
}

.fhc-btn:hover {
  background: var(--rec-yellow-dark);
  color: var(--rec-black);
  gap: 13px;
}

/* ── FAQ ACCORDION PANELS ─────────────────────────────────── */
.faq-panel {
  display: none;
  animation: fadeUp .4s ease both;
}

.faq-panel.active {
  display: block;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: #fff;
  border: 1.5px solid #ebebeb;
  border-radius: 6px;
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}

.faq-item.open {
  border-color: var(--rec-green);
  box-shadow: 0 4px 20px rgba(33, 140, 53, .1);
}

.faq-q {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  transition: background .2s;
}

.faq-item.open .faq-q {
  background: var(--rec-green-light);
}

.faq-item:not(.open) .faq-q:hover {
  background: #fafafa;
}

.fq-num {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: #ccc;
  letter-spacing: 1px;
  min-width: 24px;
  flex-shrink: 0;
  transition: color .25s;
}

.faq-item.open .fq-num {
  color: var(--rec-green);
}

.fq-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #f4f4f4;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
  transition: background .25s, color .25s;
}

.faq-item.open .fq-icon {
  background: var(--rec-green);
  color: #fff;
}

.fq-text {
  font-family: 'Rajdhani', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--rec-text);
  line-height: 1.3;
  flex: 1;
  transition: color .25s;
}

.faq-item.open .fq-text {
  color: var(--rec-green-mid);
}

.fq-arrow {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: #aaa;
  transition: transform .3s, background .25s, color .25s;
}

.faq-item.open .fq-arrow {
  transform: rotate(180deg);
  background: var(--rec-green);
  color: #fff;
}

/* answer */
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .38s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-item.open .faq-a {
  max-height: 400px;
}

.faq-a-inner {
  padding: 0 20px 20px 72px;
  font-size: 14px;
  color: #666;
  line-height: 1.88;
}

/* answer sub-list */
.faq-a-list {
  list-style: none;
  padding: 0;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.faq-a-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: #666;
}

.faq-a-list li i {
  font-size: 9px;
  color: var(--rec-green);
  margin-top: 4px;
  flex-shrink: 0;
}

/* answer tag badge */
.faq-a-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 2px;
  background: var(--rec-green-light);
  color: var(--rec-green);
}

.faq-a-tag.blue {
  background: rgba(0, 153, 212, .08);
  color: var(--rec-blue);
}

.faq-a-tag.yellow {
  background: rgba(245, 200, 0, .12);
  color: var(--rec-yellow-dark);
}

.faq-a-tag i {
  font-size: 9px;
}

/* ── FAQ stagger animations ───────────────────────────────── */
.faq-item:nth-child(1) {
  animation: fadeUp .45s ease both .05s;
}

.faq-item:nth-child(2) {
  animation: fadeUp .45s ease both .1s;
}

.faq-item:nth-child(3) {
  animation: fadeUp .45s ease both .15s;
}

.faq-item:nth-child(4) {
  animation: fadeUp .45s ease both .2s;
}

.faq-item:nth-child(5) {
  animation: fadeUp .45s ease both .25s;
}

.faq-item:nth-child(6) {
  animation: fadeUp .45s ease both .3s;
}


/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width:992px) {
  .cta-split {
    grid-template-columns: 1fr;
  }

  .cta-left {
    clip-path: none;
    margin-right: 0;
    padding: 60px 36px;
  }

  .cta-right {
    padding: 52px 36px;
  }

  .faq-sidebar {
    position: static;
    margin-bottom: 36px;
  }

  .faq-cats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }

  .faq-cat-btn {
    width: auto;
    flex: 1;
    min-width: 130px;
  }

  .faq-cat-btn::before {
    top: 0;
    bottom: auto;
    left: 0;
    right: 0;
    width: 100%;
    height: 3px;
    transform: scaleX(0);
    transform-origin: left;
    border-radius: 2px 2px 0 0;
  }

  .faq-cat-btn.active::before,
  .faq-cat-btn:hover::before {
    transform: scaleX(1);
  }
}

@media (max-width:768px) {
  .cta-strip-divider {
    display: none;
  }

  .cta-strip-items {
    gap: 16px;
  }

  .qf-row {
    grid-template-columns: 1fr;
  }

  .faq-section {
    padding: 60px 0 68px;
  }

  .faq-a-inner {
    padding-left: 20px;
  }
}

@media (max-width:576px) {

  .cta-left,
  .cta-right {
    padding: 44px 24px;
  }

  .cta-btn-row {
    flex-direction: column;
  }

  .btn-cta-yellow,
  .btn-cta-ghost {
    justify-content: center;
  }

  .cta-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}


/* ── MAIN FOOTER ── */
.site-footer {
  background: var(--rec-black);
  color: var(--rec-white);
  padding-top: 64px;
}

.ft-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 48px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px 32px;
}

/* Brand col */
.ft-brand-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 34px;
  color: var(--rec-yellow);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 6px;
}

.ft-brand-tagline {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--rec-blue);
  margin-bottom: 18px;
}

.ft-brand-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 24px;
  max-width: 300px;
}

.ft-contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--rec-yellow);
  color: var(--rec-black);
  font-size: 13px;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: 3px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s, transform 0.15s;
}

.ft-contact-pill:hover {
  background: var(--rec-yellow-dark);
  transform: translateY(-1px);
}

.ft-contact-pill i {
  font-size: 13px;
}

/* Nav cols */
.ft-nav-heading {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rec-yellow);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(245, 200, 0, 0.2);
}

.ft-nav-list {
  list-style: none;
  padding: 0;
}

.ft-nav-list li {
  margin-bottom: 11px;
}

.ft-nav-list a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.18s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ft-nav-list a i {
  font-size: 10px;
  color: var(--rec-blue);
  opacity: 1;
  transition: opacity 0.18s;
  flex-shrink: 0;
}

.ft-nav-list a:hover {
  color: var(--rec-white);
}

.ft-nav-list a:hover i {
  opacity: 1;
}

/* Contact info items */
.ft-contact-list {
  list-style: none;
  padding: 0;
}

.ft-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}

.ft-contact-list .ft-ci-icon {
  width: 30px;
  height: 30px;
  background: rgba(245, 200, 0, 0.12);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.ft-contact-list .ft-ci-icon i {
  font-size: 13px;
  color: var(--rec-yellow);
}

.ft-contact-list .ft-ci-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.5;
}

.ft-contact-list .ft-ci-text strong {
  display: block;
  color: var(--rec-white);
  font-weight: 500;
  font-size: 13px;
  margin-bottom: 1px;
}

/* ── GREEN STRIP ── */
.ft-green-strip {
  background: var(--rec-green);
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-radius: 6px 6px 0 0;
}

.ft-gs-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ft-gs-left i {
  font-size: 16px;
  color: var(--rec-yellow);
  flex-shrink: 0;
}

.ft-gs-left span {
  font-size: 13px;
  font-weight: 600;
  color: var(--rec-green-light);
  letter-spacing: 0.02em;
}

.ft-gs-left strong {
  color: #fff;
}

.ft-gs-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ft-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.18s, transform 0.15s;
  color: #fff;
}

.ft-social-btn:hover {
  background: var(--rec-yellow);
  color: var(--rec-black);
  transform: translateY(-2px);
}

.ft-social-btn i {
  font-size: 14px;
}

/* ── BOTTOM BAR ── */
.ft-bottom {
  background: rgba(255, 255, 255, 0.04);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.ft-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.ft-copyright {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.02em;
}

.ft-copyright a {
  color: var(--rec-yellow);
  text-decoration: none;
}

.ft-bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ft-bottom-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.18s;
  letter-spacing: 0.02em;
}

.ft-bottom-links a:hover {
  color: var(--rec-white);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .ft-main {
    grid-template-columns: 1fr 1fr;
  }

  .ft-brand-col {
    grid-column: 1 / -1;
  }

  .ft-brand-desc {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .ft-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 36px;
  }

  .ft-green-strip {
    border-radius: 0;
  }

  .ft-bottom-links {
    gap: 14px;
  }
}


/* ── All classes prefixed .phero- — zero conflicts ── */

.phero-wrap {
  --phero-blue: #3b82f6;
  --phero-blue-light: rgba(59,130,246,0.18);
  --phero-white: #ffffff;
  --phero-muted: rgba(255,255,255,0.65);
  --phero-sep: rgba(255,255,255,0.4);

  font-family: 'DM Sans', sans-serif;
  position: relative;
  width: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

 

/* Dark + blue overlay */
.phero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #218c35 0%, var(--rec-blue) 100%);
  z-index: 1;
}

/* Blue accent line at bottom */
.phero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--phero-blue), #60a5fa, var(--phero-blue));
  z-index: 3;
}

/* Content */
.phero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 52px 24px 48px;
}

.phero-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.9rem, 5vw, 2.8rem);
  color: var(--phero-white);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}

/* Breadcrumb nav */
.phero-nav {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 7px 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.phero-item {
  display: flex;
  align-items: center;
  gap: 2px;
}

.phero-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--phero-muted);
  text-decoration: none;
  padding: 3px 8px;
  border-radius: 999px;
  transition: color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.phero-link:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-home {
  display: flex;
  align-items: center;
  color: var(--phero-muted);
  padding: 3px 8px;
  border-radius: 999px;
  text-decoration: none;
  transition: color 0.18s ease, background 0.18s ease;
}
.phero-home:hover {
  color: var(--phero-white);
  background: var(--phero-blue-light);
}

.phero-sep {
  color: var(--phero-sep);
  font-size: 0.78rem;
  user-select: none;
  padding: 0 1px;
}

.phero-active {
  font-size: 0.82rem;
  font-weight: 600;
  color: #000;
  background: #fff;
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}


.sitemap-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.sitemap-title {
    color: #2b2a28;
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.sitemap-card {
    background-color: white;
    border: 2px solid #218c35;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    display: block;
    color: #2b2a28;
}

.sitemap-card:hover {
    background: linear-gradient(135deg, #218c35 0%, var(--rec-blue) 100%);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(213, 158, 6, 0.3);
    text-decoration: none;
}

.card-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.card-description {
    font-size: 0.9rem;
    opacity: 0.8;
}

.sitemap-card:hover .card-description {
    opacity: 1;
}

.category-section {
    margin-bottom: 40px;
}

.category-header {
    color: #218c35;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid #218c35;
}

.main-links {
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .sitemap-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .category-header {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .sitemap-card {
        padding: 15px;
    }
    
    .card-label {
        font-size: 1rem;
    }
}