/* ========================================
   ORGANIC HOME SOLUTIONS - Main Stylesheet
   Brand Colors: #25D366 (Teal) | #128C7E (Dark Teal)
   ======================================== */

/* -------------------- CSS Variables -------------------- */
:root {
  /* Brand Colors - WhatsApp Green Theme */
  --primary-green: #25D366;
  --primary-teal: #128C7E;
  --dark-green: #128C7E;
  --light-green: #E8F9EF;
  --dark-teal: #075E54;
  --light-teal: #E0F4F8;

  /* Neutral Colors */
  --white: #FFFFFF;
  --off-white: #F8FAF9;
  --light-gray: #F5F7F6;
  --gray: #636E72;
  --dark-gray: #4A5568;
  --dark-text: #2D3436;
  --black: #1A1A1A;

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);

  /* Typography */
  --font-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-arabic: 'Cairo', 'Poppins', sans-serif;

  /* Spacing */
  --section-padding: 50px 0;
  --container-width: 1200px;
  --container-padding: 0 20px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
  --radius-full: 50px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* -------------------- Reset & Base -------------------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: var(--font-primary);
  color: var(--dark-text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Arabic RTL Support */
body.rtl {
  direction: rtl;
  font-family: var(--font-arabic);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
  outline: none;
}

/* -------------------- Typography -------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-text);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

p {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.7;
}

.text-lg {
  font-size: 1.125rem;
}

.text-sm {
  font-size: 0.875rem;
}

/* -------------------- Container -------------------- */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: var(--container-padding);
}

.container-fluid {
  width: 100%;
  padding: var(--container-padding);
}

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: var(--transition-slow);
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8f9e 50%, #4caf50 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(26, 95, 122, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: linear-gradient(135deg, #144f6a 0%, #238080 50%, #3d9140 100%);
  box-shadow: 0 8px 25px rgba(26, 95, 122, 0.5);
}

.btn-secondary {
  background: linear-gradient(135deg, #2d8f9e 0%, #1a5f7a 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(26, 95, 122, 0.4);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(82, 154, 177, 0.5);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary-green);
  color: var(--primary-green);
}

.btn-outline:hover {
  background: var(--primary-green);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-outline-white {
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--primary-green);
}

.btn-white {
  background: var(--white);
  color: var(--primary-green);
  box-shadow: var(--shadow-md);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 18px 40px;
  font-size: 1.125rem;
}

/* -------------------- Section Styling -------------------- */
section {
  padding: var(--section-padding);
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--primary-green);
}

.section-heading {
  margin-bottom: 15px;
}

.section-subtext {
  max-width: 600px;
  margin-bottom: 50px;
}

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

.text-center .section-subtext {
  margin-left: auto;
  margin-right: auto;
}

/* Center section headers */
.trust-header .section-label,
.services-header .section-label,
.process-header .section-label,
.section-header .section-label,
.testimonials-header .section-label {
  justify-content: center;
}

.trust-header .section-subtext,
.services-header .section-subtext,
.process-header .section-subtext,
.section-header .section-subtext,
.testimonials-header .section-subtext {
  margin-left: auto;
  margin-right: auto;
}

/* Center all section headers globally */
.section-label {
  justify-content: center;
}

.section-subtext {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* -------------------- Header / Navigation -------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition-normal);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  padding: 10px 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
  transition: var(--transition-normal);
}

.header.scrolled .logo img {
  height: 45px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--dark-text);
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-green);
  transition: var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary-green);
}

/* Mega Menu Styles */
.nav-item {
  position: relative;
}

.has-mega-menu .nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.has-mega-menu .nav-link i {
  font-size: 0.7rem;
  transition: var(--transition-normal);
}

.has-mega-menu:hover .nav-link i {
  transform: rotate(180deg);
}

.mega-menu {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 1000;
  width: 1000px;
  max-width: 95vw;
  pointer-events: none;
}

/* Invisible bridge to keep mega menu open while moving mouse */
.mega-menu::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  z-index: 999;
  pointer-events: none;
}

.has-mega-menu:hover .mega-menu,
.has-mega-menu.show-mega-menu .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.has-mega-menu:hover .mega-menu::before,
.has-mega-menu.show-mega-menu .mega-menu::before {
  pointer-events: auto;
}

.header.scrolled ~ * .mega-menu::before,
.header.scrolled .mega-menu::before {
  height: 70px;
}

/* =============================================
   NEW SERVICES MEGA MENU - FRESH DESIGN
   ============================================= */
.services-mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  min-width: 850px;
}

.nav-item.has-mega-menu:hover .services-mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.smm-wrapper {
  display: flex;
}

/* Categories Column */
.smm-categories {
  width: 300px;
  background: #f5f7f9;
  border-radius: 12px 0 0 12px;
  padding: 12px 0;
}

.smm-cat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  cursor: pointer;
  transition: all 0.2s;
  border-left: 3px solid transparent;
  font-size: 0.88rem;
  font-weight: 500;
  color: #333;
}

.smm-cat-item i:first-child {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-teal));
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
}

.smm-cat-item span {
  flex: 1;
}

.smm-cat-item .smm-arrow {
  font-size: 0.8rem;
  color: #aaa;
  transition: all 0.2s;
}

.smm-cat-item:hover,
.smm-cat-item.is-active {
  background: #fff;
  border-left-color: var(--primary-green);
}

.smm-cat-item:hover .smm-arrow,
.smm-cat-item.is-active .smm-arrow {
  color: var(--primary-green);
  transform: translateX(3px);
}

/* Services Column */
.smm-services {
  flex: 1;
  padding: 16px 20px;
  position: relative;
  min-height: 340px;
}

.smm-panel {
  display: none;
}

.smm-panel.is-active {
  display: block;
}

.smm-panel h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #222;
  margin: 0 0 14px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-green);
  display: flex;
  align-items: center;
  gap: 8px;
}

.smm-panel h4 i {
  color: var(--primary-green);
}

.smm-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.smm-grid a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: #f8f9fa;
  border-radius: 8px;
  color: #333;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
  border: 1px solid transparent;
  text-decoration: none;
}

.smm-grid a i {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.6rem;
}

.smm-grid a:hover {
  background: #fff;
  border-color: var(--primary-green);
  transform: translateX(4px);
  box-shadow: 0 3px 10px rgba(0,166,81,0.12);
}

.smm-grid a:hover span,
.smm-grid a:hover {
  color: var(--primary-green);
}

.mega-menu-service-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--light-green);
  display: flex;
  align-items: center;
  gap: 8px;
}

.mega-menu-service-title i {
  color: var(--primary-green);
  font-size: 0.85rem;
}

.mega-menu-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
}

.mega-menu-service-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 6px;
  transition: all 0.25s ease;
  color: var(--dark-text);
  background: #f8f9fa;
  border: 1px solid transparent;
}

.mega-menu-service-item:hover {
  background: white;
  border-color: var(--primary-green);
  transform: translateX(3px);
  box-shadow: 0 2px 8px rgba(0, 166, 81, 0.15);
}

.mega-menu-service-item i {
  color: white;
  font-size: 0.55rem;
  width: 18px;
  height: 18px;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-teal));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mega-menu-service-item span {
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.2;
}

.mega-menu-service-item:hover span {
  color: var(--primary-green);
}

/* Legacy support for old structure */
.mega-menu-column {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mega-menu-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-text);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--light-gray);
}

.mega-menu-title i {
  color: var(--primary-green);
  font-size: 1.1rem;
}

.mega-menu-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mega-menu-list li a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  border-radius: var(--radius-sm);
  transition: var(--transition-normal);
}

.mega-menu-list li a:hover {
  background: var(--light-green);
  transform: translateX(5px);
}

.mega-menu-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark-text);
}

.mega-menu-item-desc {
  font-size: 0.75rem;
  color: var(--light-text);
  line-height: 1.4;
}

.mega-menu-list li a:hover .mega-menu-item-name {
  color: var(--primary-green);
}

.mega-menu-cta {
  margin-top: auto;
  padding-top: 15px;
}

.mega-menu-cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.85rem;
  padding: 10px 15px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--primary-teal);
}

.header-phone i {
  font-size: 1.1rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 15px;
  background: var(--light-gray);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-normal);
}

.lang-switch:hover {
  background: var(--light-green);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  width: 30px;
  cursor: pointer;
  z-index: 1001;
  padding: 5px;
  margin-left: 10px;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 3px;
  background: var(--dark-text);
  border-radius: 2px;
  transition: var(--transition-normal);
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Body menu open state */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

/* -------------------- Sectors Dropdown Menu -------------------- */
.has-sectors-menu {
  position: relative;
}

.has-sectors-menu > .nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
}

