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

/* Starkpfad Color Scheme - Strength & Power */
:root {
  /* Primary Colors - Strength & Power */
  --primary-gradient: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #D2691E 100%);
  --primary-orange: #8B4513;
  --primary-gold: #D2691E;
  --primary-fire: #A0522D;
  
  /* Secondary Colors - Deep Forest */
  --secondary-gradient: linear-gradient(135deg, #2F4F2F 0%, #228B22 50%, #32CD32 100%);
  --secondary-blue: #2F4F2F;
  --secondary-dark-blue: #228B22;
  
  /* Background Colors - Deep Forest */
  --background-color: #0d1b0d;
  --surface-color: #1a2e1a;
  --card-color: #253d25;
  --overlay-color: rgba(26, 46, 26, 0.95);
  
  /* Text Colors */
  --text-primary: #ffffff;
  --text-secondary: #b8c5d1;
  --text-muted: #7a8a9a;
  --text-accent: #D2691E;
  
  /* Accent Colors */
  --accent-color: #8B4513;
  --accent-secondary: #2F4F2F;
  --accent-success: #32CD32;
  --accent-warning: #D2691E;
  --accent-danger: #DC143C;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #8B4513 0%, #A0522D 50%, #D2691E 100%);
  --gradient-secondary: linear-gradient(135deg, #2F4F2F 0%, #228B22 50%, #32CD32 100%);
  --gradient-dark: linear-gradient(135deg, #0d1b0d 0%, #1a2e1a 50%, #253d25 100%);
  --gradient-energy: linear-gradient(45deg, #8B4513, #2F4F2F, #D2691E, #32CD32);
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
  --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.25);
  --shadow-glow: 0 0 20px rgba(139, 69, 19, 0.3);
  --shadow-blue-glow: 0 0 20px rgba(47, 79, 47, 0.3);
  
  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 50px;
  
  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  --transition-bounce: 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Color Presets */
.light-background {
  --background-color: #f8fafc;
  --surface-color: #ffffff;
  --card-color: #ffffff;
  --text-primary: #1a202c;
  --text-secondary: #4a5568;
  --text-muted: #718096;
}

/* Light background specific styles */
.light-background .section-title h2 {
  color: var(--text-primary) !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
}

.light-background .section-title p {
  color: var(--text-secondary) !important;
}

.light-background .container p,
.light-background .container h3,
.light-background .container h4,
.light-background .container h5,
.light-background .container h6,
.light-background .container li {
  color: var(--text-primary) !important;
}

.light-background .container p {
  color: var(--text-secondary) !important;
}

.light-background .container h3 {
  color: var(--text-primary) !important;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.light-background .container h4 {
  color: var(--text-primary) !important;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.light-background .container ul,
.light-background .container ol {
  color: var(--text-secondary) !important;
}

.light-background .container li {
  color: var(--text-secondary) !important;
  margin-bottom: 0.5rem;
}

.light-background .container a {
  color: var(--primary-orange) !important;
  text-decoration: none;
  transition: var(--transition-normal);
}

.light-background .container a:hover {
  color: var(--primary-gold) !important;
  text-decoration: underline;
}

.light-background .container strong,
.light-background .container b {
  color: var(--text-primary) !important;
  font-weight: 700;
}

.light-background .container em,
.light-background .container i {
  color: var(--text-secondary) !important;
  font-style: italic;
}

/* Specific styles for policy pages */
.light-background .about .container {
  color: var(--text-primary) !important;
}

.light-background .about .container * {
  color: inherit !important;
}

.light-background .about .container h2 {
  color: var(--text-primary) !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
}

.light-background .about .container h3 {
  color: var(--text-primary) !important;
}

.light-background .about .container h4 {
  color: var(--text-primary) !important;
}

.light-background .about .container p {
  color: var(--text-secondary) !important;
}

.light-background .about .container ul,
.light-background .about .container ol {
  color: var(--text-secondary) !important;
}

.light-background .about .container li {
  color: var(--text-secondary) !important;
}

/* Override gradient text styles for light background */
.light-background h1,
.light-background h2,
.light-background h3,
.light-background h4,
.light-background h5,
.light-background h6 {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
  color: var(--text-primary) !important;
}

.light-background .section-title h2 {
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: unset !important;
  background-clip: unset !important;
  color: var(--text-primary) !important;
}

.dark-background {
  --background-color: #0a0e1a;
  --surface-color: #1a1f2e;
  --text-primary: #ffffff;
  --text-secondary: #b8c5d1;
  --text-muted: #7a8a9a;
}

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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
* {
  box-sizing: border-box;
}

body {
  color: var(--text-primary);
  background: var(--background-color);
  font-family: var(--default-font);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(47, 79, 47, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(210, 105, 30, 0.05) 0%, transparent 50%);
  pointer-events: none;
  z-index: -1;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: var(--transition-normal);
  position: relative;
}

a:hover {
  color: var(--primary-gold);
  text-decoration: none;
}

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

a:hover::after {
  width: 100%;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-primary);
  font-family: var(--heading-font);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

h4 {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  color: var(--text-primary);
}

h5, h6 {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
}

/* 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
--------------------------------------------------------------*/
.header {
  background: var(--overlay-color);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
  padding: var(--space-md) 0;
  transition: var(--transition-normal);
  z-index: 1000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
}

.header.scrolled {
  background: rgba(26, 31, 46, 0.98);
  box-shadow: var(--shadow-lg);
  border-bottom: 1px solid rgba(255, 107, 53, 0.2);
}

.header .logo {
  line-height: 1;
  display: flex;
  align-items: center;
}

.header .logo img {
  max-height: 40px;
  margin-right: var(--space-sm);
  filter: drop-shadow(0 0 10px rgba(255, 107, 53, 0.3));
}

.header .logo h1,
.header .logo h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.3);
  letter-spacing: -0.5px;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--text-primary);
  background: var(--gradient-primary);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 28px;
  margin: 0 0 0 30px;
  border-radius: var(--radius-full);
  border: none;
  box-shadow: var(--shadow-glow);
  transition: var(--transition-bounce);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

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

.header .btn-getstarted:hover::before {
  left: 100%;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

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

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

  .header .navmenu {
    order: 3;
  }
}

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

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

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
    gap: var(--space-sm);
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    padding: 12px 20px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: var(--transition-normal);
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
  }

  .navmenu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: -1;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 14px;
    line-height: 0;
    margin-left: var(--space-xs);
    transition: var(--transition-normal);
  }

  .navmenu li a {
    margin: 0;
  }
  
  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--text-primary);
    transform: translateY(-2px);
  }

  .navmenu li:hover>a::before,
  .navmenu .active::before,
  .navmenu .active:focus::before {
    opacity: 0.1;
  }

  .navmenu a:hover i,
  .navmenu .active i,
  .navmenu .active:focus i {
    transform: translateX(3px);
    color: var(--primary-gold);
  }

  .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: var(--text-primary);
  background: 
    radial-gradient(circle at 30% 30%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(47, 79, 47, 0.1) 0%, transparent 50%),
    var(--background-color);
  font-size: 14px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

