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

/* Global Colors - Dark Classic Theme */
:root {
  --background-color: #0d0d0d;             
  --default-color: #e0e0e0;                
  --heading-color: #ffffff;                
  --accent-color: #d4af37;                 
  --surface-color: #1a1a1a;                
  --contrast-color: #ffffff;              
  --bg-color: #141414;                    
  --nav-color: #b0b0b0;                   
  --nav-hover-color: #d4af37;             
  --nav-mobile-background-color: #1a1a1a; 
  --nav-dropdown-background-color: #2a2a2a; 
  --nav-dropdown-color: #e0e0e0;          
  --nav-dropdown-hover-color: #d4af37;    
}

/* Color Presets */

.light-background {
  --background-color: #1a1a1a;
  --surface-color: #2a2a2a;
}

.dark-background {
  --background-color: #0d0d0d;
  --default-color: #e0e0e0;
  --heading-color: #ffffff;
  --surface-color: #1a1a1a;
  --contrast-color: #ffffff;
}


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

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

@media (max-width: 991px) {
  body {
    padding-top: 70px;
  }
}

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

/*--------------------------------------------------------------
# New Header Design
--------------------------------------------------------------*/
.header-new {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 26, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
  z-index: 9999;
  transition: all 0.3s ease;
}

.header-new.scrolled {
  background: rgba(13, 13, 13, 0.98);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
  border-bottom: 2px solid rgba(212, 175, 55, 0.3);
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}

.header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 40px;
}

.logo-new {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--heading-color);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

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

.logo-icon-new {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d0d0d;
  font-size: 24px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

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

.logo-main {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--heading-color);
  letter-spacing: -0.5px;
}