.has-sectors-menu > .nav-link i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.has-sectors-menu:hover > .nav-link i {
  transform: rotate(180deg);
}

.sectors-dropdown-menu {
  position: absolute;
  top: 100%;
  left: -100px;
  transform: translateY(15px);
  width: 680px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.has-sectors-menu:hover .sectors-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(5px);
}

.sectors-dropdown-wrapper {
  padding: 0;
}

.sectors-dropdown-header {
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8f9e 50%, #4caf50 100%);
  padding: 18px 24px;
  color: #fff;
}

.sectors-dropdown-header h4 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sectors-dropdown-header h4 i {
  font-size: 1.1rem;
}

.sectors-dropdown-header p {
  font-size: 0.85rem;
  margin: 0;
  color: #ffffff;
}

.sectors-dropdown-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 24px;
}

.sector-dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  transition: all 0.25s ease;
  text-decoration: none;
  background: #f8f9fa;
  border: 1px solid transparent;
}

.sector-dropdown-item:hover {
  background: #e8f9ef;
  border-color: #25D366;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
}

.sector-item-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #e8f9ef 0%, #d4f5e0 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.25s ease;
}

.sector-item-icon i {
  font-size: 1rem;
  color: #128C7E;
  transition: all 0.25s ease;
}

.sector-dropdown-item:hover .sector-item-icon {
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8f9e 50%, #4caf50 100%);
}

.sector-dropdown-item:hover .sector-item-icon i {
  color: #fff;
}

.sector-item-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sector-item-text span {
  font-size: 0.85rem;
  font-weight: 600;
  color: #2d3748;
  line-height: 1.2;
}

.sector-item-text small {
  font-size: 0.7rem;
  color: #718096;
  line-height: 1.2;
}

.sector-dropdown-item:hover .sector-item-text span {
  color: #128C7E;
}

.sectors-dropdown-footer {
  padding: 15px 20px;
  background: #f8f9fa;
  border-top: 1px solid #eee;
  text-align: center;
}

.view-all-sectors {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #128C7E;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.25s ease;
}

.view-all-sectors:hover {
  color: #25D366;
  gap: 12px;
}

.view-all-sectors i {
  transition: transform 0.25s ease;
}

.view-all-sectors:hover i {
  transform: translateX(3px);
}

/* -------------------- Hero Section -------------------- */
/* -------------------- Hero V5 - Professional Like Competitor -------------------- */
.hero-v5 {
  position: relative;
  min-height: 100vh;
  padding-top: 90px;
  background: linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)),
              url('../Assets/images/Home-Page/home-page-hero-section-background-image.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.hero-v5-container {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 20px;
  padding: 20px;
  max-width: 1500px;
  margin: 0 auto;
  align-items: start;
}

/* Left Side - Slider */
.hero-v5-slider-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* Floating Badge */
.hero-floating-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8f9e 50%, #4caf50 100%);
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  animation: floatBadge 3s ease-in-out infinite;
}

.hero-floating-badge i {
  font-size: 1.1rem;
}

@keyframes floatBadge {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-v5-slider {
  position: relative;
  width: 100%;
  height: 450px;
}

.hero-v5-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow: hidden;
  transition: opacity 1.2s ease-in-out;
}

.hero-v5-slider .slide.active {
  opacity: 1;
}

.hero-v5-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 5s ease-out;
}

.hero-v5-slider .slide.active img {
  transform: scale(1.15);
}

/* Gradient Overlay */
.hero-v5-slider-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.15) 30%,
    rgba(0, 0, 0, 0.35) 60%,
    rgba(0, 0, 0, 0.75) 100%
  );
  z-index: 5;
  pointer-events: none;
  border-radius: 20px;
}

/* Content Overlay */
.hero-v5-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-v5-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 30px;
  line-height: 1.2;
  max-width: 700px;
}

/* Stats Inside Slider */
.hero-v5-stats {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-v5-stats .stat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 10px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-v5-stats .stat i {
  font-size: 1.1rem;
  color: var(--primary-green);
  background: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-v5-stats .stat-info {
  display: flex;
  flex-direction: column;
}

.hero-v5-stats .stat-num {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.hero-v5-stats .stat-text {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

/* Right Sidebar */
.hero-v5-sidebar {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Sidebar Cards */
.sidebar-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.sidebar-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

/* Hero Sidebar Service Card */
.sidebar-card.service-card {
  padding: 15px 18px;
}

.sidebar-card.service-card .card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.service-card .card-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card .card-header i {
  color: var(--gray);
  font-size: 0.9rem;
}

.service-card .card-body {
  display: flex;
  align-items: center;
  gap: 15px;
}

.service-indicator {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8f9e 50%, #4caf50 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-indicator i {
  color: var(--white);
  font-size: 1.3rem;
}

.current-service {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark-text);
  line-height: 1.3;
  transition: all 0.4s ease;
}

/* Service Card as Link */
a.service-card {
  display: block !important;
  text-decoration: none;
  cursor: pointer;
}

a.service-card:hover {
  border-color: var(--primary-green);
}

a.service-card:hover .card-header i {
  color: var(--primary-green);
  transform: translateX(5px);
}

a.service-card .card-header i {
  transition: all 0.3s ease;
}

/* Trust Slider Card */
.trust-slider-card {
  padding: 15px 18px;
  min-height: 80px;
}

.trust-slides {
  position: relative;
  min-height: 60px;
}

.trust-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 15px;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
}

.trust-slide.active {
  opacity: 1;
  transform: translateY(0);
}

.trust-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8f9e 50%, #4caf50 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-icon i {
  color: var(--white);
  font-size: 1.3rem;
}

.trust-text {
  display: flex;
  flex-direction: column;
}

.trust-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1.2;
}

.trust-desc {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 3px;
}

.trust-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 15px;
}

.trust-dots .dot {
  width: 8px;
  height: 8px;
  background: #e0e0e0;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.trust-dots .dot.active {
  background: var(--primary-green);
  width: 24px;
  border-radius: 4px;
}

/* Hide old Eco Card */
.eco-card {
  display: none;
}

/* Action Card */
.action-card {
  padding: 15px 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.action-btn.primary {
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8f9e 50%, #4caf50 100%);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(26, 95, 122, 0.35);
}

.action-btn.primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #144f6a 0%, #238080 50%, #3d9140 100%);
  box-shadow: 0 6px 25px rgba(26, 95, 122, 0.45);
}

.action-btn.secondary {
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8f9e 50%, #4caf50 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 4px 15px rgba(26, 95, 122, 0.35);
}

.action-btn.secondary:hover {
  background: linear-gradient(135deg, #144f6a 0%, #238080 50%, #3d9140 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(26, 95, 122, 0.45);
}

.action-btn i {
  font-size: 1rem;
}

/* Hide old hero versions */
.hero-v4 { display: none; }
.hero-v3 { display: none; }
.hero-v2 { display: none; }

/* -------------------- Hero V4 - Hidden -------------------- */
.hero-v4-old {
  display: none;
}

.hero-v4-slider-area {
  position: relative;
  display: flex;
  flex-direction: column;
}

/* Service Name Bar - Clean Green Style */
.hero-v4-service-name {
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8f9e 50%, #4caf50 100%);
  padding: 12px 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.hero-v4-service-name .service-icon {
  width: 32px;
  height: 32px;
  background: rgba(255,255,255,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-v4-service-name .service-icon i {
  color: var(--white);
  font-size: 0.9rem;
}

.service-label {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.4s ease;
}

.service-label::before {
  display: none;
}

/* Main Slider */
.hero-v4-slider {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-v4-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow: hidden;
}

.hero-v4-slider .slide.active {
  opacity: 1;
}

.hero-v4-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  will-change: transform, opacity;
}

/* Smooth Transition Effects */
.hero-v4-slider .slide[data-transition="zoom-in"] {
  transition: opacity 1.5s ease;
}
.hero-v4-slider .slide[data-transition="zoom-in"] img {
  transform: scale(1);
  transition: transform 5s ease-out;
}
.hero-v4-slider .slide[data-transition="zoom-in"].active img {
  transform: scale(1.08);
}

.hero-v4-slider .slide[data-transition="fade-zoom"] {
  transition: opacity 1.8s ease;
}
.hero-v4-slider .slide[data-transition="fade-zoom"] img {
  transform: scale(1.08);
  transition: transform 5s ease-out;
}
.hero-v4-slider .slide[data-transition="fade-zoom"].active img {
  transform: scale(1);
}

.hero-v4-slider .slide[data-transition="slide-left"] {
  transition: opacity 1.2s ease;
}
.hero-v4-slider .slide[data-transition="slide-left"] img {
  transform: scale(1.03) translateX(2%);
  transition: transform 5s ease-out;
}
.hero-v4-slider .slide[data-transition="slide-left"].active img {
  transform: scale(1.03) translateX(-2%);
}

.hero-v4-slider .slide[data-transition="slide-right"] {
  transition: opacity 1.2s ease;
}
.hero-v4-slider .slide[data-transition="slide-right"] img {
  transform: scale(1.03) translateX(-2%);
  transition: transform 5s ease-out;
}
.hero-v4-slider .slide[data-transition="slide-right"].active img {
  transform: scale(1.03) translateX(2%);
}

.hero-v4-slider .slide[data-transition="zoom-out"] {
  transition: opacity 1.5s ease;
}
.hero-v4-slider .slide[data-transition="zoom-out"] img {
  transform: scale(1.12);
  transition: transform 5s ease-out;
}
.hero-v4-slider .slide[data-transition="zoom-out"].active img {
  transform: scale(1.02);
}

/* Heading Overlay on Slider */
.hero-v4-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  text-align: center;
  z-index: 10;
  width: 90%;
  max-width: 600px;
}

.hero-v4-overlay h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
  margin-bottom: 15px;
  line-height: 1.2;
}

.hero-v4-overlay p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
}