.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 color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

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

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

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

.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: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

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

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

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

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

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

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

/*--------------------------------------------------------------
# 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,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 120px 0 80px 0;
  display: flex;
  align-items: center;
  background: 
    radial-gradient(circle at 30% 20%, rgba(139, 69, 19, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(47, 79, 47, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(210, 105, 30, 0.08) 0%, transparent 50%),
    var(--background-color);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(45deg, transparent 30%, rgba(139, 69, 19, 0.05) 50%, transparent 70%),
    linear-gradient(-45deg, transparent 30%, rgba(47, 79, 47, 0.05) 50%, transparent 70%);
  animation: heroBackground 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroBackground {
  0%, 100% { opacity: 0.3; transform: translateX(0) translateY(0); }
  25% { opacity: 0.6; transform: translateX(20px) translateY(-20px); }
  50% { opacity: 0.4; transform: translateX(-20px) translateY(20px); }
  75% { opacity: 0.7; transform: translateX(10px) translateY(-10px); }
}

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

.hero-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--text-primary);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-glow);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); box-shadow: var(--shadow-glow); }
  50% { transform: scale(1.05); box-shadow: var(--shadow-xl), var(--shadow-glow); }
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: var(--space-lg);
  background: var(--gradient-energy);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientShift 8s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(255, 107, 53, 0.3);
}

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

.hero-description {
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: var(--space-lg);
  flex-wrap: wrap;
  align-items: center;
}

.hero-visual {
  position: relative;
}

.hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

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

.hero-floating-elements {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.floating-element {
  position: absolute;
  width: 60px;
  height: 60px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  font-size: 24px;
  animation: float 3s ease-in-out infinite;
  box-shadow: 0 10px 25px rgba(229, 62, 62, 0.3);
}

.floating-element.element-1 {
  top: 20%;
  right: -30px;
  animation-delay: 0s;
}

.floating-element.element-2 {
  bottom: 30%;
  left: -30px;
  animation-delay: 1s;
}

.floating-element.element-3 {
  top: 60%;
  right: 20px;
  animation-delay: 2s;
}

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

.hero-secondary {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid #e2e8f0;
}

.hero-secondary-badge {
  margin-bottom: 20px;
}

.hero-secondary-title {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--heading-color);
  margin-bottom: 20px;
}

.hero-secondary-description {
  font-size: 18px;
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 30px;
}

.hero-secondary-visual {
  position: relative;
}

.hero-secondary-image-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

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

.hero-secondary-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), #c53030);
  opacity: 0.1;
  animation: pulse 2s ease-in-out infinite;
}

.decoration-circle.circle-1 {
  width: 100px;
  height: 100px;
  top: 10%;
  right: -50px;
  animation-delay: 0s;
}

.decoration-circle.circle-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: -75px;
  animation-delay: 1s;
}

.decoration-circle.circle-3 {
  width: 80px;
  height: 80px;
  top: 50%;
  right: 10px;
  animation-delay: 2s;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.1; }
  50% { transform: scale(1.1); opacity: 0.2; }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 18px;
  }

  .hero-secondary-title {
    font-size: 28px;
  }

  .hero-secondary-description {
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .floating-element {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding: 80px 0;
}

.about-wrapper {
  position: relative;
}

.about-badge {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.about-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.about-description {
  font-size: 18px;
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 30px;
}

.about-features {
  margin: 30px 0;
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 12px;
  margin-bottom: 15px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border-left: 4px solid var(--accent-color);
}

.about-feature-item:hover {
  transform: translateX(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon-small {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), #c53030);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
}

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

.feature-text h5 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.feature-text p {
  font-size: 14px;
  color: var(--default-color);
  margin-bottom: 0;
  line-height: 1.5;
}

.about-actions {
  margin-top: 30px;
}

.about-visual {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.about-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(229, 62, 62, 0.8), rgba(197, 48, 48, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

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

.overlay-content {
  text-align: center;
  color: var(--contrast-color);
}

.overlay-icon {
  font-size: 48px;
  margin-bottom: 15px;
}

.overlay-text h6 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}

.overlay-text p {
  font-size: 14px;
  opacity: 0.9;
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
#features {
  background: 
    radial-gradient(circle at 20% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    var(--surface-color);
  color: var(--text-primary);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

#features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, transparent 40%, rgba(255, 215, 0, 0.03) 50%, transparent 60%);
  pointer-events: none;
}

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

.features-badge {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.features-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.features-description {
  font-size: 18px;
  color: var(--default-color);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

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

.feature-card {
  background: var(--card-color);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  height: 100%;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 107, 53, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: var(--transition-normal);
  z-index: -1;
}

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

.feature-card:hover::after {
  opacity: 0.05;
}

.feature-card:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border-color: var(--primary-orange);
}

.feature-card-header {
  text-align: center;
  margin-bottom: 25px;
}

.feature-icon-wrapper {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.feature-icon-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-energy);
  opacity: 0;
  transition: var(--transition-normal);
  border-radius: var(--radius-full);
}

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.15) rotate(5deg);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
}

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

.feature-icon-wrapper i {
  font-size: 40px;
  color: var(--text-primary);
  z-index: 2;
  position: relative;
  transition: var(--transition-normal);
}

.feature-card:hover .feature-icon-wrapper i {
  transform: scale(1.1);
  color: var(--text-primary);
}

.feature-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 0;
}

.feature-card-body {
  text-align: center;
}

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

.feature-link {
  margin-top: 20px;
}

.feature-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  color: var(--primary-orange);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition-bounce);
  padding: 12px 24px;
  border: 2px solid var(--primary-orange);
  border-radius: var(--radius-full);
  background: transparent;
  position: relative;
  overflow: hidden;
}

.feature-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: var(--transition-normal);
  z-index: -1;
}

.feature-btn:hover {
  color: var(--text-primary);
  transform: translateX(8px) scale(1.05);
  box-shadow: var(--shadow-glow);
  border-color: var(--primary-gold);
}

.feature-btn:hover::before {
  left: 0;
}

.feature-btn i {
  transition: var(--transition-normal);
}

.feature-btn:hover i {
  transform: translateX(5px) scale(1.2);
}

/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/
.feature-details .features-item {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-details .features-item+.features-item {
  margin-top: 100px;
}

@media (max-width: 640px) {
  .feature-details .features-item+.features-item {
    margin-top: 40px;
  }
}

.feature-details .features-item h3 {
  font-weight: 700;
  font-size: 26px;
}

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

.feature-details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.feature-details .features-item ul li:last-child {
  padding-bottom: 0;
}

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

.feature-details .features-item p:last-child {
  margin-bottom: 0;
}

.feature-item-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 5px 15px;
  border: 1px solid #e0e0e0;
  ;
  background-color: var(--background-color);
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-icon {
  font-size: 40px;
  color: var(--accent-color);
  margin-right: 15px;
}

.feature-text {
  font-size: 16px;
  color: #333;
  line-height: 1.5;
}

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


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

/* Styles pour le bloc Témoignages */
.testimonials-section {
  padding: 100px 0;
  background-color: var(--background-color);
  position: relative;
}


