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

/* Global Colors - Modern vibrant color scheme */
:root {
  --background-color: #0a0a0a;             
  --default-color: #ffffff;                
  --heading-color: #ff6b6b;                
  --accent-color: #4ecdc4;                 
  --surface-color: #1a1a1a;                
  --contrast-color: #ffffff;              
  --bg-color: #2d2d2d;                    
  --nav-color: #ff6b6b;                   
  --nav-hover-color: #4ecdc4;             
  --nav-mobile-background-color: #1a1a1a; 
  --nav-dropdown-background-color: #2d2d2d; 
  --nav-dropdown-color: #ffffff;          
  --nav-dropdown-hover-color: #4ecdc4;    
  
  /* New gradient colors */
  --gradient-primary: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  --gradient-accent: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  --gradient-dark: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  
  /* Shadow variables */
  --shadow-light: 0 4px 15px rgba(255, 107, 107, 0.2);
  --shadow-medium: 0 8px 25px rgba(78, 205, 196, 0.3);
  --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.4);
  
  /* Animation variables */
  --transition-fast: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-medium: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Color Presets */

.light-background {
  --background-color: #f8f9fa;
  --surface-color: #ffffff;
  --default-color: #2c3e50;
  --heading-color: #ff6b6b;
}

.dark-background {
  --background-color: #0a0a0a;
  --default-color: #ffffff;
  --heading-color: #4ecdc4;
  --surface-color: #1a1a1a;
  --contrast-color: #ffffff;
}


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

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background: var(--gradient-dark);
  font-family: var(--default-font);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a:hover {
  color: var(--nav-hover-color);
  text-decoration: none;
  transform: translateY(-2px);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 1rem;
}

