  /* Fonts */
  :root {
    --default-font: "Salsa", sans-serif;
    --heading-font: "Salsa", sans-serif;
    --nav-font: "Salsa", sans-serif;
  }

  /* Global Colors - Light Green Theme */
  :root {
    --background-color: #f8faf9;
    --default-color: #2d4a3e;
    --heading-color: #1a5d3a;
    --accent-color: #2d8659;
    --surface-color: #ffffff;
    --contrast-color: #1a5d3a;
    --nav-color: #2d4a3e;
    --nav-hover-color: #2d8659;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #2d4a3e;
    --nav-dropdown-hover-color: #2d8659;
    --success-color: #2d8659;
    --warning-color: #d4a574;
    --danger-color: #d67b7b;
    --info-color: #2d8659;
    --light-green: #e8f5e9;
    --medium-green: #81c784;
    --dark-green: #1a5d3a;
    --darker-green: #0d3d22;
  }


  /* Color Presets - Light Green Theme */
  
  .light-background {
    --background-color: #ffffff;
    --default-color: #2d4a3e;
    --heading-color: #1a5d3a;
    --surface-color: #f8faf9;
    --contrast-color: #1a5d3a;
  }
  
  .dark-background {
    --background-color: #f0f7f3;
    --default-color: #2d4a3e;
    --heading-color: #1a5d3a;
    --surface-color: #ffffff;
    --contrast-color: #1a5d3a;
  }


/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: #df1529;
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: #059652;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Dark Header
--------------------------------------------------------------*/
.header-dark {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: #1a1a1a;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.header-dark-wrapper {
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  border-bottom: 1px solid rgba(45, 134, 89, 0.2);
}

.header-dark-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  gap: 2rem;
}

.header-dark-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.header-dark-logo:hover {
  transform: scale(1.05);
}

.logo-dark-img {
  width: 160px;
  height: 48px;
  object-fit: contain;
}

.header-dark-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-dark-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
  align-items: center;
}

.nav-item-dropdown {
  position: relative;
}

.nav-dark-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.nav-dark-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 134, 89, 0.2), rgba(26, 93, 58, 0.15));
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-radius: 10px;
}

.nav-dark-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 70%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--medium-green));
  border-radius: 3px 3px 0 0;
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-dark-link span {
  position: relative;
  z-index: 2;
}

.dropdown-icon {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

.nav-item-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

.nav-dark-link:hover,
.nav-dark-link.active {
  color: #ffffff;
  transform: translateY(-2px);
}

.nav-dark-link:hover::before,
.nav-dark-link.active::before {
  opacity: 1;
  transform: scaleX(1);
}

.nav-dark-link:hover::after,
.nav-dark-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Dropdown Menu */
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 1px solid rgba(45, 134, 89, 0.3);
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  list-style: none;
  margin: 0;
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  z-index: 1000;
  backdrop-filter: blur(20px);
}

.nav-item-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(45, 134, 89, 0.3);
}

.nav-dropdown-menu li {
  margin: 0;
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.85rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 2rem;
}

.nav-dropdown-menu a::before {
  content: '';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.nav-dropdown-menu a:hover {
  color: #ffffff;
  background: rgba(45, 134, 89, 0.15);
  padding-left: 2.5rem;
}

.nav-dropdown-menu a:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1.2);
}

.header-dark-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.header-dark-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

.header-dark-icon-btn:hover {
  color: var(--accent-color);
  background: rgba(45, 134, 89, 0.15);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.menu-icon-line {
  width: 25px;
  height: 2px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover .menu-icon-line {
  background: var(--accent-color);
}

/* Mobile Menu Dark */
.mobile-menu-dark {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-dark.active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
}

.mobile-menu-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 90%;
  max-width: 400px;
  height: 100%;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

.mobile-menu-dark.active .mobile-menu-content {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.mobile-menu-logo img {
  width: 140px;
  height: 42px;
  object-fit: contain;
}

.mobile-menu-close {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu-nav {
  flex: 1;
  padding: 2rem 0;
}

.mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-menu-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-menu-item-dropdown {
  position: relative;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-menu-link span {
  flex: 1;
}

.mobile-dropdown-icon {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.mobile-menu-item-dropdown.active .mobile-dropdown-icon {
  transform: rotate(180deg);
}

.mobile-menu-link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent-color), var(--medium-green));
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link.active {
  color: #ffffff;
  background: rgba(45, 134, 89, 0.15);
  padding-left: 2rem;
}

.mobile-menu-link:hover::before,
.mobile-menu-link.active::before {
  transform: scaleY(1);
}

.mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  list-style: none;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.3);
  transition: max-height 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.mobile-menu-item-dropdown.active .mobile-dropdown-menu {
  max-height: 500px;
}

.mobile-dropdown-menu li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.mobile-dropdown-menu a {
  display: block;
  padding: 1rem 1.5rem 1rem 3rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-dropdown-menu a::before {
  content: '';
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-dropdown-menu a:hover {
  color: #ffffff;
  background: rgba(45, 134, 89, 0.1);
  padding-left: 3.5rem;
}

.mobile-dropdown-menu a:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1.3);
}

.mobile-menu-footer {
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-social {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  justify-content: center;
}

.mobile-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.mobile-social-link:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #ffffff;
  transform: translateY(-3px);
}

.mobile-menu-contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.mobile-contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.mobile-contact-link:hover {
  color: var(--accent-color);
}

.mobile-contact-link i {
  font-size: 1.1rem;
}

.mobile-menu-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--accent-color), var(--dark-green));
  color: #ffffff;
  padding: 1rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 134, 89, 0.4);
}

.mobile-menu-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(45, 134, 89, 0.5);
}

.mobile-menu-cta i {
  transition: transform 0.3s ease;
}

.mobile-menu-cta:hover i {
  transform: translateX(3px);
}

body.index-page {
  padding-top: 80px;
}

@media (max-width: 1199px) {
  .header-dark-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .logo-dark-img {
    width: 120px;
    height: 36px;
  }
}

@media (max-width: 1199px) {
  body {
    overflow-x: hidden;
  }


  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }

  .navmenu-modern {
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--surface-color);
    padding: 2rem;
    padding-top: 4rem;
    transform: translateX(100%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, visibility 0.3s ease, opacity 0.3s ease, pointer-events 0.3s ease;
    z-index: 1001;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    flex: none;
    display: flex;
  }

  .navmenu-modern.active {
    transform: translateX(0);
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .navmenu-modern.active,
  .navmenu-modern.active * {
    pointer-events: auto !important;
  }

  .navmenu-modern:not(.active) {
    display: none !important;
  }

  .header-main-content {
    position: relative;
  }

  .header-main-content .navmenu-modern {
    position: fixed;
    top: 0;
    right: 0;
  }

  .nav-menu-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
    position: relative;
    z-index: 1;
  }

  .nav-link {
    width: 100%;
    padding: 1rem;
    border-radius: 0;
    position: relative;
    z-index: 1;
  }

  .mobile-nav-toggle {
    display: block;
    order: -1;
  }

  .header-actions {
    gap: 0.75rem;
  }

  .header-top-content {
    justify-content: center;
  }

  .header-contact-info {
    display: none;
  }
}

@media (max-width: 768px) {
  .header-top {
    display: none;
  }

  .logo-modern .logo-img {
    width: 140px;
    height: 42px;
  }

  .btn-link {
    display: none;
  }

  .btn-primary-modern span {
    display: none;
  }

  .btn-primary-modern {
    padding: 0.75rem;
    width: 44px;
    height: 44px;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Global Header (Legacy - keeping for compatibility)
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 15px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}


/* Logo */
.logo-img {
  width: 240px;
  height: 70px;
  transition: all 0.3s ease;
}

.logo:hover .logo-img {
  transform: scale(1.1) rotate(5deg);
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 400;
  color: var(--heading-color);
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover>a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover>ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover>ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

/* Navmenu - Mobile */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown>.dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu>ul {
    display: block;
  }
}

/*--------------------------------------------------------------
# Dark Footer
--------------------------------------------------------------*/
.footer-dark {
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(45, 134, 89, 0.2);
}

.footer-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(45, 134, 89, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(26, 93, 58, 0.05) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.footer-dark-main {
  padding: 5rem 0 3rem;
  position: relative;
  z-index: 2;
}

.footer-dark-brand {
  margin-bottom: 2rem;
}

.footer-dark-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.footer-dark-logo:hover {
  transform: scale(1.05);
}

.footer-logo-dark-img {
  width: 45px;
  height: 45px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.footer-logo-dark-text {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  font-family: var(--heading-font);
}

.footer-dark-description {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.footer-dark-social {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-social-dark-link {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(45, 134, 89, 0.2);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.footer-social-dark-link:hover {
  background: var(--accent-color);
  color: #ffffff;
  transform: translateY(-3px);
  border-color: var(--accent-color);
  box-shadow: 0 8px 20px rgba(45, 134, 89, 0.3);
}

.footer-dark-column {
  margin-bottom: 2rem;
}

.footer-dark-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  font-family: var(--heading-font);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-dark-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-dark-menu li {
  margin-bottom: 0.75rem;
}

.footer-dark-menu a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-dark-menu a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-dark-newsletter-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.newsletter-form-dark {
  margin-bottom: 2rem;
}

.newsletter-dark-input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(45, 134, 89, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.newsletter-dark-input-group:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(45, 134, 89, 0.1);
}

.newsletter-dark-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 1rem 1.25rem;
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
}

.newsletter-dark-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-dark-btn {
  background: linear-gradient(135deg, var(--accent-color), var(--dark-green));
  border: none;
  padding: 1rem 1.5rem;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.newsletter-dark-btn:hover {
  background: linear-gradient(135deg, var(--dark-green), var(--accent-color));
  transform: scale(1.05);
}

.footer-dark-contact {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-dark-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-contact-dark-row i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.footer-contact-dark-row a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact-dark-row a:hover {
  color: var(--accent-color);
}

.footer-dark-bottom {
  background: rgba(13, 13, 13, 0.8);
  border-top: 1px solid rgba(45, 134, 89, 0.1);
  padding: 1.5rem 0;
  position: relative;
  z-index: 2;
}

.footer-dark-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-dark-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-dark-copyright strong {
  color: var(--accent-color);
}

.footer-dark-legal {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-dark-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.footer-dark-legal a:hover {
  color: var(--accent-color);
}

.footer-dark-separator {
  color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .footer-dark-main {
    padding: 3rem 0 1.5rem;
  }

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

  .footer-dark-legal {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Global Footer (Legacy - keeping for compatibility)
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(180deg, #1a1626 0%, #0f0d17 100%);
  color: var(--contrast-color);
  font-size: 14px;
  padding: 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(147, 51, 234, 0.2);
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(147, 51, 234, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(177, 156, 217, 0.05) 0%, transparent 50%);
  z-index: 1;
}

/* Newsletter Section */
.footer-newsletter {
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  padding: 80px 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.newsletter-content {
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  backdrop-filter: blur(10px);
}

.newsletter-icon i {
  font-size: 36px;
  color: white;
}

.newsletter-content h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
  line-height: 1.2;
}

.newsletter-content p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
}

.newsletter-form {
  position: relative;
}

.input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  padding: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.input-group:focus-within {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.newsletter-form input[type="email"] {
  flex: 1;
  border: none;
  background: transparent;
  padding: 15px 25px;
  color: white;
  font-size: 16px;
  outline: none;
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.btn-newsletter {
  background: var(--surface-color);
  border: none;
  border-radius: 50px;
  padding: 15px 25px;
  color: var(--accent-color);
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
}

.btn-newsletter:hover {
  background: var(--dark-background);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.form-messages {
  margin-top: 20px;
}

.form-messages > div {
  display: none;
  padding: 15px;
  border-radius: 10px;
  margin-top: 15px;
  font-weight: 500;
}

.form-messages .loading {
  background: rgba(255, 255, 255, 0.2);
  color: white;
}

.form-messages .error-message {
  background: rgba(239, 68, 68, 0.2);
  color: #fecaca;
}

.form-messages .sent-message {
  background: rgba(34, 197, 94, 0.2);
  color: #bbf7d0;
}

/* Main Footer Content */
.footer-main {
  padding: 60px 0 40px;
  position: relative;
  z-index: 2;
}

.footer-brand {
  margin-bottom: 30px;
}

.brand-logo {
  width: 200px;
  height: 60px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
}

.footer-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}

.brand-logo:hover .footer-logo {
  transform: scale(1.05);
  opacity: 0.9;
}

.brand-logo i {
  font-size: 28px;
  color: white;
}

.brand-name {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
  letter-spacing: 0.5px;
}

.brand-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 30px;
}

/* Footer Social */
.footer-social {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.social-link {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link:hover {
  background: rgba(147, 51, 234, 0.2);
  color: var(--accent-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(147, 51, 234, 0.25);
  border-color: rgba(147, 51, 234, 0.4);
}

.social-link i {
  font-size: 1.1rem;
}

/* Footer Newsletter Compact */
.footer-newsletter-compact {
  margin-top: 2rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-newsletter-compact h5 {
  color: var(--heading-color);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.footer-newsletter-compact p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.newsletter-form-compact {
  margin-top: 1rem;
}

.input-group-compact {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
  gap: 0.5rem;
}

.input-group-compact:focus-within {
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.input-group-compact input[type="email"] {
  flex: 1;
  border: none;
  background: transparent;
  padding: 0.875rem 1rem;
  color: var(--contrast-color);
  font-size: 0.9rem;
  outline: none;
}

.input-group-compact input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.btn-newsletter-compact {
  background: var(--accent-color);
  border: none;
  padding: 0.875rem 1.5rem;
  color: var(--contrast-color);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  border-radius: 8px;
}

.btn-newsletter-compact:hover {
  background: var(--heading-color);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(147, 51, 234, 0.3);
}

/* Footer Legal */
.footer-legal {
  text-align: right;
}

.footer-legal .legal-info {
  margin-bottom: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-legal .legal-info p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.8rem;
  line-height: 1.6;
  margin: 0;
}

.footer-legal .legal-info strong {
  color: rgba(255, 255, 255, 0.9);
}


.social-links {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
  background: var(--accent-color);
  color: white;
  transform: translateY(-3px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.3);
}

.social-link i {
  font-size: 20px;
}

/* Footer Links */
.footer-links h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

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

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid transparent;
}

.footer-links ul li a:hover {
  color: var(--contrast-color);
  background: rgba(147, 51, 234, 0.15);
  border-left-color: var(--accent-color);
  padding-left: 1rem;
}

/* Footer Contact */
.footer-contact h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: rgba(147, 51, 234, 0.15);
  border-color: rgba(147, 51, 234, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.contact-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
  text-align: center;
}

.contact-item span,
.contact-item a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1;
}

.contact-item a {
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item:hover a,
.contact-item:hover span {
  color: var(--contrast-color);
}

/* Footer Bottom */
.footer-bottom {
  background: rgba(0, 0, 0, 0.4);
  padding: 30px 0;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.copyright p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  font-size: 14px;
}

.copyright p strong {
  color: var(--contrast-color);
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.footer-bottom-links a:hover {
  color: var(--contrast-color);
  background: rgba(147, 51, 234, 0.15);
  border-color: rgba(147, 51, 234, 0.3);
  transform: translateY(-2px);
}

.separator {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

/* Responsive Footer */
@media (max-width: 991px) {
  .footer-legal {
    text-align: left;
    margin-top: 2rem;
  }
  
  .footer-main {
    padding: 60px 0 30px;
  }
  
  .footer-bottom .row {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-bottom .col-md-6 {
    text-align: center;
    margin-bottom: 1rem;
  }
  
  .footer-legal {
    text-align: center;
  }
}

@media (max-width: 768px) {
  .footer-newsletter {
    padding: 60px 0;
  }
  
  .newsletter-content h3 {
    font-size: 1.8rem;
  }
  
  .newsletter-content p {
    font-size: 1rem;
  }
  
  .input-group {
    flex-direction: column;
    gap: 15px;
  }
  
  .btn-newsletter {
    width: 100%;
    padding: 15px;
  }
  
  .footer-main {
    padding: 50px 0 25px;
  }
  
  .social-links {
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(177, 156, 217, 0.05) 100%);
  padding: 60px 0;
  position: relative;
  border-bottom: 1px solid rgba(147, 51, 234, 0.2);
}

.page-title::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 15px;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section / Welcome Banner Section - Completely Redesigned
--------------------------------------------------------------*/
.welcome-banner-section,
.hero-section {
  width: 100%;
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px 0 120px;
  background: linear-gradient(135deg, #f5fbf7 0%, #e8f5e9 30%, #d4edda 60%, #c3e6cb 100%);
  isolation: isolate;
}

/* Animated Background */
.hero-bg-animated {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.bg-wave {
  position: absolute;
  width: 200%;
  height: 200%;
  opacity: 0.15;
  border-radius: 50%;
  animation: wave-animation 20s ease-in-out infinite;
}

.wave-1 {
  background: radial-gradient(circle, rgba(45, 134, 89, 0.4), transparent 70%);
  top: -50%;
  left: -50%;
  animation-delay: 0s;
}

.wave-2 {
  background: radial-gradient(circle, rgba(76, 175, 80, 0.3), transparent 70%);
  top: -30%;
  right: -30%;
  animation-delay: 5s;
}

.wave-3 {
  background: radial-gradient(circle, rgba(129, 199, 132, 0.25), transparent 70%);
  bottom: -40%;
  left: 20%;
  animation-delay: 10s;
}

@keyframes wave-animation {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.15;
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.25;
  }
}

.bg-dots {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(45, 134, 89, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  animation: dots-drift 30s linear infinite;
  opacity: 0.4;
}

@keyframes dots-drift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(40px, 40px);
  }
}

/* Content Styles */
.hero-content-wrapper {
  position: relative;
  z-index: 2;
  animation: content-appear 1.2s ease-out;
}

@keyframes content-appear {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  padding: 0.7rem 1.75rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  border: 2px solid rgba(45, 134, 89, 0.25);
  box-shadow: 0 6px 25px rgba(26, 93, 58, 0.15);
  position: relative;
  overflow: hidden;
  animation: badge-shimmer 4s ease-in-out infinite;
}

@keyframes badge-shimmer {
  0%, 100% {
    box-shadow: 0 6px 25px rgba(26, 93, 58, 0.15);
  }
  50% {
    box-shadow: 0 8px 35px rgba(45, 134, 89, 0.25);
  }
}

.badge-sparkle {
  width: 6px;
  height: 6px;
  background: var(--accent-color);
  border-radius: 50%;
  position: relative;
  animation: sparkle-pulse 2s ease-in-out infinite;
}

.badge-sparkle::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  border-radius: 50%;
  animation: sparkle-ring 2s ease-in-out infinite;
}

@keyframes sparkle-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.8);
    opacity: 0.6;
  }
}

@keyframes sparkle-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(3);
    opacity: 0;
  }
}

.hero-badge-new span {
  color: var(--dark-green);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.hero-title-new {
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 2rem;
  color: var(--dark-green);
  animation: title-reveal 1s ease-out 0.3s forwards;
  opacity: 0;
}

@keyframes title-reveal {
  from {
    opacity: 0;
    transform: translateX(-60px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.title-gradient {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--dark-green) 50%, var(--darker-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  animation: gradient-shift 4s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(45, 134, 89, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 25px rgba(45, 134, 89, 0.8));
  }
}

.hero-description-new {
  font-size: 1.35rem;
  line-height: 1.85;
  color: var(--default-color);
  margin-bottom: 3rem;
  max-width: 580px;
  animation: desc-fade-in 1s ease-out 0.6s forwards;
  opacity: 0;
}

@keyframes desc-fade-in {
  to {
    opacity: 1;
  }
}

.hero-cta-new {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: cta-appear 1s ease-out 1.2s forwards;
  opacity: 0;
}

@keyframes cta-appear {
  to {
    opacity: 1;
  }
}

.btn-hero-main {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--accent-color), var(--dark-green));
  color: #ffffff;
  padding: 1.15rem 2.5rem;
  border-radius: 15px;
  font-weight: 700;
  font-size: 1.15rem;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: 0 10px 30px rgba(45, 134, 89, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-hero-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s;
}

.btn-hero-main:hover::before {
  left: 100%;
}

.btn-hero-main:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 45px rgba(45, 134, 89, 0.45);
}

.btn-hero-main i {
  font-size: 1.3rem;
  transition: transform 0.4s ease;
}

.btn-hero-main:hover i {
  transform: translateX(8px) rotate(15deg);
}

.btn-hero-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-green);
  padding: 1.15rem 2rem;
  border-radius: 15px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  border: 2px solid rgba(45, 134, 89, 0.3);
  transition: all 0.4s ease;
  backdrop-filter: blur(15px);
}

.btn-hero-link:hover {
  background: var(--accent-color);
  color: #ffffff;
  border-color: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(45, 134, 89, 0.25);
}

.btn-hero-link i {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
}

.btn-hero-link:hover i {
  transform: rotate(360deg);
}

.hero-trust-line {
  animation: trust-appear 1s ease-out 1.5s forwards;
  opacity: 0;
}

@keyframes trust-appear {
  to {
    opacity: 1;
  }
}

.trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--default-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-badge-item i {
  color: var(--accent-color);
  font-size: 1.1rem;
  animation: trust-icon-bounce 3s ease-in-out infinite;
}

.trust-badge-item:nth-child(2) i {
  animation-delay: 1s;
}

.trust-badge-item:nth-child(3) i {
  animation-delay: 2s;
}

@keyframes trust-icon-bounce {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.1);
  }
}

/* Visual Styles - Completely Redesigned */
.hero-visual-wrapper {
  position: relative;
  z-index: 2;
  height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: visual-appear 1.2s ease-out 0.4s forwards;
  opacity: 0;
}

@keyframes visual-appear {
  from {
    opacity: 0;
    transform: translateX(60px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.geometric-container {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 600px;
  margin: 0 auto;
}

/* Hexagon Main Shape */
.hexagon-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  animation: hexagon-rotate 20s linear infinite;
}

.hexagon-inner {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
  border: 4px solid rgba(45, 134, 89, 0.3);
  box-shadow: 
    0 0 0 8px rgba(45, 134, 89, 0.1),
    0 30px 80px rgba(26, 93, 58, 0.25),
    inset 0 0 50px rgba(45, 134, 89, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  animation: hexagon-float 8s ease-in-out infinite;
}

@keyframes hexagon-rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

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

.hexagon-glow {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 140%;
  height: 140%;
  background: radial-gradient(circle, rgba(45, 134, 89, 0.3), transparent 60%);
  animation: glow-pulse 4s ease-in-out infinite;
  z-index: -1;
}

@keyframes glow-pulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

.hexagon-content {
  text-align: center;
  z-index: 2;
  position: relative;
  padding: 2rem;
}

.hex-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-color), var(--dark-green));
  clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 15px 45px rgba(45, 134, 89, 0.4);
  animation: hex-icon-pulse 3s ease-in-out infinite;
}

@keyframes hex-icon-pulse {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.1) rotate(180deg);
  }
}

.hex-icon i {
  font-size: 3.5rem;
  color: #ffffff;
  animation: icon-spin 8s linear infinite;
}

@keyframes icon-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}

.hex-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hex-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark-green);
  line-height: 1.2;
}

.hex-subtitle {
  font-size: 1rem;
  color: var(--default-color);
  font-weight: 500;
}

/* Rotating Rings */
.rotating-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
}

.ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 3px solid;
  border-radius: 50%;
  opacity: 0.2;
}

.ring-1 {
  width: 420px;
  height: 420px;
  border-color: var(--accent-color);
  animation: ring-rotate-1 15s linear infinite;
}

.ring-2 {
  width: 480px;
  height: 480px;
  border-color: var(--dark-green);
  animation: ring-rotate-2 20s linear infinite reverse;
}

.ring-3 {
  width: 540px;
  height: 540px;
  border-color: var(--medium-green);
  animation: ring-rotate-3 25s linear infinite;
}

@keyframes ring-rotate-1 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes ring-rotate-2 {
  from {
    transform: translate(-50%, -50%) rotate(360deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}

@keyframes ring-rotate-3 {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Floating Elements */
.floating-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.float-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 15px;
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 8px 25px rgba(26, 93, 58, 0.15);
  border: 2px solid rgba(45, 134, 89, 0.25);
  transition: all 0.4s ease;
  cursor: pointer;
}

.float-element:hover {
  transform: translateY(-8px) scale(1.08);
  box-shadow: 0 15px 35px rgba(45, 134, 89, 0.25);
  border-color: var(--accent-color);
}

.float-element i {
  font-size: 1.4rem;
  color: var(--accent-color);
  animation: float-icon-bounce 2s ease-in-out infinite;
}

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

.float-element span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark-green);
}

.elem-1 {
  top: 15%;
  right: 5%;
  animation: float-1 6s ease-in-out infinite;
}

.elem-2 {
  top: 50%;
  right: -5%;
  animation: float-2 7s ease-in-out infinite;
  animation-delay: 2s;
}

.elem-3 {
  bottom: 20%;
  left: 5%;
  animation: float-3 6.5s ease-in-out infinite;
  animation-delay: 4s;
}

@keyframes float-1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-20px, 15px) rotate(5deg);
  }
}