.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(--accent-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(--accent-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;
  }
}

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

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

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

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

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

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

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

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

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

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

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

.pricing .buy-btn {
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  background-color: var(--background-color);
  display: inline-block;
  padding: 8px 35px 10px 35px;
  border: 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 {
  padding: 80px 0;
}

.faq-badge {
  display: inline-block;
  background: var(--gradient-primary);
  color: var(--text-primary);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-glow);
  animation: pulse 2s ease-in-out infinite;
}

.faq-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.faq-content {
  margin-top: 50px;
}

.faq-card {
  background: var(--card-color);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  height: 100%;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  border: 1px solid rgba(255, 107, 53, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.faq-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: var(--transition-normal);
}

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

.faq-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  border-color: var(--primary-orange);
}

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

.faq-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--space-lg);
  flex-shrink: 0;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.faq-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-energy);
  opacity: 0;
  transition: var(--transition-normal);
  border-radius: var(--radius-full);
}

.faq-card:hover .faq-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-glow);
}

.faq-card:hover .faq-icon::before {
  opacity: 1;
}

.faq-icon i {
  font-size: 24px;
  color: var(--text-primary);
  z-index: 2;
  position: relative;
  transition: var(--transition-normal);
}

.faq-card:hover .faq-icon i {
  transform: scale(1.1);
}