/* Clean Gradient overlay */
.hero-v4-slider::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.25) 0%,
    rgba(0, 0, 0, 0.1) 40%,
    rgba(0, 0, 0, 0.1) 60%,
    rgba(0, 0, 0, 0.55) 100%
  );
  z-index: 5;
  pointer-events: none;
}

/* Stats Bar - Clean White Style */
.hero-v4-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 0;
  z-index: 15;
}

.hero-v4-stats .stat-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 15px;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

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

.hero-v4-stats .stat-item:hover {
  background: rgba(37, 211, 102, 0.08);
}

.hero-v4-stats .stat-item i {
  font-size: 1.4rem;
  color: var(--primary-green);
}

.hero-v4-stats .stat-content {
  display: flex;
  flex-direction: column;
}

.hero-v4-stats .stat-number {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-text);
  line-height: 1;
}

.hero-v4-stats .stat-label {
  font-size: 0.68rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
  font-weight: 500;
}

/* Right Sidebar (40%) - Clean Design */
.hero-v4-sidebar {
  background: linear-gradient(180deg, #f8faf6 0%, #f0f4ec 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 45px 40px;
  position: relative;
}

.hero-v4-sidebar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--primary-green);
}

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

.sidebar-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 10px 16px;
  border-radius: 50px;
  color: var(--primary-green);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sidebar-badge i {
  color: var(--primary-green);
  font-size: 0.85rem;
}

.hero-v4-sidebar h2 {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 12px;
  line-height: 1.25;
}

.hero-v4-sidebar > .sidebar-content > p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* Sidebar Points - Clean Style */
.sidebar-points {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.point-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.point-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.point-icon {
  width: 44px;
  height: 44px;
  background: rgba(37, 211, 102, 0.12);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.point-icon i {
  font-size: 1.1rem;
  color: var(--primary-green);
}

.point-text h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-text);
  margin-bottom: 2px;
}

.point-text p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.4;
}

/* Sidebar CTA */
.sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-cta .btn {
  width: 100%;
  justify-content: center;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
}

.sidebar-cta .btn-primary {
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8f9e 50%, #4caf50 100%);
  box-shadow: 0 4px 12px rgba(26, 95, 122, 0.3);
}

.sidebar-cta .btn-primary:hover {
  background: linear-gradient(135deg, #144f6a 0%, #238080 50%, #3d9140 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(26, 95, 122, 0.4);
}

.sidebar-cta .btn-outline-light {
  background: var(--white);
  border: 2px solid var(--dark-text);
  color: var(--dark-text);
}

.sidebar-cta .btn-outline-light:hover {
  background: var(--dark-text);
  color: var(--white);
}

/* Old V3 styles - Hidden */
.hero-v3 { display: none; }
.hero-v3-stats-bar { display: none; }
.hero-v3-stats { display: none; }
.hero-v3-stat { display: none; }

/* -------------------- Hero V2 - Full Screen Background -------------------- */
.hero-v2 {
  position: relative;
  height: 100vh;
  max-height: 900px;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-v2-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-v2-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-v2-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 60, 40, 0.75) 0%, rgba(20, 50, 60, 0.65) 100%);
}

.hero-v2 .container {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding-top: 80px;
}

.hero-v2-content {
  max-width: 800px;
  margin-bottom: 50px;
}

.hero-v2-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 10px 24px;
  border-radius: 50px;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 25px;
}

.hero-v2-badge i {
  color: var(--primary-green);
}

.hero-v2 h1 {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 15px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-v2-subtitle {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
  margin-bottom: 35px;
}

.hero-v2-cta {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-v2-cta .btn-light {
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-text);
  border: none;
}

.hero-v2-cta .btn-light:hover {
  background: var(--white);
  transform: translateY(-2px);
}

/* Stats Bar - Bottom of Hero */
.hero-v2-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, rgba(120, 170, 80, 0.95) 0%, rgba(100, 160, 70, 0.95) 100%);
  z-index: 2;
  padding: 25px 0;
}

.hero-v2-stats {
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 20px;
}

.hero-v2-stat {
  text-align: center;
  flex: 1;
}

.stat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  font-style: italic;
}

.stat-highlight {
  color: var(--white);
}

.stat-txt {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 8px;
  font-weight: 500;
}

/* Old hero styles kept for compatibility */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.05), rgba(82, 154, 177, 0.05));
  overflow: hidden;
  padding-top: 100px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 0;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--primary-green);
  top: -200px;
  right: -200px;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--primary-teal);
  bottom: -100px;
  left: -100px;
}

.hero-shape-3 {
  width: 200px;
  height: 200px;
  background: var(--primary-green);
  top: 50%;
  left: 20%;
  opacity: 0.05;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

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

.hero-content h1 {
  margin-bottom: 25px;
  background: linear-gradient(135deg, var(--dark-text), var(--primary-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content h1 span {
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--gray);
  margin-bottom: 35px;
  line-height: 1.7;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark-text);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(37, 211, 102, 0.2);
}

.trust-chip i {
  color: var(--primary-green);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-main {
  width: 100%;
  max-width: 550px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.hero-floating-card {
  position: absolute;
  background: var(--white);
  padding: 20px 25px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  animation: float 3s ease-in-out infinite;
}

.hero-floating-card.card-1 {
  top: 10%;
  right: -30px;
}

.hero-floating-card.card-2 {
  bottom: 15%;
  left: -30px;
  animation-delay: 1.5s;
}

.hero-floating-card i {
  font-size: 2rem;
  color: var(--primary-green);
  margin-bottom: 10px;
}

.hero-floating-card h4 {
  font-size: 1rem;
  margin-bottom: 5px;
}

.hero-floating-card p {
  font-size: 0.8rem;
  margin: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

/* -------------------- Stats Bar (removed - now in hero) -------------------- */
.stats-bar {
  display: none; /* Stats now in hero section */
}

.stats-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  color: var(--white);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.stat-number span {
  font-size: 2rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
}

/* -------------------- Trust Section -------------------- */
.trust-section {
  background: var(--off-white);
}

#why-us.trust-section .container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 5%;
}

.trust-header {
  text-align: center;
  margin-bottom: 60px;
}

#why-us .trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 50px;
  width: 100% !important;
}

.trust-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.trust-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--primary-teal));
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.trust-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.trust-card:hover::before {
  transform: scaleX(1);
}

.trust-card-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--light-green), var(--light-teal));
  border-radius: 50%;
}

.trust-card-icon i {
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.trust-card h4 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.trust-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

.trust-cta {
  text-align: center;
}

.trust-cta p {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--dark-text);
  margin-bottom: 20px;
}

.trust-cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}

/* -------------------- Services Section -------------------- */
.services-section {
  background: var(--white);
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

/* Old Tabs - Hidden */
.services-tabs {
  display: none;
}

/* New Icon-Based Service Tabs */
.services-tabs-new {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 10px;
  margin-bottom: 40px;
}

.tab-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 18px 12px 14px;
  min-width: 98px;
  max-width: 108px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: rgba(76, 175, 80, 0.3);
}

.tab-card.active {
  border-color: var(--primary-green);
  background: linear-gradient(135deg, #e8f5e9 0%, #f1f8e9 100%);
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.2);
  border-bottom: 3px solid var(--primary-green);
}

.tab-card .tab-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(76, 175, 80, 0.15);
}

