/* Fonts */
:root {
  --default-font: "Instrument Sans", system-ui, -apple-system, "Segoe UI", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Instrument Sans", sans-serif;
  --nav-font: "Instrument Sans", sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
--background-color: #f3f7f3;
--default-color: #0f2b1d;
--heading-color: #0c2418;
--accent-color: #16a34a;
--surface-color: #ffffff;
--contrast-color: #ffffff;
--bg-color: #e7f2eb;
--nav-color: #0f2b1d;
--nav-hover-color: #16a34a;
--nav-mobile-background-color: #ffffff;
--nav-dropdown-background-color: #f3f7f3;
--nav-dropdown-color: #0f2b1d;
--nav-dropdown-hover-color: #16a34a;
--light-text: #5f7668;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --transition: all 0.3s ease;
}

/* Color Presets */

.light-background {
  --background-color: #eef1f8;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #0f172a;
  --default-color: #e2e8f0;
  --heading-color: #ffffff;
  --surface-color: #1e293b;
  --contrast-color: #ffffff;
}


/* 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);
  padding-top: 0;
}

body.has-header {
  padding-top: 120px;
}

@media (max-width: 991px) {
  body.has-header {
    padding-top: 80px;
  }
}

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;
  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);
  }
}

/*--------------------------------------------------------------
# Global Header - New Design
--------------------------------------------------------------*/
.header-new {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 999;
  backdrop-filter: blur(16px);
  background: linear-gradient(90deg, rgba(12, 36, 22, 0.92) 0%, rgba(22, 163, 74, 0.9) 100%);
  box-shadow: 0 16px 60px rgba(12, 36, 22, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.header-new.scrolled {
  background: linear-gradient(90deg, rgba(10, 32, 19, 0.98) 0%, rgba(22, 163, 74, 0.94) 100%);
  box-shadow: 0 18px 70px rgba(12, 36, 22, 0.38);
}

/* Top Bar */
.header-top-new {
  background: transparent;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-top-left {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.top-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: var(--transition);
}

.top-link i {
  font-size: 14px;
  color: var(--accent-color);
}

.top-link:hover {
  color: var(--contrast-color);
}

.top-link:hover i {
  transform: scale(1.1);
}

.header-top-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-social-new {
  display: flex;
  align-items: center;
  gap: 15px;
}

.social-link-new {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

/* Main Header */
.header-main-new {
  background: transparent;
  padding: 10px 0 6px;
}

.header-wrapper {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 14px 0;
  position: relative;
}

/* Logo */
.header-logo-new {
  flex-shrink: 0;
}

.logo-link-new {
  text-decoration: none;
  display: inline-block;
}

.logo-container-new {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo-icon-new {
  width: 54px;
  height: 54px;
  background: linear-gradient(145deg, rgba(34, 197, 94, 1) 0%, rgba(147, 51, 234, 0.85) 50%, rgba(59, 130, 246, 0.8) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 26px;
  box-shadow: 0 16px 45px rgba(15, 23, 42, 0.35);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.logo-icon-new::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.5s;
}

.logo-link-new:hover .logo-icon-new::before {
  left: 100%;
}

.logo-link-new:hover .logo-icon-new {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.45);
}

.logo-text-new {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.4px;
}

.logo-tagline-new {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 1.8px;
  font-weight: 600;
  margin-top: 2px;
}

/* Navigation */
.header-nav-new {
  flex: 1;
  display: flex;
  justify-content: center;
  margin: 0 24px;
}

.nav-list-new {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 6px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.nav-link-new {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 12px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.nav-link-new::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.18), rgba(59, 130, 246, 0.15));
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transform: scale(0.96);
}

.nav-link-new:hover,
.nav-link-new.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

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

.nav-link-new span {
  position: relative;
  z-index: 1;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-menu-toggle span {
  width: 26px;
  height: 3px;
  background: #ffffff;
  border-radius: 3px;
  transition: var(--transition);
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

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

/* Mobile Menu */
.mobile-menu-new {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: var(--surface-color);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 1000;
  overflow-y: auto;
}

.mobile-menu-new.active {
  right: 0;
}

.mobile-menu-content {
  padding: 100px 30px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-nav-new {
  flex: 1;
}

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

.mobile-nav-list li {
  margin-bottom: 5px;
}

.mobile-nav-link {
  display: block;
  padding: 15px 20px;
  color: var(--nav-color);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 10px;
  transition: var(--transition);
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(34, 197, 94, 0.1);
  color: var(--accent-color);
  padding-left: 25px;
}

.mobile-menu-footer {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(34, 197, 94, 0.1);
}

.mobile-social {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.mobile-social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 18px;
  text-decoration: none;
  transition: var(--transition);
}

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

/* Mobile Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
}

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

/* Responsive */
@media (max-width: 1200px) {
  .header-nav-new {
    margin: 0 20px;
  }
  
  .nav-link-new {
    padding: 10px 15px;
    font-size: 14px;
  }
  
  .logo-icon-new {
    width: 50px;
    height: 50px;
    font-size: 24px;
  }
  
  .logo-name {
    font-size: 24px;
  }
  
  .btn-header-cta {
    padding: 12px 24px;
    font-size: 14px;
  }
}

@media (max-width: 991px) {
  .header-top-new {
    display: none;
  }
  
  .header-nav-new {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .header-wrapper {
    padding: 15px 0;
  }
  
  .logo-icon-new {
    width: 45px;
    height: 45px;
    font-size: 22px;
  }
  
  .logo-name {
    font-size: 22px;
  }
  
  .logo-tagline-new {
    font-size: 10px;
  }
}

@media (max-width: 768px) {
  .header-wrapper {
    padding: 12px 0;
  }
  
  .logo-container-new {
    gap: 12px;
  }
  
  .logo-icon-new {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
  
  .logo-name {
    font-size: 20px;
  }
  
  .logo-tagline-new {
    font-size: 9px;
  }
}

/*--------------------------------------------------------------
# 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: 8px 11px;
    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 a {
    border: none;
    border-radius: 0;
    margin: 0 0.5rem;
    position: relative;
    padding: 10px 15px;
  }

  .navmenu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: 0.3s;
  }

  .navmenu li:hover>a::after,
  .navmenu .active::after {
    width: 80%;
  }

  .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;

    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;

    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;

    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;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #e5e7eb;
  background: linear-gradient(135deg, #0b1020, #0f172a);
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.footer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(34, 197, 94, 0.08), rgba(15, 23, 42, 0.9));
  pointer-events: none;
}

.footer * {
  color: #e5e7eb;
}

.footer h3 {
  color: #f8fafc;
}

.footer p {
  color: #cbd5e1;
}

.footer-main {
  position: relative;
  padding: 70px 0 50px;
  z-index: 1;
}

.footer-main .row.gy-5 {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-widget {
  flex: 1 1 320px;
  min-width: 260px;
  padding: 22px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.18);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.footer-logo .logo-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(145deg, rgba(34, 197, 94, 1), rgba(59, 130, 246, 0.85));
  border-radius: 14px;
  color: #ffffff;
  font-size: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.4);
}

.footer-logo h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.footer-widget p {
  line-height: 1.7;
  margin-bottom: 18px;
}

.widget-title {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: #f8fafc;
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.widget-title::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.2);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}

.footer-links a i {
  font-size: 14px;
  opacity: 0.7;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-links a:hover i {
  opacity: 1;
  color: var(--accent-color);
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: 0.25s;
  text-decoration: none;
}

.social-link:hover {
  background: linear-gradient(135deg, var(--accent-color), rgba(59, 130, 246, 0.9));
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
}

.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact i {
  font-size: 18px;
  color: var(--accent-color);
  margin-top: 3px;
}

.footer-contact span,
.footer-contact a {
  color: #cbd5e1;
  line-height: 1.6;
  text-decoration: none;
}

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

.footer-bottom {
  position: relative;
  z-index: 1;
  background: rgba(10, 15, 32, 0.8);
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
}

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

.footer-bottom .col-md-6 {
  flex: 1 1 260px;
}

.footer-bottom p {
  color: #e5e7eb;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-legal-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 13px;
  transition: 0.2s;
}

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

.footer-legal-links .separator {
  color: rgba(255, 255, 255, 0.35);
}

@media (max-width: 991px) {
  .footer-grid {
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 50px 0 40px;
  }
  
  .footer-widget {
    padding: 16px;
  }
  
  .footer-legal-links {
    justify-content: center;
    margin-top: 12px;
  }
  
  .footer-bottom .row > div {
    text-align: center;
  }
}

/* Dark theme for policy pages main content */
.policy-page .about.section {
  background-color: #1a1a1a;
  color: #ffffff;
}

.policy-page .about.section h2,
.policy-page .about.section h3,
.policy-page .about.section h4,
.policy-page .about.section h5,
.policy-page .about.section h6 {
  color: #ffffff;
}

.policy-page .about.section p {
  color: #e0e0e0;
}

.policy-page .about.section .section-title h2 {
  color: #ffffff;
}

.policy-page .about.section .section-title p {
  color: #e0e0e0;
}

.policy-page .about.section .content h3 {
  color: #ffffff;
  border-bottom: 2px solid #3b82f6;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.policy-page .about.section .content p {
  color: #e0e0e0;
  line-height: 1.6;
  margin-bottom: 15px;
}

.policy-page .about.section .content ul {
  color: #e0e0e0;
}

.policy-page .about.section .content li {
  color: #e0e0e0;
  margin-bottom: 8px;
}

/* Ensure footer stays white on policy pages */
.policy-page .footer {
  color: #ffffff !important;
  background-color: var(--heading-color);
}

.policy-page .footer * {
  color: #ffffff !important;
}

.policy-page .footer h3,
.policy-page .footer h4 {
  color: #ffffff !important;
}

.policy-page .footer p {
  color: #ffffff !important;
}

.policy-page .footer a {
  color: #ffffff !important;
}

.policy-page .footer .footer-links ul a {
  color: #ffffff !important;
}

/*--------------------------------------------------------------
# Custom Overrides - Courses & Techniques Refresh
--------------------------------------------------------------*/
.courses-overview {
  padding: 120px 0;
  background: radial-gradient(circle at 20% 10%, rgba(34, 197, 94, 0.25), transparent 32%), radial-gradient(circle at 80% 0%, rgba(59, 130, 246, 0.25), transparent 30%), #0b1020;
  position: relative;
  overflow: hidden;
}

.courses-overview::before,
.courses-overview::after {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.28;
  pointer-events: none;
}

.courses-overview::before {
  top: -200px;
  left: -150px;
  background: rgba(34, 197, 94, 0.55);
}

.courses-overview::after {
  bottom: -240px;
  right: -180px;
  background: rgba(59, 130, 246, 0.5);
}

.courses-header {
  position: relative;
  z-index: 1;
  text-align: center;
}

.courses-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.courses-title {
  font-size: 2.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.25;
}

.courses-subtitle {
  font-size: 1.05rem;
  color: #cbd5e1;
  max-width: 780px;
  margin: 0 auto;
  line-height: 1.65;
}

.courses-path {
  margin-top: 50px;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

.courses-phase {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 48px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(8px);
}

.phase-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.phase-header {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 4px;
}

.phase-number {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.phase-icon {
  width: 52px;
  height: 52px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.phase-title-section h3 {
  font-size: 19px;
  font-weight: 800;
  margin: 0 0 4px 0;
  color: #ffffff;
}

.phase-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: #cbd5e1;
  font-size: 13px;
}

.phase-description {
  color: #e2e8f0;
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 12px;
}

.phase-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.skill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.07);
  color: #e2e8f0;
  border-radius: 12px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.courses-phase-final .phase-cta {
  margin-top: 10px;
}

.btn-courses-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  color: #ffffff;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  transition: var(--transition);
}

.btn-courses-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}

/* Techniques refresh */
.techniques-section {
  padding: 110px 0;
  background: #f8fafc;
  position: relative;
}

.techniques-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 15% 20%, rgba(34, 197, 94, 0.08), transparent 32%), radial-gradient(circle at 85% 15%, rgba(59, 130, 246, 0.08), transparent 30%);
  pointer-events: none;
}

.techniques-grid-details {
  margin-bottom: 50px;
}

.techniques-grid-details .row.g-4 {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.techniques-grid-details .row.g-4 > div {
  flex: 1 1 360px;
  min-width: 320px;
  max-width: 100%;
}

.feature-detail-card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(15, 23, 42, 0.06);
  transition: var(--transition);
}

.feature-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.12);
  border-color: rgba(34, 197, 94, 0.18);
}

.feature-detail-image {
  height: 220px;
}

.feature-detail-overlay {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.85), rgba(59, 130, 246, 0.85));
}

.feature-detail-content {
  padding: 26px;
}

.feature-detail-badge {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  color: var(--accent-color);
  padding: 8px 14px;
  border-radius: 14px;
  font-size: 12px;
  font-weight: 700;
}

.feature-detail-title {
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 12px;
}

.feature-detail-description {
  font-size: 15px;
  line-height: 1.65;
  color: #475569;
  margin-bottom: 18px;
}

.feature-detail-stats {
  padding: 16px 0;
  gap: 18px;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.feature-detail-stats .stat-number {
  color: var(--accent-color);
}

.feature-detail-link {
  color: var(--accent-color);
  font-weight: 700;
}

.cta-section-modern {
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  border-radius: 20px;
  padding: 48px 34px;
  color: #ffffff;
  box-shadow: 0 16px 48px rgba(34, 197, 94, 0.3);
}

.policy-page .footer .footer-links ul a:hover {
  color: var(--accent-color) !important;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  ;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 4px;
  width: 100%;
  background-color: var(--surface-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type=email]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  ;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-size: 16px;
  color: #ffffff;
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background-color: rgba(255, 255, 255, 0.1);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
  color: #ffffff;
}

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

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

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: #ffffff;
}

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

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: #ffffff;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-about a {
  color: #ffffff;
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
  color: #ffffff;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
  color: #ffffff;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
  color: #ffffff;
}

/*--------------------------------------------------------------
# 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;
  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;
  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-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.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 {
  color: var(--contrast-color);
  background-color: #ffffff;
  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 - Modern Design
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Hero Section - New Design
--------------------------------------------------------------*/
.welcome-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--heading-color) 0%, #2d1b0e 100%);
  padding: 100px 0;
}

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