/* 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 {
  color: var(--default-color);
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  transition: var(--transition-medium);
  z-index: 997;
  border-bottom: 1px solid rgba(78, 205, 196, 0.2);
  box-shadow: var(--shadow-light);
}

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

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 400;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--gradient-primary);
  font-size: 14px;
  padding: 12px 30px;
  margin: 0 0 0 30px;
  border-radius: 25px;
  border: none;
  font-weight: 600;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-light);
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: var(--gradient-secondary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

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

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

  .header .navmenu {
    order: 3;
  }
}

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

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

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

  .navmenu li {
    position: relative;
  }

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

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

  .navmenu li a {
    margin: 0 0.5rem;
    background: rgba(78, 205, 196, 0.1);
    border: 1px solid transparent;
  }

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

  .navmenu li:hover>a::before,
  .navmenu .active::before,
  .navmenu .active:focus::before {
    left: 0;
  }

  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--contrast-color);
    border-color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-light);
  }

  .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: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 80px 20px 20px 20px;
    margin: 0;
    background-color: var(--nav-mobile-background-color);
    overflow-y: visible;
    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(--default-color);
  background: var(--gradient-dark);
  font-size: 16px;
  position: relative;
  border-top: 1px solid rgba(78, 205, 196, 0.2);
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 107, 107, 0.05) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(78, 205, 196, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.footer-main {
  padding: 80px 0 40px 0;
  position: relative;
  z-index: 2;
}

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

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

.footer-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 15px;
  transition: var(--transition-fast);
}

.footer-logo:hover .footer-logo-img {
  transform: scale(1.1);
}

.footer-logo h3 {
  font-size: 28px;
  font-weight: 400;
  margin: 0;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 16px;
}

.footer-social h5 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--contrast-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

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

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  color: var(--accent-color);
  font-size: 20px;
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: var(--gradient-primary);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-color);
}

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

.footer-section h5 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 25px;
  color: var(--contrast-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  position: relative;
}

.footer-section h5::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition-fast);
  position: relative;
  padding-left: 20px;
}

.footer-links a::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  transition: var(--transition-fast);
}

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

.footer-links a:hover::before {
  left: 5px;
}

.newsletter-text {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 25px;
  line-height: 1.6;
}

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

.newsletter-input-group {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 30px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  transition: var(--transition-fast);
}

.newsletter-input-group:focus-within {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-light);
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 15px 20px;
  color: var(--contrast-color);
  font-size: 16px;
  outline: none;
}

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

.newsletter-btn {
  background: var(--gradient-primary);
  border: none;
  padding: 15px 20px;
  color: var(--contrast-color);
  font-size: 18px;
  transition: var(--transition-fast);
  cursor: pointer;
}

.newsletter-btn:hover {
  background: var(--gradient-secondary);
  transform: scale(1.05);
}

.newsletter-disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-bottom {
  background: rgba(0, 0, 0, 0.3);
  padding: 25px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

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

.footer-bottom-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: var(--transition-fast);
}

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

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

.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: 20px;
  font-weight: 400;
  position: relative;
  padding-bottom: 15px;
  color: var(--heading-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer h3 {
  font-size: 24px;
  font-weight: 400;
  color: var(--heading-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.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: 20px;
  bottom: 20px;
  z-index: 99999;
  background: var(--gradient-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-medium);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

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

.scroll-top:hover {
  background: var(--gradient-secondary);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
}

.scroll-top:hover i {
  transform: translateY(-2px);
}

.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 {
  background: var(--gradient-dark);
  padding: 80px 0;
  scroll-margin-top: 90px;
  overflow: clip;
  position: relative;
}

section::before,
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

@media (max-width: 1199px) {

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

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

.section-title h2 {
  font-size: 48px;
  font-weight: 400;
  margin-bottom: 20px;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.section-title p {
  margin-bottom: 0;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding: 120px 0 80px 0;
  display: flex;
  align-items: center;
  background: var(--gradient-dark);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 20%, rgba(255, 107, 107, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(78, 205, 196, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.2;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  margin: 20px 0 30px 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
}

.hero .download-btn {
  color: var(--contrast-color);
  background: var(--gradient-primary);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  padding: 15px 40px;
  border-radius: 30px;
  border: none;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

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

.hero .download-btn:hover::before {
  left: 0;
}

.hero .download-btn+.download-btn {
  margin-left: 20px;
}

.hero .download-btn:hover {
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-heavy);
}

.hero .download-btn i {
  font-size: 16px;
  line-height: 0;
  margin-right: 8px;
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 36px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .hero .download-btn {
    font-size: 14px;
    padding: 12px 25px;
  }

  .section-title h2 {
    font-size: 36px;
  }

  .section-title p {
    font-size: 16px;
  }

  .features .icon-box {
    margin: 0.5rem;
    padding: 30px 15px;
  }

  .features .icon-box h4 {
    font-size: 20px;
  }

  .features .icon-box i {
    font-size: 48px;
  }

  .success-card {
    padding: 30px 20px;
  }

  .success-content h4 {
    font-size: 20px;
  }

  .contact .info-item {
    padding: 30px 20px;
    margin-bottom: 20px;
  }

  .contact .php-email-form {
    padding: 30px 20px;
  }

  .faq .faq-container .faq-item {
    padding: 20px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 18px;
    margin: 0 20px 0 22px;
  }

  #cookie-popup {
    left: 10px;
    right: 10px;
    max-width: none;
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero h2 {
    font-size: 28px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .features .icon-box {
    padding: 20px 10px;
  }

  .features .icon-box h4 {
    font-size: 18px;
  }

  .features .icon-box i {
    font-size: 40px;
  }

  .success-card {
    padding: 25px 15px;
  }

  .success-content h4 {
    font-size: 18px;
  }

  .contact .info-item {
    padding: 20px 15px;
  }

  .contact .php-email-form {
    padding: 20px 15px;
  }

  .faq .faq-container .faq-item {
    padding: 15px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 16px;
    margin: 0 15px 0 17px;
  }

  .header .logo h1 {
    font-size: 24px;
  }

  .header .btn-getstarted {
    padding: 8px 20px;
    font-size: 12px;
  }

  .footer-main {
    padding: 60px 0 30px 0;
  }

  .footer-logo h3 {
    font-size: 24px;
  }

  .footer-logo-img {
    width: 40px;
    height: 40px;
  }

  .social-links {
    gap: 10px;
  }

  .social-link {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .footer-section h5 {
    font-size: 18px;
  }

  .newsletter-input-group {
    flex-direction: column;
    border-radius: 15px;
  }

  .newsletter-input {
    border-radius: 15px 15px 0 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .newsletter-btn {
    border-radius: 0 0 15px 15px;
  }

  .footer-bottom-links {
    justify-content: center;
    margin-top: 15px;
  }
}

/*--------------------------------------------------------------
# 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 {
  background: var(--gradient-secondary);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
}

#features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.features .icon-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px 20px;
  margin: 1rem;
  transition: var(--transition-fast);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.features .icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: var(--transition-fast);
  z-index: -1;
  opacity: 0.1;
}

.features .icon-box:hover::before {
  left: 0;
}

.features .icon-box:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow-medium);
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.faq-elem:hover {
  border-color: var(--accent-color);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.features .icon-box h4 {
  font-size: 24px;
  font-weight: 400;
  margin: 20px 0 15px 0;
  color: var(--contrast-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.features .icon-box i {
  font-size: 60px;
  line-height: 60px;
  color: var(--accent-color);
  margin-bottom: 20px;
  transition: var(--transition-fast);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.features .icon-box:hover i {
  transform: scale(1.1);
  color: var(--contrast-color);
}

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

/*--------------------------------------------------------------
# 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: white;
  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;
  }
}

/*--------------------------------------------------------------
# Success Stories Section
--------------------------------------------------------------*/
.success-stories {
  background: var(--gradient-accent);
  position: relative;
  overflow: hidden;
}

.success-stories::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.success-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  position: relative;
  transition: var(--transition-fast);
  overflow: hidden;
  text-align: center;
}

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

.success-card:hover::before {
  left: 0;
}

.success-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.15);
}

.success-icon {
  margin-bottom: 25px;
}