.tab-card .tab-icon i {
  font-size: 1.3rem;
  color: #2e7d32;
}

.tab-card.active .tab-icon {
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8f9e 100%);
}

.tab-card.active .tab-icon i {
  color: #fff !important;
}

.tab-card span {
  font-size: 0.75rem;
  font-weight: 600;
  color: #2d3748;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

.tab-card.active span {
  color: #1a5f7a;
  font-weight: 700;
  text-shadow: none;
}

/* Old tab btn styles - kept for backwards compatibility */
.tab-btn {
  display: none;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  grid-auto-rows: 1fr;
}

.service-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.service-card-cta {
  position: relative;
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-card-image {
  position: relative;
  height: 140px;
  overflow: hidden;
}

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

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

.service-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 4px 10px;
  background: var(--primary-green);
  color: var(--white);
  font-size: 0.6rem;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-card-content {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-content h4 {
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  line-height: 1.3;
  height: 36px;
  min-height: 36px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-card-content p {
  font-size: 0.72rem;
  margin-bottom: 12px;
  line-height: 1.5;
  color: #777;
  height: 45px;
  min-height: 45px;
  max-height: 45px;
  overflow-y: auto;
}

.service-card-content p::-webkit-scrollbar {
  width: 3px;
}

.service-card-content p::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.service-card-content p::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}

.service-card-content p::-webkit-scrollbar-thumb:hover {
  background: #aaa;
}

.service-card-cta {
  display: flex;
  margin-top: auto;
}

.service-card-cta .btn {
  flex: 1;
  padding: 10px 14px;
  font-size: 0.72rem;
  font-weight: 500;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8f9e 50%, #4caf50 100%);
  color: white;
  border: none;
  transition: all 0.3s ease;
}

.service-card-cta .btn:hover {
  background: linear-gradient(135deg, #144f6a 0%, #238080 50%, #3d9140 100%);
  transform: translateY(-1px);
}

.service-card-cta .btn i {
  font-size: 0.85rem;
}

/* -------------------- Consultation Box -------------------- */
.consultation-box {
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8f9e 50%, #4caf50 100%);
  padding: 50px 60px;
  border-radius: var(--radius-xl);
  text-align: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(26, 95, 122, 0.3);
}

.consultation-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.consultation-box::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.consultation-box h3 {
  margin-bottom: 12px;
  position: relative;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
}

.consultation-box p {
  max-width: 550px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.consultation-box .btn-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  position: relative;
}

.consultation-box .btn-primary {
  background: #fff;
  color: #1a5f7a;
  padding: 14px 32px;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.consultation-box .btn-primary:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.consultation-box .btn-primary i {
  color: #25D366;
}

.consultation-box .btn-outline {
  background: transparent;
  color: #fff;
  padding: 14px 32px;
  font-weight: 600;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.consultation-box .btn-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
  transform: translateY(-2px);
}

/* -------------------- Why Choose Section -------------------- */
.why-choose-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.why-choose-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.why-choose-content .section-label {
  margin-bottom: 15px;
}

.why-choose-content h2 {
  margin-bottom: 20px;
}

.why-choose-content > p {
  font-size: 1.1rem;
  margin-bottom: 35px;
}

.why-choose-list {
  margin-bottom: 35px;
}

.why-choose-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.why-choose-item:last-child {
  margin-bottom: 0;
}

.why-choose-item i {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-green);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.8rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.why-choose-item-content h4 {
  font-size: 1rem;
  margin-bottom: 5px;
  color: var(--dark-text);
}

.why-choose-item-content p {
  font-size: 0.9rem;
  margin: 0;
}

.why-choose-buttons {
  display: flex;
  gap: 15px;
}

.why-choose-image {
  position: relative;
}

.why-choose-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.why-choose-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  padding: 25px 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 15px;
}

.why-choose-badge i {
  font-size: 2.5rem;
  color: var(--primary-green);
}

.why-choose-badge h4 {
  font-size: 1.8rem;
  color: var(--primary-green);
  margin-bottom: 2px;
}

.why-choose-badge span {
  font-size: 0.85rem;
  color: var(--gray);
}

/* -------------------- Process Section NEW (Attractive) -------------------- */
.process-section-new {
  background: linear-gradient(135deg, #0d4f5a 0%, #1a7a6d 50%, #2d9f8f 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 45px 0 !important;
}

/* Background Animated Shapes */
.process-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}

.process-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.08;
  animation: floatShape 20s ease-in-out infinite;
}

.process-shape-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #4caf50, #8bc34a);
  top: -100px;
  left: -100px;
  animation-delay: 0s;
}

.process-shape-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, #00bcd4, #4caf50);
  bottom: -50px;
  right: -50px;
  animation-delay: -7s;
}

.process-shape-3 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, #8bc34a, #cddc39);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -14s;
}

@keyframes floatShape {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  25% {
    transform: translate(30px, -30px) rotate(90deg) scale(1.1);
  }
  50% {
    transform: translate(-20px, 20px) rotate(180deg) scale(0.95);
  }
  75% {
    transform: translate(20px, 10px) rotate(270deg) scale(1.05);
  }
}

/* Header */
.process-header-new {
  text-align: center;
  margin-bottom: 35px;
  position: relative;
  z-index: 2;
}

.process-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #a5f3fc;
  margin-bottom: 12px;
}

.process-header-new h2 {
  color: var(--white);
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.process-header-new p {
  color: rgba(255,255,255,0.85);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}

/* Timeline Container */
.process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}

/* Connecting Line */
.process-line {
  position: absolute;
  top: 35px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg,
    rgba(139, 195, 74, 0.3),
    rgba(76, 175, 80, 0.8),
    rgba(76, 175, 80, 0.8),
    rgba(139, 195, 74, 0.3)
  );
  border-radius: 2px;
  z-index: 0;
}

.process-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(90deg, #8bc34a, #4caf50);
  border-radius: 2px;
  animation: lineProgress 3s ease-in-out infinite;
}

@keyframes lineProgress {
  0% { left: 0; width: 30%; opacity: 1; }
  50% { left: 35%; width: 30%; opacity: 0.8; }
  100% { left: 70%; width: 30%; opacity: 1; }
}

/* Process Step Card */
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  position: relative;
  padding: 0 10px;
}

/* Step Icon Container */
.process-step-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(145deg, rgba(255,255,255,0.2), rgba(255,255,255,0.05));
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 18px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(10px);
  box-shadow:
    0 8px 30px rgba(0,0,0,0.2),
    inset 0 0 20px rgba(255,255,255,0.1);
}

.process-step-icon::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8bc34a, #4caf50, #2196f3);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.process-step:hover .process-step-icon {
  transform: translateY(-8px) scale(1.08);
  border-color: rgba(255,255,255,0.5);
  box-shadow:
    0 20px 50px rgba(76, 175, 80, 0.4),
    inset 0 0 30px rgba(255,255,255,0.15);
}

.process-step:hover .process-step-icon::before {
  opacity: 0.3;
}

.process-step-icon i {
  font-size: 1.6rem;
  color: #ffffff;
  transition: all 0.4s ease;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.process-step:hover .process-step-icon i {
  transform: scale(1.15);
  color: #a5f3fc;
}

/* Step Number Badge */
.process-step-number {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 26px;
  height: 26px;
  background: linear-gradient(135deg, #8bc34a 0%, #4caf50 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.5);
  border: 2px solid rgba(255,255,255,0.9);
  z-index: 2;
}

/* Step Content */
.process-step-content {
  max-width: 180px;
}

.process-step-content h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}

.process-step:hover .process-step-content h4 {
  color: #a5f3fc;
}

.process-step-content p {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}

/* Arrow between steps */
.process-step-arrow {
  display: none;
}

/* CTA Button */
.process-cta {
  text-align: center;
  margin-top: 30px;
  position: relative;
  z-index: 2;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  color: #0d4f5a;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  border: none;
}

.btn-white:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  background: linear-gradient(135deg, #ffffff 0%, #e8f5e9 100%);
}

.btn-white i {
  font-size: 1.3rem;
  color: #25D366;
}

/* Old process section (kept for backward compatibility) */
.process-section {
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8f9e 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 50px 0 !important;
}

.process-section .section-label {
  color: rgba(255,255,255,0.85);
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.process-section .section-label::before {
  background: rgba(255,255,255,0.5);
}

.process-section h2 {
  color: var(--white);
  font-size: 2rem;
  margin-bottom: 8px;
}

.process-section .section-subtext {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
}

.process-header {
  text-align: center;
  margin-bottom: 35px;
  position: relative;
  z-index: 1;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.process-card {
  text-align: center;
  padding: 28px 18px 24px;
  background: rgba(255,255,255,0.12);
  border-radius: 16px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  transition: all 0.3s ease;
  position: relative;
}

.process-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.18);
}

.process-card::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
}

