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

/* Global Colors - FreiheitErleben Theme */
:root {
--background-color: #0a0a0a;
--default-color: #e8e8e8;
--heading-color: #ffd700;
--accent-color: #ff6b35;
--surface-color: #2a2a2a;
--contrast-color: #ffffff;
--nav-color: #e8e8e8;
--nav-hover-color: #ffd700;
--nav-mobile-background-color: #2a2a2a;
--nav-dropdown-background-color: #2a2a2a;
--nav-dropdown-color: #e8e8e8;
--nav-dropdown-hover-color: #ffd700;
--freedom-gradient: linear-gradient(135deg, #ffd700 0%, #ff6b35 100%);
--freedom-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

/* Color Presets */
.light-background {
  --background-color: #f8f9fa;
  --surface-color: #ffffff;
  --default-color: #2c3e50;
  --heading-color: #e74c3c;
}

.dark-background {
  --background-color: #0a0a0a;
  --default-color: #e8e8e8;
  --heading-color: #ffd700;
  --surface-color: #2a2a2a;
  --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);
  line-height: 1.6;
}

  @media (max-width: 768px) {
    header {
      height: 3rem;
    }
  }

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

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

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

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

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

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

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid #ddd;
  border-radius: 50%;
  border-top-color: var(--accent-color);
  animation: php-email-form-loading 1s ease-in-out infinite;
  margin-right: 10px;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: rgba(42, 42, 42, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 215, 0, 0.1);
  transition: all 0.3s ease;
}

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

.header .logo img {
  max-height: 40px;
  margin-right: 6px;
}

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

.header .btn-getstarted,
.header .btn-getstarted:focus {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--contrast-color);
  background: var(--freedom-gradient);
  padding: 8px 10px;
  border-radius: 40px;
  border: 2px solid transparent;
  font-weight: 500;
  transition: all 0.3s ease;
  box-shadow: var(--freedom-shadow);
  height: 2rem;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  background: transparent;
  color: var(--heading-color);
  border-color: var(--heading-color);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

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

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 8px 10px;
    font-size: 14px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  background: rgba(42, 42, 42, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
@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 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0 10px 30px;
    font-family: var(--nav-font);
    font-size: 16px;
    font-weight: 500;
    color: var(--nav-color);
    white-space: nowrap;
    transition: 0.3s;
    position: relative;
  }

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

  .navmenu li:last-child a {
    padding-right: 0;
  }

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

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background-color: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: calc(100% + 30px);
    opacity: 0;
    transition: 0.3s;
    border-radius: 8px;
    box-shadow: 0 10px 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;
    font-weight: 400;
    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);
    background-color: rgba(255, 215, 0, 0.1);
  }

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

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: calc(100% - 30px);
    visibility: hidden;
  }

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

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    display: block;
    line-height: 0;
    transition: all 0.3s ease;
    font-size: 28px;
    cursor: pointer;
    color: var(--nav-color);
    z-index: 99999;
    position: fixed;
    top: 0;
    right: 0;
    background: var(--nav-mobile-background-color);
    padding: 8px 10px;
    border-radius: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }

  .mobile-nav-toggle.bi-x {
    color: var(--nav-hover-color);
  }

  .navmenu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 99998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .navmenu ul {
    background: var(--nav-mobile-background-color);
    border-radius: 15px;
    padding: 40px 20px;
    margin: 0;
    list-style: none;
    width: 90%;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-20px);
    transition: all 0.3s ease;
  }
  
  .mobile-nav-active .navmenu {
    opacity: 1;
    visibility: visible;
  }
  
  .mobile-nav-active .navmenu ul {
    transform: translateY(0);
  }
  .navmenu ul {
    display: block;
    padding: 0;
    margin: 0;
    list-style: none;
  }
  .navmenu li {
    position: relative;
    margin-bottom: 10px;
  }
  
  .navmenu a,
  .navmenu a:focus {
    display: block;
    font-size: 18px;
    padding: 15px 20px;
    color: var(--nav-color);
    font-family: var(--nav-font);
    font-weight: 500;
    outline: none;
    transition: all 0.3s ease;
    background: none;
    border: none;
    border-radius: 8px;
    text-align: center;
  }
  
  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--nav-hover-color);
    background: rgba(255, 215, 0, 0.1);
    transform: translateX(5px);
  }
  .mobile-nav-active .mobile-nav-toggle {
    z-index: 99999;
    color: var(--nav-hover-color);
    position: fixed;
    top: 10px;
    right: 15px;
    background: var(--nav-mobile-background-color);
    padding: 8px 10px;
    border-radius: 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  }
  
  /* Prevent body scroll when menu is open */
  body.mobile-nav-active {
    overflow: hidden;
  }
}