.logo-sub {
  font-size: 11px;
  color: var(--accent-color);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.nav-list-new {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}

.nav-link-new {
  padding: 10px 20px;
  text-decoration: none;
  color: var(--default-color);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  display: block;
}

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

.nav-link-new:hover,
.nav-link-new.active {
  color: var(--accent-color);
  background: rgba(212, 175, 55, 0.1);
  border-color: var(--accent-color);
}

.nav-link-new:hover::after,
.nav-link-new.active::after {
  width: 60%;
}

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

.header-phone {
  width: 44px;
  height: 44px;
  border: 2px solid var(--accent-color);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.header-phone:hover {
  background: var(--accent-color);
  color: #0d0d0d;
  transform: scale(1.05);
}

.btn-book-new {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--accent-color);
  color: #0d0d0d;
  text-decoration: none;
  border: 2px solid var(--accent-color);
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.btn-book-new:hover {
  background: transparent;
  color: var(--accent-color);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.5);
}

.btn-book-new i {
  transition: transform 0.3s ease;
}

.btn-book-new:hover i {
  transform: translateX(3px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  justify-content: center;
}

.menu-toggle span {
  width: 24px;
  height: 3px;
  background: var(--heading-color);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #1a1a1a;
  border-left: 2px solid var(--accent-color);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.8);
  z-index: 10000;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

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

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(139, 69, 19, 0.1);
}

.mobile-logo {
  font-size: 24px;
  font-weight: 800;
  color: var(--heading-color);
  text-decoration: none;
}

.menu-close {
  width: 40px;
  height: 40px;
  border: 2px solid var(--accent-color);
  background: transparent;
  color: var(--accent-color);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.menu-close:hover {
  background: var(--accent-color);
  color: #0d0d0d;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.mobile-nav-link {
  padding: 15px 20px;
  text-decoration: none;
  color: var(--default-color);
  font-weight: 600;
  font-size: 16px;
  border: 1px solid transparent;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {
  background: rgba(212, 175, 55, 0.1);
  color: var(--accent-color);
  border-left-color: var(--accent-color);
  padding-left: 25px;
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid rgba(139, 69, 19, 0.1);
}

.mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.mobile-contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--default-color);
  text-decoration: none;
  font-size: 14px;
}

.mobile-contact-link i {
  width: 36px;
  height: 36px;
  border: 2px solid var(--accent-color);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  flex-shrink: 0;
}

.mobile-social {
  display: flex;
  gap: 12px;
}

.mobile-social-link {
  width: 44px;
  height: 44px;
  border: 2px solid var(--accent-color);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.mobile-social-link:hover {
  background: var(--accent-color);
  color: #0d0d0d;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .nav-new {
    display: none;
  }
  
  .header-phone,
  .btn-book-new {
    display: none;
  }
  
  .menu-toggle {
    display: flex;
  }
  
  .header-wrapper {
    height: 70px;
  }
  
  .logo-icon-new {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
  
  .logo-main {
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .header-container {
    padding: 0 20px;
  }
  
  .mobile-menu {
    max-width: 100%;
  }
}


/*--------------------------------------------------------------
# Global Header (Old - Keep for compatibility)
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--surface-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.5s;
  z-index: 997;
}

.header-top {
  background-color: var(--heading-color);
  color: var(--contrast-color);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-contact-info {
  font-size: 14px;
}

.header-contact-link {
  color: var(--contrast-color);
  text-decoration: none;
  transition: 0.3s;
  display: flex;
  align-items: center;
}

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

.header-social-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header-social-link {
  color: var(--contrast-color);
  font-size: 16px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
}

.header-social-link:hover {
  color: var(--accent-color);
  background-color: rgba(255, 255, 255, 0.1);
}

.header-main {
  background-color: var(--surface-color);
}

.header .logo {
  line-height: 1;
  text-decoration: none;
  color: var(--heading-color);
  transition: 0.3s;
}

.header .logo:hover {
  color: var(--accent-color);
}

.logo-icon {
  font-size: 36px;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  border-radius: 12px;
}

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

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

.logo-subtitle {
  font-size: 12px;
  color: var(--default-color);
  opacity: 0.8;
  margin: 0;
  line-height: 1;
}

.btn-header-cta {
  padding: 10px 24px;
  font-weight: 600;
  border-radius: 8px;
  white-space: nowrap;
}

.scrolled .header {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

@media (max-width: 991px) {
  .header-top {
    display: none !important;
  }
  
  .logo-title {
    font-size: 24px;
  }
  
  .logo-icon {
    width: 40px;
    height: 40px;
    font-size: 28px;
  }
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    padding: 10px 16px;
    font-size: 15px;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: all 0.3s ease;
    color: var(--heading-color);
    border-radius: 8px;
    text-decoration: none;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }
  
  .navmenu li:hover>a,
  .navmenu .active,
  .navmenu .active:focus {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(210, 105, 30, 0.3);
  }

  .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: 991px) {
  .mobile-nav-toggle {
    color: var(--heading-color);
    font-size: 32px;
    line-height: 0;
    cursor: pointer;
    transition: all 0.3s;
    padding: 8px;
    border-radius: 8px;
  }
  
  .mobile-nav-toggle:hover {
    background-color: var(--bg-color);
    color: var(--accent-color);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--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;
  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: #0d0d0d;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  opacity: 1;
  visibility: visible;
}

#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

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

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

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

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

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

@media (max-width: 1199px) {

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

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

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

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

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 80vh;
  position: relative;
  padding: 120px 0 80px 0;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--background-color) 0%, #f7fafc 100%);
}

.hero-wrapper {
  margin-bottom: 80px;
}

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

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

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

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

.hero-visual {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.about-wrapper {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

.about-visual {
  position: relative;
}

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

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

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

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

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

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

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

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

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


/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
#features {
  background-color: var(--surface-color);
  color: var(--default-color);
  padding: 80px 0;
}

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

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

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

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

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

.feature-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

.feature-card:hover .feature-icon-wrapper {
  transform: scale(1.1);
  box-shadow: 0 10px 25px rgba(229, 62, 62, 0.3);
}

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

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

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

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

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

.feature-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  padding: 10px 20px;
  border: 2px solid var(--accent-color);
  border-radius: 25px;
  background: transparent;
}

.feature-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateX(5px);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# New Pricing Section - Dark Classic Theme
--------------------------------------------------------------*/
.pricing-new {
  padding: 100px 0;
  background: var(--background-color);
}

.pricing-header-new {
  margin-bottom: 60px;
}

.pricing-badge-new {
  display: inline-block;
  padding: 8px 20px;
  background: var(--accent-color);
  color: #0d0d0d;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
  border: 2px solid var(--accent-color);
}

.pricing-title-new {
  font-size: 42px;
  font-weight: 800;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.pricing-description-new {
  font-size: 18px;
  color: var(--default-color);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.pricing-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 60px;
}

.pricing-card-new {
  background: var(--surface-color);
  border: 2px solid rgba(212, 175, 55, 0.2);
  padding: 0;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card-new:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.2);
  transform: translateY(-5px);
}

.pricing-card-featured-new {
  border-color: var(--accent-color);
  border-width: 3px;
  background: #1f1f1f;
}

.pricing-badge-featured-new {
  position: absolute;
  top: -15px;
  right: 20px;
  background: var(--accent-color);
  color: #0d0d0d;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid var(--accent-color);
  z-index: 10;
}

.pricing-card-header-new {
  padding: 40px 30px 30px;
  border-bottom: 2px solid rgba(212, 175, 55, 0.2);
  text-align: center;
}

.pricing-card-title-new {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card-price-new {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}

.price-main-new {
  font-size: 56px;
  font-weight: 800;
  color: var(--accent-color);
  line-height: 1;
}

.price-currency-new {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
}

.price-period-new {
  font-size: 14px;
  color: var(--default-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.pricing-savings-new {
  margin-top: 15px;
}

.savings-badge-new {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-color);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card-body-new {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.pricing-features-new {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  flex: 1;
}

.pricing-features-new li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
}

.pricing-features-new li:last-child {
  border-bottom: none;
}

.pricing-features-new li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.pricing-features-new li span {
  flex: 1;
}

.pricing-card-footer-new {
  margin-top: auto;
  padding-top: 20px;
  border-top: 2px solid rgba(212, 175, 55, 0.2);
}

.pricing-btn-new {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px 24px;
  background: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.pricing-btn-new:hover {
  background: var(--accent-color);
  color: #0d0d0d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

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

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

.pricing-btn-featured-new {
  background: var(--accent-color);
  color: #0d0d0d;
}

.pricing-btn-featured-new:hover {
  background: transparent;
  color: var(--accent-color);
}

.pricing-footer-new {
  margin-top: 60px;
}

.pricing-info-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  padding: 40px;
  background: var(--surface-color);
  border: 2px solid rgba(212, 175, 55, 0.2);
}

.pricing-info-item-new {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.pricing-info-item-new i {
  width: 50px;
  height: 50px;
  border: 2px solid var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 24px;
  flex-shrink: 0;
}

.pricing-info-item-new strong {
  display: block;
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

@media (max-width: 1200px) {
  .pricing-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .pricing-info-new {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .pricing-new {
    padding: 60px 0;
  }
  
  .pricing-title-new {
    font-size: 32px;
  }
  
  .pricing-grid-new {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .pricing-info-new {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px;
  }
  
  .price-main-new {
    font-size: 48px;
  }
  
  .price-currency-new {
    font-size: 28px;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  padding: 80px 0;
}

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

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

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

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

.faq-card {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  height: 100%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  position: relative;
  overflow: hidden;
}

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

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

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

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

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

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

.faq-question {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 0;
  line-height: 1.3;
}

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

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

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

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

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

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

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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# New Contact Form Styles
--------------------------------------------------------------*/
.contact-form-new {
  margin-top: 30px;
}

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

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

.contact-form-new .form-label-new .required-star {
  color: var(--accent-color);
  margin-left: 4px;
}

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

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

.contact-form-new .form-input-new::placeholder,
.contact-form-new .form-textarea-new::placeholder {
  color: #a0aec0;
}

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

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

.contact-form-new .form-input-new.is-invalid:focus,
.contact-form-new .form-textarea-new.is-invalid:focus {
  border-color: #c53030;
  box-shadow: 0 0 0 3px rgba(197, 48, 48, 0.1);
}

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

.contact-form-new .form-input-new.is-valid:focus,
.contact-form-new .form-textarea-new.is-valid:focus {
  border-color: #2f855a;
  box-shadow: 0 0 0 3px rgba(47, 133, 90, 0.1);
}

.contact-form-new .invalid-feedback {
  display: none;
  color: #c53030;
  font-size: 14px;
  margin-top: 5px;
}

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

.contact-form-new .form-submit-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  background: var(--accent-color);
  color: #0d0d0d;
  border: 2px solid var(--accent-color);
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.contact-form-new .form-submit-button:hover {
  background: transparent;
  color: var(--accent-color);
  box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
}

.contact-form-new .form-submit-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-form-new .form-submit-button svg {
  transition: transform 0.3s ease;
}

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

.contact-form-new .form-status {
  margin-top: 20px;
}

.contact-form-new .form-status .loading,
.contact-form-new .form-status .error-message,
.contact-form-new .form-status .sent-message {
  display: none;
  padding: 15px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
}

.contact-form-new .form-status .loading {
  background: #e2e8f0;
  color: var(--default-color);
}

.contact-form-new .form-status .error-message {
  background: #fed7d7;
  color: #c53030;
}

.contact-form-new .form-status .sent-message {
  background: #c6f6d5;
  color: #2f855a;
}

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

#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  transform: translateX(-50%);
  background: #1a1a1a;
  color: #e0e0e0;
  border: 2px solid var(--accent-color);
  padding: 20px;
  font-family: var(--default-font);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
  font-size: 14px;
  max-width: 400px;
  z-index: 1000;
  display: none;
  opacity: 0;
  transform: translateY(30px);
  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: #0d0d0d;
  border: 2px solid var(--accent-color);
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

#cookie-popup .popup-message {
  max-width: 80%;
}

#cookie-popup .popup-message a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

#cookie-popup .popup-message a:hover {
  color: var(--accent-color);
}

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

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

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

.about_elem {
  margin-bottom: 2rem;
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# New Footer Styles
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(135deg, #3d2817 0%, #5d4037 100%);
  color: #f5f5f5;
  position: relative;
}

.footer-main {
  padding: 60px 0 40px;
  position: relative;
}

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

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

.footer-logo {
  margin-bottom: 25px;
}

.footer-logo-icon {
  font-size: 40px;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 30%));
  border-radius: 12px;
  margin-right: 15px;
}

.footer-brand {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 5px;
  line-height: 1.2;
}

.footer-tagline {
  font-size: 13px;
  color: #d4a574;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 16px;
}

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

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

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

.footer-links a {
  color: #e8e8e8;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  position: relative;
  display: inline-block;
  padding-left: 20px;
}

.footer-links a::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-color);
  transition: all 0.3s ease;
  font-size: 12px;
}

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

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

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

.footer-contact .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
  color: #e8e8e8;
  font-size: 14px;
}

.footer-contact .contact-item i {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 18px;
  width: 24px;
  text-align: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.footer-contact .contact-item strong {
  display: block;
  color: #ffffff;
  margin-bottom: 5px;
  font-size: 14px;
}

.footer-contact .contact-item p {
  margin: 0;
  line-height: 1.6;
}

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

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

.footer-social {
  margin-top: 20px;
}

.footer-social-title {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

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

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

.social-link:hover {
  background: var(--accent-color);
  color: #ffffff;
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(210, 105, 30, 0.3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px 0;
  background: rgba(0, 0, 0, 0.2);
}

.copyright-text {
  color: #d4a574;
  font-size: 15px;
  margin-bottom: 0;
  font-weight: 500;
}

.legal-info {
  margin-top: 10px;
}

.legal-info small {
  font-size: 12px;
  line-height: 1.6;
  color: #b8b8b8;
}

.footer-note {
  color: #d4a574;
  font-size: 14px;
  margin-bottom: 0;
  font-weight: 500;
}

.footer-note .bi-heart-fill {
  animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.2);
  }
}

@media (max-width: 768px) {
  .footer-main {
    padding: 40px 0 30px;
  }
  
  .footer-brand {
    font-size: 24px;
  }
  
  .footer-logo-icon {
    width: 50px;
    height: 50px;
    font-size: 32px;
  }
}

/* Social Links (if needed in future) */
.social-links {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

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

.social-link:hover {
  background: var(--accent-color);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(229, 62, 62, 0.3);
}

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

/*--------------------------------------------------------------
# New Footer Design
--------------------------------------------------------------*/
.footer-new {
  background: #0d0d0d;
  border-top: 2px solid var(--accent-color);
  color: #e0e0e0;
  margin-top: 100px;
}

.footer-top-new {
  padding: 80px 0 60px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-grid-new {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 50px;
}

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

.footer-logo-new {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: 800;
  color: white;
}

.footer-logo-new i {
  width: 50px;
  height: 50px;
  background: var(--accent-color);
  border: 2px solid var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #0d0d0d;
}

.footer-tagline-new {
  font-size: 15px;
  line-height: 1.8;
  color: #c8c8c8;
  margin-bottom: 30px;
}

.footer-social-new {
  display: flex;
  gap: 12px;
}

.social-btn-new {
  width: 44px;
  height: 44px;
  border: 2px solid var(--accent-color);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s ease;
}

.social-btn-new:hover {
  background: var(--accent-color);
  color: #0d0d0d;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-links-col {
  display: flex;
  flex-direction: column;
}

.footer-heading-new {
  font-size: 18px;
  font-weight: 700;
  color: white;
  margin-bottom: 25px;
  position: relative;
  padding-bottom: 15px;
}

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

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

.footer-links-new a {
  color: #c8c8c8;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  padding-left: 0;
  position: relative;
}

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

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

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

.footer-contact-new {
  display: flex;
  flex-direction: column;
}

.contact-info-new {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.contact-item-new {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-item-new i {
  width: 44px;
  height: 44px;
  border: 2px solid var(--accent-color);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  font-size: 18px;
  flex-shrink: 0;
}

.contact-item-new strong {
  display: block;
  color: white;
  font-size: 14px;
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-item-new p {
  margin: 0;
  font-size: 14px;
  color: #c8c8c8;
  line-height: 1.6;
}

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

.contact-item-new a:hover {
  color: var(--accent-color);
}

.footer-bottom-new {
  padding: 30px 0;
  background: #0a0a0a;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}

.copyright-new {
  font-size: 15px;
  color: #a8a8a8;
  margin: 0;
  font-weight: 500;
}

.legal-new {
  font-size: 13px;
  color: #888;
  margin: 0;
}

@media (max-width: 1200px) {
  .footer-grid-new {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
  }
  
  .footer-contact-new {
    grid-column: 1 / -1;
    margin-top: 20px;
  }
  
  .contact-info-new {
    flex-direction: row;
    flex-wrap: wrap;
  }
  
  .contact-item-new {
    flex: 1;
    min-width: 250px;
  }
}

@media (max-width: 991px) {
  .footer-grid-new {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  
  .footer-brand-new {
    grid-column: 1 / -1;
    max-width: 100%;
  }
  
  .footer-links-group {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
  }
  
  .contact-info-new {
    flex-direction: column;
  }
  
  .contact-item-new {
    min-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer-top-new {
    padding: 60px 0 40px;
  }
  
  .footer-grid-new {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links-group {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .footer-bottom-content {
    text-align: left;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .footer-top-new {
    padding: 50px 0 30px;
  }
  
  .footer-logo-new {
    font-size: 24px;
  }
  
  .footer-logo-new i {
    width: 44px;
    height: 44px;
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# Legal Pages Styles (Terms, Privacy Policy, Cookie Policy)
--------------------------------------------------------------*/

/* Impressum Section (Terms Page) */
.impressum {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, var(--background-color) 0%, #f7fafc 100%);
}

.impressum-header {
  margin-bottom: 50px;
}

.impressum-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.impressum-description {
  font-size: 18px;
  color: var(--default-color);
  margin-bottom: 0;
}

.impressum-content {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.impressum-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e2e8f0;
}

.impressum-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.impressum-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.impressum-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 15px;
}

.impressum-section p:last-child {
  margin-bottom: 0;
}

.impressum-section strong {
  color: var(--heading-color);
  font-weight: 600;
}

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

.impressum-section a:hover {
  color: var(--heading-color);
  text-decoration: underline;
}

/* Terms Section (Terms Page) */
.terms {
  padding: 80px 0;
}

.terms-header {
  margin-bottom: 50px;
}

.terms-title {
  font-size: 36px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  line-height: 1.2;
}

.terms-description {
  font-size: 16px;
  color: var(--default-color);
  margin-bottom: 0;
}

.terms-content {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.terms-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e2e8f0;
}

.terms-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.terms-section h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.terms-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 15px;
}

.terms-section p:last-child {
  margin-bottom: 0;
}

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

.terms-section a:hover {
  color: var(--heading-color);
  text-decoration: underline;
}

/* Privacy Hero Section */
.privacy-hero {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, var(--background-color) 0%, #f7fafc 100%);
}

.privacy-hero-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.privacy-hero-description {
  font-size: 18px;
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 20px;
}

.privacy-hero-updated {
  font-size: 14px;
  color: #888;
  margin-bottom: 0;
}

.privacy-hero-updated strong {
  color: var(--heading-color);
  font-weight: 600;
}

/* Privacy Content Section */
.privacy-content {
  padding: 80px 0;
}

.privacy-content-wrapper {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.privacy-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e2e8f0;
}

.privacy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.privacy-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.privacy-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.privacy-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 15px;
}

.privacy-section p:last-child {
  margin-bottom: 0;
}

.privacy-section ul {
  margin: 20px 0;
  padding-left: 25px;
}

.privacy-section ul li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 10px;
}

.privacy-section ul li:last-child {
  margin-bottom: 0;
}

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

.privacy-section a:hover {
  color: var(--heading-color);
  text-decoration: underline;
}

.privacy-section strong {
  color: var(--heading-color);
  font-weight: 600;
}

/* Cookie Hero Section */
.cookie-hero {
  padding: 100px 0 80px;
  background: linear-gradient(135deg, var(--background-color) 0%, #f7fafc 100%);
}

.cookie-hero-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.2;
}

.cookie-hero-description {
  font-size: 18px;
  color: var(--default-color);
  line-height: 1.8;
  margin-bottom: 20px;
}

.cookie-hero-updated {
  font-size: 14px;
  color: #888;
  margin-bottom: 0;
}

.cookie-hero-updated strong {
  color: var(--heading-color);
  font-weight: 600;
}

/* Cookie Content Section */
.cookie-content {
  padding: 80px 0;
}

.cookie-content-wrapper {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cookie-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e2e8f0;
}

.cookie-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cookie-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  line-height: 1.3;
}

.cookie-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  margin-top: 30px;
  margin-bottom: 15px;
  line-height: 1.3;
}

.cookie-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 15px;
}

.cookie-section p:last-child {
  margin-bottom: 0;
}

.cookie-section ul {
  margin: 20px 0;
  padding-left: 25px;
}

.cookie-section ul li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 10px;
}

.cookie-section ul li:last-child {
  margin-bottom: 0;
}

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

.cookie-section a:hover {
  color: var(--heading-color);
  text-decoration: underline;
}

.cookie-section strong {
  color: var(--heading-color);
  font-weight: 600;
}

/* Responsive Styles for Legal Pages */
@media (max-width: 991px) {
  .impressum-title,
  .privacy-hero-title,
  .cookie-hero-title {
    font-size: 36px;
  }
  
  .terms-title {
    font-size: 32px;
  }
  
  .impressum-content,
  .terms-content,
  .privacy-content-wrapper,
  .cookie-content-wrapper {
    padding: 40px 30px;
  }
}

@media (max-width: 768px) {
  .impressum,
  .privacy-hero,
  .cookie-hero {
    padding: 80px 0 60px;
  }
  
  .terms,
  .privacy-content,
  .cookie-content {
    padding: 60px 0;
  }
  
  .impressum-title,
  .privacy-hero-title,
  .cookie-hero-title {
    font-size: 32px;
  }
  
  .terms-title {
    font-size: 28px;
  }
  
  .impressum-description,
  .privacy-hero-description,
  .cookie-hero-description {
    font-size: 16px;
  }
  
  .impressum-content,
  .terms-content,
  .privacy-content-wrapper,
  .cookie-content-wrapper {
    padding: 30px 20px;
    border-radius: 15px;
  }
  
  .impressum-section h2,
  .privacy-section h2,
  .cookie-section h2 {
    font-size: 22px;
  }
  
  .terms-section h3,
  .privacy-section h3,
  .cookie-section h3 {
    font-size: 18px;
  }
}

@media (max-width: 576px) {
  .impressum,
  .privacy-hero,
  .cookie-hero {
    padding: 60px 0 40px;
  }
  
  .terms,
  .privacy-content,
  .cookie-content {
    padding: 40px 0;
  }
  
  .impressum-title,
  .privacy-hero-title,
  .cookie-hero-title {
    font-size: 28px;
  }
  
  .terms-title {
    font-size: 24px;
  }
  
  .impressum-section,
  .terms-section,
  .privacy-section,
  .cookie-section {
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
  
  .impressum-section h2,
  .privacy-section h2,
  .cookie-section h2 {
    font-size: 20px;
    margin-bottom: 15px;
  }
  
  .terms-section h3,
  .privacy-section h3,
  .cookie-section h3 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
  }
  
  .impressum-section p,
  .terms-section p,
  .privacy-section p,
  .cookie-section p {
    font-size: 15px;
  }
  
  .privacy-section ul li,
  .cookie-section ul li {
    font-size: 15px;
  }
}