.process-card:last-child::after {
  display: none;
}

.process-number {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #8bc34a 0%, #4caf50 100%);
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
  margin: 0 auto 14px;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.process-card h4 {
  color: var(--white);
  margin-bottom: 8px;
  font-size: 1rem;
  font-weight: 600;
}

.process-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  line-height: 1.5;
  margin: 0;
}

/* -------------------- About Section NEW (Attractive) -------------------- */
.about-section-new {
  background: linear-gradient(180deg, #f8fffe 0%, #ffffff 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.about-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(33, 150, 243, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Visual Side */
.about-visual {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(76, 175, 80, 0.1);
}

.about-image-container img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.about-experience-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%);
  color: white;
  padding: 20px 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow:
    0 15px 40px rgba(46, 125, 50, 0.4),
    0 0 0 4px rgba(255, 255, 255, 0.3);
  animation: badgeFloat 4s ease-in-out infinite;
  min-width: 100px;
}

@keyframes badgeFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.about-experience-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
  border-radius: 16px;
  pointer-events: none;
}

.about-experience-badge .exp-number {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.about-experience-badge .exp-text {
  display: block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  margin-top: 2px;
}

.about-experience-badge .exp-subtext {
  display: block;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-top: 2px;
  letter-spacing: 1px;
}

/* Mini Stats */
.about-mini-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.mini-stat {
  display: flex;
  align-items: center;
  gap: 12px;
  background: white;
  padding: 15px 18px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(76, 175, 80, 0.1);
  transition: all 0.3s ease;
}

.mini-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.mini-stat i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e7d32;
  font-size: 1rem;
}

.mini-stat-info {
  display: flex;
  flex-direction: column;
}

.mini-stat-num {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.2;
}

.mini-stat-text {
  font-size: 0.75rem;
  color: #666;
}

/* Content Side */
.about-content-new {
  padding-left: 20px;
}

.about-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #2e7d32;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.about-content-new h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.3;
  margin-bottom: 15px;
}

.about-desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 25px;
}

.about-desc strong {
  color: #2e7d32;
}

/* Values Grid */
.about-values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 25px;
}

.about-value-card {
  background: white;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: all 0.3s ease;
}

.about-value-card:hover {
  border-color: #4caf50;
  box-shadow: 0 8px 25px rgba(76, 175, 80, 0.15);
  transform: translateY(-3px);
}

.about-value-card .value-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.about-value-card .value-icon i {
  color: white;
  font-size: 1rem;
}

.about-value-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 4px;
}

.about-value-card p {
  font-size: 0.8rem;
  color: #777;
  margin: 0;
  line-height: 1.4;
}

/* CTA Buttons */
.about-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-outline-dark {
  background: transparent;
  border: 2px solid #1a1a2e;
  color: #1a1a2e;
  padding: 12px 24px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline-dark:hover {
  background: #1a1a2e;
  color: white;
}

/* Old About Section (kept for backward compatibility) */
.about-section {
  background: var(--white);
}

.about-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}

.about-year-badge {
  position: absolute;
  top: -25px;
  right: -25px;
  background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
  color: var(--white);
  padding: 30px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-year-badge h3 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.about-year-badge span {
  font-size: 0.9rem;
  opacity: 0.9;
}

.about-content h2 {
  margin-bottom: 25px;
}

.about-content > p {
  font-size: 1.05rem;
  margin-bottom: 35px;
  line-height: 1.8;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-bottom: 35px;
}

.about-value {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: var(--light-green);
  border-radius: var(--radius-md);
}

.about-value i {
  color: var(--primary-green);
  font-size: 1.2rem;
}

.about-value span {
  font-weight: 600;
  color: var(--dark-text);
}

.about-buttons {
  display: flex;
  gap: 15px;
}

/* -------------------- Testimonials Section NEW -------------------- */
.testimonials-section-new {
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.testimonials-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.testi-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}

.testi-shape-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.1) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}

.testi-shape-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.08) 0%, transparent 70%);
  bottom: -80px;
  left: -80px;
}

.testimonials-header-new {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
}

.testi-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  color: #2e7d32;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.testi-badge i {
  font-size: 0.9rem;
}

.testimonials-header-new h2 {
  font-size: 2.2rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 10px;
}

.testimonials-header-new p {
  font-size: 1rem;
  color: #666;
  max-width: 500px;
  margin: 0 auto;
}

/* Google Rating Badge */
.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 12px 25px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  margin: 0 auto 35px;
  border: 1px solid #eee;
}

.google-logo {
  height: 24px;
  width: auto;
}

.rating-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 3px;
}

.rating-stars i {
  color: #FBBC04;
  font-size: 0.9rem;
}

.rating-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin-left: 8px;
}

.rating-text {
  font-size: 0.75rem;
  color: #666;
}

/* Testimonials Carousel */
.testimonials-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  z-index: 1;
  padding: 20px 0;
}

.testimonials-track {
  display: flex;
  gap: 25px;
  width: max-content;
  will-change: transform;
  animation: scrollTestimonials 50s linear infinite !important;
  -webkit-animation: scrollTestimonials 50s linear infinite !important;
}

.testimonials-carousel:hover .testimonials-track {
  animation-play-state: paused;
  -webkit-animation-play-state: paused;
}

@-webkit-keyframes scrollTestimonials {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

@keyframes scrollTestimonials {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.testi-card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  flex-shrink: 0;
  width: 350px;
  min-height: 220px;
}

.testi-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(76, 175, 80, 0.3);
}

.testi-card.featured {
  border: 2px solid #4caf50;
  background: linear-gradient(180deg, #ffffff 0%, #f8fff8 100%);
}

.featured-badge {
  position: absolute;
  top: -10px;
  right: 20px;
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testi-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #4caf50, #66bb6a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-avatar span {
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.testi-author {
  flex: 1;
}

.testi-author h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a2e;
  margin-bottom: 2px;
}

.testi-author span {
  font-size: 0.75rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 4px;
}

.testi-author span i {
  font-size: 0.65rem;
  color: #4caf50;
}

.testi-rating {
  display: flex;
  gap: 2px;
}

.testi-rating i {
  color: #FBBC04;
  font-size: 0.8rem;
}

.testi-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
  font-style: italic;
}

.testi-service {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #f5f5f5;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  color: #666;
  font-weight: 500;
}

.testi-service i {
  color: #4caf50;
  font-size: 0.7rem;
}

/* CTA */
.testimonials-cta-new {
  text-align: center;
  margin-top: 35px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

/* Old Testimonials Section (kept for backward compatibility) */
.testimonials-section {
  background: var(--off-white);
  overflow: hidden;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}

.testimonials-slider {
  position: relative;
  max-width: 900px;
  margin: 0 auto 50px;
}

.testimonial-card {
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  text-align: center;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 30px;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: var(--primary-green);
  opacity: 0.15;
  line-height: 1;
}

.testimonial-stars {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin-bottom: 25px;
}

.testimonial-stars i {
  color: #FFB800;
  font-size: 1.2rem;
}

.testimonial-text {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--dark-text);
  margin-bottom: 30px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.testimonial-author img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-author-info h4 {
  font-size: 1rem;
  margin-bottom: 3px;
}

.testimonial-author-info span {
  font-size: 0.85rem;
  color: var(--gray);
}

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--light-gray);
  cursor: pointer;
  transition: var(--transition-normal);
}

.testimonial-dot.active {
  background: var(--primary-green);
  transform: scale(1.2);
}

.testimonials-cta {
  text-align: center;
}