.welcome-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(110, 231, 183, 0.1) 0%, transparent 50%);
  opacity: 0.5;
}

.welcome-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  animation: floatShape 20s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: -150px;
  right: -150px;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  bottom: -100px;
  left: -100px;
  animation-delay: 5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  top: 50%;
  right: 10%;
  animation-delay: 10s;
}

@keyframes floatShape {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-30px, 30px) rotate(240deg); }
}

.min-vh-90 {
  min-height: 90vh;
}

.welcome-content-new {
  position: relative;
  z-index: 2;
  color: var(--contrast-color);
}

.welcome-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  color: var(--contrast-color);
}

.hero-badge-new i {
  font-size: 18px;
  color: var(--accent-color);
}

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

.title-highlight {
  background: linear-gradient(135deg, #22c55e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.welcome-description-new {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 90%;
}

.welcome-stats-new {
  display: flex;
  gap: 40px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.welcome-stat-item {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 15px;
}

.stat-icon-welcome {
  width: 50px;
  height: 50px;
  min-width: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--contrast-color);
  background: linear-gradient(45deg, var(--accent-color), #ff8c00);
  transition: var(--transition);
}

.welcome-stat-item:hover .stat-icon-welcome {
  transform: scale(1.1);
}

.stat-text-welcome {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  line-height: 1.4;
}

.welcome-actions-new {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-welcome-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  color: var(--contrast-color);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
  color: var(--contrast-color);
}

.btn-hero-primary i {
  transition: var(--transition);
}

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

.btn-welcome-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--contrast-color);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  color: var(--contrast-color);
}

.welcome-visual-new {
  position: relative;
  z-index: 2;
}

.welcome-image-wrapper-new {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.hero-image-main {
  position: relative;
  overflow: hidden;
}

.hero-image-main img {
  width: 100%;
  height: auto;
  display: block;
  transition: var(--transition);
}

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

.hero-image-decoration {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  border-radius: 50%;
  opacity: 0.2;
  z-index: -1;
}

.welcome-floating-element {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 10;
  animation: floatElement 3s ease-in-out infinite;
}

.element-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.element-2 {
  bottom: 20%;
  left: -10%;
  animation-delay: 1s;
}

.element-3 {
  top: 50%;
  right: -5%;
  animation-delay: 2s;
}

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

.element-icon-box {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.element-icon-box i {
  font-size: 24px;
  color: var(--contrast-color);
}

.element-text-box {
  display: flex;
  flex-direction: column;
}

.element-text-box strong {
  font-size: 16px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 3px;
}

.element-text-box span {
  font-size: 13px;
  color: var(--light-text);
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.btn-primary-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.btn-primary-modern:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(255, 107, 107, 0.4);
  color: white;
}

.btn-outline-modern {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: white;
  padding: 16px 32px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-outline-modern:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: white;
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-primary-modern:hover .btn-ripple {
  width: 300px;
  height: 300px;
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}

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

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #ffd700;
  line-height: 1;
  margin-bottom: 8px;
}

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

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-image-container {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.hero-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(102, 126, 234, 0.3), rgba(118, 75, 162, 0.3));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.hero-image-wrapper:hover .image-overlay {
  opacity: 1;
}

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

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 160px;
  animation: floatCard 6s ease-in-out infinite;
}

.floating-card.card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

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

.floating-card.card-3 {
  bottom: 30%;
  right: -10%;
  animation-delay: 3s;
}

.floating-card.card-4 {
  bottom: 10%;
  left: -15%;
  animation-delay: 4.5s;
}

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

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: white;
}