/* Extra small screens */
@media (max-width: 576px) {
  .navmenu ul {
    width: 95%;
    padding: 30px 15px;
  }
  
  .mobile-nav-toggle {
    font-size: 24px;
    top: 8px;
    right: 10px;
  }
  
  .navmenu a {
    font-size: 16px;
    padding: 12px 15px;
  }
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 60vh;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%);
  padding: 2rem 0;
  position: relative;
  overflow: hidden;
}

.hero h2 {
  color: var(--heading-color);
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: 700;
  font-family: var(--heading-font);
  background: var(--freedom-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.hero .download-btn {
  font-family: var(--nav-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  transition: 0.5s;
  color: var(--contrast-color);
  background: var(--freedom-gradient);
  border: 2px solid transparent;
  box-shadow: var(--freedom-shadow);
}

.hero .download-btn:hover {
  background: transparent;
  color: var(--heading-color);
  border-color: var(--heading-color);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

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

.hero .download-btn i {
  font-size: 18px;
  transition: 0.3s;
  line-height: 0;
  margin-left: 5px;
}

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

  .hero p {
    font-size: 16px;
  }

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

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section {
  padding: 60px 0;
  overflow: hidden;
}

@media (max-width: 1199px) {
  section,
  .section {
    padding: 40px 0;
  }
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--heading-color);
}

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

/*--------------------------------------------------------------
# Features
--------------------------------------------------------------*/
.features .icon-box {
  display: flex;
  align-items: center;
  padding: 20px;
  transition: ease-in-out 0.3s;
  border-radius: 15px;
  background: var(--surface-color);
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.features .icon-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--freedom-gradient);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 0;
}

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

.features .icon-box h4 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--heading-color);
  position: relative;
  z-index: 1;
}

.features .icon-box i {
  font-size: 44px;
  line-height: 1;
  color: var(--accent-color);
  margin-right: 20px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.features .icon-box:hover i {
  color: var(--heading-color);
  transform: scale(1.1) rotate(5deg);
}

.features .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
  color: var(--default-color);
  position: relative;
  z-index: 1;
}

.features .icon-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

/*--------------------------------------------------------------
# Features Slider
--------------------------------------------------------------*/
.features-swiper {
  position: relative;
  padding: 40px 50px;
  overflow: hidden;
}

.features-swiper .swiper-wrapper {
  align-items: stretch;
}

.features-swiper .swiper-slide {
  padding: 20px;
  transition: all 0.3s ease;
  height: auto;
  display: flex;
}

.features-swiper .features-item {
  background: var(--surface-color);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.features-swiper .features-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--freedom-gradient);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 0;
}

.features-swiper .features-item:hover::before {
  opacity: 0.05;
}

.features-swiper .features-item h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.features-swiper .features-item p {
  color: var(--default-color);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.features-swiper .features-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

.features-swiper .features-item ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 15px;
  color: var(--default-color);
}