@keyframes float-2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-15px, -20px) rotate(-5deg);
  }
}

@keyframes float-3 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(20px, -15px) rotate(5deg);
  }
}

/* Scroll Down */
.hero-scroll-down {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.scroll-link:hover {
  color: var(--accent-color);
}

.scroll-link span {
  font-size: 0.95rem;
  font-weight: 600;
}

.scroll-icon-wrapper {
  width: 45px;
  height: 45px;
  border: 2px solid currentColor;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: scroll-icon-bounce 2.5s ease-in-out infinite;
}

@keyframes scroll-icon-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(12px);
  }
}

.scroll-icon-wrapper i {
  font-size: 1.3rem;
  animation: icon-arrow-pulse 2s ease-in-out infinite;
}

@keyframes icon-arrow-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

/* Responsive */
@media (max-width: 992px) {
  .hero-title-new {
    font-size: 3.2rem;
  }
  
  .hero-visual-wrapper {
    height: 550px;
    margin-top: 3rem;
  }
  
  .hexagon-main {
    width: 320px;
    height: 320px;
  }
  
  .rotating-rings {
    width: 380px;
    height: 380px;
  }
  
  .ring-1 {
    width: 360px;
    height: 360px;
  }
  
  .ring-2 {
    width: 410px;
    height: 410px;
  }
  
  .ring-3 {
    width: 460px;
    height: 460px;
  }
  
}

@media (max-width: 768px) {
  .hero-section {
    padding: 130px 0 90px;
  }
  
  .hero-title-new {
    font-size: 2.5rem;
  }
  
  .hero-description-new {
    font-size: 1.15rem;
  }
  
  .hero-cta-new {
    flex-direction: column;
  }
  
  .btn-hero-main,
  .btn-hero-link {
    width: 100%;
    justify-content: center;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .hero-visual-wrapper {
    height: 450px;
  }
  
  .hexagon-main {
    width: 280px;
    height: 280px;
  }
  
  .hex-icon {
    width: 80px;
    height: 80px;
  }
  
  .hex-icon i {
    font-size: 2.5rem;
  }
  
  .hex-title {
    font-size: 1.5rem;
  }
  
  .hex-subtitle {
    font-size: 0.9rem;
  }
  
  .rotating-rings {
    width: 320px;
    height: 320px;
  }
  
  .ring-1 {
    width: 300px;
    height: 300px;
  }
  
  .ring-2 {
    width: 340px;
    height: 340px;
  }
  
  .ring-3 {
    width: 380px;
    height: 380px;
  }
  
  .float-element {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
  }
  
  .float-element i {
    font-size: 1.2rem;
  }
  
}

/*--------------------------------------------------------------
# Testimonials Section - New Design
--------------------------------------------------------------*/
.community-reviews-section,
.testimonials-new {
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8faf9 100%);
  position: relative;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(45, 134, 89, 0.1);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  color: var(--dark-green);
  font-weight: 600;
  font-size: 0.95rem;
}

.testimonials-badge i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.testimonials-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark-green);
  margin-bottom: 1rem;
}

.testimonials-subtitle {
  font-size: 1.2rem;
  color: var(--default-color);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card-new {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 25px;
  padding: 2rem;
  border: 2px solid rgba(45, 134, 89, 0.15);
  box-shadow: 0 10px 40px rgba(26, 93, 58, 0.1);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.testimonial-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--dark-green));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.testimonial-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(45, 134, 89, 0.2);
  border-color: var(--accent-color);
}

.testimonial-card-new.featured {
  border: 3px solid var(--accent-color);
  box-shadow: 0 15px 50px rgba(45, 134, 89, 0.25);
}

.featured-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--accent-color), var(--dark-green));
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.testimonial-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar-new {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.avatar-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color), var(--dark-green));
  opacity: 0.2;
}

.testimonial-avatar-new i {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  color: var(--dark-green);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.testimonial-meta {
  flex: 1;
}

.testimonial-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark-green);
  margin: 0 0 0.25rem 0;
}

.testimonial-role {
  font-size: 0.9rem;
  color: var(--default-color);
  margin: 0;
}

.testimonial-rating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1.25rem;
}

.testimonial-rating i {
  color: #ffc107;
  font-size: 1.1rem;
}

.testimonial-text {
  margin-bottom: 1.5rem;
}

.testimonial-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--default-color);
  margin: 0;
}

.testimonial-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(45, 134, 89, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-green);
}

.testimonial-tag i {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Features Section / Programs Showcase Section - New Design
--------------------------------------------------------------*/
.programs-showcase-section,
.features-new {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, #f8faf9 0%, #e8f5e9 50%, #ffffff 100%);
  overflow: hidden;
}

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

.features-wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background: linear-gradient(180deg, transparent, rgba(45, 134, 89, 0.05));
  clip-path: polygon(0 50%, 100% 0%, 100% 100%, 0% 100%);
}

.features-header {
  text-align: center;
  margin-bottom: 5rem;
  position: relative;
  z-index: 1;
}

.features-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(45, 134, 89, 0.1);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  color: var(--dark-green);
  font-weight: 600;
  font-size: 0.95rem;
}

.features-badge i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.features-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--dark-green);
  margin-bottom: 1rem;
}

.features-subtitle {
  font-size: 1.25rem;
  color: var(--default-color);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

.features-showcase {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.feature-card-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 3rem;
  border: 2px solid rgba(45, 134, 89, 0.15);
  box-shadow: 0 15px 50px rgba(26, 93, 58, 0.1);
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.feature-card-new::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(45, 134, 89, 0.05), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.feature-card-new:hover::before {
  opacity: 1;
}

.feature-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(45, 134, 89, 0.15);
  border-color: var(--accent-color);
}

.feature-card-new.reverse {
  direction: rtl;
}

.feature-card-new.reverse > * {
  direction: ltr;
}

.feature-card-visual {
  position: relative;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon-wrapper {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--accent-color), var(--dark-green));
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(45, 134, 89, 0.3);
  position: relative;
  z-index: 2;
  animation: feature-icon-float 6s ease-in-out infinite;
}

@keyframes feature-icon-float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(5deg);
  }
}

.feature-icon-wrapper i {
  font-size: 4rem;
  color: #ffffff;
  animation: feature-icon-pulse 3s ease-in-out infinite;
}

@keyframes feature-icon-pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.feature-card-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(45, 134, 89, 0.1) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.3;
  animation: pattern-drift 20s linear infinite;
}

@keyframes pattern-drift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(30px, 30px);
  }
}

.feature-card-content {
  position: relative;
  z-index: 2;
}

.feature-card-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--dark-green);
  margin-bottom: 1rem;
}

.feature-card-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 2rem;
}

.feature-card-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  color: var(--default-color);
}

.benefit-item i {
  color: var(--accent-color);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--accent-color);
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.feature-card-link:hover {
  color: var(--dark-green);
  gap: 1rem;
}

.feature-card-link i {
  transition: transform 0.3s ease;
}