.card-1 .card-icon { background: linear-gradient(45deg, #ff6b6b, #ee5a24); }
.card-2 .card-icon { background: linear-gradient(45deg, #4ecdc4, #44a08d); }
.card-3 .card-icon { background: linear-gradient(45deg, #45b7d1, #96c93d); }
.card-4 .card-icon { background: linear-gradient(45deg, #f093fb, #f5576c); }

.card-content h4 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: #333;
}

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-stats {
    gap: 24px;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .floating-card {
    position: static;
    margin: 16px auto;
    max-width: 200px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
}

.about .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.2px;
  padding: 12px 32px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

.about .read-more i {
  font-size: 18px;
  margin-left: 8px;
  line-height: 0;
  transition: transform 0.3s ease;
}

.about .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.about .read-more:hover i {
  transform: translateX(6px);
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
#features {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Features Section - New Design
--------------------------------------------------------------*/
.benefits {
  padding: 100px 0;
  background: var(--surface-color);
}

.benefits-header {
  margin-bottom: 60px;
}

.benefits-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 25px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 50px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.features-badge i {
  font-size: 18px;
}

.benefits-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.benefits-subtitle {
  font-size: 1.15rem;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.benefits-grid {
  margin-top: 50px;
}

.feature-card-new {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  border: 2px solid rgba(34, 197, 94, 0.1);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), #22c55e);
  transform: scaleX(0);
  transition: var(--transition);
}

.feature-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(34, 197, 94, 0.15);
  border-color: var(--accent-color);
}

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

.feature-card-highlight {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(110, 231, 183, 0.05));
  border-color: var(--accent-color);
}

.feature-icon-wrapper {
  position: relative;
  margin-bottom: 25px;
  display: inline-block;
}

.feature-icon-bg {
  position: absolute;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(110, 231, 183, 0.1));
  border-radius: 20px;
  transform: rotate(-5deg);
  transition: var(--transition);
}

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

.feature-icon {
  position: relative;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--contrast-color);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
  transition: var(--transition);
  z-index: 1;
}

.feature-card-new:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
}

.feature-title-new {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.feature-description-new {
  font-size: 15px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 25px;
}

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

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 14px;
  color: var(--default-color);
}

.feature-list li i {
  color: var(--accent-color);
  font-size: 16px;
  flex-shrink: 0;
}

/*--------------------------------------------------------------
# Feature Details Section - New Design
--------------------------------------------------------------*/
.feature-details-section {
  padding: 120px 0;
  background: var(--bg-color);
  position: relative;
  overflow: hidden;
}

.feature-details-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 30%, rgba(34, 197, 94, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(110, 231, 183, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.section-header-modern {
  text-align: center;
  margin-bottom: 80px;
}

.section-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  color: var(--contrast-color);
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  box-shadow: 0 8px 25px rgba(34, 197, 94, 0.3);
}

.section-badge-modern .badge-icon {
  font-size: 16px;
}

.section-title-modern {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--heading-color);
}

.gradient-text {
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-description-modern {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--light-text);
  max-width: 800px;
  margin: 0 auto;
}

.techniques-grid-details {
  margin-bottom: 60px;
}

.feature-detail-card {
  background: var(--surface-color);
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
  height: 100%;
  border: 2px solid transparent;
}

.feature-detail-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.3);
}

.feature-detail-featured {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.05), rgba(110, 231, 183, 0.05));
  border-color: var(--accent-color);
}

.feature-detail-image {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.feature-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.feature-detail-card:hover .feature-detail-image img {
  transform: scale(1.1);
}

.feature-detail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.8), rgba(110, 231, 183, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

.feature-detail-card:hover .feature-detail-overlay {
  opacity: 1;
}

.overlay-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--contrast-color);
}

.feature-detail-content {
  padding: 35px;
}

.feature-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.feature-detail-badge i {
  font-size: 14px;
}

.feature-detail-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  line-height: 1.3;
}

.feature-detail-description {
  font-size: 15px;
  line-height: 1.7;
  color: var(--default-color);
  margin-bottom: 25px;
}

.feature-detail-stats {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px 0;
  border-top: 1px solid rgba(34, 197, 94, 0.1);
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

.feature-detail-stats .stat {
  text-align: center;
  flex: 1;
}

.feature-detail-stats .stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  line-height: 1;
  margin-bottom: 5px;
}

.feature-detail-stats .stat-label {
  font-size: 12px;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-detail-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.feature-detail-link:hover {
  gap: 15px;
  color: var(--heading-color);
}

.feature-detail-link i {
  transition: var(--transition);
}

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

.feature-card-modern {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(45deg, #667eea, #764ba2);
}

.feature-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.feature-card-header {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.feature-image-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.feature-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.feature-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card-modern:hover .feature-overlay {
  opacity: 1;
}

.feature-card-modern:hover .feature-image {
  transform: scale(1.1);
}

.feature-overlay .feature-icon {
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  backdrop-filter: blur(10px);
}

.feature-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  color: #667eea;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-badge i {
  font-size: 14px;
}

.feature-card-body {
  padding: 32px;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #2c3e50;
  line-height: 1.3;
}

.feature-description {
  font-size: 1rem;
  line-height: 1.6;
  color: #6c757d;
  margin-bottom: 24px;
}

.feature-benefits {
  margin-bottom: 32px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 8px 0;
}

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

.benefit-icon {
  width: 20px;
  height: 20px;
  background: linear-gradient(45deg, #28a745, #20c997);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: white;
  flex-shrink: 0;
}

.benefit-item span {
  font-size: 14px;
  color: #495057;
  font-weight: 500;
}

.feature-card-footer {
  padding: 0 32px 32px;
}

.btn-feature {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(45deg, #667eea, #764ba2);
  color: white;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.3);
}

.btn-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
  color: white;
}

.btn-feature .btn-icon {
  transition: transform 0.3s ease;
}

.btn-feature:hover .btn-icon {
  transform: translateX(4px);
}

.cta-section-modern {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

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

.cta-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-description {
  font-size: 1.25rem;
  margin-bottom: 32px;
  opacity: 0.95;
}

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

@media (max-width: 768px) {
  .feature-details-section {
    padding: 60px 0;
  }
  
  .section-title-modern {
    font-size: 2.2rem;
  }
  
  .section-description-modern {
    font-size: 1.1rem;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 60px;
  }
  
  .feature-card-body {
    padding: 24px;
  }
  
  .feature-card-footer {
    padding: 0 24px 24px;
  }
  
  .cta-section-modern {
    padding: 40px 20px;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

/* Styles pour le bloc Témoignages */
/*--------------------------------------------------------------
# Testimonials Section - New Design
--------------------------------------------------------------*/
.testimonials {
  padding: 120px 0;
  background: var(--bg-color);
}

.reviews-header {
  margin-bottom: 60px;
}

.reviews-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 25px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 50px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.testimonials-badge i {
  font-size: 18px;
}

.reviews-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.reviews-subtitle {
  font-size: 1.15rem;
  color: var(--light-text);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.testimonial-card-new {
  background: var(--surface-color);
  border-radius: 25px;
  padding: 40px 35px;
  height: 100%;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid rgba(34, 197, 94, 0.1);
  transition: var(--transition);
  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), #22c55e);
  transform: scaleX(0);
  transition: var(--transition);
}

.testimonial-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.15);
  border-color: var(--accent-color);
}

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

.testimonial-quote-icon {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 60px;
  color: rgba(34, 197, 94, 0.1);
  line-height: 1;
  z-index: 0;
}

.testimonial-rating-new {
  display: flex;
  gap: 5px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.testimonial-rating-new i {
  font-size: 18px;
  color: #ffd700;
}

.testimonial-text-new {
  font-size: 16px;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  font-style: italic;
}

.testimonial-author-new {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 1;
}

.author-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent-color);
  flex-shrink: 0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.author-role {
  font-size: 14px;
  color: var(--light-text);
  margin: 0;
}

.testimonials-section {
  padding: 100px 0;
  background-color: white;
  position: relative;
}

.testimonial-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.testimonial-card {
  background-color: var(--background-color);
  padding: 40px 30px;
  box-shadow: var(--shadow);
  position: relative;
  transition: var(--transition);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--contrast-color);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-img {
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid var(--accent-color);
}

.testimonial-author-name {
  font-weight: 600;
  margin-bottom: 3px;
}

.testimonial-author-title {
  font-size: 0.9rem;
  opacity: 0.7;
}

.testimonial-rating {
  display: flex;
  margin-bottom: 15px;
}

.rating-star {
  color: var(--default-color);
  margin-right: 3px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {

  .pricing-section,
  .testimonials-section {
    padding: 70px 0;
  }

  .pricing-card.featured {
    transform: scale(1);
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 767.98px) {
  .pricing-price {
    font-size: 2rem;
  }

  .pricing-title {
    font-size: 1.3rem;
  }

  .testimonial-card {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Culinary Journey Section
--------------------------------------------------------------*/
.courses-overview {
  padding: 120px 0;
  position: relative;
  background: var(--bg-color);
}

.courses-header {
  margin-bottom: 80px;
}

.courses-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 25px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 50px;
  color: var(--accent-color);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
}

.journey-badge i {
  font-size: 18px;
}

.courses-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.courses-path {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.courses-phase {
  margin-bottom: 50px;
  position: relative;
}

.journey-phase::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 100px;
  bottom: -50px;
  width: 2px;
  background: linear-gradient(180deg, var(--accent-color), transparent);
  z-index: 0;
}

.journey-phase:last-child::before {
  display: none;
}

.phase-content {
  background: var(--surface-color);
  border-radius: 25px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: var(--transition);
  position: relative;
  z-index: 1;
  margin-left: 80px;
}

.journey-phase:hover .phase-content {
  transform: translateX(10px);
  box-shadow: 0 20px 60px rgba(34, 197, 94, 0.15);
  border-color: rgba(34, 197, 94, 0.3);
}

.journey-phase-final .phase-content {
  background: linear-gradient(135deg, var(--heading-color), #0f172a);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.phase-header {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  margin-bottom: 25px;
}

.phase-number {
  position: absolute;
  left: -80px;
  top: 0;
  font-size: 4rem;
  font-weight: 700;
  color: rgba(34, 197, 94, 0.15);
  line-height: 1;
  font-family: var(--heading-font);
}

.phase-icon-wrapper {
  flex-shrink: 0;
}

.phase-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
  transition: var(--transition);
}

.journey-phase:hover .phase-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
}

.journey-phase-final .phase-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.phase-icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

.phase-title-section {
  flex: 1;
}

.phase-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 12px;
  line-height: 1.2;
}

.journey-phase-final .phase-title {
  color: var(--contrast-color);
}

.phase-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.phase-duration,
.phase-level {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 15px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-color);
}

.journey-phase-final .phase-duration,
.journey-phase-final .phase-level {
  background: rgba(255, 255, 255, 0.2);
  color: var(--contrast-color);
}

.phase-duration i {
  font-size: 14px;
}

.phase-body {
  margin-top: 20px;
}

.phase-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 25px;
}

.journey-phase-final .phase-description {
  color: rgba(255, 255, 255, 0.9);
}

.phase-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}

.skill-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  color: var(--default-color);
  transition: var(--transition);
}