.features-swiper .features-item ul li i {
  color: var(--accent-color);
  font-size: 18px;
  margin-right: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.features-swiper .features-item ul li span {
  line-height: 1.5;
}

.features-swiper .features-item img {
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.features-swiper .features-item:hover img {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.features-swiper .features-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
  border-color: var(--heading-color);
}

/* Swiper Navigation Buttons */
.features-swiper .swiper-button-prev,
.features-swiper .swiper-button-next {
  width: 60px;
  height: 60px;
  background: var(--freedom-gradient);
  border-radius: 50%;
  color: var(--contrast-color);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
  transition: all 0.3s ease;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}


.features-swiper .swiper-button-prev {
  left: 1rem;
  top: 50%;
}

.features-swiper .swiper-button-next {
  right: 1rem;
  top: 50%;
}

.features-swiper .swiper-button-prev:hover,
.features-swiper .swiper-button-next:hover {
  background: transparent;
  color: var(--heading-color);
  border: 2px solid var(--heading-color);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}

.features-swiper .swiper-button-prev::after,
.features-swiper .swiper-button-next::after {
  font-size: 20px;
  font-weight: bold;
  color: inherit;
}

/* Swiper Pagination */
.features-swiper .swiper-pagination {
  position: relative;
  margin-top: 40px;
  text-align: center;
  bottom: 0;
}

.features-swiper .swiper-pagination-bullet {
  width: 14px;
  height: 14px;
  background: var(--default-color);
  opacity: 0.4;
  border-radius: 50%;
  margin: 0 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.features-swiper .swiper-pagination-bullet-active {
  background: var(--accent-color);
  opacity: 1;
  transform: scale(1.3);
  border-color: var(--heading-color);
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

@media (max-width: 768px) {
  .features-swiper {
    padding: 20px 20px;
  }
  
  .features-swiper .swiper-button-prev,
  .features-swiper .swiper-button-next {
    display: none;
  }
  
  .features-swiper .features-item {
    padding: 30px 20px;
  }
  
  .features-swiper .features-item h3 {
    font-size: 24px;
  }
  
  .features-swiper .swiper-pagination {
    margin-top: 30px;
  }
}

@media (max-width: 576px) {
  .features-swiper {
    padding: 15px 10px;
  }
  
  .features-swiper .features-item {
    padding: 25px 15px;
  }
  
  .features-swiper .features-item h3 {
    font-size: 22px;
  }
}

/*--------------------------------------------------------------
# Feature Details
--------------------------------------------------------------*/
.feature-details .features-item {
  padding: 0;
  margin: 0 0 80px 0;
}

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

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

.feature-details .features-item h3 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
}

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

.feature-details .features-item ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

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

.feature-details .features-item ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: var(--accent-color);
}

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

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/
.testimonials .testimonial-wrap {
  padding-left: 50px;
}

.testimonials .testimonials-carousel,
.testimonials .testimonials-slider {
  overflow: hidden;
}

.testimonials .testimonial-item {
  box-sizing: content-box;
  padding: 30px 30px 30px 60px;
  margin: 30px 15px;
  min-height: 200px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  background: var(--surface-color);
  border-radius: 15px;
  transition: all 0.3s ease;
}

.testimonials .testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  margin: -40px 0 0 40px;
  position: relative;
  z-index: 2;
  border: 6px solid var(--surface-color);
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 45px;
  color: var(--heading-color);
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: var(--default-color);
  margin: 0 0 0 45px;
}

.testimonials .testimonial-item .stars {
  margin: 10px 0 0 45px;
}

.testimonials .testimonial-item .stars i {
  color: var(--accent-color);
  margin: 0 1px;
}

.testimonials .testimonial-item .quote-icon-left,
.testimonials .testimonial-item .quote-icon-right {
  color: var(--accent-color);
  font-size: 26px;
  line-height: 0;
}

.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}

.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
  transform: scale(-1, -1);
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 15px auto 15px auto;
  color: var(--default-color);
}

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: var(--default-color);
  opacity: 1;
  border-radius: 50%;
}

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

@media (max-width: 767px) {
  .testimonials .testimonial-wrap {
    padding-left: 0;
  }

  .testimonials .testimonials-carousel,
  .testimonials .testimonials-slider {
    overflow: hidden;
  }

  .testimonials .testimonial-item {
    margin: 15px;
    padding: 20px 20px 20px 50px;
  }

  .testimonials .testimonial-item .testimonial-img {
    width: 70px;
    margin: -30px 0 0 30px;
  }
}

/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/
.pricing .pricing-item {
  box-shadow: 0 3px 20px rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
  border-radius: 15px;
  background: var(--surface-color);
  position: relative;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  overflow: hidden;
}

.pricing .pricing-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--freedom-gradient);
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 0;
}

.pricing .pricing-item:hover::before {
  opacity: 0.05;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 22px;
  color: var(--heading-color);
  position: relative;
  z-index: 1;
}

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.pricing h4 sup {
  font-size: 20px;
  font-weight: 300;
  font-size: 16px;
  font-weight: 300;
  margin-right: 5px;
}

.pricing h4 span {
  color: var(--default-color);
  font-size: 18px;
  font-weight: 300;
}

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: var(--default-color);
  text-align: left;
  line-height: 20px;
  position: relative;
  z-index: 1;
}

.pricing ul li {
  padding: 10px 0 10px 30px;
  position: relative;
}

.pricing ul i {
  color: var(--accent-color);
  font-size: 20px;
  line-height: 1;
  position: absolute;
  right: 0;
  top: 6px;
}

.pricing ul .na {
  color: #ccc;
}

.pricing ul .na i {
  color: #ccc;
}

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

.pricing .buy-btn {
  display: inline-block;
  padding: 12px 35px;
  border-radius: 50px;
  color: var(--contrast-color);
  background: var(--freedom-gradient);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--nav-font);
  box-shadow: var(--freedom-shadow);
  position: relative;
  z-index: 1;
}