.feature-card-link:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 992px) {
  .testimonials-title,
  .features-title {
    font-size: 2.5rem;
  }
  
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }
  
  .feature-card-new {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .feature-card-visual {
    height: 250px;
  }
  
  .feature-icon-wrapper {
    width: 120px;
    height: 120px;
  }
  
  .feature-icon-wrapper i {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .testimonials-new,
  .features-new {
    padding: 80px 0;
  }
  
  .testimonials-title,
  .features-title {
    font-size: 2rem;
  }
  
  .testimonials-subtitle,
  .features-subtitle {
    font-size: 1.1rem;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-card-new {
    padding: 2rem;
  }
  
  .feature-card-title {
    font-size: 1.6rem;
  }
  
  .feature-card-description {
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Success Stories Dark Section
--------------------------------------------------------------*/
.transformation-stories-section,
.success-stories-dark {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
  overflow: hidden;
}

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

.success-stories-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(45, 134, 89, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
  animation: pattern-move 30s linear infinite;
}

@keyframes pattern-move {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(40px, 40px);
  }
}

.success-stories-dark-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.success-stories-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(45, 134, 89, 0.2);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(45, 134, 89, 0.3);
}

.success-stories-badge i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.success-stories-dark-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.success-stories-dark-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.success-stories-dark-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.success-story-dark-card {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 2.5rem;
  border: 1px solid rgba(45, 134, 89, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.success-story-dark-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--medium-green));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.success-story-dark-card:hover::before {
  transform: scaleX(1);
}

.success-story-dark-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(45, 134, 89, 0.2);
  border-color: var(--accent-color);
}

.success-story-dark-card.featured-story {
  border: 2px solid var(--accent-color);
  box-shadow: 0 15px 50px rgba(45, 134, 89, 0.3);
}

.featured-story-badge-dark {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: linear-gradient(135deg, var(--accent-color), var(--dark-green));
  color: #ffffff;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.success-story-header-dark {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.success-story-avatar-dark {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.avatar-dark-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--accent-color), var(--dark-green));
  opacity: 0.3;
}

.success-story-avatar-dark i {
  position: relative;
  z-index: 2;
  font-size: 2rem;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.success-story-info-dark {
  flex: 1;
}

.success-story-name-dark {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.25rem 0;
}

.success-story-role-dark {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.success-story-badge-dark {
  width: 45px;
  height: 45px;
  background: rgba(45, 134, 89, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.3rem;
  flex-shrink: 0;
}

.success-story-content-dark {
  position: relative;
  z-index: 2;
}

.success-story-title-dark {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.success-story-text-dark {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.success-story-achievements-dark {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.achievement-item-dark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.achievement-item-dark i {
  color: var(--accent-color);
  font-size: 1rem;
  flex-shrink: 0;
}

/*--------------------------------------------------------------
# Pricing Dark Section
--------------------------------------------------------------*/
.wellness-pricing-section,
.pricing-dark {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  overflow: hidden;
}

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

.pricing-dark-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(45, 134, 89, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(26, 93, 58, 0.08) 0%, transparent 50%);
  opacity: 0.5;
}

.pricing-dark-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.pricing-dark-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(45, 134, 89, 0.2);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(45, 134, 89, 0.3);
}

.pricing-dark-badge i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.pricing-dark-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.pricing-dark-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.7;
}

.pricing-dark-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.pricing-dark-card {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 2.5rem;
  border: 1px solid rgba(45, 134, 89, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: hidden;
}

.pricing-dark-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(45, 134, 89, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.pricing-dark-card:hover::before {
  opacity: 1;
}

.pricing-dark-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 70px rgba(45, 134, 89, 0.2);
  border-color: var(--accent-color);
}

.pricing-dark-card.featured-plan {
  border: 2px solid var(--accent-color);
  box-shadow: 0 20px 60px rgba(45, 134, 89, 0.3);
  transform: scale(1.05);
}

.featured-plan-badge-dark {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent-color), var(--dark-green));
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.85rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  box-shadow: 0 5px 20px rgba(45, 134, 89, 0.4);
}

.pricing-dark-card-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.pricing-dark-plan-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.pricing-dark-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pricing-currency {
  font-size: 1.5rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.pricing-amount {
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent-color), var(--medium-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.pricing-period {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.pricing-dark-plan-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.pricing-dark-features {
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.pricing-features-list-dark {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pricing-features-list-dark li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
}

.pricing-features-list-dark li.feature-disabled {
  color: rgba(255, 255, 255, 0.4);
}

.pricing-features-list-dark li i {
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.pricing-features-list-dark li:not(.feature-disabled) i {
  color: var(--accent-color);
}

.pricing-features-list-dark li.feature-disabled i {
  color: rgba(255, 255, 255, 0.3);
}

.pricing-dark-footer {
  text-align: center;
  position: relative;
  z-index: 2;
}

.pricing-dark-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  background: rgba(45, 134, 89, 0.2);
  border: 2px solid rgba(45, 134, 89, 0.4);
  color: #ffffff;
  padding: 1rem 2rem;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.pricing-dark-btn:hover {
  background: linear-gradient(135deg, var(--accent-color), var(--dark-green));
  border-color: var(--accent-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 134, 89, 0.4);
}

.pricing-dark-btn.featured-btn {
  background: linear-gradient(135deg, var(--accent-color), var(--dark-green));
  border-color: var(--accent-color);
}

.pricing-dark-btn i {
  transition: transform 0.3s ease;
}

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

.pricing-dark-note {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.pricing-dark-cta {
  text-align: center;
  position: relative;
  z-index: 1;
}

.pricing-cta-dark-content {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 3rem;
  border: 1px solid rgba(45, 134, 89, 0.3);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.pricing-cta-dark-title {
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
}

.pricing-cta-dark-text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.pricing-cta-dark-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--accent-color), var(--dark-green));
  color: #ffffff;
  padding: 1.25rem 2.5rem;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(45, 134, 89, 0.4);
}

.pricing-cta-dark-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(45, 134, 89, 0.5);
}

.pricing-cta-dark-btn i {
  font-size: 1.3rem;
  transition: transform 0.3s ease;
}

.pricing-cta-dark-btn:hover i {
  transform: translateX(5px);
}

/*--------------------------------------------------------------
# Contact CTA Dark Section / Support Contact Section
--------------------------------------------------------------*/
.support-contact-section,
.contact-cta-dark {
  padding: 100px 0;
  position: relative;
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
  overflow: hidden;
}

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

.contact-cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(circle, rgba(45, 134, 89, 0.08) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.4;
}

.contact-cta-dark-wrapper {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.contact-cta-dark-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-color), var(--dark-green));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: #ffffff;
  box-shadow: 0 15px 40px rgba(45, 134, 89, 0.4);
  animation: icon-pulse-cta 3s ease-in-out infinite;
}

@keyframes icon-pulse-cta {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 15px 40px rgba(45, 134, 89, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 20px 50px rgba(45, 134, 89, 0.6);
  }
}

.contact-cta-dark-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.contact-cta-dark-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.contact-cta-dark-actions {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.contact-cta-dark-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--accent-color), var(--dark-green));
  color: #ffffff;
  padding: 1.25rem 2.5rem;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(45, 134, 89, 0.4);
}

.contact-cta-dark-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(45, 134, 89, 0.5);
}

.contact-cta-dark-btn-primary i {
  font-size: 1.3rem;
}

.contact-cta-dark-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(45, 134, 89, 0.2);
  border: 2px solid rgba(45, 134, 89, 0.4);
  color: #ffffff;
  padding: 1.25rem 2.5rem;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.contact-cta-dark-btn-secondary:hover {
  background: rgba(45, 134, 89, 0.3);
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.contact-cta-dark-btn-secondary i {
  font-size: 1.2rem;
}

.contact-cta-dark-info {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-info-item-dark {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
}

.contact-info-item-dark i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

/*--------------------------------------------------------------
# Footer Dark New
--------------------------------------------------------------*/
.footer-dark-new {
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(45, 134, 89, 0.2);
}

.footer-dark-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-dark-new-main {
  padding: 5rem 0 3rem;
  position: relative;
  z-index: 1;
}

.footer-dark-new-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
  gap: 3rem;
}

.footer-dark-new-brand {
  max-width: 300px;
}

.footer-dark-new-logo {
  display: inline-block;
  margin-bottom: 1.5rem;
}

.footer-dark-new-logo img {
  width: 140px;
  height: 42px;
  object-fit: contain;
}

.footer-dark-new-description {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.footer-dark-new-social {
  display: flex;
  gap: 0.75rem;
}

.footer-social-new-link {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(45, 134, 89, 0.2);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.footer-social-new-link:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(45, 134, 89, 0.3);
}

.footer-dark-new-column {
  position: relative;
}

.footer-dark-new-column-title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.footer-dark-new-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-dark-new-menu li {
  margin: 0;
}

.footer-dark-new-menu a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-dark-new-menu a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-dark-new-newsletter-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.newsletter-form-new {
  margin-bottom: 0;
}

.newsletter-new-input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(45, 134, 89, 0.2);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.newsletter-new-input-group:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(45, 134, 89, 0.1);
}

.newsletter-new-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 1rem 1.25rem;
  color: #ffffff;
  font-size: 0.95rem;
  outline: none;
}

.newsletter-new-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-new-btn {
  background: linear-gradient(135deg, var(--accent-color), var(--dark-green));
  border: none;
  padding: 1rem 1.5rem;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.newsletter-new-btn:hover {
  background: linear-gradient(135deg, var(--dark-green), var(--accent-color));
  transform: scale(1.05);
}

.footer-dark-new-bottom {
  background: rgba(0, 0, 0, 0.5);
  border-top: 1px solid rgba(45, 134, 89, 0.1);
  padding: 2rem 0;
  position: relative;
  z-index: 1;
}

.footer-dark-new-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-dark-new-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
}

.footer-dark-new-copyright strong {
  color: var(--accent-color);
}

.footer-legal-info {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
}

.footer-dark-new-contact-info {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-contact-new-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-contact-new-link:hover {
  color: var(--accent-color);
}

.footer-contact-new-link i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

@media (max-width: 1200px) {
  .footer-dark-new-content {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2.5rem;
  }
  
  .newsletter-column {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .success-stories-dark,
  .pricing-dark,
  .contact-cta-dark {
    padding: 80px 0;
  }
  
  .success-stories-dark-title,
  .pricing-dark-title {
    font-size: 2rem;
  }
  
  .success-stories-dark-grid,
  .pricing-dark-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-dark-card.featured-plan {
    transform: scale(1);
  }
  
  .contact-cta-dark-title {
    font-size: 2rem;
  }
  
  .contact-cta-dark-actions {
    flex-direction: column;
  }
  
  .contact-cta-dark-btn-primary,
  .contact-cta-dark-btn-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .footer-dark-new-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-dark-new-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-dark-new-contact-info {
    justify-content: center;
  }
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 30%, #a5d6a7 60%, #81c784 100%);
  z-index: 0;
  overflow: hidden;
}

.hero-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(45, 134, 89, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(26, 93, 58, 0.1) 0%, transparent 50%);
  z-index: 1;
}

/* Animated Shapes */
.animated-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

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

.shape-1 {
  width: 300px;
  height: 300px;
  background: var(--medium-green);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: var(--dark-green);
  top: 60%;
  right: 15%;
  animation-delay: 2s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: var(--accent-color);
  bottom: 20%;
  left: 20%;
  animation-delay: 4s;
}

.shape-4 {
  width: 250px;
  height: 250px;
  background: var(--dark-green);
  top: 30%;
  right: 30%;
  animation-delay: 6s;
}

.shape-5 {
  width: 180px;
  height: 180px;
  background: var(--medium-green);
  bottom: 10%;
  right: 10%;
  animation-delay: 8s;
}

@keyframes float-shape {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(30px, -30px) rotate(90deg);
  }
  50% {
    transform: translate(-20px, 20px) rotate(180deg);
  }
  75% {
    transform: translate(20px, 30px) rotate(270deg);
  }
}


.hero-content {
  position: relative;
  z-index: 3;
  color: var(--default-color);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(45, 134, 89, 0.15);
  border: 1px solid rgba(45, 134, 89, 0.3);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  color: var(--dark-green);
  font-weight: 600;
}

.hero-badge i {
  color: var(--accent-color);
  font-size: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--dark-green);
}

.hero-title .highlight-text {
  background: linear-gradient(135deg, var(--accent-color), var(--dark-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
  0%, 100% {
    filter: drop-shadow(0 0 5px rgba(45, 134, 89, 0.5));
  }
  50% {
    filter: drop-shadow(0 0 15px rgba(26, 93, 58, 0.8));
  }
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.hero-cta {
  margin-bottom: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.hero-guarantee {
  display: flex;
  align-items: center;
  color: var(--default-color);
  font-size: 0.95rem;
}

.hero-guarantee i {
  color: var(--success-color);
  font-size: 1.2rem;
  margin-right: 0.5rem;
}

.hero-visual {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}

/* Hero Image Container */
.hero-image-container {
  position: relative;
  width: 100%;
  height: 500px;
}

.hero-main-image {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(232, 245, 233, 0.9));
  backdrop-filter: blur(10px);
  border: 3px solid rgba(45, 134, 89, 0.3);
  box-shadow: 0 25px 70px rgba(26, 93, 58, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(232, 245, 233, 0.5), rgba(200, 230, 201, 0.5));
  border-radius: 20px;
}

/* Canvas Container */
.hero-canvas-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(45, 134, 89, 0.3);
  box-shadow: 0 20px 60px rgba(26, 93, 58, 0.2);
}

.hero-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* Floating Cards */
.floating-cards {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 10px 30px rgba(26, 93, 58, 0.2);
  z-index: 10;
  border: 2px solid rgba(45, 134, 89, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
}

.floating-card:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 15px 40px rgba(45, 134, 89, 0.4);
  border-color: var(--accent-color);
}

.floating-card .card-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), var(--dark-green));
  border-radius: 10px;
  animation: pulse-icon 2s ease-in-out infinite;
}

.floating-card i {
  font-size: 1.5rem;
  color: #ffffff;
}

.floating-card span {
  color: var(--dark-green);
  font-weight: 600;
  font-size: 0.95rem;
}

.floating-card.card-1 {
  top: 0;
  left: 0;
  animation: float-card-1 4s ease-in-out infinite;
}

.floating-card.card-2 {
  top: 20%;
  right: 0;
  animation: float-card-2 4s ease-in-out infinite;
  animation-delay: 1s;
}

.floating-card.card-3 {
  bottom: 20%;
  left: 10%;
  animation: float-card-3 4s ease-in-out infinite;
  animation-delay: 2s;
}

.floating-card.card-4 {
  bottom: 0;
  right: 10%;
  animation: float-card-4 4s ease-in-out infinite;
  animation-delay: 3s;
}

@keyframes float-card-1 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(10px, -15px) rotate(5deg);
  }
}

@keyframes float-card-2 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-10px, 15px) rotate(-5deg);
  }
}

@keyframes float-card-3 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(15px, -10px) rotate(5deg);
  }
}

@keyframes float-card-4 {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-15px, 10px) rotate(-5deg);
  }
}

@keyframes pulse-icon {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(45, 134, 89, 0.7);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(45, 134, 89, 0);
  }
}

/* Hero Stats */
.hero-stats {
  display: flex;
  gap: 2rem;
  width: 100%;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  border: 2px solid rgba(45, 134, 89, 0.2);
  min-width: 120px;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(45, 134, 89, 0.3);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-color), var(--dark-green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--default-color);
  font-weight: 500;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-down {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--default-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.scroll-down:hover {
  color: var(--accent-color);
}

.scroll-down span {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
}

.scroll-down i {
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

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

@keyframes ripple {
  to {
    transform: translate(-50%, -50%) scale(4);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 100px 0 60px;
  }

  .hero-title {
    font-size: 2rem;
    line-height: 1.3;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-cta .btn {
    width: 100%;
    margin: 0 !important;
  }

  .hero-stats {
    gap: 1rem;
    flex-direction: column;
  }

  .stat-item {
    width: 100%;
    min-width: auto;
  }

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

  .hero-canvas-container {
    height: 300px;
    margin-bottom: 2rem;
  }

  .floating-cards {
    display: none;
  }

  .hero-scroll-indicator {
    bottom: 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  position: relative;
  overflow: hidden;
}

.about-bg {
  background: linear-gradient(135deg, #4a3d5c 0%, #6b5b7d 100%);
  position: relative;
  padding: 80px 0;
}


.about-content {
  color: white;
  position: relative;
  z-index: 2;
}

.section-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.about-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  color: white;
}

.about-title .highlight {
  background: linear-gradient(45deg, #b19cd9, #c4a8f0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.about-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.9);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(45deg, #9333ea, #b19cd9);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon i {
  font-size: 24px;
  color: #ffffff;
}

.feature-content h4 {
  color: white;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature-content p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
  line-height: 1.6;
}

.about-visual {
  position: relative;
  height: 100%;
  min-height: 500px;
}

.image-stack {
  height: 100%;
}

.image-item {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.main-image {
  top: 0;
  left: 0;
  width: 80%;
  z-index: 2;
}

.overlay-image {
  top: 20%;
  right: 0;
  width: 70%;
  z-index: 1;
}


.card-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
}

.card-icon i {
  color: #333;
  font-size: 18px;
}

.card-content h5 {
  color: #333;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 5px 0;
}

.card-content p {
  color: #666;
  margin: 0;
  font-size: 0.9rem;
}

.stats-container {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.stat-card:hover::before {
  left: 100%;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffd700;
  margin-bottom: 10px;
}

.stat-label {
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  opacity: 0.3;
}

.stat-icon i {
  font-size: 24px;
  color: white;
}

.cta-section {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 50px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-section h3 {
  color: white;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), var(--dark-green));
  color: #ffffff;
  border-color: var(--accent-color);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--dark-green), var(--accent-color));
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(45, 134, 89, 0.3);
  border-color: var(--dark-green);
}

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

.btn-outline-primary:hover {
  background: var(--accent-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(45, 134, 89, 0.3);
}

@media (max-width: 768px) {
  .about-title {
    font-size: 2rem;
  }
  
  .about-visual {
    min-height: 300px;
    margin-top: 40px;
  }
  
  .image-item {
    position: relative;
    width: 100% !important;
    margin-bottom: 20px;
  }
  

  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn {
    width: 100%;
    max-width: 300px;
  }
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  padding: 25px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.features .icon-box:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  color: var(--contrast-color);
}

.features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
  background: rgba(217, 119, 6, 0.1);
  padding: 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.features .icon-box:hover i {
  background: rgba(217, 119, 6, 0.2);
  transform: scale(1.1);
}

.features .icon-box p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Dark background features section */
.features.dark-background {
  background: var(--dark-background);
  color: var(--contrast-color);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.features.dark-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.features.dark-background .container {
  position: relative;
  z-index: 2;
}

/* Features Content */
.features-content {
  padding-right: 30px;
}

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  color: white;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.features-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  color: var(--contrast-color);
}

.features-title .highlight {
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
  margin-bottom: 40px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 25px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent-color);
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon-wrapper {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon-wrapper i {
  font-size: 28px;
  color: white;
}

.feature-content h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 12px;
}

.feature-content p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin: 0;
}

/* Features CTA */
.features-cta {
  margin-top: 30px;
}

.features-cta .btn {
  background: linear-gradient(135deg, var(--accent-color), #f59e0b);
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(217, 119, 6, 0.3);
}

.features-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(217, 119, 6, 0.4);
}

/* Features Visual */
.features-visual {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.image-composition {
  position: relative;
  width: 100%;
  height: 500px;
}

.main-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.main-image {
  width: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.main-image-wrapper:hover .main-image {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(217, 119, 6, 0.2), rgba(0, 0, 0, 0.3));
  border-radius: 25px;
}

/* Floating Cards */
.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  animation: float 6s ease-in-out infinite;
}

.floating-card i {
  color: var(--accent-color);
  font-size: 20px;
}

.floating-card span {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
  white-space: nowrap;
}

.card-1 {
  top: 10%;
  left: -20px;
  animation-delay: 0s;
}

.card-2 {
  top: 50%;
  right: -20px;
  animation-delay: 2s;
}

.card-3 {
  bottom: 10%;
  left: 10%;
  animation-delay: 4s;
}

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

/* Responsive */
@media (max-width: 991px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .features-content {
    padding-right: 0;
    margin-bottom: 50px;
  }
  
  .features-title {
    font-size: 2.5rem;
  }
  
  .image-composition {
    height: 400px;
  }
  
  .floating-card {
    display: none;
  }
}

@media (max-width: 768px) {
  .features-title {
    font-size: 2rem;
  }
  
  .features-description {
    font-size: 1rem;
  }
  
  .feature-card {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/
.features-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border-radius: 24px;
  padding: 40px;
  margin: 20px 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.features-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #6b5b7d, #8b7d9f, #9333ea);
  background-size: 200% 100%;
  animation: gradient-shift 3s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.features-item:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.2);
}

.features-item .row {
  align-items: center;
}

.features-item img {
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.features-item:hover img {
  transform: scale(1.05);
}

.features-item h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #6b5b7d 0%, #8b7d9f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.features-item h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #6b5b7d, #8b7d9f);
  border-radius: 2px;
}

.features-item .fst-italic {
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
  position: relative;
  padding-left: 20px;
}

.features-item .fst-italic::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -5px;
  font-size: 2rem;
  color: #b19cd9;
  font-family: serif;
}

.features-item p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 25px;
}

.features-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-item ul li {
  display: flex;
  align-items: center;
  padding: 15px 20px;
  margin-bottom: 15px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.features-item ul li::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left 0.5s ease;
}

.features-item ul li:hover::before {
  left: 100%;
}

.features-item ul li:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(5px);
  border-color: rgba(255, 255, 255, 0.2);
}