.skill-tag:hover {
  background: rgba(34, 197, 94, 0.15);
  border-color: var(--accent-color);
  transform: translateY(-2px);
}

.journey-phase-final .skill-tag {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--contrast-color);
}

.skill-tag i {
  font-size: 16px;
  color: var(--accent-color);
}

.journey-phase-final .skill-tag i {
  color: var(--contrast-color);
}

.phase-cta {
  margin-top: 30px;
}

.btn-courses-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 30px;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  color: var(--contrast-color);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.btn-journey-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
  color: var(--contrast-color);
}

.btn-journey-cta i {
  transition: var(--transition);
}

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

.journey-timeline {
  position: relative;
}

.journey-step {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.journey-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--accent-color), #22c55e);
  opacity: 0;
  transition: var(--transition);
}

.journey-step:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(34, 197, 94, 0.2);
  border-color: var(--accent-color);
}

.journey-step:hover::before {
  opacity: 1;
}

.journey-step-featured {
  background: linear-gradient(135deg, var(--heading-color), #0f172a);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.journey-step-featured::before {
  opacity: 1;
}

.step-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 700;
  color: rgba(34, 197, 94, 0.1);
  line-height: 1;
  font-family: var(--heading-font);
}

.journey-step-featured .step-number {
  color: rgba(255, 255, 255, 0.1);
}

.step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: var(--transition);
  box-shadow: 0 5px 20px rgba(34, 197, 94, 0.3);
}

.journey-step:hover .step-icon {
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

.journey-step-featured .step-icon {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.step-icon i {
  font-size: 36px;
  color: var(--contrast-color);
}

.step-content h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.journey-step-featured .step-content h3 {
  color: var(--contrast-color);
}

.step-content p {
  color: var(--default-color);
  margin-bottom: 20px;
  line-height: 1.7;
}

.journey-step-featured .step-content p {
  color: rgba(255, 255, 255, 0.9);
}

.step-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.step-features li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  color: var(--default-color);
  font-size: 15px;
}

.journey-step-featured .step-features li {
  color: rgba(255, 255, 255, 0.9);
}

.step-features li i {
  color: var(--accent-color);
  margin-right: 12px;
  font-size: 18px;
  flex-shrink: 0;
}

.journey-step-featured .step-features li i {
  color: var(--contrast-color);
}

.step-duration {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  margin-top: 10px;
}

.journey-step-featured .step-duration {
  background: rgba(255, 255, 255, 0.2);
  color: var(--contrast-color);
}

.step-duration i {
  font-size: 16px;
}

/* Journey CTA Card */
.journey-cta-card {
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  color: var(--contrast-color);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.3);
  transition: var(--transition);
}

.journey-cta-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(34, 197, 94, 0.4);
}

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

.cta-icon i {
  font-size: 40px;
  color: var(--contrast-color);
}

.journey-cta-card h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--contrast-color);
}

.journey-cta-card p {
  font-size: 16px;
  margin-bottom: 25px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.journey-cta-card .btn {
  background: var(--contrast-color);
  color: var(--accent-color);
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  margin-bottom: 25px;
}

.journey-cta-card .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background: var(--heading-color);
  color: var(--contrast-color);
}

.cta-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

.benefit-item i {
  font-size: 18px;
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Pricing Section (Legacy - can be removed)
--------------------------------------------------------------*/
.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: 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);
}

.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%);
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--surface-color);
  border-radius: 15px;
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.faq-question {
  padding: 25px 30px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  background: linear-gradient(135deg, var(--surface-color), rgba(59, 130, 246, 0.02));
}

.faq-question:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.1));
}

.faq-question h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  color: var(--heading-color);
  transition: var(--transition);
}

.faq-question:hover h3 {
  color: var(--accent-color);
}

.faq-toggle {
  font-size: 20px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--surface-color);
}

.faq-answer p {
  margin-bottom: 15px;
  color: var(--default-color);
  line-height: 1.6;
}

.faq-answer ul {
  margin: 0 0 15px 0;
  padding-left: 0;
  list-style: none;
}

.faq-answer ul li {
  margin-bottom: 8px;
  color: var(--default-color);
  position: relative;
  padding-left: 20px;
}

.faq-answer ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

.faq-answer strong {
  color: var(--heading-color);
  font-weight: 600;
}

.faq-item.active .faq-question {
  background: linear-gradient(135deg, var(--accent-color), #1d4ed8);
  color: var(--contrast-color);
}

.faq-item.active .faq-question h3 {
  color: var(--contrast-color);
}

.faq-item.active .faq-toggle {
  background: rgba(255, 255, 255, 0.2);
  color: var(--contrast-color);
}

.faq-item.active .faq-answer {
  padding: 0 30px 30px 30px;
}

/* Comparison Grid for FAQ Item 5 */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 20px;
}

.comparison-item {
  background: rgba(59, 130, 246, 0.05);
  padding: 20px;
  border-radius: 10px;
  border: 1px solid rgba(59, 130, 246, 0.1);
}

.comparison-item h4 {
  color: var(--accent-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
}

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

.comparison-item ul li {
  padding: 8px 0;
  color: var(--default-color);
  position: relative;
  padding-left: 20px;
}

.comparison-item ul li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-question {
    padding: 20px;
  }
  
  .faq-question h3 {
    font-size: 18px;
  }
  
  .faq-item.active .faq-answer {
    padding: 0 20px 20px 20px;
  }
  
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact-info-card {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(59, 130, 246, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-color), #1d4ed8);
}

.contact-info-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--accent-color);
}

.contact-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), #1d4ed8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: var(--transition);
}

.contact-info-card:hover .contact-icon {
  transform: scale(1.1);
}

.contact-icon i {
  font-size: 35px;
  color: var(--contrast-color);
}

.contact-content h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
}

.contact-content p {
  color: var(--default-color);
  margin-bottom: 20px;
  line-height: 1.6;
}

.contact-link {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition);
  display: inline-block;
  padding: 10px 20px;
  border: 2px solid var(--accent-color);
  border-radius: 25px;
  background: transparent;
}

.contact-link:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-container {
  background: var(--surface-color);
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(59, 130, 246, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(135deg, var(--accent-color), #1d4ed8);
}

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

.form-header h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
}

.form-header p {
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

.modern-contact-form .form-group {
  margin-bottom: 25px;
}

.modern-contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--heading-color);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.modern-contact-form .form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  font-size: 16px;
  transition: var(--transition);
  background: var(--surface-color);
  color: var(--default-color);
}

.modern-contact-form .form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.modern-contact-form .form-control::placeholder {
  color: var(--light-text);
}

.modern-contact-form select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
}

.modern-contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

/* Checkbox Styling */
.checkbox-group {
  margin-top: 20px;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  cursor: pointer;
  font-size: 14px;
  line-height: 1.5;
  color: var(--default-color);
}

.checkbox-label input[type="checkbox"] {
  display: none;
}

.checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: 4px;
  margin-right: 12px;
  margin-top: 2px;
  flex-shrink: 0;
  position: relative;
  transition: var(--transition);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
  background: var(--accent-color);
  border-color: var(--accent-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}

.checkbox-label a {
  color: var(--accent-color);
  text-decoration: none;
}

.checkbox-label a:hover {
  text-decoration: underline;
}

/* Form Messages */
.form-messages {
  margin-bottom: 30px;
}

.form-messages .loading,
.form-messages .error-message,
.form-messages .sent-message {
  display: none;
  padding: 15px 20px;
  border-radius: 10px;
  margin-bottom: 20px;
  font-weight: 600;
}

.form-messages .loading {
  background: rgba(59, 130, 246, 0.1);
  color: var(--accent-color);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.form-messages .error-message {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.form-messages .sent-message {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

/* Submit Button */
.modern-contact-form .btn {
  background: linear-gradient(135deg, var(--accent-color), #1d4ed8);
  border: none;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--contrast-color);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.modern-contact-form .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #1d4ed8, var(--accent-color));
}

/* Contact CTA */
.contact-cta {
  background: linear-gradient(135deg, var(--heading-color), var(--default-color));
  padding: 60px 40px;
  border-radius: 20px;
  text-align: center;
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

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

.cta-content h3 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--contrast-color);
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

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

.cta-buttons .btn {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

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

.cta-buttons .btn-outline-primary:hover {
  background: var(--contrast-color);
  color: var(--heading-color);
  transform: translateY(-3px);
}

.cta-buttons .btn-outline-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: var(--contrast-color);
}

.cta-buttons .btn-outline-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--contrast-color);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-form-container {
    padding: 30px 20px;
  }
  
  .form-header h3 {
    font-size: 24px;
  }
  
  .contact-info-card {
    padding: 30px 20px;
  }
  
  .contact-cta {
    padding: 40px 20px;
  }
  
  .cta-content h3 {
    font-size: 24px;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/

#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  transform: translateX(-50%);
  background: var(--surface-color);
  color: var(--default-color);
  border: 1px solid var(--accent-color);
  padding: 20px;
  font-family: "Cossette Texte", sans-serif;
  box-shadow: var(--shadow);
  font-size: 14px;
  max-width: 400px;
  z-index: 1000;
  display: none;
  opacity: 0;
  /* Start invisible */
  transform: translateY(30px);
  /* Slide up effect */
  transition: opacity 0.4s ease, transform 0.4s ease;
}

#cookie-popup.show {
  opacity: 1;
  transform: translateY(0);
}

#cookie-popup p {
  margin: 0;
  padding: 0;
}