.faq-question {
  font-size: clamp(1.125rem, 2.5vw, 1.25rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0;
  line-height: 1.3;
}

.faq-card-body {
  padding-left: 80px;
}

.faq-answer {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  padding: 80px 0;
  background: var(--background-color);
}

.contact-badge {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.contact-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

.contact-description {
  font-size: 18px;
  color: var(--default-color);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-content {
  margin-top: 60px;
}



.contact-info-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  height: 100%;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

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

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

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

.contact-info-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}

.contact-info-content p {
  font-size: 14px;
  color: var(--default-color);
  line-height: 1.5;
  margin-bottom: 10px;
}

.contact-info-meta {
  margin-top: 10px;
}

.contact-time {
  font-size: 12px;
  color: var(--accent-color);
  font-weight: 600;
  background: rgba(229, 62, 62, 0.1);
  padding: 4px 12px;
  border-radius: 15px;
}

.contact-form-wrapper {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0f0f0;
}

.contact-form-header h3 {
  font-size: 24px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}

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

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

.contact-form .form-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
  display: block;
}

.contact-form .form-control {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid #e2e8f0;
  border-radius: 10px;
  font-size: 16px;
  color: var(--default-color);
  background: var(--surface-color);
  transition: all 0.3s ease;
}

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

.contact-form .form-control::placeholder {
  color: #a0aec0;
}

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

.form-actions {
  margin-top: 30px;
}

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

.loading-message,
.error-message,
.success-message {
  display: none;
  padding: 15px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}

.loading-message {
  background: #e2e8f0;
  color: var(--default-color);
}

.error-message {
  background: #fed7d7;
  color: #c53030;
}

.success-message {
  background: #c6f6d5;
  color: #2f855a;
}

/*--------------------------------------------------------------
# Button Styles
--------------------------------------------------------------*/
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  transition: var(--transition-bounce);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-primary);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-xl), var(--shadow-glow);
  color: var(--text-primary);
}

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