/* -------------------- Contact Section NEW -------------------- */
.contact-section-new {
  background: linear-gradient(135deg, #f8fdf8 0%, #e8f5e9 100%);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.contact-bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(76, 175, 80, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(76, 175, 80, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

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

.contact-header {
  text-align: center;
  margin-bottom: 40px;
}

.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #4caf50, #2e7d32);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-badge i {
  font-size: 0.9rem;
}

.contact-header h2 {
  font-size: 2.2rem;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.contact-header p {
  font-size: 1rem;
  color: #666;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 40px;
  align-items: start;
}

/* Contact Info Cards */
.contact-info-new {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Contact Image */
.contact-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-image-wrap img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.contact-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: white;
}

.contact-image-overlay h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.contact-image-overlay p {
  font-size: 0.85rem;
  opacity: 0.9;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 15px;
  background: white;
  padding: 18px 20px;
  border-radius: 14px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(76, 175, 80, 0.1);
}

.contact-card:hover {
  transform: translateX(5px);
  box-shadow: 0 5px 25px rgba(76, 175, 80, 0.15);
  border-color: rgba(76, 175, 80, 0.3);
}

.contact-card.location {
  cursor: default;
}

.contact-card.location:hover {
  transform: none;
}

.contact-card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
  border-radius: 12px;
  flex-shrink: 0;
}

.contact-card-icon i {
  font-size: 1.1rem;
  color: #2e7d32;
}

.contact-card-content {
  flex: 1;
}

.contact-card-content h4 {
  font-size: 0.8rem;
  color: #888;
  font-weight: 500;
  margin-bottom: 3px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-card-content span {
  font-size: 1rem;
  color: #1a1a1a;
  font-weight: 600;
}

.contact-card-arrow {
  color: #4caf50;
  font-size: 0.9rem;
  opacity: 0;
  transform: translateX(-5px);
  transition: all 0.3s ease;
}

.contact-card:hover .contact-card-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* WhatsApp CTA */
.whatsapp-cta-new {
  display: flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  padding: 18px 22px;
  border-radius: 14px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-cta-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
}

.whatsapp-icon-wrap i {
  font-size: 1.5rem;
  color: white;
}

.whatsapp-text {
  flex: 1;
}

.whatsapp-text span {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
}

.whatsapp-text strong {
  font-size: 1.05rem;
  color: white;
}

.whatsapp-cta-new > i {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

/* Quick Info */
.contact-quick-info {
  display: flex;
  gap: 12px;
}

.quick-info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: white;
  padding: 14px 20px;
  border-radius: 12px;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
  flex: 1;
  border: 1px solid rgba(76, 175, 80, 0.1);
}

.quick-info-item i {
  color: #4caf50;
  font-size: 0.9rem;
}

.quick-info-item span {
  font-size: 0.85rem;
  color: #555;
  font-weight: 500;
}

/* Contact Form */
.contact-form-new {
  background: #fff;
  padding: 28px 32px;
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0,0,0,0.12);
  border: none;
  position: relative;
  overflow: hidden;
}

.contact-form-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #4caf50, #81c784, #4caf50);
}

.form-header {
  margin-bottom: 20px;
  text-align: center;
}

.form-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.form-icon i {
  font-size: 1.3rem;
  color: #2e7d32;
}

.form-header h3 {
  font-size: 1.35rem;
  color: #1a1a1a;
  margin-bottom: 5px;
  font-weight: 700;
}

.form-header p {
  font-size: 0.85rem;
  color: #666;
}

.contact-form-new .form-group {
  margin-bottom: 14px;
  position: relative;
}

.contact-form-new label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #333;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-form-new label i {
  color: #4caf50;
  font-size: 0.8rem;
  width: 16px;
}

.contact-form-new input,
.contact-form-new select,
.contact-form-new textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  transition: all 0.3s ease;
  background: #f9f9f9;
  color: #333;
}

.contact-form-new input::placeholder,
.contact-form-new textarea::placeholder {
  color: #aaa;
}

.contact-form-new input:hover,
.contact-form-new select:hover,
.contact-form-new textarea:hover {
  border-color: #c8e6c9;
  background: #fff;
}

.contact-form-new input:focus,
.contact-form-new select:focus,
.contact-form-new textarea:focus {
  outline: none;
  border-color: #4caf50;
  background: white;
  box-shadow: 0 0 0 4px rgba(76, 175, 80, 0.1);
}

.contact-form-new textarea {
  resize: vertical;
  min-height: 60px;
}

.contact-form-new select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%234caf50' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  background-color: #f9f9f9;
  padding-right: 45px;
}

.btn-submit {
  width: 100%;
  padding: 14px 24px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 8px;
  background: linear-gradient(135deg, #4caf50 0%, #2e7d32 100%);
  border: none;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.35);
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(76, 175, 80, 0.45);
  background: linear-gradient(135deg, #43a047 0%, #1b5e20 100%);
}

.btn-submit:active {
  transform: translateY(-1px);
}

.btn-submit span {
  font-size: 1.05rem;
}

.btn-submit i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.btn-submit:hover i {
  transform: translateX(5px);
}

/* Form Trust Badges */
.form-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #f0f0f0;
}

.form-trust .trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.form-trust .trust-item i {
  color: #4caf50;
  font-size: 0.75rem;
}

.form-trust .trust-item span {
  font-size: 0.75rem;
  color: #777;
  font-weight: 500;
}

/* -------------------- Contact Section OLD (kept for backward compatibility) -------------------- */
.contact-section {
  background: var(--white);
  position: relative;
}

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

.contact-info h2 {
  margin-bottom: 20px;
}

.contact-info > p {
  font-size: 1.05rem;
  margin-bottom: 35px;
}

.contact-details {
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

.contact-item i {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light-green);
  color: var(--primary-green);
  border-radius: 50%;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-item-content h4 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 3px;
  color: var(--gray);
}

.contact-item-content a,
.contact-item-content p {
  font-size: 1.05rem;
  color: var(--dark-text);
  font-weight: 500;
  margin: 0;
}

.contact-item-content a:hover {
  color: var(--primary-green);
}

.whatsapp-box {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px 25px;
  background: linear-gradient(135deg, #1a5f7a, #2d8f9e, #4caf50);
  border-radius: var(--radius-md);
  color: var(--white);
  transition: var(--transition-normal);
}

.whatsapp-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.whatsapp-box i {
  font-size: 2rem;
}

.whatsapp-box span {
  font-size: 0.9rem;
  opacity: 0.9;
}

.whatsapp-box strong {
  display: block;
  font-size: 1.1rem;
  margin-top: 3px;
}

.contact-form-wrapper {
  background: var(--off-white);
  padding: 45px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h3 {
  margin-bottom: 30px;
  text-align: center;
}

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

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

.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--light-gray);
  border-radius: var(--radius-md);
  font-size: 1rem;
  transition: var(--transition-normal);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.1);
}

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

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 25px;
  font-size: 0.85rem;
  color: var(--gray);
}

.form-consent input {
  width: auto;
  margin-top: 3px;
}

.contact-form-wrapper .btn {
  width: 100%;
}

/* -------------------- Services Overview Section -------------------- */
.services-overview-section {
  background: linear-gradient(135deg, #f8fdf8 0%, #f0f7f0 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
}

.services-overview-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #1a5f7a, #2d8f9e, #4caf50, #2d8f9e);
}

.services-overview-header {
  text-align: center;
  margin-bottom: 40px;
}

.overview-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8f9e 50%, #4caf50 100%);
  color: white;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.services-overview-header h2 {
  font-size: 2rem;
  color: var(--dark-text);
  margin-bottom: 10px;
}

.services-overview-header p {
  color: var(--gray);
  font-size: 1rem;
}

.services-overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 35px;
}

.overview-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.overview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.overview-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.overview-icon {
  width: 55px;
  height: 55px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
}

.overview-card.pest-control .overview-icon {
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8f9e 100%);
}

.overview-card.cleaning .overview-icon {
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8f9e 50%, #4caf50 100%);
}

.overview-card h3 {
  font-size: 1.25rem;
  color: var(--dark-text);
  font-weight: 700;
}

.overview-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

/* All Services Tags - Single Container */
.all-services-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 35px;
  background: white;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}

.overview-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: #f5f7f5;
  border-radius: 50px;
  font-size: 0.88rem;
  color: var(--dark-text);
  text-decoration: none;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.overview-tag i {
  font-size: 0.8rem;
  color: var(--primary-teal);
}

.overview-tag:hover {
  background: white;
  border-color: var(--primary-green);
  color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.services-overview-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
  padding: 20px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.overview-location {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray);
  font-size: 0.95rem;
}

.overview-location i {
  font-size: 1.2rem;
  color: #e74c3c;
}

.overview-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8f9e 50%, #4caf50 100%);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.overview-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

@media (max-width: 768px) {
  .services-overview-grid {
    grid-template-columns: 1fr;
  }

  .services-overview-footer {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .overview-location {
    flex-direction: column;
    gap: 8px;
  }
}

/* -------------------- Accreditations Section -------------------- */
.accreditations-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0d3d4d 0%, #1a5f7a 50%, #0d3d4d 100%);
  position: relative;
  overflow: hidden;
}

.accreditations-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.accreditations-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.accreditations-content {
  color: white;
}

.accreditations-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
}

.accreditations-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: white;
}

.accreditations-content > p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
  color: white;
}

.accreditations-stats {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
}

.acc-stat {
  text-align: center;
}

.acc-stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 700;
  color: white;
}