#cookie-popup .popup-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cookie-popup button {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-family: "Cossette Texte", sans-serif;
  transition: background-color 0.3s ease;
}

#cookie-popup button:hover {
  background: var(--accent-color);
}

#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: var(--accent-color);
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--light);
}

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

.about_elem {
  margin-bottom: 2rem;
}


.swiper-slide {
  opacity: 0.4;
  transform: scale(0.92);
  transition: all 0.3s ease-in-out;
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.swiper-pagination-bullet {
  background-color: #888;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: rgba(255, 255, 255, 0.0);
  border: 1px solid var(--bg-color);
  color: var(--accent-color);
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--bg-color);
  color: var(--accent-color);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
}

.swiper-pagination {
  position: absolute;
  bottom: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #999;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

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

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

.swiper-pagination.hidden {
  display: none;
}

.swiper-pagination .swiper-pagination-button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.swiper-pagination .swiper-pagination-button-prev,
.swiper-pagination .swiper-pagination-button-next {
  font-size: 20px;
  color: var(--accent-color);
  transition: color 0.3s ease;
}

.swiper-pagination .swiper-pagination-button-prev:hover,
.swiper-pagination .swiper-pagination-button-next:hover {
  color: var(--accent-color);
}

.testimonial-img {
  width: 100%;
  max-width: 250px;
  max-height: 250px;
  height: 250px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

/*--------------------------------------------------------------
# Growth Section
--------------------------------------------------------------*/
.learning-path {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.learning-path-background {
  background: linear-gradient(135deg, #0f172a 0%, #2d1b0e 50%, #0f172a 100%);
  background-size: 200% 200%;
  animation: gradientShift 15s ease infinite;
  position: relative;
  padding: 100px 0;
}

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

.growth-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(110, 231, 183, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.min-vh-75 {
  min-height: 75vh;
}

.learning-path-content {
  position: relative;
  z-index: 2;
  color: var(--contrast-color);
}

.learning-path-subtitle {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.subtitle-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
}

.subtitle-text {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.8);
}

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

.title-gradient {
  background: linear-gradient(135deg, #22c55e, #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.learning-path-description {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  max-width: 90%;
}

.learning-path-features {
  margin-bottom: 40px;
}

.feature-row {
  display: flex;
  gap: 20px;
  margin-bottom: 15px;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.feature-box:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(5px);
}

.feature-icon {
  color: var(--accent-color);
  font-size: 18px;
}

.feature-box span {
  font-size: 15px;
  font-weight: 500;
  color: var(--contrast-color);
}

.learning-path-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  color: var(--contrast-color);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.btn-primary-custom:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
  color: var(--contrast-color);
}

.btn-primary-custom i {
  transition: var(--transition);
}

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

.btn-secondary-custom {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 35px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: var(--contrast-color);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
}

.btn-secondary-custom:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  color: var(--contrast-color);
}

/* Stats Grid */
.learning-path-stats-wrapper {
  position: relative;
  z-index: 2;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), transparent);
  opacity: 0;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card-1 { animation-delay: 0s; }
.stat-card-2 { animation-delay: 0.1s; }
.stat-card-3 { animation-delay: 0.2s; }
.stat-card-4 { animation-delay: 0.3s; }

.stat-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 5px 20px rgba(34, 197, 94, 0.3);
}

.stat-icon i {
  font-size: 28px;
  color: var(--contrast-color);
}

.stat-info {
  position: relative;
  z-index: 1;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--contrast-color);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}

.stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* Testimonial */
.learning-path-testimonial {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 25px;
  padding: 35px;
  position: relative;
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 60px;
  color: rgba(255, 255, 255, 0.1);
  line-height: 1;
}

.testimonial-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 25px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.testimonial-author strong {
  color: var(--contrast-color);
  font-size: 16px;
  font-weight: 600;
}

.testimonial-author span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

.growth::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.learning-path-content {
  position: relative;
  z-index: 1;
}

/* Growth Badge */
.growth-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(59, 130, 246, 0.2);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 30px;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.growth-badge i {
  font-size: 16px;
}

/* Growth Title */
.learning-path-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 25px;
  line-height: 1.2;
  color: var(--contrast-color);
}

.growth-title .highlight {
  background: linear-gradient(135deg, var(--accent-color), #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.growth-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--accent-color), #60a5fa);
  border-radius: 2px;
}

/* Growth Description */
.learning-path-description {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

/* Growth Stats */
.growth-stats {
  margin-bottom: 40px;
}

.stat-item {
  text-align: left;
  padding: 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

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

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

.stat-label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
  color: var(--contrast-color);
}

/* Growth Actions */
.learning-path-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.growth-actions .btn {
  padding: 18px 35px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.growth-actions .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), #1d4ed8);
  border: none;
  color: var(--contrast-color);
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.growth-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  background: linear-gradient(135deg, #1d4ed8, var(--accent-color));
}

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

.growth-actions .btn-outline-primary:hover {
  background: var(--contrast-color);
  color: var(--heading-color);
  transform: translateY(-3px);
}

/* Growth Visual */
.growth-visual {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-grid {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 500px;
  margin: 0 auto;
}

/* Feature Cards */
.feature-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 25px;
  text-align: center;
  transition: var(--transition);
  animation: float 3s ease-in-out infinite;
  width: 180px;
}

.feature-card:hover {
  transform: translateY(-10px) scale(1.05);
  background: rgba(255, 255, 255, 0.25);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.feature-card .card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 5px 20px rgba(34, 197, 94, 0.4);
}

.feature-card .card-icon i {
  font-size: 28px;
  color: var(--contrast-color);
}

.feature-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--contrast-color);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.feature-card.card-1 {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.feature-card.card-2 {
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  animation-delay: 0.5s;
}

.feature-card.card-3 {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 1s;
}

.feature-card.card-4 {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  animation-delay: 1.5s;
}

/* Central Element */
.central-element {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;
}

.central-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  box-shadow: 0 10px 40px rgba(34, 197, 94, 0.5);
  animation: pulse 2s infinite;
}

.central-icon i {
  font-size: 48px;
  color: var(--contrast-color);
}

.central-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--contrast-color);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Animations */
@keyframes pulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .learning-path {
    padding: 80px 0;
  }
  
  .learning-path-title {
    font-size: 2.5rem;
  }
  
  .growth-stats {
    gap: 20px;
    justify-content: center;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .learning-path-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .growth-actions .btn {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
  
  .growth-visual {
    min-height: 400px;
    margin-top: 50px;
  }
  
  .visual-grid {
    height: 400px;
    max-width: 400px;
  }
  
  .feature-card {
    width: 150px;
    padding: 20px;
  }
  
  .feature-card .card-icon {
    width: 50px;
    height: 50px;
  }
  
  .feature-card .card-icon i {
    font-size: 24px;
  }
  
  .central-icon {
    width: 80px;
    height: 80px;
  }
  
  .central-icon i {
    font-size: 40px;
  }
  
  .central-text {
    font-size: 16px;
  }
  
  .courses-overview {
    padding: 60px 0;
  }
  
  .journey-step {
    margin-bottom: 30px;
  }
  
  .step-number {
    font-size: 36px;
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
  }
  
  .step-icon i {
    font-size: 28px;
  }
  
  .step-content h3 {
    font-size: 20px;
  }
  
  .journey-cta-card {
    margin-top: 30px;
  }
  
  .cta-icon {
    width: 60px;
    height: 60px;
  }
  
  .cta-icon i {
    font-size: 32px;
  }
  
  .journey-cta-card h3 {
    font-size: 22px;
  }
  
  /* New Growth Section Responsive */
  .learning-path-background {
    padding: 60px 0;
  }
  
  .learning-path-title {
    font-size: 2.2rem;
  }
  
  .learning-path-description {
    font-size: 1rem;
    max-width: 100%;
  }
  
  .feature-row {
    flex-direction: column;
    gap: 10px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .learning-path-actions {
    flex-direction: column;
  }
  
  .btn-primary-custom,
  .btn-secondary-custom {
    width: 100%;
    justify-content: center;
  }
  
  /* New Culinary Journey Responsive */
  .courses-overview {
    padding: 60px 0;
  }
  
  .courses-title {
    font-size: 2rem;
  }
  
  .courses-subtitle {
    font-size: 1rem;
  }
  
  .journey-phase::before {
    display: none;
  }
  
  .phase-content {
    margin-left: 0;
    padding: 30px 20px;
  }
  
  .phase-number {
    position: static;
    font-size: 2.5rem;
    margin-bottom: 15px;
    display: block;
  }
  
  .phase-header {
    flex-direction: column;
    gap: 15px;
  }
  
  .phase-icon {
    width: 60px;
    height: 60px;
  }
  
  .phase-icon i {
    font-size: 28px;
  }
  
  .phase-title {
    font-size: 22px;
  }
  
  .phase-meta {
    flex-direction: column;
    gap: 10px;
  }
  
  .skill-tag {
    font-size: 13px;
    padding: 8px 15px;
  }
  
  /* Features Section Responsive */
  .benefits {
    padding: 60px 0;
  }
  
  .benefits-title {
    font-size: 2rem;
  }
  
  .benefits-subtitle {
    font-size: 1rem;
  }
  
  .feature-card-new {
    padding: 30px 20px;
    margin-bottom: 30px;
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  
  .feature-title-new {
    font-size: 20px;
  }
  
  /* Feature Details Responsive */
  .feature-details-section {
    padding: 60px 0;
  }
  
  .section-title-modern {
    font-size: 2rem;
  }
  
  .section-description-modern {
    font-size: 1rem;
  }
  
  .feature-detail-card {
    margin-bottom: 30px;
  }
  
  .feature-detail-image {
    height: 200px;
  }
  
  .feature-detail-content {
    padding: 25px 20px;
  }
  
  .feature-detail-title {
    font-size: 20px;
  }
  
  .feature-detail-stats {
    flex-direction: column;
    gap: 15px;
  }
  
  /* Hero Section Responsive */
  .welcome-section {
    padding: 60px 0;
    min-height: auto;
  }
  
  .welcome-title-new {
    font-size: 2.2rem;
  }
  
  .welcome-description-new {
    font-size: 1rem;
    max-width: 100%;
  }
  
  .welcome-stats-new {
    flex-direction: column;
    gap: 20px;
  }
  
  .stat-icon-welcome {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }
  
  .stat-text-welcome {
    font-size: 14px;
  }
  
  .welcome-actions-new {
    flex-direction: column;
  }
  
  .btn-hero-primary,
  .btn-welcome-secondary {
    width: 100%;
    justify-content: center;
  }
  
  .welcome-floating-element {
    display: none;
  }
  
  /* Testimonials Responsive */
  .testimonials {
    padding: 60px 0;
  }
  
  .reviews-title {
    font-size: 2rem;
  }
  
  .reviews-subtitle {
    font-size: 1rem;
  }
  
  .testimonial-card-new {
    padding: 30px 25px;
  }
  
  .testimonial-quote-icon {
    font-size: 40px;
    top: 20px;
    right: 20px;
  }
  
  .testimonial-text-new {
    font-size: 15px;
  }
  
  .author-avatar {
    width: 50px;
    height: 50px;
  }
  
  .author-name {
    font-size: 16px;
  }
  }
  
  .element-icon {
    width: 30px;
    height: 30px;
  }
  
  .element-icon i {
    font-size: 14px;
  }
  
  .element-text {
    font-size: 10px;
  }

.lead  {
  color: var(--accent-color);
  font-weight: 500;
}

/*--------------------------------------------------------------
# About Page Styles
--------------------------------------------------------------*/
.about-hero-new {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0b1020, #0f172a);
  color: #e5e7eb;
}

.about-hero-shell {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.about-hero-text {
  flex: 1 1 480px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.about-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #ffffff;
}

.about-chip.subtle {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
}

.about-hero-text h1 {
  font-size: 3.1rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin: 0;
}

.about-hero-text p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #cbd5e1;
  margin: 0 0 6px 0;
}

.about-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.about-btn-primary,
.about-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  border: 1px solid transparent;
}

.about-btn-primary {
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  color: #ffffff;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

.about-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.about-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.18);
}

.about-btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.about-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 8px;
}

