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

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root {
--background-color: #1a1a2e;
--default-color: #16213e;
--heading-color: #0f3460;
--accent-color: #e94560;
--surface-color: #0f3460;
--contrast-color: #f5f5f5;
--bg-color: #16213e;
--nav-color: #e94560;
--nav-hover-color: #c73650;
--nav-mobile-background-color: #0f3460;
--nav-dropdown-background-color: #16213e;
--nav-dropdown-color: #f5f5f5;
--nav-dropdown-hover-color: #e94560;


}

/* Color Presets */

.light-background {
  --background-color: #f8f9fa;
  --surface-color: #ffffff;
  --default-color: #16213e;
  --heading-color: #0f3460;
  --contrast-color: #16213e;
}

.dark-background {
  --background-color: #0f3460;
  --default-color: #f5f5f5;
  --heading-color: #ffffff;
  --surface-color: #16213e;
  --contrast-color: #ffffff;
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .header .navmenu {
    order: 3;
  }
}

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

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

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

  .navmenu li {
    position: relative;
  }

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

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

  .navmenu li a {
    border-bottom: 1px solid var(--accent-color);

    margin: 0 1rem;
  }

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;

    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

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

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

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

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

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

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

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

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;

    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

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

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;

    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--background-color) 100%);
  color: var(--contrast-color);
  position: relative;
  overflow: hidden;
}

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

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

.footer-links h4 {
  color: var(--contrast-color);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 25px;
  position: relative;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  border-radius: 2px;
}

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

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

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.footer-links ul li a:hover {
  color: var(--accent-color);
  transform: translateX(5px);
}

.footer-links ul li a::before {
  content: '▶';
  margin-right: 8px;
  font-size: 12px;
  opacity: 0;
  transition: all 0.3s ease;
}

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

.footer-about h3 {
  color: var(--contrast-color);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-about p {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 30px;
}

.footer-contact h4,
.footer-contact h5 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 20px;
}

.footer-contact .contact-info p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.footer-contact .contact-info i {
  color: var(--accent-color);
  width: 20px;
}

.newsletter {
  margin-top: 30px;
}

.newsletter h5 {
  color: var(--contrast-color);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.newsletter p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 15px;
}

.newsletter-form {
  display: flex;
  gap: 10px;
}

.newsletter-form .form-control {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--contrast-color);
  border-radius: 8px;
  padding: 10px 15px;
}

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

.newsletter-form .btn {
  background: var(--accent-color);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  font-weight: 600;
  white-space: nowrap;
}

.newsletter-form .btn:hover {
  background: #c73650;
  transform: translateY(-2px);
}

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

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

.social-links a:hover {
  background: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(233, 69, 96, 0.3);
}

.copyright {
  background: rgba(0, 0, 0, 0.2);
  padding: 25px 0;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.copyright a:hover {
  text-decoration: underline;
}
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  position: relative;
}

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

.section-title p {
  margin-bottom: 0;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-color) 0%, var(--background-color) 100%);
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(45deg, var(--accent-color), rgba(233, 69, 96, 0.3));
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  top: 50%;
  right: 30%;
  animation-delay: 4s;
}

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

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

.hero-badge {
  display: inline-block;
  background: rgba(233, 69, 96, 0.2);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid var(--accent-color);
}

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

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

.hero-description {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.hero-buttons .btn-primary {
  background: var(--accent-color);
  border: none;
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(233, 69, 96, 0.4);
}

.hero-buttons .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--contrast-color);
  background: transparent;
}

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

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

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

.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

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

.hero-image {
  position: relative;
  z-index: 4;
}

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

.image-container img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  padding: 15px 20px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--heading-color);
  animation: float 4s ease-in-out infinite;
}

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

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

.card-3 {
  top: 60%;
  right: -10px;
  animation-delay: 2s;
}

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

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .hero-stats {
    gap: 20px;
  }
  
  .floating-card {
    display: none;
  }
}
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
}

.hero h2 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: var(--heading-color);
}

.hero p {
  color: var(--default-color);
  margin: 5px 0 10px 0;
  font-size: 20px;
  font-weight: 400;
}

.hero .download-btn {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color) 90%, black 50%);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 30px 10px 30px;
  transition: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
}

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

.hero .download-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
}

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

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

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

  .hero .download-btn {
    font-size: 14px;
    padding: 8px 20px 10px 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}



.about .container {
  position: relative;
  z-index: 2;
}

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

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

.about-subtitle {
  font-size: 1.25rem;
  color: var(--default-color);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.about-content h3 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.about-content .lead {
  font-size: 1.2rem;
  color: var(--default-color);
  margin-bottom: 25px;
  line-height: 1.6;
  font-weight: 500;
}

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

.about-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  flex-wrap: wrap;
}

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

.about-stats .stat-item h4 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
}