.features-item ul li i {
  font-size: 20px;
  color: #b19cd9;
  margin-right: 15px;
  width: 24px;
  text-align: center;
  background: rgba(102, 126, 234, 0.1);
  padding: 8px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.features-item ul li:hover i {
  background: rgba(102, 126, 234, 0.2);
  transform: scale(1.1);
}

.features-item ul li span {
  font-weight: 500;
  line-height: 1.5;
}

.features-item ul li:last-child {
  margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .features-item {
    padding: 30px 20px;
    margin: 15px 0;
  }
  
  .features-item h3 {
    font-size: 1.8rem;
    text-align: center;
  }
  
  .features-item h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .features-item .fst-italic {
    text-align: center;
    padding-left: 0;
  }
  
  .features-item .fst-italic::before {
    display: none;
  }
  
  .features-item ul li {
    padding: 12px 15px;
    margin-bottom: 10px;
  }
}

@media (max-width: 576px) {
  .features-item {
    padding: 25px 15px;
  }
  
  .features-item h3 {
    font-size: 1.5rem;
  }
  
  .features-item ul li {
    padding: 10px 12px;
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

.gallery .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

.gallery .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 60px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    border-radius: 25px;
    transition: none;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

/* New Testimonial Cards */
.testimonial-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border: 1px solid rgba(147, 51, 234, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(147, 51, 234, 0.2);
  border-color: var(--accent-color);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.avatar-icon {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 1.25rem;
}

.testimonial-info {
  flex: 1;
}

.testimonial-info h4 {
  margin: 0 0 0.25rem 0;
  color: var(--heading-color);
  font-size: 1.1rem;
  font-weight: 600;
}

.testimonial-role {
  margin: 0 0 0.5rem 0;
  color: var(--default-color);
  opacity: 0.7;
  font-size: 0.9rem;
}

.testimonial-info .stars {
  color: #fbbf24;
  font-size: 0.9rem;
}

.testimonial-content {
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial-content p {
  color: var(--default-color);
  line-height: 1.8;
  margin: 0;
  font-size: 0.95rem;
}

.quote-icon-left,
.quote-icon-right {
  color: var(--accent-color);
  opacity: 0.3;
  font-size: 1.5rem;
}

.quote-icon-left {
  margin-right: 0.5rem;
}

.quote-icon-right {
  margin-left: 0.5rem;
}

.testimonial-result {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(147, 51, 234, 0.1);
  border-radius: 8px;
  border-left: 3px solid var(--accent-color);
}

.testimonial-result i {
  color: var(--success-color);
  font-size: 1.1rem;
}

.testimonial-result span {
  color: var(--default-color);
  font-size: 0.9rem;
  font-weight: 500;
}


.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  background: linear-gradient(135deg, var(--surface-color) 0%, #f8f9fa 100%);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
  padding: 40px 35px 35px 80px;
  margin: 25px 15px;
  min-height: 220px;
  position: relative;
  border: 1px solid rgba(42, 93, 91, 0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.testimonials .testimonial-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
}

.testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.testimonials .testimonial-item .testimonial-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 4px solid var(--accent-color);
  position: absolute;
  left: -50px;
  top: 30px;
  background: var(--background-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--accent-color);
  font-weight: bold;
}

.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 8px 0;
  color: var(--heading-color);
  letter-spacing: 0.5px;
}

.testimonials .testimonial-item h4 {
  color: var(--accent-color);
  font-size: 14px;
  margin: 0 0 15px 0;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonials .testimonial-item .stars {
  margin: 15px 0;
  display: flex;
  gap: 3px;
}

.testimonials .testimonial-item .stars i {
  color: #ffd700;
  font-size: 16px;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.1));
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--accent-color);
  font-size: 28px;
  line-height: 0;
  opacity: 0.7;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -8px;
  position: relative;
  top: -5px;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -8px;
  position: relative;
  top: 15px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 20px auto 15px auto;
  line-height: 1.6;
  color: var(--default-color);
  font-size: 15px;
  position: relative;
  z-index: 1;
}

.testimonials .testimonial-item p span {
  position: relative;
  z-index: 2;
}

.testimonials .swiper-wrapper {
  height: auto;
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--background-color);
  opacity: 1;
  border: 1px solid var(--accent-color);
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    padding: 30px;
    margin: 15px;
  }

  .testimonials .testimonial-item .testimonial-img {
    position: static;
    left: auto;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: var(--surface-color);
  padding: 60px 40px;
  box-shadow: 0 3px 20px -2px rgba(0, 0, 0, 0.1);
  height: 100%;
  position: relative;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 400;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
  font-size: 18px;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border-radius: 4px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 60%);
  transition: none;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
}

.pricing .buy-btn:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}

.pricing .featured {
  z-index: 10;
}

.pricing .featured .pricing-item {
  background: var(--accent-color);
}

@media (min-width: 992px) {
  .pricing .featured .pricing-item {
    transform: scale(1.02, 1.1);
  }
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: var(--contrast-color);
}

.pricing .featured .buy-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--contrast-color);
}

.pricing .featured .buy-btn:hover {
  background: color-mix(in srgb, var(--background-color), transparent 92%);
}

/* New Pricing Card Styles */
.pricing-card {
  background-color: var(--surface-color);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
}

.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  border-radius: 12px 12px 0 0;
}

.popular-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.pricing-header h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 1rem;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 1rem 0;
}

.price .currency {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--default-color);
  margin-right: 0.25rem;
}

.price .amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
}

.price .period {
  font-size: 1rem;
  color: var(--default-color);
  opacity: 0.7;
  margin-left: 0.25rem;
}

.price-description {
  color: var(--default-color);
  opacity: 0.8;
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.pricing-features {
  flex: 1;
  margin-bottom: 2rem;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features ul li {
  padding: 0.75rem 0;
  display: flex;
  align-items: flex-start;
  font-size: 0.95rem;
  color: var(--default-color);
}

.pricing-features ul li i {
  margin-right: 0.75rem;
  margin-top: 0.25rem;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.pricing-features ul li .bi-check-circle-fill {
  color: var(--success-color);
}

.pricing-features ul li .bi-x-circle {
  color: var(--danger-color);
  opacity: 0.6;
}

.pricing-footer {
  margin-top: auto;
}

.pricing-comparison {
  background: var(--surface-color);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-comparison table {
  margin-bottom: 0;
}

.pricing-comparison table th {
  background-color: var(--heading-color);
  color: var(--contrast-color);
  font-weight: 600;
  padding: 1rem;
  text-align: center;
}

.pricing-comparison table td {
  padding: 1rem;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-comparison table tbody tr:hover {
  background-color: rgba(147, 51, 234, 0.1);
}

.pricing-cta {
  padding: 2rem;
  background: var(--surface-color);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* Legal Info Styles */
.legal-info {
  color: var(--default-color);
  opacity: 0.8;
  line-height: 1.6;
}

.legal-info a {
  color: var(--accent-color);
  text-decoration: none;
}

.legal-info a:hover {
  text-decoration: underline;
}

.legal-info-section {
  background: var(--surface-color);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
  border-left: 4px solid var(--accent-color);
}

.legal-info-section h3 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  font-size: 1.25rem;
}

.legal-info-section p {
  margin-bottom: 0.5rem;
}

.stats-section {
  margin: 2rem 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--surface-color);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.stat-item h3 {
  font-size: 2.5rem;
  color: var(--accent-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-item p {
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
}

/*--------------------------------------------------------------
# New Features Section Styles
--------------------------------------------------------------*/
.feature-box {
  background: var(--surface-color);
  padding: 2.5rem;
  border-radius: 16px;
  height: 100%;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.feature-box:hover::before {
  transform: scaleX(1);
}

.feature-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
  border-color: var(--accent-color);
}

.feature-icon-box {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.feature-box:hover .feature-icon-box {
  transform: scale(1.1) rotate(5deg);
}

.feature-icon-box i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.feature-box h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-box p,
.feature-description {
  color: var(--default-color);
  opacity: 0.9;
  margin-bottom: 1.5rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  color: var(--default-color);
  opacity: 0.8;
  display: flex;
  align-items: center;
  font-size: 0.95rem;
}

.feature-list li i {
  color: var(--success-color);
  margin-right: 0.75rem;
  font-size: 1.1rem;
}

.features-cta-box {
  background: var(--surface-color);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(147, 51, 234, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.features-cta-box h3 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.features-cta-box .lead {
  color: var(--default-color);
  opacity: 0.9;
  font-size: 1.1rem;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# How It Works Section Styles
--------------------------------------------------------------*/
.how-it-works {
  position: relative;
}

.step-card {
  background: var(--surface-color);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
  border-color: var(--accent-color);
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(177, 156, 217, 0.1));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2rem auto 1.5rem;
  transition: all 0.3s ease;
}

.step-card:hover .step-icon {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  transform: scale(1.1);
}

.step-icon i {
  font-size: 2.5rem;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.step-card:hover .step-icon i {
  color: var(--contrast-color);
}

.step-card h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.step-card p {
  color: var(--default-color);
  opacity: 0.9;
  line-height: 1.7;
  margin: 0;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {

  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  height: 100%;
}

.contact .contact-info h3 {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.contact .info-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

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

.contact .info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 12px;
  color: var(--accent-color);
}

.contact .info-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

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

.contact .info-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.contact .info-content p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: var(--default-color);
}

.contact .info-content a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s;
}

.contact .info-content a:hover {
  color: var(--heading-color);
  text-decoration: underline;
}

.contact .social-links {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.contact .social-links h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.contact .social-icons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contact .social-icons a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  border-radius: 10px;
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s;
}

.contact .social-icons a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact .social-icons a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
}

.contact .contact-message-form {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact .php-email-form {
  background: transparent;
  padding: 0;
  height: 100%;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form input[type=tel],
.contact .php-email-form textarea,
.contact .php-email-form select {
  font-size: 14px;
  padding: 12px 15px;
  box-shadow: none;
  border-radius: 8px;
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
  transition: border-color 0.3s;
}

.contact .php-email-form .form-label {
  font-weight: 500;
  color: var(--heading-color);
  margin-bottom: 8px;
  font-size: 14px;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form input[type=tel]:focus,
.contact .php-email-form textarea:focus,
.contact .php-email-form select:focus {
  border-color: var(--accent-color);
  outline: none;
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form input[type=tel]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .form-check {
  margin-top: 10px;
}

.contact .form-check-label {
  font-size: 13px;
  color: var(--default-color);
  line-height: 1.6;
}

.contact .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.contact .form-check-input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--accent-color), transparent 80%);
}

.contact .php-email-form button[type=submit] {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 14px 40px;
  transition: all 0.3s;
  border-radius: 8px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--heading-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact .php-email-form button[type=submit] svg {
  margin-right: 8px;
}


/*--------------------------------------------------------------
# Success Stories Section
--------------------------------------------------------------*/
.success-stories {
  position: relative;
}

.success-area-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  height: 100%;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.success-area-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.success-area-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(147, 51, 234, 0.3);
  border-color: rgba(147, 51, 234, 0.4);
  background: rgba(147, 51, 234, 0.1);
}

.success-area-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.success-area-card:hover .success-area-icon {
  transform: scale(1.1) rotate(5deg);
}

.stat-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.success-area-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.success-area-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
  line-height: 1.3;
}

.success-area-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.story-card {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  border: 1px solid rgba(147, 51, 234, 0.15);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.story-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(147, 51, 234, 0.2);
  border-color: var(--accent-color);
}

.story-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(147, 51, 234, 0.1);
}

.story-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.story-avatar i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.story-info {
  flex: 1;
}

.story-info h4 {
  margin: 0 0 0.25rem 0;
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 600;
}

.story-meta {
  margin: 0;
  color: var(--default-color);
  opacity: 0.7;
  font-size: 0.9rem;
}

.story-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(147, 51, 234, 0.15);
  border: 1px solid rgba(147, 51, 234, 0.3);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 600;
}

.story-badge i {
  font-size: 1rem;
}

.story-content h5 {
  color: var(--heading-color);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.story-content p {
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.story-results {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: auto;
}

.result-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(147, 51, 234, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--success-color);
}

.result-item i {
  color: var(--success-color);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.result-item span {
  color: var(--default-color);
  font-size: 0.9rem;
  font-weight: 500;
}

.success-cta {
  background: var(--surface-color);
  padding: 3rem 2rem;
  border-radius: 20px;
  border: 1px solid rgba(147, 51, 234, 0.2);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.success-cta h3 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.success-cta .lead {
  color: var(--default-color);
  opacity: 0.9;
  font-size: 1.1rem;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .success-area-card {
    padding: 1.5rem;
  }

  .story-card {
    padding: 2rem;
  }

  .success-cta {
    padding: 2rem 1.5rem;
  }

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

#cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, #2d2738 0%, #1a1626 100%);
  color: var(--default-color);
  border: 1px solid rgba(147, 51, 234, 0.3);
  padding: 0;
  font-family: var(--default-font);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(147, 51, 234, 0.1);
  border-radius: 16px;
  font-size: 14px;
  max-width: 500px;
  width: calc(100% - 40px);
  z-index: 1000;
  display: none;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

#cookie-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  z-index: 1;
}

#cookie-popup.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

#cookie-popup p {
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

#cookie-popup .popup-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.75rem;
  position: relative;
}

#cookie-popup .popup-message {
  flex: 1;
}

#cookie-popup .popup-message a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
  border-bottom: 1px solid transparent;
}

#cookie-popup .popup-message a:hover {
  color: var(--heading-color);
  border-bottom-color: var(--heading-color);
}

#cookie-popup button {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--heading-color) 100%);
  color: var(--contrast-color);
  border: none;
  padding: 0.875rem 1.75rem;
  border-radius: 10px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-end;
  box-shadow: 0 4px 15px rgba(147, 51, 234, 0.3);
  letter-spacing: 0.5px;
  font-family: var(--heading-font);
}

#cookie-popup button:hover {
  background: linear-gradient(135deg, var(--heading-color) 0%, var(--accent-color) 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(147, 51, 234, 0.4);
}

#cookie-popup button:active {
  transform: translateY(0);
}

#cookie-popup .popup-message {
  max-width: 80%;
}

#cookie-popup .popup-message a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

#cookie-popup .popup-message a:hover {
  color: #0056b3;
}

/* Cookie Popup Responsive Styles */
@media (max-width: 768px) {
  #cookie-popup {
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    max-width: none;
    transform: translateY(100px);
    border-radius: 12px;
    font-size: 13px;
  }

  #cookie-popup.show {
    transform: translateY(0);
  }

  #cookie-popup .popup-content {
    padding: 1.25rem;
    gap: 1rem;
  }

  #cookie-popup .popup-message {
    max-width: 100%;
  }

  #cookie-popup p {
    font-size: 13px;
    line-height: 1.5;
  }

  #cookie-popup button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    align-self: stretch;
  }
}