.about-stat {
  display: flex;
  flex-direction: column;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 140px;
}

.about-stat .stat-number {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.about-stat .stat-label {
  font-size: 13px;
  color: #cbd5e1;
}

.about-hero-visual {
  flex: 1 1 420px;
  min-width: 320px;
  display: flex;
  justify-content: center;
}

.about-hero-card {
  position: relative;
  width: 100%;
  max-width: 540px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.4);
}

.about-hero-card img {
  width: 100%;
  height: auto;
  display: block;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 22px;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 16, 32, 0.7) 100%);
}

.about-hero-overlay strong {
  color: #ffffff;
  font-size: 18px;
}

.about-hero-overlay p {
  color: #e2e8f0;
  font-size: 14px;
  margin: 0;
}

.about-pillars {
  padding: 90px 0;
  background: #f8fafc;
}

.about-section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 40px;
  padding: 0 20px;
}

.about-section-head h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0f172a;
  margin: 10px 0 8px;
}

.about-section-head p {
  color: #475569;
  margin: 0;
}

.about-pillars-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  padding: 0 20px;
}

.about-pillar-card {
  flex: 1 1 280px;
  min-width: 260px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  transition: var(--transition);
}

.about-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.12);
}

.pillar-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  margin-bottom: 12px;
}

.about-pillar-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 8px;
}

.about-pillar-card p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
}

.about-process {
  padding: 90px 0;
  background: #0f172a;
  color: #e2e8f0;
}

.about-process .about-section-head h2,
.about-process .about-section-head p {
  color: #e2e8f0;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0 20px;
  justify-content: center;
}

.process-step {
  flex: 1 1 320px;
  min-width: 280px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.32);
}

.process-number {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

.process-step h4 {
  margin: 0 0 6px 0;
  font-size: 17px;
  color: #ffffff;
}

.process-step p {
  margin: 0;
  font-size: 14px;
  color: #cbd5e1;
  line-height: 1.5;
}

.about-team {
  padding: 90px 0;
  background: #f8fafc;
}

.about-team-shell {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.about-team-text {
  flex: 1 1 380px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.about-team-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin: 4px 0;
}

.about-team-text p {
  color: #475569;
  line-height: 1.65;
  margin: 0;
}

.about-team-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.about-team-stats div {
  flex: 1 1 120px;
  min-width: 120px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.about-team-stats strong {
  display: block;
  font-size: 22px;
  color: var(--heading-color);
}

.about-team-stats span {
  font-size: 12px;
  color: #475569;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.about-team-cards {
  flex: 1 1 380px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.team-card {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.team-avatar {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 20px;
}

.team-body h4 {
  margin: 0 0 6px 0;
  font-size: 17px;
  color: #0f172a;
}

.team-body p {
  margin: 0;
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

.about-cta-band {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  color: #ffffff;
}

.about-cta-shell {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.about-cta-text h3 {
  margin: 0 0 8px 0;
  font-size: 2rem;
  font-weight: 800;
}

.about-cta-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

.about-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/*--------------------------------------------------------------
# Contact Page Styles
--------------------------------------------------------------*/
.contact-hero-new {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0b1020, #0f172a);
  color: #e5e7eb;
}

.contact-hero-shell {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.contact-hero-text {
  flex: 1 1 480px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #ffffff;
}

.contact-chip.subtle {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}

.contact-hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin: 0;
}

.contact-hero-text p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.7;
}

.contact-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.contact-btn-primary,
.contact-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: var(--transition);
}

.contact-btn-primary {
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  color: #ffffff;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
}

.contact-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
}

.contact-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
}

.contact-btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.contact-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.meta-item {
  flex: 1 1 140px;
  min-width: 120px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.meta-item strong {
  display: block;
  font-size: 20px;
  color: #ffffff;
}

.meta-item span {
  color: #cbd5e1;
  font-size: 13px;
}

.contact-hero-visual {
  flex: 1 1 420px;
  min-width: 320px;
  display: flex;
  justify-content: center;
}

.contact-hero-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

.contact-hero-card img {
  width: 100%;
  display: block;
}

.contact-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 20px;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 16, 32, 0.75) 100%);
  color: #e5e7eb;
  font-size: 14px;
}

.contact-touchpoints {
  padding: 80px 0;
  background: #f8fafc;
}

.contact-section-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 32px;
  padding: 0 20px;
}

.contact-section-head h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f172a;
  margin: 10px 0 6px;
}

.contact-section-head p {
  color: #475569;
  margin: 0;
}

.touchpoints-row {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.touchpoint-card {
  flex: 1 1 280px;
  min-width: 260px;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: var(--transition);
}

.touchpoint-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.12);
}

.touchpoint-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.touchpoint-card h3 {
  margin: 4px 0;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.touchpoint-card p {
  margin: 0;
  color: #475569;
}

.contact-link-new {
  color: var(--accent-color);
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-link-new:hover {
  color: #0f172a;
}

.contact-form-band {
  padding: 90px 0;
  background: #0f172a;
  color: #e5e7eb;
}

.contact-form-shell {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}

.contact-form-main {
  flex: 1 1 620px;
  min-width: 320px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
}

.contact-form-head h2 {
  margin: 12px 0 10px;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
}

.contact-form-head p {
  margin: 0;
  color: #cbd5e1;
}

.form-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.form-field-group {
  margin-bottom: 10px;
}

.form-field-group.half {
  flex: 1 1 280px;
  min-width: 240px;
}

.form-field-group.full {
  flex: 1 1 100%;
}

.form-label-new {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 6px;
}

.form-input-new,
.form-textarea-new {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
  font-size: 15px;
  transition: var(--transition);
}

.form-input-new:focus,
.form-textarea-new:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.25);
}

.required-star {
  color: var(--accent-color);
}

.form-submit-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 6px;
}

.form-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.form-status {
  margin-top: 10px;
}

.invalid-feedback {
  color: #fca5a5;
  font-size: 12px;
  margin-top: 4px;
  display: none;
}

.is-invalid ~ .invalid-feedback {
  display: block;
}

.is-invalid {
  border-color: #fca5a5 !important;
}

.is-valid {
  border-color: #4ade80 !important;
}