.about-stats .stat-item p {
  font-size: 14px;
  color: var(--default-color);
  margin: 0;
  font-weight: 500;
}

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

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

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(233, 69, 96, 0.8), rgba(199, 54, 80, 0.8));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.overlay-content {
  text-align: center;
  color: white;
}

.overlay-content i {
  font-size: 3rem;
  margin-bottom: 15px;
  display: block;
}

.overlay-content span {
  font-size: 1.1rem;
  font-weight: 600;
}

.about-features {
  margin-top: 80px;
}

.about-features .feature-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(233, 69, 96, 0.1);
  position: relative;
  overflow: hidden;
}

.about-features .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-color), #c73650);
}

.about-features .feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.about-features .feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), #c73650);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

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

.about-features .feature-icon i {
  font-size: 35px;
  color: white;
}

.about-features .feature-card h4 {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.about-features .feature-card p {
  color: var(--default-color);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .about-title {
    font-size: 2.5rem;
  }
  
  .about-stats {
    gap: 20px;
    justify-content: center;
  }
  
  .about-stats .stat-item h4 {
    font-size: 2rem;
  }
}
.about ul {
  list-style: none;
  padding: 0;
}

.about ul li {
  padding-bottom: 5px;
  display: flex;
  align-items: center;
  color: var(--default-color);
}

.about h2,
.about h3,
.about p {
  color: var(--default-color) !important;
}

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

.about .read-more {
  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: linear-gradient(135deg, var(--bg-color) 0%, var(--background-color) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}



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

.features-badge {
  display: inline-block;
  background: rgba(233, 69, 96, 0.2);
  color: var(--accent-color);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 1px solid var(--accent-color);
}

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

.features-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.features .feature-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(233, 69, 96, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.features .feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-color), #c73650);
}

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

.features .feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), #c73650);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

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

.features .feature-icon i {
  font-size: 35px;
  color: white;
}

.features .feature-card h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.features .feature-card p {
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 25px;
}

.feature-link {
  margin-top: auto;
}

.feature-link a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.feature-link a:hover {
  color: #c73650;
  transform: translateX(5px);
}

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

.feature-link a:hover i {
  transform: translateX(3px);
}

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

.features-cta h3 {
  color: var(--contrast-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

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

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

.cta-buttons .btn {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
  background: var(--accent-color);
  border: none;
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.cta-buttons .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(233, 69, 96, 0.4);
  background: #c73650;
}

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

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

@media (max-width: 768px) {
  .features-title {
    font-size: 2.5rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}
#features {
  background-color: var(--bg-color);
  color: var(--contrast-color);
}



.features .icon-box {
  display: flex;
  align-items: center;
  width: 30%;
  margin: 1rem;
}

.features .icon-box {
  background: var(--bg-primary);
  border: 2px solid #f0f0f0;
  border-radius: 1rem;
  padding: 0.5rem 0;
}

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

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

.features .icon-box h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
}

.features .icon-box i {
  font-size: 44px;
  line-height: 44px;
  color: var(--accent-color);
  margin-right: 15px;
}

.features .icon-box p {
  font-size: 15px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/
.feature-details .features-item {
  color: var(--contrast-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-details h3,
.feature-details p {
  color: var(--contrast-color) !important;
}



.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;;
  border-radius: 1rem;
  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: var(--default-color);
  line-height: 1.5;
}

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

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

.feature-item .feature-text {
  color: var(--default-color) !important;
}


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

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

.testimonials-section h2,
.testimonials-section p {
  color: var(--contrast-color) !important;
}


.testimonial-card {
  background-color: var(--surface-color);
  padding: 40px 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  color: var(--default-color);
}

.testimonial-card h3,
.testimonial-card p {
  color: var(--default-color) !important;
}

.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);
  border-radius: 1rem;
}

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

/*--------------------------------------------------------------
# Methods Section
--------------------------------------------------------------*/
.methods {
  padding: 80px 0;
}

.method-card {
  background: var(--surface-color);
  padding: 40px 30px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
}

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

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

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

.method-icon i {
  font-size: 35px;
  color: white;
}

.method-card h3 {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: var(--heading-font);
}

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

/*--------------------------------------------------------------
# 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;
  border-radius: 1rem;
}

.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 .faq-container {
  margin-top: 15px;
}

.faq .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
  border-radius: 1rem
  ;
}


.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
  color: var(--default-color);
}

.faq h2,
.faq p {
  color: var(--default-color) !important;
}

.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 {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}



.contact .container {
  position: relative;
  z-index: 2;
}

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

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

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

/* Contact Cards */
.contact-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(233, 69, 96, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-color), #c73650);
}

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

.card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent-color), #c73650);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: all 0.3s ease;
}

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

.card-icon i {
  font-size: 35px;
  color: white;
}