.btn-outline-primary:hover {
  background: var(--gradient-primary);
  color: var(--text-primary);
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-glow);
  border-color: var(--primary-gold);
}

.btn-success {
  background: var(--gradient-secondary);
  color: var(--text-primary);
  box-shadow: var(--shadow-blue-glow);
}

.btn-success:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-xl), var(--shadow-blue-glow);
  color: var(--text-primary);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
  border-radius: var(--radius-lg);
}

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

.btn:hover i {
  transform: scale(1.2);
}



/*--------------------------------------------------------------
# Process Section
--------------------------------------------------------------*/
.process {
  background: 
    radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(255, 107, 53, 0.08) 0%, transparent 50%),
    var(--background-color);
  padding: var(--space-3xl) 0;
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(135deg, transparent 40%, rgba(255, 215, 0, 0.03) 50%, transparent 60%);
  pointer-events: none;
}

.process-badge {
  display: inline-block;
  background: var(--gradient-secondary);
  color: var(--text-primary);
  padding: 8px 24px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-blue-glow);
  animation: pulse 2s ease-in-out infinite;
}

.process-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: var(--space-lg);
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.process-description {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

.process-steps {
  margin-top: var(--space-3xl);
}

.process-step {
  background: var(--card-color);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition-bounce);
  border: 1px solid rgba(0, 212, 255, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  height: 100%;
}

.process-step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-secondary);
  opacity: 0;
  transition: var(--transition-normal);
  z-index: -1;
}

.process-step:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: var(--shadow-xl), var(--shadow-blue-glow);
  border-color: var(--secondary-blue);
}

.process-step:hover::before {
  opacity: 0.05;
}

.step-number {
  position: absolute;
  top: -15px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--gradient-secondary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  box-shadow: var(--shadow-blue-glow);
  z-index: 2;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-secondary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-lg);
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.step-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-energy);
  opacity: 0;
  transition: var(--transition-normal);
  border-radius: var(--radius-full);
}

.process-step:hover .step-icon {
  transform: scale(1.2) rotate(10deg);
  box-shadow: var(--shadow-blue-glow);
}

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