.contact-aside {
  flex: 1 1 320px;
  min-width: 280px;
  display: flex;
}

.aside-card {
  background: #111827;
  color: #e5e7eb;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
  width: 100%;
}

.aside-card h4 {
  margin: 0 0 12px 0;
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.aside-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aside-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: #cbd5e1;
  font-size: 14px;
}

.aside-card i {
  color: var(--accent-color);
  margin-top: 2px;
}

@media (max-width: 768px) {
  .contact-hero-text h1 {
    font-size: 2.4rem;
  }

  .contact-hero-card {
    max-width: 100%;
  }

  .contact-form-main,
  .aside-card {
    padding: 20px;
  }
}

.form-input-new[type="select"],
.form-input-new select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 12px center;
  background-repeat: no-repeat;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}

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

.form-input-new.is-invalid,
.form-textarea-new.is-invalid {
  border-color: #dc3545;
}

.form-input-new.is-valid,
.form-textarea-new.is-valid {
  border-color: #198754;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 8px;
  font-size: 13px;
  color: #dc3545;
}

.form-input-new.is-invalid ~ .invalid-feedback,
.form-textarea-new.is-invalid ~ .invalid-feedback {
  display: block;
}

.form-submit-button {
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  color: var(--contrast-color);
  border: none;
  padding: 15px 40px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}

.form-submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
}

.form-submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-submit-button svg {
  transition: var(--transition);
}

.form-submit-button:hover svg {
  transform: translateX(3px);
}

.form-status {
  margin-top: 20px;
  min-height: 30px;
}

.form-status .loading,
.form-status .error-message,
.form-status .sent-message {
  display: none;
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.form-status .loading {
  background: rgba(34, 197, 94, 0.1);
  color: var(--accent-color);
}

.form-status .error-message {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

.form-status .sent-message {
  background: rgba(25, 135, 84, 0.1);
  color: #198754;
}

.office-hours-section {
  padding: 100px 0;
  background: var(--bg-color);
}

.hours-card-new {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  border: 2px solid rgba(34, 197, 94, 0.1);
}

.hours-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--contrast-color);
  margin-bottom: 25px;
}

.hours-card-new h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 25px;
}

.hours-list-new {
  margin-bottom: 20px;
}

.hours-item {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid rgba(34, 197, 94, 0.1);
}

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

.hours-item .day {
  font-weight: 600;
  color: var(--heading-color);
}

.hours-item .time {
  color: var(--default-color);
}

.hours-note {
  font-size: 14px;
  color: var(--light-text);
  margin: 0;
  font-style: italic;
}

.response-info {
  margin-top: 20px;
}

.response-item {
  display: flex;
  gap: 15px;
  margin-bottom: 25px;
}

.response-item i {
  font-size: 24px;
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 3px;
}

.response-item strong {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.response-item p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--default-color);
  margin: 0;
}

.contact-cta-section {
  padding: 100px 0;
}

/*--------------------------------------------------------------
# FAQ Page Styles
--------------------------------------------------------------*/
.faq-hero-new {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #0b1020, #0f172a);
  color: #e5e7eb;
}

.faq-hero-shell {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.faq-hero-text {
  flex: 1 1 520px;
  min-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #ffffff;
}

.faq-chip.subtle {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
}

.faq-hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin: 0;
}

.faq-hero-text p {
  margin: 0;
  color: #cbd5e1;
  line-height: 1.7;
}

.faq-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.faq-btn-primary,
.faq-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  transition: var(--transition);
}

.faq-btn-primary {
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  color: #ffffff;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.32);
}

.faq-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.36);
}

.faq-btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
}

.faq-btn-ghost:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.faq-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.meta-box {
  flex: 1 1 140px;
  min-width: 120px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.meta-box strong {
  display: block;
  font-size: 20px;
  color: #ffffff;
}

.meta-box span {
  color: #cbd5e1;
  font-size: 13px;
}

.faq-hero-visual {
  flex: 1 1 420px;
  min-width: 320px;
  display: flex;
  justify-content: center;
}

.faq-hero-card {
  position: relative;
  width: 100%;
  max-width: 520px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.45);
}

.faq-hero-card img {
  width: 100%;
  display: block;
}

.faq-hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 20px;
  background: linear-gradient(180deg, transparent 40%, rgba(11, 16, 32, 0.75) 100%);
  color: #e5e7eb;
  font-size: 14px;
}

.faq-filter {
  padding: 40px 0;
  background: #f8fafc;
  border-bottom: 1px solid rgba(34, 197, 94, 0.08);
}

.faq-filter-bar {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.faq-category-btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #0f172a;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.faq-category-btn:hover,
.faq-category-btn.active {
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  border-color: var(--accent-color);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(34, 197, 94, 0.25);
}

.faq-stack {
  padding: 90px 0;
  background: #ffffff;
}

.faq-list {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item-new {
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.12);
}

.faq-item-new.active {
  border-color: var(--accent-color);
}

.faq-question-new {
  padding: 18px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.faq-question-new:hover {
  background: rgba(34, 197, 94, 0.06);
}

.faq-question-content {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

.faq-icon {
  font-size: 22px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.faq-question-new h3 {
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin: 0;
}

.faq-toggle-new {
  font-size: 18px;
  color: var(--accent-color);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-answer-new {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 18px;
}

.faq-item-new.active .faq-answer-new {
  padding: 0 18px 16px;
}

.faq-answer-new p {
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  margin: 12px 0;
}

.faq-answer-new ul,
.faq-answer-new ol {
  margin-left: 18px;
  margin-bottom: 10px;
}

.faq-answer-new li {
  font-size: 14px;
  line-height: 1.7;
  color: #475569;
  margin-bottom: 6px;
}

.faq-answer-new a {
  color: var(--accent-color);
  text-decoration: none;
}

.faq-answer-new a:hover {
  text-decoration: underline;
}

.faq-cta-band {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  color: #ffffff;
}

.faq-cta-shell {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.faq-cta-text h3 {
  margin: 0 0 8px 0;
  font-size: 2rem;
  font-weight: 800;
}

.faq-cta-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.faq-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .faq-hero-text h1 {
    font-size: 2.4rem;
  }

  .faq-hero-card {
    max-width: 100%;
  }

  .faq-category-btn {
    font-size: 13px;
    padding: 10px 16px;
  }

  .faq-list {
    padding: 0 16px;
  }

  .faq-question-new {
    padding: 16px;
  }
}

/*--------------------------------------------------------------
# Policy Pages Styles (redesigned)
--------------------------------------------------------------*/
.policy-hero-section {
  position: relative;
  padding: 140px 0 90px;
  background: radial-gradient(120% 120% at 20% 20%, rgba(34, 197, 94, 0.12), transparent), radial-gradient(100% 120% at 80% 0%, rgba(74, 222, 128, 0.14), transparent), linear-gradient(135deg, rgba(34, 197, 94, 0.06), rgba(74, 222, 128, 0.06));
  overflow: hidden;
}

.policy-hero-section::before,
.policy-hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.policy-hero-section::before {
  width: 320px;
  height: 320px;
  background: rgba(34, 197, 94, 0.3);
  top: -80px;
  left: -40px;
}

.policy-hero-section::after {
  width: 260px;
  height: 260px;
  background: rgba(74, 222, 128, 0.35);
  bottom: -60px;
  right: 20px;
}

.policy-hero-content {
  position: relative;
  z-index: 1;
}

.policy-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 24px;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 999px;
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.policy-hero-badge i {
  font-size: 16px;
}

.policy-hero-title {
  font-size: 3.1rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 18px;
  line-height: 1.12;
}

.policy-hero-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--default-color);
  max-width: 760px;
}

.policy-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--light-text);
  font-size: 14px;
}

.policy-meta i {
  color: var(--accent-color);
}

.policy-quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.policy-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(34, 197, 94, 0.08);
  color: var(--heading-color);
  border-radius: 999px;
  border: 1px solid rgba(34, 197, 94, 0.2);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: var(--transition);
}

.policy-chip:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.policy-chip.ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(34, 197, 94, 0.12);
}

.policy-hero-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(34, 197, 94, 0.2);
  box-shadow: 0 25px 80px rgba(34, 197, 94, 0.12);
  border-radius: 18px;
  padding: 26px;
  backdrop-filter: blur(10px);
}

.policy-hero-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.policy-hero-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 22px;
}

.policy-hero-card .label {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--light-text);
}

.policy-hero-card h3 {
  margin: 4px 0 0;
  font-size: 20px;
  color: var(--heading-color);
}

.policy-hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.policy-hero-list li {
  display: flex;
  gap: 10px;
  color: var(--default-color);
  line-height: 1.6;
  font-size: 15px;
}

.policy-hero-list i {
  color: var(--accent-color);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.policy-hero-footnote {
  display: flex;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.06);
  color: var(--default-color);
  border: 1px solid rgba(34, 197, 94, 0.12);
}

.policy-hero-footnote i {
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 4px;
}

.policy-content-section {
  padding: 90px 0 110px;
  background: var(--bg-color);
}

.policy-content-wrapper {
  max-width: 100%;
}

.policy-section {
  margin-bottom: 50px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.96));
  border-radius: 18px;
  padding: 36px;
  border: 1px solid rgba(34, 197, 94, 0.16);
  box-shadow: 0 16px 40px rgba(12, 14, 31, 0.05);
  transition: var(--transition);
}

.policy-section:hover {
  border-color: rgba(34, 197, 94, 0.32);
  box-shadow: 0 20px 55px rgba(12, 14, 31, 0.08);
  transform: translateY(-2px);
}