.contact-card h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
}

.contact-card p {
  color: var(--default-color);
  text-align: center;
  margin-bottom: 25px;
  line-height: 1.6;
}

.contact-link {
  display: block;
  text-align: center;
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.1rem;
}

.contact-link:hover {
  color: #c73650;
  transform: translateY(-2px);
}

/* Contact Form */
.contact-form-container {
  background: white;
  border-radius: 25px;
  padding: 50px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(233, 69, 96, 0.1);
  position: relative;
  overflow: hidden;
}

.contact-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-color), #c73650);
}

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

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

.form-header p {
  color: var(--default-color);
  font-size: 1.1rem;
  margin: 0;
}

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

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

.contact-form .form-control {
  border: 2px solid #e9ecef;
  border-radius: 12px;
  padding: 15px 20px;
  font-size: 16px;
  transition: all 0.3s ease;
  background: #f8f9fa;
  color: var(--default-color);
}

.contact-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 0.2rem rgba(233, 69, 96, 0.25);
  outline: none;
  background: white;
}

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

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

.contact-form .form-check-input {
  border: 2px solid #e9ecef;
  border-radius: 4px;
}

.contact-form .form-check-input:checked {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
}

.contact-form .form-check-label {
  color: var(--default-color);
  font-size: 14px;
  line-height: 1.5;
}

.contact-form .form-check-label a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}

.contact-form .form-check-label a:hover {
  text-decoration: underline;
}

.contact-form .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), #c73650);
  border: none;
  border-radius: 12px;
  padding: 15px 40px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.contact-form .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(233, 69, 96, 0.4);
  background: linear-gradient(135deg, #c73650, var(--accent-color));
}

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

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

.form-messages .loading {
  background: #e3f2fd;
  color: #1976d2;
}

.form-messages .error-message {
  background: #ffebee;
  color: #d32f2f;
}

.form-messages .sent-message {
  background: #e8f5e8;
  color: #2e7d32;
}

/* Additional Info */
.contact-additional-info {
  background: white;
  border-radius: 20px;
  padding: 50px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(233, 69, 96, 0.1);
}

.contact-additional-info .info-item {
  padding: 20px;
  transition: all 0.3s ease;
}

.contact-additional-info .info-item:hover {
  transform: translateY(-5px);
}