@media (max-width: 480px) {
  #cookie-popup {
    bottom: 10px;
    left: 10px;
    right: 10px;
    border-radius: 10px;
    font-size: 12px;
  }

  #cookie-popup .popup-content {
    padding: 1rem;
    gap: 0.875rem;
  }

  #cookie-popup p {
    font-size: 12px;
  }

  #cookie-popup button {
    padding: 0.625rem 1.25rem;
    font-size: 0.85rem;
  }
}

#features-slider {
  position: relative;
}

.swiper-slide {
  transition: filter 0.3s ease;
}

.swiper-button-prev,
.swiper-button-next {
  color: #6a3cb0;
  background: rgba(106, 60, 176, 0.15);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
}
@media (max-width:768px) {
  .swiper-button-prev,
  .swiper-button-next {
    display: none;
  }
}

.swiper-button-next {
  right: 5%;
}

.swiper-button-prev {
  left: 5%;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 20px;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: rgba(106, 60, 176, 0.3);
  color: #3a0070;
}

.list-cards {
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.card-item {
  background: var(--background-color);
  border-radius: 12px;
  box-shadow: 0 4px 12px  var(--heading-color);
  padding: 5px 10px;
  display: flex;
  align-items: flex-start;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: default;
  margin: 10px;
}
.card-item:hover {
  box-shadow: 0 8px 24px var(--heading-color);
  transform: translateY(-5px);
}
.card-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.icon {
  font-size: 1.8rem;
  color: var(--accent-color);
  flex-shrink: 0;
}
.card-item p {
  margin: 0;
  font-size: 1rem;
  color: var(--accent-color);
  font-weight: 500;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .list-cards {
    flex-direction: column;
  }
  .card-item {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Page Title Section
--------------------------------------------------------------*/
.page-title {
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
  padding: 80px 0 40px;
  text-align: center;
  position: relative;
}

.page-title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  opacity: 0.3;
}

.page-title h1 {
  color: var(--heading-color);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.page-title p {
  color: var(--default-color);
  font-size: 1.1rem;
  margin: 0;
  position: relative;
  z-index: 2;
}

/*--------------------------------------------------------------
# Content Styling
--------------------------------------------------------------*/
.content {
  color: var(--default-color);
  line-height: 1.8;
}

.content h2 {
  color: var(--heading-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 2.5rem 0 1rem 0;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--accent-color);
}

.content h3 {
  color: var(--accent-color);
  font-size: 1.4rem;
  font-weight: 600;
  margin: 2rem 0 1rem 0;
}

.content h4 {
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem 0;
}

.content p {
  margin-bottom: 1.2rem;
  color: var(--default-color);
}

.content ul {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content ul li {
  margin-bottom: 0.5rem;
  color: var(--default-color);
}

.content .contact-info {
  background: rgba(147, 51, 234, 0.1);
  padding: 25px;
  border-radius: 15px;
  border: 1px solid rgba(147, 51, 234, 0.2);
  margin: 2rem 0;
}

.content .contact-info p {
  margin-bottom: 0.5rem;
}

.content .contact-info strong {
  color: var(--accent-color);
}

.content .alert {
  border-radius: 15px;
  border: none;
  padding: 25px;
  margin: 2rem 0;
}

.content .alert-info {
  background: rgba(116, 192, 252, 0.1);
  color: var(--info-color);
  border: 1px solid rgba(116, 192, 252, 0.2);
}

.content .alert-warning {
  background: rgba(255, 212, 59, 0.1);
  color: var(--warning-color);
  border: 1px solid rgba(255, 212, 59, 0.2);
}

.content .alert h4 {
  color: inherit;
  margin-bottom: 1rem;
  border-bottom: none;
}

.content .cookie-settings {
  background: rgba(147, 51, 234, 0.05);
  padding: 30px;
  border-radius: 15px;
  border: 1px solid rgba(147, 51, 234, 0.1);
  text-align: center;
  margin: 2rem 0;
}

.content .cookie-settings h4 {
  color: var(--heading-color);
  margin-bottom: 1rem;
  border-bottom: none;
}

.content .cookie-settings p {
  margin-bottom: 1.5rem;
}

.content .cookie-settings .btn {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  border: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.3);
}

.content .cookie-settings .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Responsive Adjustments for Content Pages
--------------------------------------------------------------*/
@media (max-width: 767px) {
  .page-title h1 {
    font-size: 2rem;
  }
  
  .page-title p {
    font-size: 1rem;
  }
  
  .content h2 {
    font-size: 1.5rem;
  }
  
  .content h3 {
    font-size: 1.3rem;
  }
  
  .content h4 {
    font-size: 1.1rem;
  }
  
  .content .contact-info,
  .content .cookie-settings {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .page-title {
    padding: 60px 0 30px;
  }
  
  .page-title h1 {
    font-size: 1.8rem;
  }
  
  .content h2 {
    font-size: 1.4rem;
  }
  
  .content h3 {
    font-size: 1.2rem;
  }
}

/*--------------------------------------------------------------
# Nueva Sección: Recursos Educativos
--------------------------------------------------------------*/
.recursos {
  background: linear-gradient(135deg, var(--background-color) 0%, var(--surface-color) 100%);
  position: relative;
  overflow: hidden;
}

.recursos::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  opacity: 0.3;
}

.recurso-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  border: 1px solid rgba(147, 51, 234, 0.1);
  backdrop-filter: blur(20px);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.recurso-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

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

.recurso-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 30px 60px rgba(147, 51, 234, 0.2);
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.08);
}

.recurso-card.featured {
  border-color: var(--accent-color);
  transform: scale(1.05);
  background: rgba(147, 51, 234, 0.05);
}

.recurso-card.featured::before {
  transform: scaleX(1);
}

.recurso-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

.recurso-card:hover .recurso-icon {
  transform: scale(1.1) rotate(5deg);
}

.recurso-icon i {
  font-size: 2.5rem;
  color: var(--contrast-color);
}

.recurso-card h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
}

.recurso-card h3::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  border-radius: 2px;
}

.recurso-card p {
  color: var(--default-color);
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1rem;
}

.recurso-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 25px;
}

.feature-tag {
  background: rgba(147, 51, 234, 0.1);
  color: var(--accent-color);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(78, 205, 196, 0.2);
  transition: all 0.3s ease;
}

.recurso-card:hover .feature-tag {
  background: rgba(147, 51, 234, 0.2);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.recurso-btn {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  color: var(--contrast-color);
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(147, 51, 234, 0.3);
}

.recurso-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4);
  color: var(--contrast-color);
}

/* Estadísticas */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(147, 51, 234, 0.1);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.stat-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(147, 51, 234, 0.1), transparent);
  transition: left 0.6s ease;
}

.stat-item:hover::before {
  left: 100%;
}

.stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(147, 51, 234, 0.2);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 10px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  color: var(--default-color);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Footer - Nuevo Diseño
--------------------------------------------------------------*/
.footer {
  background: var(--surface-color);
  padding: 80px 0 30px;
  color: var(--default-color);
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;

  opacity: 0.3;
}

.footer-newsletter {
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  padding: 60px 0;
  margin-bottom: 60px;
  border-radius: 25px;
  margin: 0 20px 60px 20px;
  position: relative;
  z-index: 2;
}

.footer-newsletter h4 {
  color: var(--contrast-color);
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.footer-newsletter p {
  color: var(--contrast-color);
  margin-bottom: 30px;
  opacity: 0.9;
  font-size: 1.1rem;
}

.footer-newsletter .newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 15px;
  background: rgba(255, 255, 255, 0.1);
  padding: 5px;
  border-radius: 50px;
  backdrop-filter: blur(20px);
}

.footer-newsletter input[type="email"] {
  flex: 1;
  padding: 15px 25px;
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--background-color);
}

.footer-newsletter input[type="submit"] {
  background: var(--contrast-color);
  color: var(--heading-color);
  padding: 15px 30px;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.footer-newsletter input[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.footer-top {
  padding-bottom: 40px;
  position: relative;
  z-index: 2;
}



.footer-about .footer-contact p {
  margin: 0;
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-about .footer-contact strong {
  color: var(--heading-color);
}

.footer-links h4 {
  color: var(--heading-color);
  font-size: 1.3rem;
  margin-bottom: 20px;
  font-weight: 600;
}

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

.footer-links ul li {
  padding: 8px 0;
}

.footer-links ul li i {
  color: var(--accent-color);
  margin-right: 8px;
  font-size: 0.9rem;
}

.footer-links ul li a {
  color: var(--default-color);
  transition: color 0.3s ease;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
}

.footer-bottom {
  background: var(--background-color);
  padding: 30px 0;
  text-align: center;
  border-top: 1px solid rgba(147, 51, 234, 0.1);
  position: relative;
  z-index: 2;
}

.footer-bottom p {
  margin: 0;
  color: var(--default-color);
}

.footer-bottom a {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Responsive Design - Mejorado
--------------------------------------------------------------*/
@media (max-width: 1199px) {
  .hero h2 {
    font-size: 3.5rem;
  }
  
  .about-title {
    font-size: 3rem;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 991px) {
  .hero {
    padding: 100px 0 60px;
  }
  
  .hero h2 {
    font-size: 3rem;
  }
  
  .about-title {
    font-size: 2.5rem;
  }
  
  .feature-item {
    flex-direction: column;
    text-align: center;
  }
  
  .feature-icon {
    margin: 0 auto 20px;
  }
}

/*--------------------------------------------------------------
# About Page Styles
--------------------------------------------------------------*/

/* About Hero Section */
.about-hero-section {
  padding: 80px 0;
  background: var(--background-color);
}

.about-hero-content {
  position: relative;
}

.section-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(147, 51, 234, 0.15);
  color: var(--accent-color);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(147, 51, 234, 0.3);
}

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

.about-hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--contrast-color);
  font-family: var(--heading-font);
}

.highlight-gradient {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--heading-color) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.about-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.about-feature-item {
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
  text-align: center;
}

.about-feature-item:hover {
  background: rgba(147, 51, 234, 0.15);
  border-color: rgba(147, 51, 234, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.about-feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  transition: transform 0.3s ease;
}

.about-feature-item:hover .about-feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.about-feature-icon i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.about-feature-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 0.75rem;
  font-family: var(--heading-font);
}

.about-feature-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.about-hero-visual {
  position: relative;
}

.image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.image-wrapper:hover .about-hero-image {
  transform: scale(1.05);
}

.image-overlay-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(147, 51, 234, 0.1) 0%, rgba(177, 156, 217, 0.05) 100%);
  pointer-events: none;
}

/* Mission Section */
.about-mission-section {
  padding: 80px 0;
  background: var(--surface-color);
}

.mission-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
}