.pricing .buy-btn:hover {
  background: transparent;
  color: var(--heading-color);
  border-color: var(--heading-color);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

.pricing .featured {
  z-index: 10;
  border: 2px solid var(--heading-color);
  transform: scale(1.05);
}

@media (min-width: 992px) {
  .pricing .featured {
    margin-top: -25px;
  }
}

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

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

.pricing .featured .buy-btn:hover {
  background: transparent;
  color: var(--heading-color);
  border-color: var(--heading-color);
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact .info-item {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact .info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
}

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

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

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

.contact .php-email-form {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  padding: 30px;
  border-radius: 15px;
  background: var(--surface-color);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  border: 2px solid rgba(255, 215, 0, 0.2);
  padding: 12px 15px;
  border-radius: 8px;
  background: var(--background-color);
  color: var(--default-color);
  transition: all 0.3s ease;
}

.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(--heading-color);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: var(--default-color);
  opacity: 0.7;
}

.contact .php-email-form button[type=submit] {
  background: var(--freedom-gradient);
  border: 0;
  padding: 12px 35px;
  color: var(--contrast-color);
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 16px;
  font-weight: 500;
  box-shadow: var(--freedom-shadow);
}

.contact .php-email-form button[type=submit]:hover {
  background: transparent;
  color: var(--heading-color);
  border: 2px solid var(--heading-color);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.4);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
.footer {
  background: var(--surface-color);
  padding: 0 0 30px 0;
  color: var(--default-color);
  font-size: 14px;
  border-top: 1px solid rgba(255, 215, 0, 0.1);
}

.footer .footer-newsletter {
  padding: 50px 0;
  background: var(--background-color);
  border-top: 3px solid var(--heading-color);
}

.footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: var(--heading-color);
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  background: var(--surface-color);
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  text-align: left;
  border: 2px solid rgba(255, 215, 0, 0.2);
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--heading-color);
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

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

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

.footer .footer-newsletter .newsletter-form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: var(--freedom-gradient);
  font-size: 16px;
  padding: 0 20px;
  margin: 3px;
  border-radius: 50px;
  color: var(--contrast-color);
  transition: all 0.3s ease;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: transparent;
  color: var(--heading-color);
  border: 2px solid var(--heading-color);
}

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

.footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: var(--surface-color);
  color: var(--default-color);
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.footer .social-links a:hover {
  background: var(--freedom-gradient);
  color: var(--contrast-color);
  text-decoration: none;
  transform: translateY(-3px);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  color: var(--heading-color);
  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 {
  padding-right: 2px;
  color: var(--accent-color);
  font-size: 12px;
  line-height: 1;
}

.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 {
  color: var(--default-color);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  text-decoration: none;
  color: var(--heading-color);
}

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  font-family: var(--heading-font);
  background: var(--freedom-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer .footer-contact p {
  line-height: 26px;
}

.footer .copyright {
  border-top: 1px solid rgba(255, 215, 0, 0.1);
  text-align: center;
  padding-top: 30px;
}

.footer .copyright p {
  margin-bottom: 0;
  color: var(--default-color);
}

.footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: var(--default-color);
}

/*--------------------------------------------------------------
# Cookie Popup
--------------------------------------------------------------*/
#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--surface-color);
  border: 2px solid var(--heading-color);
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

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

#cookie-popup p {
  margin: 0 0 15px 0;
  color: var(--default-color);
  font-size: 14px;
  line-height: 1.5;
}

#cookie-popup .popup-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#cookie-popup button {
  background: var(--freedom-gradient);
  color: var(--contrast-color);
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s ease;
  align-self: flex-start;
}

#cookie-popup button:hover {
  background: transparent;
  color: var(--heading-color);
  border: 2px solid var(--heading-color);
  transform: translateY(-2px);
}

#cookie-popup .popup-message {
  flex: 1;
}

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

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--freedom-gradient);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
  box-shadow: var(--freedom-shadow);
}

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

.scroll-top:hover {
  background: transparent;
  color: var(--heading-color);
  border: 2px solid var(--heading-color);
  transform: translateY(-3px);
}

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

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

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

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

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0s !important;
  }
}

/*--------------------------------------------------------------
# Page Title
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--surface-color);
}

.page-title h1 {
  font-size: 56px;
  font-weight: 500;
  color: var(--heading-color);
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0 0 10px 0;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--default-color);
}

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

.page-title .breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: var(--accent-color);
  content: "/";
}

/*--------------------------------------------------------------
# List Cards
--------------------------------------------------------------*/
.list-cards {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-item {
  background: var(--surface-color);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.card-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 215, 0, 0.2);
  border-color: var(--heading-color);
}

.card-content {
  display: flex;
  align-items: center;
  gap: 20px;
}

.icon {
  font-size: 40px;
  color: var(--accent-color);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.card-item:hover .icon {
  color: var(--heading-color);
  transform: scale(1.1) rotate(5deg);
}

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

@media (max-width: 768px) {
  .list-cards {
    padding: 0 15px;
  }

  .card-item {
    padding: 20px;
  }
}