.policy-section-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
  padding-bottom: 16px;
  border-bottom: 1px dashed rgba(34, 197, 94, 0.25);
}

.policy-section-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--contrast-color);
  flex-shrink: 0;
}

.policy-section-header h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--heading-color);
  margin: 0;
}

.policy-section-content {
  font-size: 16px;
  line-height: 1.8;
  color: var(--default-color);
}

.policy-section-content p {
  margin-bottom: 18px;
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

.policy-list.compact li {
  margin-bottom: 10px;
}

.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.7;
}

.policy-list li i {
  color: var(--accent-color);
  font-size: 17px;
  flex-shrink: 0;
  margin-top: 3px;
}

.policy-note {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  padding: 18px;
  margin: 18px 0 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.policy-note.elevated {
  background: rgba(34, 197, 94, 0.08);
  border-style: dashed;
}

.policy-note i {
  font-size: 22px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.policy-note p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

.policy-note strong {
  color: var(--heading-color);
}

.policy-section-content a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.policy-section-content a:hover {
  text-decoration: underline;
}

.policy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.policy-grid.two-col {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.policy-highlight-card,
.policy-card {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.18);
  border-radius: 14px;
  padding: 18px 18px 16px;
  height: 100%;
  transition: var(--transition);
}

.policy-card.subtle {
  background: rgba(255, 255, 255, 0.7);
}

.policy-highlight-card:hover,
.policy-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(34, 197, 94, 0.12);
}

.policy-highlight-card h3,
.policy-card h3 {
  font-size: 18px;
  margin: 8px 0 10px;
  color: var(--heading-color);
}

.policy-highlight-card p,
.policy-card p {
  margin: 0;
  font-size: 15px;
  color: var(--default-color);
}

.policy-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: var(--accent-color);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.policy-inline-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.policy-split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: start;
}

.cookie-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin: 12px 0 24px;
}

.cookie-type-card {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(34, 197, 94, 0.16);
  border-radius: 14px;
  padding: 18px;
  transition: var(--transition);
}

.cookie-type-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 16px 36px rgba(34, 197, 94, 0.12);
  transform: translateY(-4px);
}

.cookie-type-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 24px;
  color: var(--contrast-color);
}

.cookie-type-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.cookie-type-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--default-color);
  margin: 0;
}

.cookie-breakdown {
  margin: 12px 0 22px;
  padding: 18px;
  border-radius: 14px;
  background: rgba(34, 197, 94, 0.06);
  border: 1px dashed rgba(34, 197, 94, 0.25);
}

.cookie-breakdown-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-breakdown-header h3 {
  margin: 0;
  font-size: 17px;
  color: var(--heading-color);
}

.cookie-breakdown-header p {
  margin: 0;
  font-size: 14px;
  color: var(--default-color);
}

.cookie-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.policy-table-wrapper {
  overflow-x: auto;
  margin-top: 14px;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.policy-table th,
.policy-table td {
  padding: 14px;
  text-align: left;
  border-bottom: 1px solid rgba(34, 197, 94, 0.15);
  font-size: 14px;
  line-height: 1.6;
}

.policy-table th {
  background: rgba(34, 197, 94, 0.08);
  color: var(--heading-color);
  font-weight: 700;
}

.policy-table tbody tr:hover {
  background: rgba(34, 197, 94, 0.05);
}

.policy-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}

.policy-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(34, 197, 94, 0.16);
  border-radius: 14px;
  padding: 14px 16px;
  transition: var(--transition);
}

.policy-step:hover {
  border-color: var(--accent-color);
  box-shadow: 0 10px 28px rgba(34, 197, 94, 0.12);
}

.policy-step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-weight: 800;
}

.policy-step h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--heading-color);
}

.policy-step p {
  margin: 0;
  color: var(--default-color);
  line-height: 1.6;
}

.policy-contact-info {
  margin-top: 16px;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding: 14px;
  background: rgba(34, 197, 94, 0.06);
  border-radius: 12px;
  border: 1px solid rgba(34, 197, 94, 0.18);
}

.contact-info-item i {
  font-size: 22px;
  color: var(--accent-color);
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.contact-info-item a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.contact-info-item a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Thanks Page Styles (redesigned)
--------------------------------------------------------------*/
.thanks-hero-section {
  position: relative;
  padding: 130px 0 90px;
  background: radial-gradient(120% 120% at 20% 20%, rgba(34, 197, 94, 0.12), transparent),
    radial-gradient(100% 120% at 80% 0%, rgba(74, 222, 128, 0.14), transparent),
    linear-gradient(135deg, rgba(34, 197, 94, 0.06), rgba(74, 222, 128, 0.06));
  overflow: hidden;
}

.thanks-hero-section::before,
.thanks-hero-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.thanks-hero-section::before {
  width: 320px;
  height: 320px;
  background: rgba(34, 197, 94, 0.3);
  top: -80px;
  left: -40px;
}

.thanks-hero-section::after {
  width: 260px;
  height: 260px;
  background: rgba(74, 222, 128, 0.35);
  bottom: -60px;
  right: 20px;
}

.thanks-hero-content {
  position: relative;
  z-index: 1;
}

.thanks-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(34, 197, 94, 0.14);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 999px;
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.thanks-hero-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(34, 197, 94, 0.2);
  box-shadow: 0 25px 80px rgba(34, 197, 94, 0.12);
  border-radius: 18px;
  padding: 26px;
  backdrop-filter: blur(10px);
}

.thanks-hero-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.thanks-hero-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 22px;
}

.thanks-hero-card .label {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--light-text);
}

.thanks-hero-card h3 {
  margin: 4px 0 0;
  font-size: 20px;
  color: var(--heading-color);
}

.thanks-hero-list {
  list-style: none;
  padding: 0;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.thanks-hero-list li {
  display: flex;
  gap: 10px;
  color: var(--default-color);
  line-height: 1.6;
  font-size: 15px;
}

.thanks-hero-list i {
  color: var(--accent-color);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.thanks-hero-footnote {
  display: flex;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(34, 197, 94, 0.06);
  color: var(--default-color);
  border: 1px solid rgba(34, 197, 94, 0.12);
}

.thanks-hero-footnote i {
  color: var(--accent-color);
  flex-shrink: 0;
  margin-top: 4px;
}

.thanks-title {
  font-size: 3rem;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 18px;
  line-height: 1.1;
}

.thanks-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--default-color);
  max-width: 760px;
  margin: 0;
}

.thanks-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: var(--light-text);
  font-size: 14px;
}

.thanks-meta i {
  color: var(--accent-color);
}

.thanks-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.thanks-steps-section {
  padding: 80px 0 40px;
  background: var(--bg-color);
}

.thanks-steps-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.thanks-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(34, 197, 94, 0.16);
  border-radius: 14px;
  padding: 14px 16px;
  transition: var(--transition);
}

.thanks-step:hover {
  border-color: var(--accent-color);
  box-shadow: 0 10px 28px rgba(34, 197, 94, 0.12);
}

.thanks-step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-weight: 800;
}

.thanks-step h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--heading-color);
}

.thanks-step p {
  margin: 0;
  color: var(--default-color);
  line-height: 1.6;
}

.thanks-resources-section {
  padding: 70px 0 110px;
  background: var(--bg-color);
}

.thanks-resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.thanks-resource-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(34, 197, 94, 0.16);
  border-radius: 16px;
  padding: 20px 18px;
  transition: var(--transition);
}

.thanks-resource-card:hover {
  border-color: var(--accent-color);
  box-shadow: 0 16px 36px rgba(34, 197, 94, 0.12);
  transform: translateY(-4px);
}

.resource-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-color), #22c55e);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 20px;
  margin-bottom: 12px;
}

.thanks-resource-card h3 {
  font-size: 17px;
  margin: 0 0 8px;
  color: var(--heading-color);
}

.thanks-resource-card p {
  margin: 0 0 10px;
  color: var(--default-color);
  line-height: 1.6;
}

.thanks-inline-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.thanks-inline-links a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  gap: 6px;
  align-items: center;
}

.thanks-inline-links a:hover {
  text-decoration: underline;
}

/* Responsive Styles for Policy Pages */
@media (max-width: 991px) {
  .policy-hero-title {
    font-size: 2.4rem;
  }

  .policy-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .policy-hero-section {
    padding: 110px 0 70px;
  }

  .policy-hero-title {
    font-size: 2rem;
  }
  
  .policy-section {
    padding: 26px 20px;
  }
  
  .policy-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  
  .policy-section-header h2 {
    font-size: 21px;
  }

  .policy-hero-card {
    padding: 20px;
  }

  .policy-quick-nav {
    gap: 8px;
  }

  .cookie-type-grid,
  .policy-grid.two-col {
    grid-template-columns: 1fr;
  }

  .cookie-breakdown {
    padding: 14px;
  }

  .policy-step {
    flex-direction: row;
  }

  .policy-table {
    min-width: 520px;
  }
}

/* Responsive Styles for Thanks Pages */
@media (max-width: 991px) {
  .thanks-title {
    font-size: 2.3rem;
  }

  .thanks-hero-section {
    padding: 110px 0 70px;
  }
}

@media (max-width: 768px) {
  .thanks-title {
    font-size: 2rem;
  }

  .thanks-hero-card {
    padding: 20px;
  }

  .thanks-actions {
    flex-direction: column;
  }

  .thanks-resource-card,
  .thanks-hero-card {
    text-align: left;
  }
}