.step-icon i {
  font-size: 32px;
  color: var(--text-primary);
  z-index: 2;
  position: relative;
  transition: var(--transition-normal);
}

.process-step:hover .step-icon i {
  transform: scale(1.1);
}

.step-title {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-md);
  line-height: 1.3;
}

.step-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 0;
}

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

#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  transform: translateX(-50%);
  background: #dedede;
  color: #333;
  border: none;
  padding: 20px;
  font-family: "Inconsolata", sans-serif;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  ;
  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: white;
  border: none;
  padding: 10px 20px;
  ;
  cursor: pointer;
  font-size: 14px;
  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(--default-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(--default-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: 350px;
  max-height: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.growth {
  background: linear-gradient(135deg, var(--accent-color) 0%, #c53030 100%);
  background-size: cover;
  background-position: center;
  color: var(--contrast-color);
  padding: 100px 0;
}

/*--------------------------------------------------------------
# New Footer Styles
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(135deg, #0d1b0d 0%, #1a2e1a 100%);
  color: #e2e8f0;
  padding: 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
}

/* Newsletter Section */
.footer-newsletter {
  background: var(--gradient-primary);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.footer-newsletter::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    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.05) 0%, transparent 50%);
  pointer-events: none;
}

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

.newsletter-content h3 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

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

.newsletter-form {
  display: flex;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.newsletter-form input {
  flex: 1;
  padding: 15px 20px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-primary);
  transition: all 0.3s ease;
}

.newsletter-form input:focus {
  outline: none;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form input::placeholder {
  color: #666;
}

.newsletter-form button {
  padding: 15px 30px;
  background: #ffffff;
  color: var(--primary-orange);
  border: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.newsletter-form button:hover {
  background: var(--primary-orange);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .newsletter-form {
    flex-direction: column;
  }
  
  .newsletter-content h3 {
    font-size: 1.5rem;
  }
}

.footer-content {
  padding: 60px 0 40px;
}

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

.footer-brand {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--accent-color), #c53030);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 14px;
  color: #a0aec0;
  margin-bottom: 20px;
  font-style: italic;
}

.footer-description {
  font-size: 15px;
  line-height: 1.6;
  color: #cbd5e0;
  margin-bottom: 25px;
}

.footer-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
}

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

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

.footer-links a {
  color: #cbd5e0;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: -15px;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--accent-color);
}

.footer-links a:hover {
  color: var(--accent-color);
  padding-left: 15px;
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-contact {
  margin-top: 10px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #cbd5e0;
  font-size: 14px;
}

.contact-item i {
  color: var(--accent-color);
  margin-right: 12px;
  font-size: 16px;
  width: 20px;
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid #4a5568;
  padding: 25px 0;
  background: rgba(0, 0, 0, 0.2);
}

.copyright-text {
  color: #a0aec0;
  font-size: 14px;
  margin-bottom: 0;
}

.footer-note {
  color: #a0aec0;
  font-size: 13px;
  margin-bottom: 0;
  font-style: italic;
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 25px;
}

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

.social-link:hover {
  background: var(--accent-color);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.4);
  border-color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Cookie Banner Styles
--------------------------------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a2e1a 0%, #2d4a2d 100%);
  color: #ffffff;
  padding: 20px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease-in-out;
  box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
  border-top: 3px solid var(--accent-color);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.cookie-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #ffffff;
}

.cookie-text {
  flex: 1;
  min-width: 0;
}

.cookie-text h4 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  font-family: var(--heading-font);
}

.cookie-text p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.4;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  align-items: center;
}