.mission-card:hover {
  background: rgba(147, 51, 234, 0.1);
  border-color: rgba(147, 51, 234, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.mission-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mission-icon i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.mission-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.mission-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* Values Section */
.about-values-section {
  padding: 80px 0;
  background: var(--background-color);
}

.section-header-center {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title-center {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-top: 1rem;
  font-family: var(--heading-font);
}

.value-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.value-card:hover {
  background: rgba(147, 51, 234, 0.15);
  border-color: rgba(147, 51, 234, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
}

.value-icon i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.value-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 0.75rem;
  font-family: var(--heading-font);
}

.value-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Team & Legal Section */
.about-team-section {
  padding: 80px 0;
  background: var(--surface-color);
}

.team-card {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.team-header {
  margin-bottom: 1.5rem;
}

.team-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-top: 1rem;
  font-family: var(--heading-font);
}

.team-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.legal-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
}

.legal-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-header i {
  font-size: 1.5rem;
  color: var(--accent-color);
}

.legal-header h3 {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--contrast-color);
  margin: 0;
  font-family: var(--heading-font);
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.legal-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.legal-item strong {
  color: var(--heading-color);
  font-size: 0.85rem;
}

/* Modern Mission Section Styles */
.mission-card-modern {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
}

.mission-card-modern:hover {
  background: rgba(233, 30, 99, 0.15);
  border-color: rgba(233, 30, 99, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.mission-header-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.mission-icon-modern {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mission-icon-modern i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.mission-title-modern {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin: 0;
  font-family: var(--heading-font);
}

.mission-content-modern {
  position: relative;
}

.mission-text-modern {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
}

.mission-list-modern {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mission-list-modern li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.mission-list-modern li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

/* Modern Values Section Styles */
.value-card-modern {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.value-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.value-card-modern:hover::before {
  opacity: 1;
}

.value-card-modern:hover {
  background: rgba(233, 30, 99, 0.15);
  border-color: rgba(233, 30, 99, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.value-icon-modern {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.value-icon-bg {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(233, 30, 99, 0.3);
}

.value-card-modern:hover .value-icon-bg {
  transform: scale(1.1) rotate(5deg);
}

.value-icon-bg i {
  font-size: 2rem;
  color: var(--contrast-color);
}

.value-title-modern {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.value-text-modern {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.section-description-center {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Modern Team Section Styles */
.team-card-modern {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.team-card-modern:hover {
  background: rgba(233, 30, 99, 0.1);
  border-color: rgba(233, 30, 99, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.team-header-modern {
  margin-bottom: 2rem;
}

.team-title-modern {
  font-size: 2rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-top: 1rem;
  font-family: var(--heading-font);
  line-height: 1.3;
}

.team-content-modern {
  position: relative;
}

.team-text-modern {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
}

.team-features-modern {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team-feature-item-modern {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.team-feature-icon-modern {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.team-feature-icon-modern i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.team-feature-content-modern {
  flex: 1;
}

.team-feature-title-modern {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.team-feature-text-modern {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Modern Legal Card Styles */
.legal-card-modern {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.legal-card-modern:hover {
  background: rgba(233, 30, 99, 0.1);
  border-color: rgba(233, 30, 99, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.legal-header-modern {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-icon-modern {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.legal-icon-modern i {
  font-size: 1.5rem;
  color: var(--contrast-color);
}

.legal-title-modern {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--contrast-color);
  margin: 0;
  font-family: var(--heading-font);
}

.legal-content-modern {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.legal-item-modern {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.legal-label-modern {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--heading-color);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legal-label-modern i {
  font-size: 1rem;
  color: var(--accent-color);
}

.legal-value-modern {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-value-modern:hover {
  color: var(--accent-color);
}

/* Services Page Styles */
.services-hero-section {
  padding: 80px 0;
  background: var(--background-color);
}

.services-hero-content {
  position: relative;
}

.services-hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  color: var(--contrast-color);
  font-family: var(--heading-font);
}

.services-hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
}

.services-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-item-modern {
  flex: 1;
  min-width: 120px;
}

.stat-number-modern {
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.stat-label-modern {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

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

.services-visual-card {
  padding: 3rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 400px;
}

.services-visual-card:hover {
  background: rgba(233, 30, 99, 0.15);
  border-color: rgba(233, 30, 99, 0.3);
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.visual-icon-large {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: transform 0.3s ease;
}

.services-visual-card:hover .visual-icon-large {
  transform: scale(1.1) rotate(5deg);
}

.visual-icon-large i {
  font-size: 3rem;
  color: var(--contrast-color);
}

.services-visual-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin-bottom: 0.75rem;
  font-family: var(--heading-font);
}

.services-visual-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.services-main-section {
  padding: 80px 0;
  background: var(--surface-color);
}

.service-card-modern {
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--heading-color));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.service-card-modern:hover::before {
  opacity: 1;
}

.service-card-modern:hover {
  background: rgba(233, 30, 99, 0.15);
  border-color: rgba(233, 30, 99, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.service-header-modern {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.service-icon-modern {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), var(--heading-color));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.service-card-modern:hover .service-icon-modern {
  transform: scale(1.1) rotate(5deg);
}

.service-icon-modern i {
  font-size: 1.75rem;
  color: var(--contrast-color);
}

.service-title-modern {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  margin: 0;
  font-family: var(--heading-font);
}

.service-description-modern {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features-modern {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-features-modern li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
}

.service-features-modern li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.service-footer-modern {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.service-link-modern {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.service-link-modern:hover {
  color: var(--heading-color);
  gap: 0.75rem;
}

.service-link-modern i {
  transition: transform 0.3s ease;
}

.service-link-modern:hover i {
  transform: translateX(3px);
}

.services-cta-section {
  padding: 80px 0;
  background: var(--background-color);
}

.services-cta-content {
  position: relative;
}

.services-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
  color: var(--contrast-color);
  font-family: var(--heading-font);
}

.services-cta-description {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.services-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.services-cta-buttons .btn-lg {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

@media (max-width: 768px) {
  .mission-card-modern,
  .team-card-modern,
  .legal-card-modern {
    padding: 1.5rem;
  }

  .mission-title-modern,
  .team-title-modern {
    font-size: 1.5rem;
  }

  .value-card-modern {
    padding: 1.5rem;
  }

  .section-title-center {
    font-size: 2rem;
  }

  .about-features-grid {
    grid-template-columns: 1fr;
  }

  .services-hero-title {
    font-size: 2rem;
  }

  .services-stats {
    gap: 1.5rem;
  }

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

  .service-card-modern {
    padding: 1.5rem;
  }

  .service-title-modern {
    font-size: 1.25rem;
  }

  .services-cta-title {
    font-size: 2rem;
  }

  .services-cta-buttons {
    flex-direction: column;
  }

  .services-cta-buttons .btn-lg {
    width: 100%;
  }
}

.legal-item span,
.legal-item a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  text-decoration: none;
}

.legal-item a:hover {
  color: var(--accent-color);
}

@media (max-width: 991px) {
  .about-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (max-width: 767px) {
  .hero h2 {
    font-size: 2.5rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  .about-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .about-title {
    font-size: 2rem;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .recurso-card {
    padding: 30px 20px;
  }
  
  .footer-newsletter .newsletter-form {
    flex-direction: column;
    background: transparent;
    padding: 0;
  }
  
  .footer-newsletter input[type="submit"] {
    width: 100%;
  }
}

@media (max-width: 575px) {
  .hero {
    padding: 80px 0 40px;
  }
  
  .hero h2 {
    font-size: 2rem;
  }
  
  .about-title {
    font-size: 1.8rem;
  }
  
  .recurso-card {
    padding: 25px 15px;
  }
  
  .feature-item {
    padding: 20px 15px;
  }
}

/*--------------------------------------------------------------
# Text Gradient Green
--------------------------------------------------------------*/
.text-gradient-green {
  background: linear-gradient(135deg, #2d8659 0%, #81c784 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*--------------------------------------------------------------
# Page Title Dark
--------------------------------------------------------------*/
.page-title-dark {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}

.page-title-dark::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 20%, rgba(45, 134, 89, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(26, 93, 58, 0.08) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.page-title-dark-content {
  text-align: center;
  position: relative;
  z-index: 2;
}

.page-title-dark-heading {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.page-title-dark-description {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/*--------------------------------------------------------------
# About Dark Sections
--------------------------------------------------------------*/
.about-dark-hero {
  padding: 100px 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}

.about-dark-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(45, 134, 89, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(26, 93, 58, 0.06) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.about-dark-hero-content {
  position: relative;
  z-index: 2;
}

.about-dark-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(45, 134, 89, 0.2);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(45, 134, 89, 0.3);
}

.about-dark-badge i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.about-dark-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: var(--heading-font);
}

.about-dark-hero-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.about-dark-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.about-dark-feature-card {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(45, 134, 89, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.about-dark-feature-card:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 10px 30px rgba(45, 134, 89, 0.2);
}

.about-dark-feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(45, 134, 89, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent-color);
  font-size: 1.75rem;
}

.about-dark-feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.about-dark-feature-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.about-dark-hero-visual {
  position: relative;
  z-index: 2;
}

.about-dark-image-wrapper {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-dark-hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-dark-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(13, 13, 13, 0.3) 100%);
  pointer-events: none;
}

.about-dark-mission {
  padding: 100px 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}

.about-dark-mission::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(45, 134, 89, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(26, 93, 58, 0.08) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.about-dark-section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.about-dark-section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.about-dark-section-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 1.5rem auto 0;
  line-height: 1.7;
}

.mission-dark-card {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 2.5rem;
  border: 1px solid rgba(45, 134, 89, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  height: 100%;
}

.mission-dark-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 60px rgba(45, 134, 89, 0.25);
}

.mission-dark-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.mission-dark-icon {
  width: 70px;
  height: 70px;
  background: rgba(45, 134, 89, 0.2);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 2rem;
  flex-shrink: 0;
}

.mission-dark-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.mission-dark-content {
  position: relative;
}

.mission-dark-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.mission-dark-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mission-dark-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.mission-dark-list li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.about-dark-values {
  padding: 100px 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}

.about-dark-values::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 30%, rgba(45, 134, 89, 0.08) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.value-dark-card {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 22px;
  padding: 2.25rem;
  border: 1px solid rgba(45, 134, 89, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  z-index: 2;
  height: 100%;
}

.value-dark-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent-color);
  box-shadow: 0 15px 50px rgba(45, 134, 89, 0.25);
}

.value-dark-icon {
  width: 65px;
  height: 65px;
  background: rgba(45, 134, 89, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  font-size: 1.9rem;
  transition: all 0.3s ease;
}

.value-dark-card:hover .value-dark-icon {
  background: rgba(45, 134, 89, 0.3);
  transform: scale(1.1);
}

.value-dark-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.value-dark-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.about-dark-team {
  padding: 100px 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}

.about-dark-team::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(45, 134, 89, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(26, 93, 58, 0.08) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.team-dark-card {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 3rem;
  border: 1px solid rgba(45, 134, 89, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.team-dark-header {
  margin-bottom: 2rem;
}

.team-dark-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-top: 1rem;
  line-height: 1.2;
  font-family: var(--heading-font);
}

.team-dark-content {
  position: relative;
}

.team-dark-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
}

.team-dark-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.team-dark-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.team-dark-feature-icon {
  width: 55px;
  height: 55px;
  background: rgba(45, 134, 89, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.team-dark-feature-content {
  flex: 1;
}

.team-dark-feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.team-dark-feature-text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.legal-dark-card {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 2.5rem;
  border: 1px solid rgba(45, 134, 89, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
  height: 100%;
}

.legal-dark-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(45, 134, 89, 0.2);
}

.legal-dark-icon {
  width: 50px;
  height: 50px;
  background: rgba(45, 134, 89, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.5rem;
}

.legal-dark-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.legal-dark-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.legal-dark-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-dark-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.legal-dark-label i {
  color: var(--accent-color);
  font-size: 1rem;
}

.legal-dark-value {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.legal-dark-value a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.legal-dark-value a:hover {
  color: #81c784;
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Contact Dark Section
--------------------------------------------------------------*/
.contact-dark-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}

.contact-dark-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(45, 134, 89, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(26, 93, 58, 0.08) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.contact-dark-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.contact-dark-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.contact-dark-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-dark-info {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 2.5rem;
  border: 1px solid rgba(45, 134, 89, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
  height: 100%;
}

.contact-dark-info-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.contact-dark-info-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.contact-dark-info-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-dark-info-icon {
  width: 50px;
  height: 50px;
  background: rgba(45, 134, 89, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-dark-info-content {
  flex: 1;
}

.contact-dark-info-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-dark-info-value {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.contact-dark-info-value a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-dark-info-value a:hover {
  color: #81c784;
  text-decoration: underline;
}

.contact-dark-info-muted {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
  display: block;
}

.contact-dark-info-legal {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.75rem;
  line-height: 1.6;
}

.contact-dark-social {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(45, 134, 89, 0.2);
}

.contact-dark-social-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact-dark-social-icons {
  display: flex;
  gap: 1rem;
}

.contact-dark-social-link {
  width: 45px;
  height: 45px;
  background: rgba(45, 134, 89, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(45, 134, 89, 0.3);
}

.contact-dark-social-link:hover {
  background: rgba(45, 134, 89, 0.3);
  transform: translateY(-3px);
  border-color: var(--accent-color);
  color: #81c784;
}

.contact-dark-form-wrapper {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 3rem;
  border: 1px solid rgba(45, 134, 89, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.contact-dark-form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-dark-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact-dark-form-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.contact-dark-form {
  position: relative;
}

.contact-dark-form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
}

.contact-dark-form-input,
.contact-dark-form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(13, 13, 13, 0.6);
  border: 1px solid rgba(45, 134, 89, 0.3);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-family: var(--default-font);
  transition: all 0.3s ease;
}

.contact-dark-form-input:focus,
.contact-dark-form-textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(13, 13, 13, 0.8);
  box-shadow: 0 0 0 3px rgba(45, 134, 89, 0.2);
}

.contact-dark-form-input::placeholder,
.contact-dark-form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-dark-form-textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-dark-form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-dark-form-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--accent-color);
}

.contact-dark-form-check-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  cursor: pointer;
}

.contact-dark-form-link {
  color: var(--accent-color);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.contact-dark-form-link:hover {
  color: #81c784;
}

.contact-dark-form-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, #1a5d3a 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--default-font);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 134, 89, 0.3);
}

.contact-dark-form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 134, 89, 0.4);
  background: linear-gradient(135deg, #3da06d 0%, #2d8659 100%);
}

.contact-dark-form-btn i {
  font-size: 1.2rem;
}

/*--------------------------------------------------------------
# Services Dark Sections
--------------------------------------------------------------*/
.services-dark-hero {
  padding: 100px 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}

.services-dark-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(45, 134, 89, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(26, 93, 58, 0.08) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.services-dark-hero-content {
  position: relative;
  z-index: 2;
}

.services-dark-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(45, 134, 89, 0.2);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(45, 134, 89, 0.3);
}

.services-dark-badge i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.services-dark-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: var(--heading-font);
}

.services-dark-hero-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.services-dark-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
}

.services-dark-stat {
  flex: 1;
  text-align: center;
}

.services-dark-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.services-dark-stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.services-dark-hero-visual {
  position: relative;
  z-index: 2;
}

.services-dark-visual-card {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 3rem;
  border: 1px solid rgba(45, 134, 89, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: all 0.4s ease;
}

.services-dark-visual-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 30px 80px rgba(45, 134, 89, 0.3);
}

.services-dark-visual-icon {
  width: 100px;
  height: 100px;
  background: rgba(45, 134, 89, 0.2);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent-color);
  font-size: 3rem;
}

.services-dark-visual-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.services-dark-visual-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.services-dark-main {
  padding: 100px 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}

.services-dark-main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 20%, rgba(45, 134, 89, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(26, 93, 58, 0.06) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.services-dark-section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.services-dark-section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.services-dark-section-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 1.5rem auto 0;
  line-height: 1.7;
}

.service-dark-card {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 2.5rem;
  border: 1px solid rgba(45, 134, 89, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  z-index: 2;
  height: 100%;
  overflow: hidden;
}

.service-dark-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(45, 134, 89, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.service-dark-card:hover::before {
  opacity: 1;
}

.service-dark-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 25px 70px rgba(45, 134, 89, 0.25);
}

.service-dark-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.service-dark-icon {
  width: 65px;
  height: 65px;
  background: rgba(45, 134, 89, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.9rem;
  flex-shrink: 0;
}

.service-dark-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.service-dark-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.service-dark-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.service-dark-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.service-dark-features li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.service-dark-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(45, 134, 89, 0.2);
}

.service-dark-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.service-dark-link:hover {
  color: #81c784;
  gap: 0.75rem;
}

.service-dark-link i {
  transition: transform 0.3s ease;
}

.service-dark-link:hover i {
  transform: translateX(5px);
}

.services-dark-cta {
  padding: 100px 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}

.services-dark-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(45, 134, 89, 0.12) 0%, transparent 60%);
  z-index: 1;
  pointer-events: none;
}

.services-dark-cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.services-dark-cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: var(--heading-font);
}

.services-dark-cta-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
}

.services-dark-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.services-dark-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, #1a5d3a 100%);
  color: #ffffff;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 134, 89, 0.3);
}

.services-dark-cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 134, 89, 0.4);
  background: linear-gradient(135deg, #3da06d 0%, #2d8659 100%);
}

.services-dark-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(45, 134, 89, 0.3);
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services-dark-cta-btn-secondary:hover {
  background: rgba(45, 134, 89, 0.2);
  border-color: var(--accent-color);
  color: #ffffff;
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# FAQ Dark Section
--------------------------------------------------------------*/
.faq-dark-section {
  padding: 100px 0;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  position: relative;
  overflow: hidden;
}

.faq-dark-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 40%, rgba(45, 134, 89, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(26, 93, 58, 0.08) 0%, transparent 50%);
  z-index: 1;
  pointer-events: none;
}

.faq-dark-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-dark-item {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 18px;
  border: 1px solid rgba(45, 134, 89, 0.2);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-dark-item:hover {
  border-color: rgba(45, 134, 89, 0.4);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.faq-dark-item.faq-dark-active {
  border-color: var(--accent-color);
  box-shadow: 0 8px 30px rgba(45, 134, 89, 0.25);
}

.faq-dark-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-dark-item.faq-dark-active .faq-dark-header {
  background: rgba(45, 134, 89, 0.1);
}

.faq-dark-icon {
  width: 50px;
  height: 50px;
  background: rgba(45, 134, 89, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.faq-dark-question {
  flex: 1;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

.faq-dark-chevron {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-dark-item.faq-dark-active .faq-dark-chevron {
  transform: rotate(180deg);
  color: var(--accent-color);
}

.faq-dark-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
}

.faq-dark-item.faq-dark-active .faq-dark-content {
  max-height: 500px;
  padding: 0 2rem 1.75rem;
}

.faq-dark-answer {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  padding-top: 1rem;
}

/*--------------------------------------------------------------
# Responsive Styles for Dark Sections
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .page-title-dark-heading {
    font-size: 2.5rem;
  }

  .about-dark-hero-title,
  .about-dark-section-title,
  .contact-dark-title,
  .services-dark-hero-title,
  .services-dark-section-title,
  .services-dark-cta-title {
    font-size: 2.2rem;
  }

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

  .services-dark-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .services-dark-stat {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .team-dark-title {
    font-size: 2rem;
  }

  .contact-dark-form-wrapper {
    padding: 2rem;
  }

  .services-dark-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .services-dark-cta-btn-primary,
  .services-dark-cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .page-title-dark {
    padding: 120px 0 60px;
  }

  .page-title-dark-heading {
    font-size: 2rem;
  }

  .page-title-dark-description {
    font-size: 1.1rem;
  }

  .about-dark-hero,
  .about-dark-mission,
  .about-dark-values,
  .about-dark-team,
  .contact-dark-section,
  .services-dark-hero,
  .services-dark-main,
  .services-dark-cta,
  .faq-dark-section {
    padding: 60px 0;
  }

  .about-dark-hero-title,
  .about-dark-section-title,
  .contact-dark-title,
  .services-dark-hero-title,
  .services-dark-section-title,
  .services-dark-cta-title {
    font-size: 1.8rem;
  }

  .about-dark-features {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .mission-dark-card,
  .value-dark-card,
  .team-dark-card,
  .legal-dark-card,
  .contact-dark-info,
  .contact-dark-form-wrapper,
  .service-dark-card {
    padding: 1.75rem;
  }

  .services-dark-stats {
    flex-direction: column;
    gap: 1.25rem;
  }

  .services-dark-stat {
    flex: 1;
  }

  .faq-dark-header {
    padding: 1.25rem 1.5rem;
    gap: 1rem;
  }

  .faq-dark-question {
    font-size: 1.1rem;
  }

  .faq-dark-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .faq-dark-content {
    padding: 0 1.5rem;
  }

  .faq-dark-item.faq-dark-active .faq-dark-content {
    padding: 0 1.5rem 1.25rem;
  }
}

@media (max-width: 575px) {
  .page-title-dark-heading {
    font-size: 1.75rem;
  }

  .about-dark-hero-title,
  .about-dark-section-title,
  .contact-dark-title,
  .services-dark-hero-title,
  .services-dark-section-title,
  .services-dark-cta-title {
    font-size: 1.5rem;
  }

  .mission-dark-card,
  .value-dark-card,
  .contact-dark-info,
  .contact-dark-form-wrapper,
  .service-dark-card {
    padding: 1.5rem;
  }

  .mission-dark-header,
  .service-dark-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .mission-dark-icon,
  .service-dark-icon {
    width: 55px;
    height: 55px;
    font-size: 1.6rem;
  }

  .contact-dark-form-btn {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# New About Page Styles
--------------------------------------------------------------*/
.about-new-hero {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  overflow: hidden;
}

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

.about-new-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(45, 134, 89, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(26, 93, 58, 0.08) 0%, transparent 50%);
  opacity: 0.5;
}

.about-new-hero-content {
  position: relative;
  z-index: 2;
}

.about-new-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(45, 134, 89, 0.2);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(45, 134, 89, 0.3);
}

.about-new-badge i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.about-new-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: var(--heading-font);
}

.about-new-hero-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.about-new-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.about-new-feature-item {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(45, 134, 89, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.about-new-feature-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 50px rgba(45, 134, 89, 0.25);
}

.about-new-feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(45, 134, 89, 0.2);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent-color);
  font-size: 1.75rem;
}

.about-new-feature-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.about-new-feature-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.about-new-hero-visual {
  position: relative;
  z-index: 2;
}

.about-new-image-card {
  position: relative;
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-new-hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-new-mission {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
  overflow: hidden;
}

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

.about-new-mission-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 50%, rgba(45, 134, 89, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 50%, rgba(26, 93, 58, 0.08) 0%, transparent 50%);
  opacity: 0.5;
}

.about-new-section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.about-new-section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.about-new-section-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 1.5rem auto 0;
  line-height: 1.7;
}

.about-new-mission-card {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 2.5rem;
  border: 1px solid rgba(45, 134, 89, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  height: 100%;
}

.about-new-mission-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-color);
  box-shadow: 0 20px 60px rgba(45, 134, 89, 0.25);
}

.about-new-mission-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.about-new-mission-icon {
  width: 70px;
  height: 70px;
  background: rgba(45, 134, 89, 0.2);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 2rem;
  flex-shrink: 0;
}

.about-new-mission-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.about-new-mission-content {
  position: relative;
}

.about-new-mission-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.about-new-mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-new-mission-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.about-new-mission-list li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.about-new-values {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  overflow: hidden;
}

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

.about-new-values-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 50% 30%, rgba(45, 134, 89, 0.08) 0%, transparent 50%);
  opacity: 0.5;
}

.about-new-value-card {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 22px;
  padding: 2.25rem;
  border: 1px solid rgba(45, 134, 89, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  z-index: 2;
  height: 100%;
}

.about-new-value-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent-color);
  box-shadow: 0 15px 50px rgba(45, 134, 89, 0.25);
}

.about-new-value-icon {
  width: 65px;
  height: 65px;
  background: rgba(45, 134, 89, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  font-size: 1.9rem;
  transition: all 0.3s ease;
}

.about-new-value-card:hover .about-new-value-icon {
  background: rgba(45, 134, 89, 0.3);
  transform: scale(1.1);
}

.about-new-value-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.about-new-value-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

.about-new-team {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
  overflow: hidden;
}

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

.about-new-team-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 70%, rgba(45, 134, 89, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(26, 93, 58, 0.08) 0%, transparent 50%);
  opacity: 0.5;
}

.about-new-team-card {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 3rem;
  border: 1px solid rgba(45, 134, 89, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.about-new-team-header {
  margin-bottom: 2rem;
}

.about-new-team-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-top: 1rem;
  line-height: 1.2;
  font-family: var(--heading-font);
}

.about-new-team-content {
  position: relative;
}

.about-new-team-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
}

.about-new-team-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-new-team-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.about-new-team-feature-icon {
  width: 55px;
  height: 55px;
  background: rgba(45, 134, 89, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.about-new-team-feature-content {
  flex: 1;
}

.about-new-team-feature-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.about-new-team-feature-text {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.about-new-legal-card {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 2.5rem;
  border: 1px solid rgba(45, 134, 89, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
  height: 100%;
}

.about-new-legal-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(45, 134, 89, 0.2);
}

.about-new-legal-icon {
  width: 50px;
  height: 50px;
  background: rgba(45, 134, 89, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.5rem;
}

.about-new-legal-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.about-new-legal-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-new-legal-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-new-legal-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-new-legal-label i {
  color: var(--accent-color);
  font-size: 1rem;
}

.about-new-legal-value {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.about-new-legal-value a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-new-legal-value a:hover {
  color: #81c784;
  text-decoration: underline;
}

/*--------------------------------------------------------------
# New Contact Page Styles
--------------------------------------------------------------*/
.contact-new-section {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  overflow: hidden;
}

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

.contact-new-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(45, 134, 89, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(26, 93, 58, 0.08) 0%, transparent 50%);
  opacity: 0.5;
}

.contact-new-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.contact-new-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.contact-new-subtitle {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.contact-new-info-card {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 2.5rem;
  border: 1px solid rgba(45, 134, 89, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
  height: 100%;
}

.contact-new-info-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
}

.contact-new-info-text {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.contact-new-info-items {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact-new-info-item {
  display: flex;
  gap: 1.25rem;
}

.contact-new-info-icon {
  width: 50px;
  height: 50px;
  background: rgba(45, 134, 89, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.contact-new-info-content {
  flex: 1;
}

.contact-new-info-label {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.contact-new-info-value {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.contact-new-info-value a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-new-info-value a:hover {
  color: #81c784;
  text-decoration: underline;
}

.contact-new-info-muted {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.5rem;
  display: block;
}

.contact-new-info-legal {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.75rem;
  line-height: 1.6;
}

.contact-new-social {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(45, 134, 89, 0.2);
}

.contact-new-social-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact-new-social-icons {
  display: flex;
  gap: 1rem;
}

.contact-new-social-link {
  width: 45px;
  height: 45px;
  background: rgba(45, 134, 89, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.3rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(45, 134, 89, 0.3);
}

.contact-new-social-link:hover {
  background: rgba(45, 134, 89, 0.3);
  transform: translateY(-3px);
  border-color: var(--accent-color);
  color: #81c784;
}

.contact-new-form-card {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 3rem;
  border: 1px solid rgba(45, 134, 89, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 2;
}

.contact-new-form-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.contact-new-form-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact-new-form-subtitle {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.contact-new-form {
  position: relative;
}

.contact-new-form-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.75rem;
}

.contact-new-form-input,
.contact-new-form-textarea {
  width: 100%;
  padding: 1rem 1.25rem;
  background: rgba(13, 13, 13, 0.6);
  border: 1px solid rgba(45, 134, 89, 0.3);
  border-radius: 12px;
  color: #ffffff;
  font-size: 1rem;
  font-family: var(--default-font);
  transition: all 0.3s ease;
}

.contact-new-form-input:focus,
.contact-new-form-textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(13, 13, 13, 0.8);
  box-shadow: 0 0 0 3px rgba(45, 134, 89, 0.2);
}

.contact-new-form-input::placeholder,
.contact-new-form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

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

.contact-new-form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.contact-new-form-checkbox {
  width: 20px;
  height: 20px;
  margin-top: 0.2rem;
  flex-shrink: 0;
  cursor: pointer;
  accent-color: var(--accent-color);
}

.contact-new-form-check-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  cursor: pointer;
}

.contact-new-form-link {
  color: var(--accent-color);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.contact-new-form-link:hover {
  color: #81c784;
}

.contact-new-form-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, #1a5d3a 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--default-font);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 134, 89, 0.3);
}

.contact-new-form-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(45, 134, 89, 0.4);
  background: linear-gradient(135deg, #3da06d 0%, #2d8659 100%);
}

.contact-new-form-btn i {
  font-size: 1.2rem;
}

/*--------------------------------------------------------------
# New Services Page Styles
--------------------------------------------------------------*/
.services-new-hero {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  overflow: hidden;
}

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

.services-new-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 30%, rgba(45, 134, 89, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(26, 93, 58, 0.08) 0%, transparent 50%);
  opacity: 0.5;
}

.services-new-hero-content {
  position: relative;
  z-index: 2;
}

.services-new-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(45, 134, 89, 0.2);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(45, 134, 89, 0.3);
}

.services-new-badge i {
  color: var(--accent-color);
  font-size: 1.1rem;
}

.services-new-hero-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: var(--heading-font);
}

.services-new-hero-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.services-new-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
}

.services-new-stat {
  flex: 1;
  text-align: center;
}

.services-new-stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  font-family: var(--heading-font);
}

.services-new-stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.services-new-hero-visual {
  position: relative;
  z-index: 2;
}

.services-new-visual-card {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 3rem;
  border: 1px solid rgba(45, 134, 89, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  text-align: center;
  transition: all 0.4s ease;
}

.services-new-visual-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 30px 80px rgba(45, 134, 89, 0.3);
}

.services-new-visual-icon {
  width: 100px;
  height: 100px;
  background: rgba(45, 134, 89, 0.2);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent-color);
  font-size: 3rem;
}

.services-new-visual-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.services-new-visual-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.services-new-main {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, #0d0d0d 0%, #1a1a1a 100%);
  overflow: hidden;
}

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

.services-new-main-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 50% 20%, rgba(45, 134, 89, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(26, 93, 58, 0.06) 0%, transparent 50%);
  opacity: 0.5;
}

.services-new-section-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.services-new-section-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

.services-new-section-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 1.5rem auto 0;
  line-height: 1.7;
}

.services-new-card {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 2.5rem;
  border: 1px solid rgba(45, 134, 89, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  z-index: 2;
  height: 100%;
  overflow: hidden;
}

.services-new-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(45, 134, 89, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.services-new-card:hover::before {
  opacity: 1;
}

.services-new-card:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 25px 70px rgba(45, 134, 89, 0.25);
}

.services-new-card-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.services-new-card-icon {
  width: 65px;
  height: 65px;
  background: rgba(45, 134, 89, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.9rem;
  flex-shrink: 0;
}

.services-new-card-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.services-new-card-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1.5rem;
}

.services-new-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.services-new-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.services-new-card-features li i {
  color: var(--accent-color);
  font-size: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.services-new-card-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(45, 134, 89, 0.2);
}

.services-new-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services-new-card-link:hover {
  color: #81c784;
  gap: 0.75rem;
}

.services-new-card-link i {
  transition: transform 0.3s ease;
}

.services-new-card-link:hover i {
  transform: translateX(5px);
}

.services-new-cta {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  overflow: hidden;
}

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

.services-new-cta-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(45, 134, 89, 0.12) 0%, transparent 60%);
  opacity: 0.5;
}

.services-new-cta-content {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.services-new-cta-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: var(--heading-font);
}

.services-new-cta-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.5rem;
}

.services-new-cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.services-new-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, #1a5d3a 100%);
  color: #ffffff;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(45, 134, 89, 0.3);
}

.services-new-cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(45, 134, 89, 0.4);
  background: linear-gradient(135deg, #3da06d 0%, #2d8659 100%);
}

.services-new-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(45, 134, 89, 0.3);
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services-new-cta-btn-secondary:hover {
  background: rgba(45, 134, 89, 0.2);
  border-color: var(--accent-color);
  color: #ffffff;
  transform: translateY(-3px);
}

/*--------------------------------------------------------------
# New FAQ Page Styles
--------------------------------------------------------------*/
.faq-new-section {
  padding: 120px 0;
  position: relative;
  background: linear-gradient(180deg, #1a1a1a 0%, #0d0d0d 100%);
  overflow: hidden;
}

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

.faq-new-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 40%, rgba(45, 134, 89, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(26, 93, 58, 0.08) 0%, transparent 50%);
  opacity: 0.5;
}

.faq-new-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-new-item {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.95) 0%, rgba(13, 13, 13, 0.95) 100%);
  backdrop-filter: blur(20px);
  border-radius: 18px;
  border: 1px solid rgba(45, 134, 89, 0.2);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-new-item:hover {
  border-color: rgba(45, 134, 89, 0.4);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.faq-new-item.faq-new-active {
  border-color: var(--accent-color);
  box-shadow: 0 8px 30px rgba(45, 134, 89, 0.25);
}

.faq-new-header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.75rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-new-item.faq-new-active .faq-new-header {
  background: rgba(45, 134, 89, 0.1);
}

.faq-new-icon {
  width: 50px;
  height: 50px;
  background: rgba(45, 134, 89, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 1.4rem;
  flex-shrink: 0;
}

.faq-new-question {
  flex: 1;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  line-height: 1.4;
}

.faq-new-chevron {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-new-item.faq-new-active .faq-new-chevron {
  transform: rotate(180deg);
  color: var(--accent-color);
}

.faq-new-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 2rem;
}

.faq-new-item.faq-new-active .faq-new-content {
  max-height: 500px;
  padding: 0 2rem 1.75rem;
}

.faq-new-answer {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  padding-top: 1rem;
}

/*--------------------------------------------------------------
# Responsive Styles for New Pages
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .about-new-hero-title,
  .about-new-section-title,
  .contact-new-title,
  .services-new-hero-title,
  .services-new-section-title,
  .services-new-cta-title {
    font-size: 2.2rem;
  }

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

  .services-new-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .services-new-stat {
    flex: 1 1 calc(50% - 0.75rem);
  }

  .about-new-team-title {
    font-size: 2rem;
  }

  .services-new-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .services-new-cta-btn-primary,
  .services-new-cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-new-hero,
  .about-new-mission,
  .about-new-values,
  .about-new-team,
  .contact-new-section,
  .services-new-hero,
  .services-new-main,
  .services-new-cta,
  .faq-new-section {
    padding: 60px 0;
  }

  .about-new-hero-title,
  .about-new-section-title,
  .contact-new-title,
  .services-new-hero-title,
  .services-new-section-title,
  .services-new-cta-title {
    font-size: 1.8rem;
  }

  .about-new-features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .about-new-mission-card,
  .about-new-value-card,
  .about-new-team-card,
  .about-new-legal-card,
  .contact-new-info-card,
  .contact-new-form-card,
  .services-new-card {
    padding: 1.75rem;
  }

  .services-new-stats {
    flex-direction: column;
    gap: 1.25rem;
  }

  .services-new-stat {
    flex: 1;
  }

  .faq-new-header {
    padding: 1.25rem 1.5rem;
    gap: 1rem;
  }

  .faq-new-question {
    font-size: 1.1rem;
  }

  .faq-new-icon {
    width: 45px;
    height: 45px;
    font-size: 1.2rem;
  }

  .faq-new-content {
    padding: 0 1.5rem;
  }

  .faq-new-item.faq-new-active .faq-new-content {
    padding: 0 1.5rem 1.25rem;
  }
}

@media (max-width: 575px) {
  .about-new-hero-title,
  .about-new-section-title,
  .contact-new-title,
  .services-new-hero-title,
  .services-new-section-title,
  .services-new-cta-title {
    font-size: 1.5rem;
  }

  .about-new-mission-card,
  .about-new-value-card,
  .contact-new-info-card,
  .contact-new-form-card,
  .services-new-card {
    padding: 1.5rem;
  }

  .contact-new-form-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ============================================
   COMPLETELY REDESIGNED PAGE STYLES
   ============================================ */

/* About Page - Completely New Design */
.about-page-wrapper {
  background: #ffffff;
  padding: 180px 0 100px;
  min-height: calc(100vh - 80px);
}

.about-intro-header {
  text-align: center;
  margin-bottom: 70px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.about-main-heading {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a5d3a;
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-main-lead {
  font-size: 1.375rem;
  color: #666;
  line-height: 1.8;
}

.about-heritage-block {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  margin-bottom: 80px;
  align-items: start;
}

.about-image-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 50px rgba(26, 93, 58, 0.12);
}

.about-main-image {
  width: 100%;
  height: auto;
  display: block;
}

.about-story-block {
  padding-top: 20px;
}

.about-story-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a5d3a;
  margin-bottom: 30px;
}

.about-story-paragraphs {
  margin-bottom: 35px;
}

.about-story-paragraphs p {
  font-size: 1.125rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

.about-key-points {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.key-point {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.0625rem;
  color: #444;
}

.key-point i {
  color: #2d8659;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.about-purpose-block {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-bottom: 80px;
}

.mission-card {
  background: #f8faf9;
  padding: 45px;
  border-radius: 20px;
  border: 1px solid #e8f5e9;
  transition: all 0.3s ease;
}

.mission-card:hover {
  border-color: #2d8659;
  box-shadow: 0 8px 30px rgba(26, 93, 58, 0.1);
  transform: translateY(-3px);
}

.mission-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.mission-icon-circle {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #1a5d3a 0%, #2d8659 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mission-icon-circle i {
  font-size: 1.875rem;
  color: #ffffff;
}

.mission-card-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a5d3a;
  margin: 0;
}

.mission-card-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.mission-points {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.mission-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.mission-point i {
  color: #2d8659;
  font-size: 1.25rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.about-core-values-block {
  margin-bottom: 80px;
}

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

.values-main-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: #1a5d3a;
  margin-bottom: 12px;
}

.values-subtitle {
  font-size: 1.125rem;
  color: #666;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-item {
  background: #ffffff;
  padding: 35px;
  border-radius: 16px;
  border: 2px solid #f0f7f3;
  text-align: center;
  transition: all 0.3s ease;
}

.value-item:hover {
  border-color: #2d8659;
  box-shadow: 0 8px 25px rgba(26, 93, 58, 0.1);
  transform: translateY(-4px);
}

.value-icon {
  width: 65px;
  height: 65px;
  background: #f0f7f3;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.value-item:hover .value-icon {
  background: linear-gradient(135deg, #1a5d3a 0%, #2d8659 100%);
}

.value-icon i {
  font-size: 1.875rem;
  color: #1a5d3a;
  transition: color 0.3s ease;
}

.value-item:hover .value-icon i {
  color: #ffffff;
}

.value-name {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a5d3a;
  margin-bottom: 12px;
}

.value-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  margin: 0;
}

.about-team-legal-block {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 50px;
}

.team-info-block {
  background: #f8faf9;
  padding: 45px;
  border-radius: 20px;
  border: 1px solid #e8f5e9;
}

.team-section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a5d3a;
  margin-bottom: 25px;
}

.team-section-text {
  font-size: 1.125rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 35px;
}

.team-attributes {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.team-attr {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.team-attr-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #1a5d3a 0%, #2d8659 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.team-attr-icon i {
  font-size: 1.5rem;
  color: #ffffff;
}

.team-attr-text h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a5d3a;
  margin-bottom: 8px;
}

.team-attr-text p {
  font-size: 1rem;
  color: #666;
  margin: 0;
  line-height: 1.6;
}

.legal-info-block {
  background: #ffffff;
  padding: 45px;
  border-radius: 20px;
  border: 2px solid #e8f5e9;
  height: fit-content;
}

.legal-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #1a5d3a;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 2px solid #e8f5e9;
}

.legal-details {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.legal-detail-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #888;
}

.legal-value {
  font-size: 1rem;
  color: #1a5d3a;
  line-height: 1.6;
}

.legal-value a {
  color: #2d8659;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-value a:hover {
  color: #1a5d3a;
}

/* Contact Page - Completely New Design */
.contact-page-wrapper {
  background: #ffffff;
  padding: 180px 0 100px;
  min-height: calc(100vh - 80px);
}

.contact-intro-banner {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-main-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a5d3a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-main-subtitle {
  font-size: 1.375rem;
  color: #666;
  line-height: 1.7;
}

.contact-message-form {
  max-width: 900px;
  margin: 0 auto 80px;
}

.contact-form-new {
  background: #f8faf9;
  padding: 50px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(26, 93, 58, 0.06);
}

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

.form-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a5d3a;
  margin-bottom: 10px;
}

.form-description {
  font-size: 1.125rem;
  color: #666;
}

.form-fields-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-bottom: 25px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-field-full {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.field-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1a5d3a;
}

.field-label i {
  font-size: 1.125rem;
  color: #2d8659;
}

.field-input,
.field-textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e0e8e4;
  border-radius: 12px;
  font-size: 1rem;
  font-family: var(--default-font);
  color: #333;
  background: #ffffff;
  transition: all 0.3s ease;
}

.field-input:focus,
.field-textarea:focus {
  outline: none;
  border-color: #2d8659;
  box-shadow: 0 0 0 4px rgba(45, 134, 89, 0.08);
}

.field-textarea {
  resize: vertical;
  min-height: 140px;
  font-family: var(--default-font);
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 30px;
}

.privacy-checkbox {
  margin-top: 4px;
  width: 20px;
  height: 20px;
  cursor: pointer;
  flex-shrink: 0;
}

.privacy-label {
  font-size: 0.9375rem;
  color: #555;
  line-height: 1.6;
}

.privacy-label a {
  color: #2d8659;
  text-decoration: none;
  font-weight: 600;
}

.privacy-label a:hover {
  text-decoration: underline;
}

.form-submit-btn {
  width: 100%;
  padding: 18px 40px;
  background: linear-gradient(135deg, #1a5d3a 0%, #2d8659 100%);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s ease;
  font-family: var(--default-font);
}

.form-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 93, 58, 0.25);
}

.form-submit-btn i {
  font-size: 1.25rem;
}

.contact-info-cards {
  margin-bottom: 60px;
}

.contact-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.contact-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8faf9 100%);
  padding: 35px 30px;
  border-radius: 16px;
  border: 2px solid #e8f5e9;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-color: #2d8659;
  box-shadow: 0 10px 30px rgba(26, 93, 58, 0.12);
}

.card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #1a5d3a 0%, #2d8659 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.card-icon i {
  font-size: 2rem;
  color: #ffffff;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a5d3a;
  margin-bottom: 15px;
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.card-link {
  color: #2d8659;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.3s ease;
}

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

.card-text {
  color: #555;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

.card-note {
  color: #888;
  font-size: 0.875rem;
}

.contact-social-links {
  text-align: center;
  padding-top: 40px;
  border-top: 2px solid #e8f5e9;
}

.social-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a5d3a;
  margin-bottom: 25px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icon {
  width: 55px;
  height: 55px;
  background: #f0f7f3;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a5d3a;
  font-size: 1.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: linear-gradient(135deg, #1a5d3a 0%, #2d8659 100%);
  color: #ffffff;
  transform: translateY(-3px) scale(1.05);
}

/* Services Page Redesigned */
.services-page-wrapper {
  background: linear-gradient(135deg, #f5f9f7 0%, #e8f3ed 100%);
  min-height: 100vh;
}

.services-page-header {
  background: linear-gradient(135deg, #1a5d3a 0%, #2d8659 100%);
  padding: 100px 0 60px;
  color: #ffffff;
}

.services-header-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.services-header-label {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.services-header-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: #ffffff;
}

.services-header-description {
  font-size: 1.25rem;
  line-height: 1.8;
  opacity: 0.95;
}

.services-list-section {
  padding: 80px 0;
}

.services-list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.service-item {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(26, 93, 58, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(26, 93, 58, 0.15);
  border-color: #e8f5e9;
}

.service-item-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #1a5d3a 0%, #2d8659 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.service-item-icon i {
  font-size: 2.5rem;
  color: #ffffff;
}

.service-item-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a5d3a;
  margin-bottom: 20px;
}

.service-item-description {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.service-item-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.service-item-list li {
  padding: 10px 0;
  padding-left: 30px;
  position: relative;
  color: #666;
  font-size: 1rem;
  line-height: 1.6;
}

.service-item-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #2d8659;
  font-weight: 700;
  font-size: 1.25rem;
}

.service-item-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2d8659;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.0625rem;
  transition: all 0.3s ease;
}

.service-item-link:hover {
  color: #1a5d3a;
  gap: 15px;
}

.services-cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a5d3a 0%, #2d8659 100%);
  color: #ffffff;
}

.services-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.services-cta-title {
  font-size: 2.75rem;
  font-weight: 700;
  margin-bottom: 25px;
  color: #ffffff;
}

.services-cta-text {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.95;
}

.services-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.services-cta-btn-primary {
  padding: 18px 40px;
  background: #ffffff;
  color: #1a5d3a;
  border-radius: 12px;
  font-size: 1.0625rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.services-cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
  color: #1a5d3a;
}

.services-cta-btn-secondary {
  padding: 18px 40px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 12px;
  font-size: 1.0625rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services-cta-btn-secondary:hover {
  background: #ffffff;
  color: #1a5d3a;
}

/* FAQ Page Redesigned */
.faq-page-wrapper {
  background: linear-gradient(135deg, #f5f9f7 0%, #e8f3ed 100%);
  min-height: 100vh;
}

.faq-page-header {
  background: linear-gradient(135deg, #1a5d3a 0%, #2d8659 100%);
  padding: 100px 0 60px;
  color: #ffffff;
}

.faq-header-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.faq-header-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
}

.faq-header-description {
  font-size: 1.25rem;
  line-height: 1.8;
  opacity: 0.95;
}

.faq-list-section {
  padding: 80px 0;
}

.faq-list-container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(26, 93, 58, 0.08);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 30px rgba(26, 93, 58, 0.12);
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--default-font);
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #f8faf9;
}

.faq-question-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a5d3a;
  flex: 1;
}

.faq-chevron {
  font-size: 1.25rem;
  color: #2d8659;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.faq-active .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 30px;
}

.faq-item.faq-active .faq-answer {
  max-height: 1000px;
  padding: 0 30px 25px;
}

.faq-answer p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* Services Page - Completely New Design */
.services-page-wrapper {
  background: #ffffff;
  padding: 180px 0 100px;
  min-height: calc(100vh - 80px);
}

.services-hero-banner {
  text-align: center;
  margin-bottom: 70px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.services-page-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a5d3a;
  margin-bottom: 25px;
  line-height: 1.2;
}

.services-page-intro {
  font-size: 1.375rem;
  color: #666;
  line-height: 1.8;
}

.services-offerings-grid {
  margin-bottom: 80px;
}

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

.service-box {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  border: 2px solid #e8f5e9;
  transition: all 0.3s ease;
}

.service-box:hover {
  border-color: #2d8659;
  box-shadow: 0 10px 35px rgba(26, 93, 58, 0.12);
  transform: translateY(-5px);
}

.service-box-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.service-box-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1a5d3a 0%, #2d8659 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-box-icon i {
  font-size: 1.75rem;
  color: #ffffff;
}

.service-box-heading {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1a5d3a;
  margin: 0;
}

.service-box-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 25px;
}

.service-box-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.service-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.service-feature i {
  color: #2d8659;
  font-size: 1.125rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.service-box-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2d8659;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.0625rem;
  transition: all 0.3s ease;
}

.service-box-action:hover {
  color: #1a5d3a;
  gap: 15px;
}

.service-box-action i {
  transition: transform 0.3s ease;
}

.service-box-action:hover i {
  transform: translateX(5px);
}

.services-action-block {
  background: #f8faf9;
  padding: 60px;
  border-radius: 24px;
  text-align: center;
  border: 2px solid #e8f5e9;
}

.services-cta-heading {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a5d3a;
  margin-bottom: 20px;
}

.services-cta-description {
  font-size: 1.25rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.services-cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.services-cta-button-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 35px;
  background: linear-gradient(135deg, #1a5d3a 0%, #2d8659 100%);
  color: #ffffff;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services-cta-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 93, 58, 0.25);
}

.services-cta-button-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 35px;
  background: #ffffff;
  color: #1a5d3a;
  border: 2px solid #1a5d3a;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.services-cta-button-secondary:hover {
  background: #1a5d3a;
  color: #ffffff;
}

/* FAQ Page - Completely New Design */
.faq-page-wrapper {
  background: #ffffff;
  padding: 180px 0 100px;
  min-height: calc(100vh - 80px);
}

.faq-intro-section {
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.faq-page-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a5d3a;
  margin-bottom: 20px;
  line-height: 1.2;
}

.faq-page-subtitle {
  font-size: 1.375rem;
  color: #666;
  line-height: 1.7;
}

.faq-questions-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-accordion-item {
  background: #ffffff;
  border: 2px solid #e8f5e9;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-accordion-item:hover {
  border-color: #2d8659;
}

.faq-accordion-item.faq-active {
  border-color: #2d8659;
  box-shadow: 0 4px 15px rgba(26, 93, 58, 0.1);
}

.faq-accordion-header {
  width: 100%;
  padding: 25px 30px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  text-align: left;
  font-family: var(--default-font);
}

.faq-accordion-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a5d3a;
  line-height: 1.5;
  flex: 1;
}

.faq-accordion-icon {
  font-size: 1.25rem;
  color: #2d8659;
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-accordion-item.faq-active .faq-accordion-icon {
  transform: rotate(180deg);
}

.faq-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-accordion-item.faq-active .faq-accordion-body {
  max-height: 1000px;
}

.faq-accordion-text {
  padding: 0 30px 25px;
}

.faq-accordion-text p {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* Legal Pages (Cookie Policy, Privacy Policy, Terms) */
.legal-page-wrapper {
  background: #ffffff;
  padding: 180px 0 100px;
  min-height: calc(100vh - 80px);
}

.cookie-policy-intro {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 2px solid #e8f5e9;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.legal-page-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a5d3a;
  margin-bottom: 15px;
  line-height: 1.2;
}

.legal-page-date {
  font-size: 1.125rem;
  color: #888;
}

.legal-page-content {
  max-width: 900px;
  margin: 0 auto;
}

.cookie-policy-details {
  max-width: 900px;
  margin: 0 auto;
}

.privacy-policy-intro {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 2px solid #e8f5e9;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.privacy-policy-details {
  max-width: 900px;
  margin: 0 auto;
}

.terms-intro {
  text-align: center;
  margin-bottom: 60px;
  padding-bottom: 30px;
  border-bottom: 2px solid #e8f5e9;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.terms-details {
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  margin-bottom: 50px;
}

.legal-section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a5d3a;
  margin-bottom: 20px;
}

.legal-section-text {
  font-size: 1.125rem;
  line-height: 1.9;
  color: #555;
  margin-bottom: 20px;
}

.legal-subsection {
  margin-bottom: 30px;
}

.legal-subsection-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a5d3a;
  margin-bottom: 15px;
}

.legal-subsection-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 15px;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-list li {
  padding-left: 25px;
  position: relative;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: #666;
}

.legal-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #2d8659;
  font-weight: 700;
  font-size: 1.25rem;
}

.legal-contact-info {
  margin-top: 20px;
}

.legal-contact-info p {
  font-size: 1.0625rem;
  color: #555;
  margin-bottom: 10px;
}

.legal-contact-info a {
  color: #2d8659;
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-contact-info a:hover {
  color: #1a5d3a;
}

.legal-info-box {
  background: #f8faf9;
  padding: 30px;
  border-radius: 16px;
  border: 2px solid #e8f5e9;
  margin-top: 40px;
}

.legal-info-box-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a5d3a;
  margin-bottom: 15px;
}

.legal-info-box-text {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

.legal-info-box-text a {
  color: #2d8659;
  text-decoration: none;
  font-weight: 600;
}

.legal-info-box-text a:hover {
  text-decoration: underline;
}

/* Thanks Page - Completely New Design */
.thanks-page-wrapper {
  background: #ffffff;
  padding: 180px 0;
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
}

.thanks-success-message {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.thanks-icon-circle {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, #1a5d3a 0%, #2d8659 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
}

.thanks-icon-circle i {
  font-size: 3.5rem;
  color: #ffffff;
}

.thanks-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a5d3a;
  margin-bottom: 20px;
}

.thanks-description {
  font-size: 1.25rem;
  color: #666;
  line-height: 1.8;
  margin-bottom: 50px;
}

.thanks-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.thanks-step-card {
  background: #f8faf9;
  padding: 35px 25px;
  border-radius: 16px;
  border: 2px solid #e8f5e9;
  transition: all 0.3s ease;
}

.thanks-step-card:hover {
  border-color: #2d8659;
  box-shadow: 0 8px 25px rgba(26, 93, 58, 0.1);
  transform: translateY(-5px);
}

.thanks-step-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1a5d3a 0%, #2d8659 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.thanks-step-icon i {
  font-size: 1.75rem;
  color: #ffffff;
}

.thanks-step-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a5d3a;
  margin-bottom: 12px;
}

.thanks-step-text {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.thanks-explore-section {
  background: #f8faf9;
  padding: 50px;
  border-radius: 20px;
  margin-bottom: 40px;
  border: 2px solid #e8f5e9;
}

.thanks-cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: #1a5d3a;
  margin-bottom: 30px;
}

.thanks-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.thanks-cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 35px;
  background: linear-gradient(135deg, #1a5d3a 0%, #2d8659 100%);
  color: #ffffff;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.thanks-cta-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(26, 93, 58, 0.25);
}

.thanks-cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 16px 35px;
  background: #ffffff;
  color: #1a5d3a;
  border: 2px solid #1a5d3a;
  border-radius: 12px;
  font-size: 1.125rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.thanks-cta-btn-secondary:hover {
  background: #1a5d3a;
  color: #ffffff;
}

.thanks-contact-box {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  border: 2px solid #e8f5e9;
}

.thanks-contact-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1a5d3a;
  margin-bottom: 12px;
}

.thanks-contact-text {
  font-size: 1.0625rem;
  color: #666;
  margin: 0;
}

.thanks-contact-text a {
  color: #2d8659;
  text-decoration: none;
  font-weight: 600;
}

.thanks-contact-text a:hover {
  text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 991px) {
  .services-page-title,
  .faq-page-title,
  .legal-page-title {
    font-size: 2.75rem;
  }

  .about-main-heading {
    font-size: 2.75rem;
  }

  .contact-main-title {
    font-size: 2.75rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .about-heritage-block {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-purpose-block {
    grid-template-columns: 1fr;
  }

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

  .about-team-legal-block {
    grid-template-columns: 1fr;
  }

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

  .services-list-grid {
    grid-template-columns: 1fr;
  }

  .form-fields-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .services-page-header,
  .faq-page-header {
    padding: 80px 0 50px;
  }

  .about-page-wrapper {
    padding: 160px 0 80px;
  }

  .contact-page-wrapper {
    padding: 60px 0 80px;
  }

  .about-main-heading {
    font-size: 2.5rem;
  }

  .services-page-title,
  .faq-page-title,
  .legal-page-title {
    font-size: 2.5rem;
  }

  .contact-main-title {
    font-size: 2.25rem;
  }

  .about-story-heading {
    font-size: 2rem;
  }

  .values-main-title {
    font-size: 2rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .mission-card,
  .team-info-block,
  .legal-info-block {
    padding: 35px;
  }

  .contact-form-new {
    padding: 35px;
  }

  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .services-list-section,
  .faq-list-section {
    padding: 60px 0;
  }

  .service-item {
    padding: 30px;
  }

  .contact-card {
    padding: 25px 20px;
  }

  .services-cta-title {
    font-size: 2rem;
  }

  .services-cta-buttons {
    flex-direction: column;
  }

  .services-cta-btn-primary,
  .services-cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .services-page-title,
  .faq-page-title,
  .legal-page-title {
    font-size: 2rem;
  }

  .services-action-block {
    padding: 40px 30px;
  }

  .services-cta-actions {
    flex-direction: column;
  }

  .services-cta-button-primary,
  .services-cta-button-secondary {
    width: 100%;
    justify-content: center;
  }

  .thanks-steps-grid {
    grid-template-columns: 1fr;
  }

  .thanks-cta-buttons {
    flex-direction: column;
  }

  .thanks-cta-btn-primary,
  .thanks-cta-btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .about-main-heading {
    font-size: 2rem;
  }

  .about-story-heading {
    font-size: 1.75rem;
  }

  .mission-card-title {
    font-size: 1.5rem;
  }

  .values-main-title {
    font-size: 1.75rem;
  }

  .team-section-title {
    font-size: 1.75rem;
  }

  .contact-main-title {
    font-size: 1.875rem;
  }

  .form-title {
    font-size: 1.75rem;
  }

  .about-heritage-block {
    gap: 30px;
  }

  .mission-card,
  .team-info-block,
  .legal-info-block {
    padding: 25px 20px;
  }

  .value-item {
    padding: 25px 20px;
  }

  .contact-form-new {
    padding: 25px 20px;
  }

  .contact-cards-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 25px 20px;
  }

  .social-icons {
    flex-wrap: wrap;
    gap: 15px;
  }

  .service-item {
    padding: 25px;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-question-text {
    font-size: 1.125rem;
  }

  .faq-answer {
    padding: 0 20px;
  }

  .faq-item.faq-active .faq-answer {
    padding: 0 20px 20px;
  }
}