.acc-stat-text {
  font-size: 0.85rem;
  color: white;
}

.accreditations-cta {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8f9e 50%, #4caf50 100%);
  color: white;
  padding: 18px 30px;
  border-radius: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.accreditations-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.accreditations-cta i {
  font-size: 1.5rem;
}

.accreditations-cta span {
  font-size: 0.85rem;
  opacity: 0.9;
}

.accreditations-cta strong {
  display: block;
  font-size: 1.2rem;
}

/* Accreditations Logos Grid */
.accreditations-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.acc-logo-card {
  background: white;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.acc-logo-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.acc-logo-card.featured {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
}

.acc-logo-card.featured h4,
.acc-logo-card.featured p {
  color: white;
}

.acc-logo-card.highlight {
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8f9e 50%, #4caf50 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.acc-logo-card.highlight .acc-logo-content {
  color: white;
}

.acc-logo-card.highlight i {
  font-size: 2rem;
  margin-bottom: 10px;
}

.acc-logo-card.highlight h4 {
  color: white;
  margin-bottom: 5px;
}

.acc-logo-card.highlight p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.8rem;
}

.acc-logo-img {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}

.acc-logo-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.acc-logo-info h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark-text);
  margin-bottom: 4px;
}

.acc-logo-info p {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.3;
}

@media (max-width: 992px) {
  .accreditations-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .accreditations-stats {
    justify-content: center;
  }

  .accreditations-cta {
    justify-content: center;
  }

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

@media (max-width: 576px) {
  .accreditations-logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .accreditations-content h2 {
    font-size: 1.8rem;
  }

  .accreditations-stats {
    gap: 20px;
  }

  .acc-stat-number {
    font-size: 1.8rem;
  }
}

/* -------------------- Footer -------------------- */
.footer {
  background: var(--dark-text);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}

.footer-brand img {
  height: 60px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 25px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  transition: var(--transition-normal);
}

.footer-social a:hover {
  background: var(--primary-green);
  transform: translateY(-3px);
}

.footer-column h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-green);
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

.footer-links a:hover {
  color: var(--primary-green);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.7);
}

.footer-contact-item i {
  color: var(--primary-green);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.footer-bottom-links a:hover {
  color: var(--primary-green);
}

/* -------------------- Footer New Design -------------------- */
.footer-new {
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  color: var(--white);
}

/* Footer Top CTA Bar */
.footer-top-bar {
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8f9e 50%, #4caf50 100%);
  padding: 25px 0;
}

.footer-cta-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 25px;
}

.footer-cta-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 3px;
  color: var(--white);
}

.footer-cta-text p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  margin: 0;
}

.footer-cta-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

.footer-cta-btn.whatsapp {
  background: var(--white);
  color: #25D366;
}

.footer-cta-btn.whatsapp:hover {
  background: #f0f0f0;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.footer-cta-btn.phone {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.footer-cta-btn.phone:hover {
  background: var(--white);
  color: #128C7E;
  transform: translateY(-3px);
}

/* Footer Main Section */
.footer-main {
  padding: 50px 0 40px;
}

.footer-grid-new {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}

/* Footer Brand */
.footer-brand-new img {
  height: 55px;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-brand-new p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social-new {
  display: flex;
  gap: 10px;
}

.footer-social-new a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition-normal);
}

.footer-social-new a:hover {
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8f9e 50%, #4caf50 100%);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
}

/* Footer Columns */
.footer-column-new h4 {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-column-new h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8f9e 50%, #4caf50 100%);
  border-radius: 2px;
}

.footer-column-new ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column-new ul li {
  margin-bottom: 10px;
}

.footer-column-new ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-normal);
}

.footer-column-new ul li a i {
  font-size: 0.7rem;
  color: #25D366;
  transition: var(--transition-normal);
}

.footer-column-new ul li a:hover {
  color: #25D366;
  padding-left: 5px;
}

.footer-column-new ul li a:hover i {
  transform: translateX(3px);
}

/* Footer Contact Items */
.footer-contact-new {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item-new {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.05);
  border-radius: 10px;
  transition: var(--transition-normal);
  text-decoration: none;
}

a.footer-contact-item-new:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(5px);
}

.footer-contact-item-new .contact-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8f9e 50%, #4caf50 100%);
  border-radius: 8px;
  color: var(--white);
  font-size: 0.95rem;
  flex-shrink: 0;
}

.footer-contact-item-new .contact-text {
  display: flex;
  flex-direction: column;
}

.footer-contact-item-new .contact-text span {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1px;
}

.footer-contact-item-new .contact-text strong {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 500;
}

/* Footer Bottom */
.footer-bottom-new {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
  background: rgba(0,0,0,0.2);
}

.footer-bottom-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom-wrap p {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom-links-new {
  display: flex;
  gap: 25px;
}

.footer-bottom-links-new a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  transition: var(--transition-normal);
}

.footer-bottom-links-new a:hover {
  color: #25D366;
}

/* Footer New Responsive */
@media (max-width: 1024px) {
  .footer-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .footer-cta-wrap {
    text-align: center;
    justify-content: center;
  }

  .footer-cta-buttons {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .footer-top-bar {
    padding: 30px 0;
  }

  .footer-cta-text h3 {
    font-size: 1.5rem;
  }

  .footer-cta-btn {
    padding: 12px 22px;
    font-size: 0.9rem;
  }

  .footer-grid-new {
    grid-template-columns: 1fr;
    gap: 35px;
    text-align: center;
  }

  .footer-column-new h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-column-new ul li a {
    justify-content: center;
  }

  .footer-social-new {
    justify-content: center;
  }

  .footer-contact-new {
    align-items: center;
  }

  .footer-contact-item-new {
    max-width: 300px;
    width: 100%;
  }

  .footer-bottom-wrap {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links-new {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .footer-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .footer-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom-links-new {
    flex-direction: column;
    gap: 10px;
  }
}

/* -------------------- Floating Elements -------------------- */
.floating-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 999;
}

.floating-btn {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-normal);
}

.floating-btn:hover {
  transform: scale(1.1);
}

.floating-btn.whatsapp {
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8f9e 50%, #4caf50 100%);
}

.floating-btn.call {
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8f9e 100%);
}

.floating-btn.scroll-top {
  background: linear-gradient(135deg, #1a5f7a 0%, #2d8f9e 50%, #4caf50 100%);
  opacity: 0;
  visibility: hidden;
}

.floating-btn.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Mega Menu Responsive - Tablets */
@media (max-width: 1200px) {
  .mega-menu {
    width: 900px;
  }

  .mega-menu-container {
    gap: 25px;
    padding: 25px;
  }
}

@media (max-width: 1024px) {
  .mega-menu {
    width: 750px;
  }

  .mega-menu-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 20px;
  }

  .mega-menu-title {
    font-size: 0.95rem;
  }

  .mega-menu-item-name {
    font-size: 0.85rem;
  }

  .mega-menu-item-desc {
    font-size: 0.7rem;
  }
}

/* -------------------- Responsive Design -------------------- */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }

  #why-us.trust-section .container {
    max-width: 100% !important;
    width: 100% !important;
  }

  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 700px;
    margin: 0 auto;
  }

  .hero-cta,
  .hero-trust {
    justify-content: center;
  }

  .hero-image {
    display: none;
  }
}