.cookie-actions .btn {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 25px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.cookie-actions .btn-primary {
  background: var(--accent-color);
  border-color: var(--accent-color);
  color: #ffffff;
}

.cookie-actions .btn-primary:hover {
  background: var(--primary-orange);
  border-color: var(--primary-orange);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

.cookie-actions .btn-outline-light {
  border-color: rgba(255, 255, 255, 0.5);
  color: #ffffff;
}

.cookie-actions .btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  color: #ffffff;
}

.cookie-actions .btn-link {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  padding: 8px 12px;
}

.cookie-actions .btn-link:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .cookie-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .cookie-actions {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .cookie-text h4 {
    font-size: 1.1rem;
  }
  
  .cookie-text p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .cookie-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .cookie-actions .btn {
    width: 100%;
    max-width: 200px;
  }
}

/*--------------------------------------------------------------
# Modern Features Section Styles
--------------------------------------------------------------*/
.features-tabs {
  margin-bottom: 3rem;
}

.features-tabs .nav-pills {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  padding: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.features-tabs .nav-pills .nav-link {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border-radius: 40px;
  padding: 12px 24px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
}

.features-tabs .nav-pills .nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.features-tabs .nav-pills .nav-link.active {
  background: var(--gradient-primary);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.features-tabs .nav-pills .nav-link i {
  font-size: 1.1rem;
}

/* Modern Feature Cards */
.feature-card-modern {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.feature-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 20px 20px 0 0;
}

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

.feature-card-icon {
  width: 70px;
  height: 70px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  overflow: hidden;
}

.feature-card-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
  border-radius: 20px;
}

.feature-card-icon i {
  font-size: 2rem;
  color: #ffffff;
  position: relative;
  z-index: 2;
}

.feature-card-content h4 {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

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

.feature-benefits {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.feature-benefits li {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.95rem;
}

.feature-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  font-weight: bold;
  font-size: 1rem;
}

.feature-action .btn {
  width: 100%;
  padding: 12px 24px;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.feature-action .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

/* Features CTA Section */
.features-cta {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.1) 0%, rgba(50, 205, 50, 0.1) 100%);
  border-radius: 20px;
  padding: 3rem 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.cta-content h3 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--heading-font);
}

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

.cta-actions .btn {
  padding: 15px 30px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin: 0.5rem;
}

.cta-actions .btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: #ffffff;
}

.cta-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(139, 69, 19, 0.4);
}

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

.cta-actions .btn-outline-primary:hover {
  background: var(--accent-color);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(139, 69, 19, 0.3);
}