.success-icon i {
  font-size: 60px;
  color: var(--accent-color);
  transition: var(--transition-fast);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.success-card:hover .success-icon i {
  transform: scale(1.1);
  color: var(--contrast-color);
}

.success-content h4 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
  color: var(--contrast-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.success-quote {
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 25px;
  position: relative;
}

.success-quote::before {
  content: '"';
  font-size: 48px;
  color: var(--accent-color);
  position: absolute;
  top: -10px;
  left: -10px;
  opacity: 0.3;
  font-family: serif;
}

.success-quote::after {
  content: '"';
  font-size: 48px;
  color: var(--accent-color);
  position: absolute;
  bottom: -20px;
  right: -10px;
  opacity: 0.3;
  font-family: serif;
}


@media (max-width: 768px) {
  .success-card {
    padding: 30px 20px;
  }

  .success-icon i {
    font-size: 48px;
  }

  .success-content h4 {
    font-size: 20px;
  }

  .success-quote {
    font-size: 15px;
  }

}

@media (max-width: 480px) {
  .success-card {
    padding: 25px 15px;
  }

  .success-icon i {
    font-size: 40px;
  }

  .success-content h4 {
    font-size: 18px;
  }

  .success-quote {
    font-size: 14px;
  }

}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  position: relative;
  padding: 30px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-light);
}

.faq .faq-container .faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: var(--transition-fast);
  z-index: -1;
  opacity: 0.1;
}

.faq .faq-container .faq-item:hover::before {
  left: 0;
}

.faq .faq-container .faq-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-color);
}


.faq .faq-container .faq-item h3 {
  font-weight: 400;
  font-size: 20px;
  line-height: 1.4;
  margin: 0 30px 0 32px;
  transition: var(--transition-fast);
  cursor: pointer;
  color: var(--contrast-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.faq .faq-container .faq-item h3 span {
  color: var(--accent-color);
  padding-right: 5px;
}

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

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: var(--accent-color);
  transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: var(--contrast-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 40px 30px;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-light);
  text-align: center;
}

.contact .info-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-color);
}

.contact .info-item i {
  font-size: 48px;
  line-height: 0;
  color: var(--accent-color);
  margin-bottom: 20px;
  transition: var(--transition-fast);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.contact .info-item:hover i {
  transform: scale(1.1);
  color: var(--contrast-color);
}

.contact .info-item h3 {
  font-size: 24px;
  font-weight: 400;
  margin: 20px 0 15px 0;
  color: var(--contrast-color);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact .info-item p {
  padding: 0;
  line-height: 1.6;
  font-size: 16px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

.contact .php-email-form {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 40px;
  height: 100%;
  box-shadow: var(--shadow-light);
  transition: var(--transition-fast);
}

.contact .php-email-form:hover {
  box-shadow: var(--shadow-medium);
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 16px;
  padding: 15px 20px;
  box-shadow: none;
  color: var(--contrast-color);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  transition: var(--transition-fast);
  backdrop-filter: blur(5px);
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: var(--shadow-light);
  outline: none;
}

.contact .php-email-form input[type=text]:focus,
.contact .php-email-form input[type=email]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type=submit] {
  background: var(--gradient-primary);
  color: var(--contrast-color);
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-light);
  position: relative;
  overflow: hidden;
}

.contact .php-email-form button[type=submit]::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-secondary);
  transition: var(--transition-fast);
  z-index: -1;
}

.contact .php-email-form button[type=submit]:hover::before {
  left: 0;
}

.contact .php-email-form button[type=submit]:hover {
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: rgba(26, 26, 26, 0.95);
  backdrop-filter: blur(10px);
  color: var(--contrast-color);
  border: 2px solid rgba(78, 205, 196, 0.3);
  border-radius: 15px;
  padding: 25px;
  font-family: var(--default-font);
  box-shadow: var(--shadow-heavy);
  font-size: 16px;
  max-width: 450px;
  z-index: 1000;
  display: none;
  opacity: 0;
  transform: translateY(30px);
  transition: var(--transition-medium);
}

#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(--gradient-primary);
  color: var(--contrast-color);
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition-fast);
  box-shadow: var(--shadow-light);
  position: relative;
  overflow: hidden;
}

#cookie-popup button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-secondary);
  transition: var(--transition-fast);
  z-index: -1;
}

#cookie-popup button:hover::before {
  left: 0;
}

#cookie-popup button:hover {
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

#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: var(--gradient-primary);
  color: var(--contrast-color);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

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

.growth h2 {
  color: var(--contrast-color);
  font-size: 56px;
  font-weight: 400;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.growth p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.6;
}

.lead {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 22px;
}

.btn-primary {
  background: var(--gradient-secondary) !important;
  border: none !important;
  color: var(--contrast-color) !important;
  padding: 15px 40px !important;
  border-radius: 30px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  transition: var(--transition-fast) !important;
  box-shadow: var(--shadow-medium) !important;
  position: relative !important;
  overflow: hidden !important;
}

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

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

.btn-primary:hover {
  transform: translateY(-3px) !important;
  box-shadow: var(--shadow-heavy) !important;
  color: var(--contrast-color) !important;
}