@media (max-width: 992px) {
  :root {
    --section-padding: 80px 0;
  }

  .nav {
    display: none;
  }

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

  .nav.active {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--white);
    justify-content: flex-start;
    align-items: center;
    padding-top: 100px;
    gap: 0;
    z-index: 1000;
    overflow-y: auto;
  }

  .nav.active .nav-menu {
    flex-direction: column;
    gap: 20px;
    width: 100%;
    max-width: 500px;
    padding: 0 20px;
  }

  .nav.active .nav-link {
    font-size: 1.3rem;
  }

  /* Hide mega menu on mobile, show simplified version */
  .mega-menu {
    display: none;
  }

  .nav.active .mega-menu {
    position: static;
    display: block;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin: 10px 0;
    width: 100%;
    box-shadow: none;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav.active .has-mega-menu.mobile-menu-open .mega-menu {
    max-height: 2000px;
    padding: 15px 0;
  }

  .nav.active .mega-menu-container {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 10px 15px;
  }

  .nav.active .mega-menu-column {
    gap: 12px;
    background: white;
    padding: 15px;
    border-radius: var(--radius-sm);
  }

  .nav.active .mega-menu-title {
    font-size: 1rem;
    padding-bottom: 8px;
    margin-bottom: 8px;
  }

  .nav.active .mega-menu-list {
    gap: 5px;
  }

  .nav.active .mega-menu-list li a {
    padding: 10px;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
  }

  .nav.active .mega-menu-item-name {
    font-size: 0.9rem;
  }

  .nav.active .mega-menu-item-desc {
    font-size: 0.75rem;
  }

  .nav.active .mega-menu-cta {
    padding-top: 10px;
    margin-top: 5px;
    border-top: 1px solid var(--light-gray);
  }

  .nav.active .mega-menu-cta .btn {
    font-size: 0.9rem;
    padding: 12px 20px;
  }

  .stats-bar .container {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

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

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

  .why-choose-section .container,
  .about-section .container,
  .contact-section .container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-choose-image,
  .about-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

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

  .process-card::after {
    display: none;
  }

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

@media (max-width: 768px) {
  :root {
    --section-padding: 60px 0;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  /* Mobile mega menu adjustments for smaller screens */
  .nav.active .nav-menu {
    max-width: 100%;
    padding: 0 15px;
  }

  .nav.active .nav-link {
    font-size: 1.2rem;
  }

  .nav.active .mega-menu-column {
    padding: 12px;
  }

  .nav.active .mega-menu-title {
    font-size: 0.95rem;
  }

  .nav.active .mega-menu-item-name {
    font-size: 0.85rem;
  }

  .nav.active .mega-menu-item-desc {
    font-size: 0.7rem;
  }

  .btn {
    padding: 12px 25px;
  }

  .hero {
    min-height: auto;
    padding: 120px 0 80px;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 300px;
  }

  .stats-bar .container {
    grid-template-columns: 1fr 1fr;
  }

  .stat-number {
    font-size: 2.2rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .services-tabs {
    gap: 8px;
  }

  .tab-btn {
    padding: 10px 20px;
    font-size: 0.85rem;
  }

  .consultation-box {
    padding: 35px 20px;
  }

  .consultation-box h3 {
    font-size: 1.5rem;
  }

  .consultation-box p {
    font-size: 0.95rem;
  }

  .consultation-box .btn-group {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .consultation-box .btn-primary,
  .consultation-box .btn-outline {
    padding: 12px 28px;
    width: 100%;
    max-width: 280px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .about-values {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 35px 25px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 30px 20px;
  }

  .seo-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column h4::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

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

  .floating-buttons {
    bottom: 20px;
    right: 20px;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .header-phone {
    display: none;
  }

  .header-actions .btn {
    display: none;
  }

  .trust-chip {
    font-size: 0.75rem;
    padding: 8px 14px;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.85rem;
  }

  .service-card-cta {
    flex-direction: column;
  }

  .why-choose-buttons,
  .about-buttons,
  .trust-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .why-choose-badge {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 20px;
    justify-content: center;
  }

  .about-year-badge {
    position: relative;
    top: auto;
    right: auto;
    margin-bottom: 20px;
  }
}

/* -------------------- Trust & Accreditations Section -------------------- */
.trust-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fdf5 0%, #f0f9ff 100%);
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2396c062' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.trust-section .section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.trust-section .section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-teal));
  color: white;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.trust-section .section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 15px;
}

.trust-section .section-header p {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 25px;
  position: relative;
  z-index: 1;
}

.trust-badge {
  background: white;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(37, 211, 102, 0.1);
}

.trust-badge:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.2);
  border-color: var(--primary-green);
}

.trust-logo {
  width: 100px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.trust-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: grayscale(30%);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.trust-badge:hover .trust-logo img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.1);
}

/* DOH Badge - Dark background for white logo */
.trust-badge.dark-badge {
  background: #1a1a1a;
  border-color: #333;
}

.trust-badge.dark-badge h4,
.trust-badge.dark-badge p {
  color: white;
}

.trust-badge.dark-badge:hover {
  background: #000;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  border-color: #444;
}

.trust-badge.dark-badge .trust-logo {
  width: 100%;
  height: 90px;
}

.trust-badge.dark-badge .trust-logo img {
  filter: none;
  opacity: 1;
  max-width: 90%;
  max-height: 90px;
}

/* Fallback icon style if no image */
.trust-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.15), rgba(82, 154, 177, 0.15));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.trust-badge:hover .trust-icon {
  background: linear-gradient(135deg, var(--primary-green), var(--primary-teal));
  transform: scale(1.1);
}

.trust-icon i {
  font-size: 28px;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.trust-badge:hover .trust-icon i {
  -webkit-text-fill-color: white;
  background: none;
  color: white;
}

.trust-badge h4 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}

.trust-badge p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

.trust-cta {
  text-align: center;
  margin-top: 50px;
  padding: 30px 40px;
  background: linear-gradient(135deg, var(--primary-green), var(--primary-teal));
  border-radius: 16px;
  position: relative;
  z-index: 1;
}

.trust-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  margin-bottom: 10px;
}

.trust-cta p i {
  margin-right: 8px;
}

.trust-phone {
  font-size: 2rem;
  font-weight: 700;
  color: white;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.trust-phone:hover {
  transform: scale(1.05);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Trust Section Responsive */
@media (max-width: 1200px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .trust-section {
    padding: 60px 0;
  }

  .trust-section .section-header h2 {
    font-size: 2rem;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .trust-section {
    padding: 50px 0;
  }

  .trust-section .section-header h2 {
    font-size: 1.75rem;
  }

  .trust-section .section-header p {
    font-size: 1rem;
  }

  .trust-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .trust-badge {
    padding: 25px 15px;
  }

  .trust-icon {
    width: 60px;
    height: 60px;
  }

  .trust-icon i {
    font-size: 24px;
  }

  .trust-cta {
    padding: 25px 20px;
  }

  .trust-phone {
    font-size: 1.5rem;
  }
}

/* -------------------- RTL Styles -------------------- */
body.rtl .section-label::before {
  margin-right: 0;
  margin-left: 8px;
}

body.rtl .nav-link::after {
  left: auto;
  right: 0;
}

body.rtl .footer-column h4::after {
  left: auto;
  right: 0;
}

body.rtl .footer-links a:hover {
  padding-left: 0;
  padding-right: 5px;
}

body.rtl .why-choose-item {
  flex-direction: row-reverse;
}

body.rtl .contact-item {
  flex-direction: row-reverse;
}

body.rtl .about-value {
  flex-direction: row-reverse;
}

body.rtl .whatsapp-box {
  flex-direction: row-reverse;
}

body.rtl .trust-cta p i {
  margin-right: 0;
  margin-left: 8px;
}

/* -------------------- Loading Animation -------------------- */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader {
  width: 50px;
  height: 50px;
  border: 3px solid var(--light-green);
  border-top-color: var(--primary-green);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* -------------------- Clients Carousel Section -------------------- */
.clients-section {
  background: linear-gradient(135deg, #f8faf8 0%, #e8f5e9 100%);
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}

.clients-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
}

.clients-section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-green), transparent);
}

.clients-wrapper {
  max-width: 100%;
  margin: 0 auto;
}

.clients-heading {
  text-align: center;
  margin-bottom: 30px;
}

.clients-heading span {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-green);
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  padding: 0 20px;
}

.clients-heading span::before,
.clients-heading span::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background: var(--primary-green);
}

.clients-heading span::before {
  left: -50px;
}

.clients-heading span::after {
  right: -50px;
}

.clients-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.clients-track {
  display: flex;
  gap: 60px;
  animation: scrollLogos 25s linear infinite;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.client-logo {
  flex-shrink: 0;
  width: 150px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 12px;
  padding: 15px 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.client-logo:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.client-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Specific logo size adjustments */
.client-logo img[alt="ASGC"] {
  transform: scale(2.2);
}

.client-logo img[alt="Adeeb Group"] {
  transform: scale(1.8);
}

/* Responsive for Clients Carousel */
@media (max-width: 768px) {
  .clients-section {
    padding: 30px 0;
  }

  .clients-heading span {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }

  .clients-heading span::before,
  .clients-heading span::after {
    width: 25px;
  }

  .clients-heading span::before {
    left: -35px;
  }

  .clients-heading span::after {
    right: -35px;
  }

  .clients-track {
    gap: 40px;
    animation-duration: 25s;
  }

  .client-logo {
    width: 120px;
    height: 60px;
    padding: 10px 15px;
  }
}

@media (max-width: 480px) {
  .clients-section {
    padding: 25px 0;
  }

  .clients-heading {
    margin-bottom: 20px;
  }

  .clients-heading span {
    font-size: 0.8rem;
  }

  .clients-track {
    gap: 30px;
    animation-duration: 20s;
  }

  .client-logo {
    width: 100px;
    height: 50px;
    padding: 8px 12px;
    border-radius: 8px;
  }
}