@media (max-width: 768px) {
  .features-tabs .nav-pills {
    flex-direction: column;
    gap: 8px;
  }
  
  .features-tabs .nav-pills .nav-link {
    width: 100%;
    justify-content: center;
  }
  
  .feature-card-modern {
    padding: 1.5rem;
  }
  
  .cta-content h3 {
    font-size: 1.5rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

/*--------------------------------------------------------------
# Mobile Navigation Styles
--------------------------------------------------------------*/
/* Mobile Menu Toggle Button */
.mobile-nav-toggle {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  position: relative;
  z-index: 1001;
  transition: all 0.3s ease;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
  transform-origin: center;
}

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

.mobile-nav-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(5px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, #0d1b0d 0%, #1a2e1a 100%);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
}

.mobile-menu.show {
  right: 0;
}

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

.mobile-menu-logo h3 {
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
  font-family: var(--heading-font);
}

.mobile-menu-logo p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin: 0.25rem 0 0 0;
}

.mobile-menu-close {
  background: none;
  border: none;
  color: #ffffff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: all 0.3s ease;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(90deg);
}

/* Mobile Menu Navigation */
.mobile-menu-nav {
  flex: 1;
  padding: 1rem 0;
}

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

.mobile-menu-item {
  margin: 0;
}

.mobile-menu-link {
  display: flex;
  align-items: center;
  padding: 1rem 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
  border-left: 4px solid transparent;
  position: relative;
  overflow: hidden;
}

.mobile-menu-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.mobile-menu-link:hover {
  color: #ffffff;
  border-left-color: var(--accent-color);
  transform: translateX(8px);
}

.mobile-menu-link:hover::before {
  opacity: 0.1;
}

.mobile-menu-link i:first-child {
  font-size: 1.2rem;
  margin-right: 1rem;
  width: 24px;
  text-align: center;
  color: var(--accent-color);
}

.mobile-menu-link span {
  flex: 1;
  font-weight: 500;
  font-size: 1rem;
}

.mobile-menu-link i:last-child {
  font-size: 0.9rem;
  opacity: 0.6;
  transition: all 0.3s ease;
}

.mobile-menu-link:hover i:last-child {
  opacity: 1;
  transform: translateX(4px);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
}

.mobile-menu-cta {
  margin-bottom: 1.5rem;
}

.mobile-menu-cta .btn {
  background: var(--gradient-primary);
  border: none;
  color: #ffffff;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.mobile-menu-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

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

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

.mobile-menu-social .social-link:hover {
  background: var(--accent-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(139, 69, 19, 0.3);
}

/* Mobile Menu Animations */
.mobile-menu-item {
  opacity: 0;
  transform: translateX(30px);
  animation: slideInRight 0.4s ease forwards;
}

.mobile-menu-item:nth-child(1) { animation-delay: 0.1s; }
.mobile-menu-item:nth-child(2) { animation-delay: 0.15s; }
.mobile-menu-item:nth-child(3) { animation-delay: 0.2s; }
.mobile-menu-item:nth-child(4) { animation-delay: 0.25s; }
.mobile-menu-item:nth-child(5) { animation-delay: 0.3s; }
.mobile-menu-item:nth-child(6) { animation-delay: 0.35s; }

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

/* Responsive Design */
@media (max-width: 1199px) {
  .navmenu ul {
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-menu {
    max-width: 100%;
  }
  
  .mobile-menu-header {
    padding: 1.5rem 1rem 1rem;
  }
  
  .mobile-menu-link {
    padding: 0.875rem 1rem;
  }
  
  .mobile-menu-footer {
    padding: 1rem;
  }
}

@media (max-width: 480px) {
  .mobile-menu-logo h3 {
    font-size: 1.3rem;
  }
  
  .mobile-menu-logo p {
    font-size: 0.8rem;
  }
  
  .mobile-menu-link {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
  }
  
  .mobile-menu-link i:first-child {
    font-size: 1.1rem;
    margin-right: 0.75rem;
  }
}

/* Additional Mobile Menu Enhancements */
.mobile-menu-open {
  overflow: hidden !important;
}

.mobile-menu-item.animate-in {
  animation: slideInRight 0.4s ease forwards;
}

/* Smooth scroll for mobile menu links */
.mobile-menu-link {
  scroll-behavior: smooth;
}

/* Active state for mobile menu links */
.mobile-menu-link.active {
  color: #ffffff;
  border-left-color: var(--accent-color);
  background: rgba(139, 69, 19, 0.1);
}

/* Mobile menu scrollbar styling */
.mobile-menu::-webkit-scrollbar {
  width: 4px;
}

.mobile-menu::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-menu::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 2px;
}

.mobile-menu::-webkit-scrollbar-thumb:hover {
  background: var(--primary-orange);
}

/* Mobile menu focus states for accessibility */
.mobile-menu-link:focus,
.mobile-menu-close:focus,
.mobile-nav-toggle:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}

/* Mobile menu loading state */
.mobile-menu.loading {
  opacity: 0.7;
  pointer-events: none;
}

/* Mobile menu backdrop blur for older browsers */
@supports not (backdrop-filter: blur(5px)) {
  .mobile-menu-overlay {
    background: rgba(0, 0, 0, 0.9);
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .mobile-menu-link {
    border-left-width: 6px;
  }
  
  .mobile-menu-link:hover {
    background: rgba(255, 255, 255, 0.2);
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .mobile-menu,
  .mobile-menu-overlay,
  .mobile-menu-item,
  .hamburger-line {
    transition: none;
    animation: none;
  }
  
  .mobile-menu-item {
    opacity: 1;
    transform: none;
  }
}