.contact-additional-info .info-item i {
  font-size: 2.5rem;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.contact-additional-info .info-item h4 {
  color: var(--heading-color);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.contact-additional-info .info-item p {
  color: var(--default-color);
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .contact-title {
    font-size: 2.5rem;
  }
  
  .contact-form-container {
    padding: 30px 20px;
  }
  
  .contact-card {
    padding: 30px 20px;
  }
  
  .contact-additional-info {
    padding: 30px 20px;
  }
}
.contact .info-item {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  ;
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
  color: var(--heading-color);
}

.contact h2,
.contact p {
  color: var(--default-color) !important;
}

.contact .info-item p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .php-email-form {
  background: color-mix(in srgb, var(--default-color), transparent 96%);
  padding: 30px;
  height: 100%;
  ;
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  color: var(--default-color);
  background-color: color-mix(in srgb, var(--background-color), transparent 50%);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.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(--accent-color);
  color: var(--contrast-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 1rem;
}

.contact .php-email-form button[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  transform: translateX(-50%);
  background: #f8f9fa;
  color: #16213e;
  border: none;
  padding: 20px;
  font-family: "Volkhov", 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-container {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    padding: 0 3%;
}

.swiper-wrapper {
    display: flex;
    transition: transform 0.3s ease;
}

.swiper-slide {
    width: 33.33%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.swiper-slide-active {
    opacity: 1;
}

.swiper-slide-next,
.swiper-slide-prev {
    opacity: 0.5;
}

.swiper-button-next, .swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 10px;
    border-radius: 50%;
    font-size: 24px;
    z-index: 10;
    cursor: pointer;
}

.swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
}

.swiper-button-next:hover, .swiper-button-prev:hover {
    background-color: rgba(0, 0, 0, 0.8);
}


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

.growth {
  background-image: url('/assets/img/main.avif');
  background-size: cover;
  background-position: center;
  color: var(--contrast-color);
  padding: 300px 0;
}

.growth h2,
.growth p {
  color: var(--contrast-color) !important;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

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

/*--------------------------------------------------------------
# Contact Section Buttons
--------------------------------------------------------------*/
.contact .btn-primary {
  background: linear-gradient(135deg, var(--accent-color), #c73650);
  border: none;
  padding: 15px 35px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
  position: relative;
  overflow: hidden;
}

.contact .btn-primary::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: left 0.5s ease;
}

.contact .btn-primary:hover::before {
  left: 100%;
}

.contact .btn-primary:hover {
  background: linear-gradient(135deg, #c73650, #a02d47);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(233, 69, 96, 0.4);
  color: white;
}

.contact .btn-primary:active {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(233, 69, 96, 0.3);
}

.contact .btn-outline-primary {
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  padding: 13px 33px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact .btn-outline-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  transition: left 0.3s ease;
  z-index: -1;
}

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

.contact .btn-outline-primary:hover {
  color: white;
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.contact .btn-outline-primary:active {
  transform: translateY(-1px);
}

.contact .btn-outline-light {
  border: 2px solid rgba(255, 255, 255, 0.8);
  color: white;
  background: transparent;
  padding: 13px 33px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.contact .btn-outline-light::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.3s ease;
  z-index: -1;
}

.contact .btn-outline-light:hover::before {
  left: 0;
}

.contact .btn-outline-light:hover {
  color: white;
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.contact .btn-outline-light:active {
  transform: translateY(-1px);
}

/* Contact CTA Buttons */
.contact .cta-buttons .btn {
  margin: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact .cta-buttons .btn i {
  font-size: 16px;
}

/* Contact Form Submit Button */
.contact .contact-form .btn-primary {
  width: 100%;
  padding: 15px 30px;
  font-size: 16px;
  margin-top: 10px;
}

/* Contact Submit Button Special Styles */
.contact-submit-btn {
  background: linear-gradient(135deg, var(--accent-color), #c73650) !important;
  border: none !important;
  padding: 18px 40px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  color: white !important;
  transition: all 0.3s ease !important;
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4) !important;
  position: relative !important;
  overflow: hidden !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  min-width: 250px !important;
}

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

.contact-submit-btn:hover::before {
  left: 100%;
}

.contact-submit-btn:hover {
  background: linear-gradient(135deg, #c73650, #a02d47) !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 20px 50px rgba(233, 69, 96, 0.5) !important;
  color: white !important;
}

.contact-submit-btn:active {
  transform: translateY(-2px) !important;
  box-shadow: 0 15px 35px rgba(233, 69, 96, 0.4) !important;
}

.contact-submit-btn:focus {
  outline: none !important;
  box-shadow: 0 0 0 4px rgba(233, 69, 96, 0.3) !important;
}

.contact-submit-btn i {
  font-size: 16px;
  transition: transform 0.3s ease;
}

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

/* Loading state for submit button */
.contact-submit-btn:disabled {
  opacity: 0.7 !important;
  cursor: not-allowed !important;
  transform: none !important;
}

.contact-submit-btn:disabled:hover {
  transform: none !important;
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.4) !important;
}

/* Newsletter Button */
.contact .newsletter-form .btn-primary {
  padding: 12px 25px;
  font-size: 14px;
  border-radius: 8px;
  margin-left: 10px;
}

@media (max-width: 768px) {
  .contact .cta-buttons .btn {
    margin: 5px;
    width: 100%;
    max-width: 300px;
  }
  
  .contact .newsletter-form .btn-primary {
  margin-left: 0;
  margin-top: 10px;
  width: 100%;
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

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

.testimonials-section .container {
  position: relative;
  z-index: 2;
}

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

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

.testimonials-subtitle {
  font-size: 1.25rem;
  color: var(--default-color);
  max-width: 600px;
  margin: 0 auto 50px;
  line-height: 1.6;
}

.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
  border: 1px solid rgba(233, 69, 96, 0.1);
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(135deg, var(--accent-color), #c73650);
}

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

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

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

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: var(--default-color);
  margin-bottom: 30px;
  font-style: italic;
  text-align: center;
}

.testimonial-text::before {
  content: '"';
  font-size: 24px;
  color: var(--accent-color);
  font-weight: bold;
}

.testimonial-text::after {
  content: '"';
  font-size: 24px;
  color: var(--accent-color);
  font-weight: bold;
}

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

.author-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), #c73650);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
}

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

.author-info span {
  font-size: 14px;
  color: var(--default-color);
  font-weight: 500;
}

.testimonials-cta {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
  padding: 50px 30px;
  text-align: center;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(233, 69, 96, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.testimonials-cta h3 {
  color: var(--heading-color);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.testimonials-cta p {
  color: var(--default-color);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.testimonials-cta .btn {
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.testimonials-cta .btn-primary {
  background: var(--accent-color);
  border: none;
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.testimonials-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(233, 69, 96, 0.4);
  background: #c73650;
}

@media (max-width: 768px) {
  .testimonials-title {
    font-size: 2.5rem;
  }
  
  .testimonial-card {
    padding: 30px 20px;
  }
  
  .testimonial-author {
    flex-direction: column;
    text-align: center;
  }
  
  .testimonials-cta {
    padding: 40px 20px;
  }
  
  .testimonials-cta h3 {
    font-size: 1.5rem;
  }
}
}