
/* Fonts */
:root {
  --default-font: "Barlow",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Barlow",  sans-serif;
  --nav-font: "Barlow",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #0a0a0a;
  --default-color: #e0e0e0; 
  --heading-color: #ffffff; 
  --accent-color: #800020; 
  --surface-color: #1a1a1a; 
  --contrast-color: #ffffff; 
  --nav-color: #e0e0e0;  
  --nav-hover-color: #a52a2a; 
  --nav-mobile-background-color: #1a1a1a; 
  --nav-dropdown-background-color: #2a2a2a; 
  --nav-dropdown-color: #e0e0e0; 
  --nav-dropdown-hover-color: #a52a2a; 
  --footer-bg: #000000;
  --footer-newsletter: #1a0a0a;
}


/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

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

.dark-background {
  --background-color: #000000;
  --default-color: #e0e0e0;
  --heading-color: #ffffff;
  --surface-color: #1a0a0a;
  --contrast-color: #ffffff;
}

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.92) 0%, rgba(26, 10, 10, 0.92) 100%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  box-shadow: 0 8px 40px rgba(128, 0, 32, 0.25), 
              inset 0 -2px 0 rgba(128, 0, 32, 0.4),
              0 0 60px rgba(128, 0, 32, 0.1);
  padding: 28px 0;
  margin-top: 30px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 30px 30px;
  border: 1px solid rgba(128, 0, 32, 0.2);
}

.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    var(--accent-color) 20%, 
    #a52a2a 50%, 
    var(--accent-color) 80%, 
    transparent 100%);
  opacity: 0.8;
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%, 100% {
    opacity: 0.6;
    transform: translateX(-100%);
  }
  50% {
    opacity: 1;
    transform: translateX(100%);
  }
}

.header-glow {
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, 
    transparent 30%, 
    rgba(128, 0, 32, 0.3) 50%, 
    transparent 70%);
  border-radius: 0 0 30px 30px;
  opacity: 0;
  animation: glow-pulse 4s infinite;
  z-index: -1;
  filter: blur(20px);
}

@keyframes glow-pulse {
  0%, 100% {
    opacity: 0;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.02);
  }
}

.header-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

/* Floating Circles */
.header-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.15;
  animation: float-circle 25s infinite ease-in-out;
}

.header-circle-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  top: -200px;
  left: 5%;
  animation-delay: 0s;
  animation-duration: 30s;
}

.header-circle-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #a52a2a 0%, transparent 70%);
  top: -150px;
  right: 10%;
  animation-delay: 8s;
  animation-duration: 25s;
}

.header-circle-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  bottom: -125px;
  left: 25%;
  animation-delay: 15s;
  animation-duration: 28s;
}

.header-circle-4 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #a52a2a 0%, transparent 70%);
  bottom: -100px;
  right: 20%;
  animation-delay: 5s;
  animation-duration: 22s;
}

@keyframes float-circle {
  0%, 100% {
    transform: translate(0, 0) scale(1) rotate(0deg);
    opacity: 0.1;
  }
  25% {
    transform: translate(40px, -40px) scale(1.15) rotate(90deg);
    opacity: 0.2;
  }
  50% {
    transform: translate(-30px, 30px) scale(0.85) rotate(180deg);
    opacity: 0.18;
  }
  75% {
    transform: translate(30px, 40px) scale(1.1) rotate(270deg);
    opacity: 0.12;
  }
}

/* Geometric Lines */
.header-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0.2;
  animation: line-move 20s infinite linear;
}

.header-line-1 {
  width: 200px;
  height: 2px;
  top: 20%;
  left: -200px;
  animation-delay: 0s;
  animation-duration: 15s;
  transform: rotate(15deg);
}

.header-line-2 {
  width: 150px;
  height: 2px;
  top: 60%;
  right: -150px;
  animation-delay: 5s;
  animation-duration: 18s;
  transform: rotate(-20deg);
}

.header-line-3 {
  width: 180px;
  height: 2px;
  bottom: 30%;
  left: -180px;
  animation-delay: 10s;
  animation-duration: 20s;
  transform: rotate(25deg);
}

@keyframes line-move {
  0% {
    transform: translateX(0) rotate(15deg);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.3;
  }
  100% {
    transform: translateX(calc(100vw + 200px)) rotate(15deg);
    opacity: 0;
  }
}

/* Animated Particles */
.header-particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--accent-color);
  border-radius: 50%;
  opacity: 0.6;
  box-shadow: 0 0 10px var(--accent-color);
  animation: particle-float 12s infinite ease-in-out;
}

.header-particle-1 {
  top: 30%;
  left: 15%;
  animation-delay: 0s;
  animation-duration: 10s;
}

.header-particle-2 {
  top: 50%;
  right: 20%;
  animation-delay: 2s;
  animation-duration: 12s;
}

.header-particle-3 {
  bottom: 25%;
  left: 40%;
  animation-delay: 4s;
  animation-duration: 14s;
}

.header-particle-4 {
  top: 70%;
  right: 35%;
  animation-delay: 6s;
  animation-duration: 11s;
}

.header-particle-5 {
  top: 15%;
  left: 60%;
  animation-delay: 8s;
  animation-duration: 13s;
}

@keyframes particle-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  25% {
    transform: translate(20px, -30px) scale(1.5);
    opacity: 0.8;
  }
  50% {
    transform: translate(-15px, 20px) scale(0.8);
    opacity: 0.6;
  }
  75% {
    transform: translate(25px, 25px) scale(1.2);
    opacity: 0.9;
  }
}

/* Gradient Orbs */
.header-orb {
  position: absolute;
  border-radius: 50%;
  background: conic-gradient(from 0deg, 
    transparent, 
    var(--accent-color), 
    transparent, 
    #a52a2a, 
    transparent);
  opacity: 0.1;
  filter: blur(30px);
  animation: orb-rotate 20s infinite linear;
}

.header-orb-1 {
  width: 150px;
  height: 150px;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  animation-duration: 25s;
}

.header-orb-2 {
  width: 120px;
  height: 120px;
  top: 50%;
  right: 12%;
  transform: translateY(-50%);
  animation-delay: 10s;
  animation-duration: 30s;
}

@keyframes orb-rotate {
  0% {
    transform: translateY(-50%) rotate(0deg) scale(1);
    opacity: 0.08;
  }
  50% {
    transform: translateY(-50%) rotate(180deg) scale(1.2);
    opacity: 0.15;
  }
  100% {
    transform: translateY(-50%) rotate(360deg) scale(1);
    opacity: 0.08;
  }
}

.header .container-fluid {
  position: relative;
  z-index: 1;
}

.header .logo {
  display: flex;
  align-items: center;
  gap: 15px;
  transition: transform 0.3s ease;
}

.header .logo:hover {
  transform: translateX(5px);
}

.header .logo-icon {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.2) 0%, rgba(165, 42, 42, 0.2) 100%);
  border: 2px solid rgba(128, 0, 32, 0.4);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: visible;
}

.header .logo-icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  border-radius: 14px;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
  opacity: 0;
}

.header .logo-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-color);
  border-radius: 14px;
  transform: translate(-50%, -50%) scale(1);
  opacity: 0;
  animation: logo-pulse 2s infinite;
}

@keyframes logo-pulse {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.header .logo:hover .logo-icon {
  border-color: var(--accent-color);
  box-shadow: 0 0 30px rgba(128, 0, 32, 0.8), 
              0 0 60px rgba(128, 0, 32, 0.4);
  transform: rotate(8deg) scale(1.05);
}

.header .logo:hover .logo-icon-bg {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.header .logo-icon i {
  font-size: 26px;
  color: var(--accent-color);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 0 5px rgba(128, 0, 32, 0.5));
}

.header .logo:hover .logo-icon i {
  color: #ffffff;
  transform: scale(1.15) rotate(-8deg);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.8));
}

.header .logo h1 {
  font-size: 32px;
  margin: 0;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(128, 0, 32, 0.5);
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
  position: relative;
}

.header .logo h1::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), #a52a2a);
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(128, 0, 32, 0.8);
}

.header .logo:hover h1 {
  text-shadow: 0 0 15px rgba(128, 0, 32, 0.8);
}

.header .logo:hover h1::after {
  width: 100%;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.15) 0%, rgba(165, 42, 42, 0.15) 100%);
  color: #ffffff;
  font-size: 15px;
  padding: 15px 35px;
  border-radius: 14px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(128, 0, 32, 0.4);
  box-shadow: 0 4px 20px rgba(128, 0, 32, 0.25),
              inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.header .btn-getstarted::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}

.header .btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent, 
    rgba(255, 255, 255, 0.3), 
    transparent);
  animation: btn-shine 3s infinite;
  z-index: 1;
}

@keyframes btn-shine {
  0% {
    left: -100%;
  }
  100% {
    left: 200%;
  }
}

.header .btn-getstarted span,
.header .btn-getstarted i {
  position: relative;
  z-index: 2;
}

.header .btn-getstarted i {
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 16px;
}

.header .btn-getstarted:hover {
  border-color: var(--accent-color);
  color: #ffffff;
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 35px rgba(128, 0, 32, 0.7),
              0 0 40px rgba(128, 0, 32, 0.3);
}

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

.header .btn-getstarted:hover i {
  transform: translateX(8px) scale(1.1);
}

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

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

  .navmenu li {
    position: relative;
  }

  .navmenu a {
    font-size: 16px;
    color: #e0e0e0;
    text-decoration: none;
    padding: 10px 0;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  .navmenu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(128, 0, 32, 0.8);
  }

  .navmenu a:hover,
  .navmenu .active {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(128, 0, 32, 0.6);
  }

  .navmenu a:hover::after,
  .navmenu .active::after {
    width: 100%;
  }

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

/* Sticky effect on scroll */
.scrolled .header {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.98) 0%, rgba(10, 10, 10, 0.98) 100%);
  box-shadow: 0 8px 40px rgba(128, 0, 32, 0.6), 
              inset 0 -2px 0 rgba(128, 0, 32, 0.5),
              0 0 80px rgba(128, 0, 32, 0.15);
  margin-top: 0;
  padding: 20px 0;
  border-radius: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.scrolled .header .header-circle,
.scrolled .header .header-orb {
  opacity: 0.05;
}

.scrolled .header .header-line,
.scrolled .header .header-particle {
  opacity: 0.1;
}

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

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

  .header .navmenu {
    order: 3;
  }

  .header {
    margin-top: 20px;
    padding: 22px 0;
  }

  .header .logo-icon {
    width: 45px;
    height: 45px;
  }

  .header .logo-icon i {
    font-size: 20px;
  }

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

  .header .btn-getstarted span {
    display: none;
  }

  .header .btn-getstarted i {
    margin: 0;
  }

  .header-shape {
    opacity: 0.05;
  }
}

@media (max-width: 768px) {
  .header {
    margin-top: 15px;
    padding: 20px 0;
    border-radius: 0 0 25px 25px;
  }

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

  .header .logo-icon {
    width: 45px;
    height: 45px;
  }

  .header .logo-icon i {
    font-size: 20px;
  }

  .header-circle,
  .header-orb {
    opacity: 0.05;
  }

  .header-line,
  .header-particle {
    display: none;
  }
}

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

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

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    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;
    border-radius: 50%;
    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(0, 0, 0, 0.95);
    transition: 0.3s;
    border-left: 3px solid var(--accent-color);
  }

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(180deg, #000000 0%, #0a0a0a 100%);
  color: #e0e0e0;
  font-family: 'Barlow', sans-serif;
  border-top: 3px solid var(--accent-color);
  box-shadow: 0 -4px 30px rgba(128, 0, 32, 0.3);
  position: relative;
  overflow: hidden;
}

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

.footer-main {
  padding: 80px 20px 60px;
  position: relative;
  z-index: 1;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  position: relative;
}

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

.footer-logo-link {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.footer-sitename {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 15px rgba(128, 0, 32, 0.6);
  transition: all 0.3s ease;
}

.footer-logo-link:hover .footer-sitename {
  color: var(--accent-color);
  text-shadow: 0 0 20px rgba(128, 0, 32, 0.9);
  transform: scale(1.05);
}

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

.footer-contact-info {
  margin-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d0d0d0;
  font-size: 15px;
}

.contact-item i {
  color: var(--accent-color);
  font-size: 18px;
  text-shadow: 0 0 10px rgba(128, 0, 32, 0.6);
}

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

.contact-item a:hover {
  color: var(--accent-color);
  text-shadow: 0 0 8px rgba(128, 0, 32, 0.6);
}

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

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-color), transparent);
}

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

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

.footer-menu li a {
  color: #d0d0d0;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
  padding: 5px 0;
  position: relative;
}

.footer-menu li a::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.footer-menu li a:hover {
  color: var(--accent-color);
  transform: translateX(10px);
  text-shadow: 0 0 8px rgba(128, 0, 32, 0.6);
}

.footer-menu li a:hover::before {
  width: 10px;
}

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

.footer-newsletter-form {
  margin-top: 20px;
}

.newsletter-input-group {
  display: flex;
  gap: 10px;
  background: linear-gradient(135deg, #1a0a0a 0%, #2a1a1a 100%);
  border: 2px solid rgba(128, 0, 32, 0.3);
  border-radius: 8px;
  padding: 5px;
  transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 15px rgba(128, 0, 32, 0.4);
}

.newsletter-input-group input[type="email"] {
  flex: 1;
  padding: 12px 15px;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 15px;
  outline: none;
}

.newsletter-input-group input[type="email"]::placeholder {
  color: #666;
}

.newsletter-submit {
  padding: 12px 20px;
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  border: none;
  border-radius: 6px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(128, 0, 32, 0.4);
}

.newsletter-submit:hover {
  background: linear-gradient(135deg, #a52a2a 0%, #800020 100%);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(128, 0, 32, 0.6);
}

.newsletter-submit i {
  font-size: 18px;
}

.footer-bottom {
  background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
  padding: 30px 20px;
  border-top: 2px solid rgba(128, 0, 32, 0.3);
  position: relative;
}

.footer-bottom-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.copyright {
  font-size: 14px;
  color: #d0d0d0;
  margin: 0;
}

.footer-divider {
  width: 1px;
  height: 20px;
  background: rgba(128, 0, 32, 0.3);
}

.footer-tagline {
  font-size: 14px;
  color: var(--accent-color);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-shadow: 0 0 10px rgba(128, 0, 32, 0.5);
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-divider {
    display: none;
  }
}


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

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  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;
  border-radius: 4px;
  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-new {
  padding: 80px 15px;
  background: linear-gradient(135deg, #000000 0%, #1a0a0a 50%, #2a1a1a 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
  font-family: 'Barlow', sans-serif;
  color: #e0e0e0;
  position: relative;
  overflow: hidden;
}

.hero-new::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(128, 0, 32, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 500px;
}

.hero-text h1 {
  font-size: 3.2rem;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #ffffff;
  text-shadow: 0 0 20px rgba(128, 0, 32, 0.5);
}

.hero-text p {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #d0d0d0;
}

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

.btn-primary,
.btn-secondary {
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  user-select: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  color: #fff;
  box-shadow: 0 8px 20px rgba(128, 0, 32, 0.5);
  border: 2px solid rgba(128, 0, 32, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #a52a2a 0%, #800020 100%);
  box-shadow: 0 12px 25px rgba(128, 0, 32, 0.7);
  transform: translateY(-2px);
  outline: none;
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--accent-color);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  color: #fff;
  border-color: var(--accent-color);
  box-shadow: 0 8px 20px rgba(128, 0, 32, 0.5);
  transform: translateY(-2px);
  outline: none;
}

.hero-image {
  flex: 1 1 400px;
  max-width: 480px;
  animation: floatUp 4s ease-in-out infinite;
}

.hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

/* Анимация для картинки */
@keyframes floatUp {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* Мобильная адаптивность */
@media (max-width: 768px) {
  .hero-wrapper {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-text {
    flex-basis: 100%;
  }

  .hero-image {
    flex-basis: 100%;
    max-width: 300px;
    margin-bottom: 30px;
    animation: none;
  }

  .hero-text h1 {
    font-size: 2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .btn-primary,
  .btn-secondary {
    min-width: auto;
    padding: 12px 28px;
    font-size: 0.9rem;
  }
}


/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# About Page Sections
--------------------------------------------------------------*/

/* About Hero Section */
.about-hero {
  padding: 120px 20px 100px;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.about-hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.about-hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.1;
  animation: about-hero-float 20s infinite ease-in-out;
}

.about-hero-shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  top: -250px;
  left: -100px;
  animation-delay: 0s;
}

.about-hero-shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #a52a2a 0%, transparent 70%);
  bottom: -200px;
  right: -100px;
  animation-delay: 5s;
}

.about-hero-shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  animation-delay: 10s;
}

@keyframes about-hero-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.about-hero-content {
  position: relative;
  z-index: 1;
}

.about-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.2) 0%, rgba(165, 42, 42, 0.2) 100%);
  border: 1px solid rgba(128, 0, 32, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.about-hero-badge i {
  color: var(--accent-color);
}

.about-hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-text {
  font-size: 18px;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 50px;
  max-width: 600px;
}

.about-hero-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 20px;
  background: rgba(128, 0, 32, 0.1);
  border: 1px solid rgba(128, 0, 32, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(128, 0, 32, 0.15);
  border-color: rgba(128, 0, 32, 0.3);
  transform: translateX(5px);
}

.benefit-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color) 0%, rgba(165, 42, 42, 0.8) 100%);
  border-radius: 50%;
  color: #ffffff;
  font-size: 20px;
}

.benefit-content {
  flex: 1;
}

.benefit-title {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 5px;
}

.benefit-text {
  font-size: 14px;
  color: #d0d0d0;
  line-height: 1.5;
  margin: 0;
}

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

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

.about-hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 1;
}

.about-hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.1) 0%, rgba(165, 42, 42, 0.1) 100%);
  z-index: 2;
}

.about-hero-image-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  opacity: 0.2;
  filter: blur(30px);
  z-index: 0;
  animation: about-hero-glow 3s infinite ease-in-out;
}

@keyframes about-hero-glow {
  0%, 100% {
    opacity: 0.2;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(1.05);
  }
}

/* About Story Section */
.about-story {
  padding: 100px 20px;
  position: relative;
}

.story-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.story-item {
  display: flex;
  gap: 25px;
  align-items: flex-start;
}

.story-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.2) 0%, rgba(165, 42, 42, 0.2) 100%);
  border: 2px solid rgba(128, 0, 32, 0.3);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.story-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.story-item:hover .story-icon {
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  border-color: var(--accent-color);
  transform: rotate(5deg) scale(1.1);
  box-shadow: 0 0 20px rgba(128, 0, 32, 0.5);
}

.story-item:hover .story-icon i {
  color: #ffffff;
}

.story-text h3 {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.story-text p {
  font-size: 16px;
  line-height: 1.8;
  color: #d0d0d0;
  margin: 0;
}

.story-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.story-feature-card {
  background: linear-gradient(135deg, #1a0a0a 0%, #2a1a1a 100%);
  border: 2px solid rgba(128, 0, 32, 0.2);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
}

.story-feature-card:hover {
  border-color: rgba(128, 0, 32, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(128, 0, 32, 0.3);
}

.story-feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.3) 0%, rgba(165, 42, 42, 0.3) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.story-feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
}

.story-feature-card h4 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.story-feature-card p {
  font-size: 15px;
  line-height: 1.7;
  color: #d0d0d0;
  margin: 0;
}

/* Mission Modern Section */
.mission-modern {
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.mission-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(128, 0, 32, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.mission-card-modern {
  position: relative;
}

.mission-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(128, 0, 32, 0.5);
}

.mission-card-inner {
  background: linear-gradient(135deg, #1a0a0a 0%, #2a1a1a 100%);
  border: 2px solid rgba(128, 0, 32, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.mission-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mission-card-modern:hover .mission-card-inner {
  transform: translateY(-8px);
  border-color: rgba(128, 0, 32, 0.6);
  box-shadow: 0 15px 40px rgba(128, 0, 32, 0.4);
}

.mission-card-modern:hover .mission-card-inner::before {
  opacity: 1;
}

.mission-card-modern.featured-mission .mission-card-inner {
  background: linear-gradient(135deg, #2a1a1a 0%, #1a0a0a 100%);
  border-color: rgba(128, 0, 32, 0.4);
}

.mission-card-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
}

.mission-card-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.2) 0%, rgba(165, 42, 42, 0.2) 100%);
  border-radius: 18px;
  transition: all 0.3s ease;
}

.mission-card-modern:hover .mission-card-icon-bg {
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  transform: rotate(5deg) scale(1.1);
}

.mission-card-icon {
  position: relative;
  z-index: 1;
  font-size: 40px;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: all 0.3s ease;
}

.mission-card-modern:hover .mission-card-icon {
  color: #ffffff;
  transform: scale(1.1);
}

.mission-card-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.mission-card-text {
  font-size: 15px;
  line-height: 1.7;
  color: #d0d0d0;
  margin-bottom: 20px;
  flex-grow: 1;
}

.mission-card-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(128, 0, 32, 0.3), transparent);
  margin: 20px 0;
}

.mission-card-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mission-card-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #e0e0e0;
}

.mission-card-benefits li i {
  color: var(--accent-color);
  font-size: 16px;
}

/* Values Modern Section */
.values-modern {
  padding: 100px 20px;
  position: relative;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.value-card-modern {
  position: relative;
}

.value-card-inner {
  background: linear-gradient(135deg, #1a0a0a 0%, #2a1a1a 100%);
  border: 2px solid rgba(128, 0, 32, 0.2);
  border-radius: 20px;
  padding: 35px 30px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.value-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.value-card-modern:hover .value-card-inner {
  transform: translateY(-8px);
  border-color: rgba(128, 0, 32, 0.6);
  box-shadow: 0 15px 40px rgba(128, 0, 32, 0.4);
}

.value-card-modern:hover .value-card-inner::before {
  opacity: 1;
}

.value-card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 48px;
  font-weight: 800;
  color: rgba(128, 0, 32, 0.1);
  line-height: 1;
}

.value-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.2) 0%, rgba(165, 42, 42, 0.2) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.value-card-modern:hover .value-card-icon {
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  transform: rotate(5deg) scale(1.1);
}

.value-card-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.value-card-modern:hover .value-card-icon i {
  color: #ffffff;
}

.value-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.value-card-text {
  font-size: 15px;
  line-height: 1.7;
  color: #d0d0d0;
  margin: 0;
}

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

.about-cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(128, 0, 32, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.about-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-cta-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.2) 0%, rgba(165, 42, 42, 0.2) 100%);
  border: 2px solid rgba(128, 0, 32, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: all 0.3s ease;
}

.about-cta-icon i {
  font-size: 48px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.about-cta:hover .about-cta-icon {
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  border-color: var(--accent-color);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 30px rgba(128, 0, 32, 0.6);
}

.about-cta:hover .about-cta-icon i {
  color: #ffffff;
}

.about-cta-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-cta-text {
  font-size: 18px;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 40px;
}

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

.btn-cta-primary,
.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 35px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
  position: relative;
  overflow: hidden;
}

.btn-cta-primary {
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  border-color: var(--accent-color);
  color: #ffffff;
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(128, 0, 32, 0.6);
}

.btn-cta-secondary {
  background: transparent;
  border-color: rgba(128, 0, 32, 0.5);
  color: #ffffff;
}

.btn-cta-secondary:hover {
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.2) 0%, rgba(165, 42, 42, 0.2) 100%);
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.btn-cta-primary i,
.btn-cta-secondary i {
  transition: transform 0.3s ease;
}

.btn-cta-primary:hover i,
.btn-cta-secondary:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .about-hero-title {
    font-size: 36px;
  }

  .about-hero-benefits {
    gap: 15px;
  }

  .benefit-item {
    padding: 15px;
  }

  .benefit-icon {
    width: 35px;
    height: 35px;
    font-size: 18px;
  }

  .benefit-title {
    font-size: 15px;
  }

  .benefit-text {
    font-size: 13px;
  }

  .mission-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-title {
    font-size: 32px;
  }

  .about-cta-buttons {
    flex-direction: column;
  }

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

.about-modern {
  padding: 60px 15px;
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.about-wrapper {
  display: flex;
  gap: 40px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.about-image {
  flex: 1 1 350px;
  max-width: 400px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  border-radius: 10px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.about-content {
  flex: 1 1 450px;
}

.about-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--accent-color);
}

.about-content p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  color: color-mix(in srgb, var(--text-color), transparent 60%);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  stroke: var(--accent-color);
}

.feature-item p {
  margin: 0;
  font-size: 16px;
  color: var(--text-color);
}

.btn-read-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 6px;
  text-decoration: none;
  user-select: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.btn-read-more:hover,
.btn-read-more:focus {
  background-color: color-mix(in srgb, var(--accent-color), transparent 30%);
  outline: none;
}

.arrow {
  font-size: 20px;
  transition: transform 0.3s ease;
}

.btn-read-more:hover .arrow {
  transform: translateX(5px);
}

/* Responsive */

@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
  }

  .about-image,
  .about-content {
    max-width: 100%;
  }

  .about-content p {
    font-size: 17px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features-modern {
  background: linear-gradient(180deg, #1a0a0a 0%, #0a0a0a 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.features-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 100%, rgba(128, 0, 32, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.features-modern .section-header {
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.features-modern .section-main-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(128, 0, 32, 0.5);
}

.features-modern .section-subtitle {
  font-size: 18px;
  color: #d0d0d0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.features-modern .features-content {
  position: relative;
  z-index: 1;
}

.features-modern .features-list-wrapper {
  max-width: 1400px;
  margin: 0 auto;
}

.features-modern .features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.features-modern .feature-box {
  position: relative;
  height: 100%;
}

.features-modern .feature-box-inner {
  background: linear-gradient(135deg, #1a0a0a 0%, #2a1a1a 100%);
  border: 2px solid rgba(128, 0, 32, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.features-modern .feature-box-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(128, 0, 32, 0.1), transparent);
  transition: left 0.6s ease;
}

.features-modern .feature-box:hover .feature-box-inner {
  transform: translateY(-8px);
  border-color: rgba(128, 0, 32, 0.6);
  box-shadow: 0 15px 40px rgba(128, 0, 32, 0.4);
}

.features-modern .feature-box:hover .feature-box-inner::before {
  left: 100%;
}

.features-modern .feature-number {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 60px;
  font-weight: 900;
  color: rgba(128, 0, 32, 0.1);
  line-height: 1;
  font-family: 'Barlow', sans-serif;
  transition: all 0.3s ease;
}

.features-modern .feature-box:hover .feature-number {
  color: rgba(128, 0, 32, 0.2);
  transform: scale(1.1);
}

.features-modern .feature-icon-box {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.2) 0%, rgba(165, 42, 42, 0.2) 100%);
  border: 2px solid rgba(128, 0, 32, 0.3);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  position: relative;
  transition: all 0.4s ease;
}

.features-modern .feature-icon-box::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(135deg, var(--accent-color), #a52a2a);
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.features-modern .feature-box:hover .feature-icon-box {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--accent-color);
  box-shadow: 0 8px 25px rgba(128, 0, 32, 0.5);
}

.features-modern .feature-box:hover .feature-icon-box::before {
  opacity: 0.3;
}

.features-modern .feature-icon-box i {
  font-size: 36px;
  color: var(--accent-color);
  text-shadow: 0 0 15px rgba(128, 0, 32, 0.6);
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.features-modern .feature-box:hover .feature-icon-box i {
  color: #ffffff;
  text-shadow: 0 0 25px rgba(128, 0, 32, 1);
  transform: scale(1.1);
}

.features-modern .feature-box-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.features-modern .feature-box-text {
  font-size: 15px;
  color: #d0d0d0;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

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

.features-modern .feature-link a {
  color: var(--accent-color);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

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

.features-modern .feature-box:hover .feature-link a {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(128, 0, 32, 0.6);
}

.features-modern .feature-box:hover .feature-link a i {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .features-modern .features-grid {
    grid-template-columns: 1fr;
  }
  
  .features-modern .section-main-title {
    font-size: 32px;
  }
  
  .feature-details .feature-grid {
    grid-template-columns: 1fr;
  }
  
  .feature-details .section-main-title {
    font-size: 32px;
  }
}


/*--------------------------------------------------------------
# Feature Details Section
--------------------------------------------------------------*/
.feature-details {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0a0a 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.feature-details::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(128, 0, 32, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.feature-details .section-header {
  margin-bottom: 60px;
}

.feature-details .section-main-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(128, 0, 32, 0.5);
}

.feature-details .section-subtitle {
  font-size: 18px;
  color: #d0d0d0;
  max-width: 600px;
  margin: 0 auto;
}

.feature-details .feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.feature-details .feature-card {
  position: relative;
  background: linear-gradient(135deg, #1a0a0a 0%, #2a1a1a 100%);
  border: 2px solid rgba(128, 0, 32, 0.2);
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.feature-details .feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-details .feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(128, 0, 32, 0.6);
  box-shadow: 0 15px 40px rgba(128, 0, 32, 0.4);
}

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

.feature-details .feature-card.featured-card {
  border-color: rgba(128, 0, 32, 0.5);
  box-shadow: 0 10px 35px rgba(128, 0, 32, 0.3);
}

.feature-details .feature-card.featured-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(128, 0, 32, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.feature-details .feature-card-inner {
  padding: 40px 30px;
  position: relative;
  z-index: 1;
}

.feature-details .feature-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(128, 0, 32, 0.5);
  z-index: 2;
}

.feature-details .feature-icon-wrapper {
  position: relative;
  width: 100px;
  height: 100px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-details .feature-icon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(128, 0, 32, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

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

.feature-details .feature-icon {
  font-size: 48px;
  color: var(--accent-color);
  position: relative;
  z-index: 1;
  text-shadow: 0 0 20px rgba(128, 0, 32, 0.8);
  transition: all 0.3s ease;
}

.feature-details .feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  text-shadow: 0 0 30px rgba(128, 0, 32, 1);
}

.feature-details .feature-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-details .feature-text {
  font-size: 16px;
  color: #d0d0d0;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: center;
}

.feature-details .feature-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  margin: 0 auto 25px;
}

.feature-details .feature-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.feature-details .feature-benefits li {
  padding: 10px 0;
  color: #e0e0e0;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.feature-details .feature-benefits li i {
  color: var(--accent-color);
  font-size: 18px;
  text-shadow: 0 0 10px rgba(128, 0, 32, 0.6);
}

/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
.gallery {
  overflow: hidden;
}

.gallery .swiper-wrapper {
  height: auto;
}

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

.gallery .swiper-pagination .swiper-pagination-bullet {
  background-color: var(--background-color);
  border: 1px solid var(--accent-color);
  width: 12px;
  height: 12px;
  opacity: 1;
}

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

.gallery .swiper-slide-active {
  text-align: center;
}

@media (min-width: 992px) {
  .gallery .swiper-wrapper {
    padding: 60px 0;
  }

  .gallery .swiper-slide-active {
    background: var(--background-color);
    border: 6px solid var(--accent-color);
    padding: 4px;
    z-index: 1;
    transform: scale(1.2);
    border-radius: 25px;
    transition: none;
  }
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials {
  background: linear-gradient(180deg, #1a0a0a 0%, #0a0a0a 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(128, 0, 32, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.testimonials .section-header {
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.testimonials .section-main-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(128, 0, 32, 0.5);
}

.testimonials .section-subtitle {
  font-size: 18px;
  color: #d0d0d0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.testimonials-swiper-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.testimonials-swiper {
  position: relative;
  padding-bottom: 60px;
}

.testimonials-swiper .swiper-wrapper {
  padding: 20px 0;
}

.testimonials-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.testimonials-swiper .swiper-slide .testimonial-card {
  width: 100%;
  display: flex;
  flex-direction: column;
}

.testimonial-card {
  position: relative;
  width: 100%;
  height: 100%;
}

.testimonial-card-inner {
  background: linear-gradient(135deg, #1a0a0a 0%, #2a1a1a 100%);
  border: 2px solid rgba(128, 0, 32, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.testimonial-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.testimonial-card:hover .testimonial-card-inner {
  transform: translateY(-8px);
  border-color: rgba(128, 0, 32, 0.6);
  box-shadow: 0 15px 40px rgba(128, 0, 32, 0.4);
}

.testimonial-card:hover .testimonial-card-inner::before {
  opacity: 1;
}

.testimonial-quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.2) 0%, rgba(165, 42, 42, 0.2) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.5;
}

.testimonial-quote-icon i {
  font-size: 24px;
  color: var(--accent-color);
  text-shadow: 0 0 10px rgba(128, 0, 32, 0.6);
}

.testimonial-content {
  margin-bottom: 25px;
  flex-grow: 1;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.8;
  color: #e0e0e0;
  margin: 0;
  font-style: italic;
}

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

.testimonial-rating i {
  font-size: 18px;
  color: #fbbf24;
  text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid rgba(128, 0, 32, 0.2);
}

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(128, 0, 32, 0.3);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.testimonial-card:hover .testimonial-avatar {
  border-color: var(--accent-color);
  box-shadow: 0 0 15px rgba(128, 0, 32, 0.5);
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-info {
  flex: 1;
}

.testimonial-name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 5px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.testimonial-role {
  font-size: 14px;
  color: #d0d0d0;
  margin: 0;
}


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

.testimonials-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(128, 0, 32, 0.3);
  opacity: 1;
  margin: 0 6px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.testimonials-swiper .swiper-pagination-bullet-active {
  background: var(--accent-color);
  border-color: rgba(128, 0, 32, 0.5);
  box-shadow: 0 0 15px rgba(128, 0, 32, 0.6);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .testimonials .section-main-title {
    font-size: 32px;
  }
  
  .testimonials-swiper .swiper-button-prev,
  .testimonials-swiper .swiper-button-next {
    display: none;
  }
  
  .testimonials-swiper-wrapper {
    padding: 0 10px;
  }
}


/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0a0a 100%);
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.pricing::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(128, 0, 32, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.pricing .section-header {
  margin-bottom: 70px;
  position: relative;
  z-index: 1;
}

.pricing .section-main-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 0 20px rgba(128, 0, 32, 0.5);
}

.pricing .section-subtitle {
  font-size: 18px;
  color: #d0d0d0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-card {
  position: relative;
}

.pricing-card .pricing-badge {
  position: absolute;
  top: -15px;
  right: 20px;
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(128, 0, 32, 0.6);
  z-index: 2;
}

.pricing-card-inner {
  background: linear-gradient(135deg, #1a0a0a 0%, #2a1a1a 100%);
  border: 2px solid rgba(128, 0, 32, 0.2);
  border-radius: 24px;
  padding: 50px 35px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.pricing-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pricing-card:hover .pricing-card-inner {
  transform: translateY(-10px);
  border-color: rgba(128, 0, 32, 0.6);
  box-shadow: 0 15px 40px rgba(128, 0, 32, 0.4);
}

.pricing-card:hover .pricing-card-inner::before {
  opacity: 1;
}

.pricing-card.featured-pricing .pricing-card-inner {
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 35px rgba(128, 0, 32, 0.6);
}

.pricing-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.pricing-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.2) 0%, rgba(165, 42, 42, 0.2) 100%);
  border: 2px solid rgba(128, 0, 32, 0.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}

.pricing-card:hover .pricing-icon {
  transform: scale(1.1) rotate(5deg);
  border-color: var(--accent-color);
  box-shadow: 0 8px 25px rgba(128, 0, 32, 0.5);
}

.pricing-icon i {
  font-size: 36px;
  color: var(--accent-color);
  text-shadow: 0 0 15px rgba(128, 0, 32, 0.6);
  transition: all 0.3s ease;
}

.pricing-card.featured-pricing .pricing-icon {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
  border-color: rgba(255, 255, 255, 0.3);
}

.pricing-card.featured-pricing .pricing-icon i {
  color: #ffffff;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.pricing-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card.featured-pricing .pricing-title {
  color: #ffffff;
}

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

.pricing-price .currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--accent-color);
  vertical-align: baseline;
}

.pricing-card.featured-pricing .pricing-price .currency {
  color: #ffffff;
}

.pricing-price .amount {
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  font-family: 'Barlow', sans-serif;
}

.pricing-price .period {
  font-size: 16px;
  color: #d0d0d0;
  margin-left: 5px;
}

.pricing-card.featured-pricing .pricing-price .period {
  color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
  flex-grow: 1;
  margin-bottom: 35px;
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features ul li {
  padding: 12px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #e0e0e0;
  font-size: 15px;
  line-height: 1.6;
}

.pricing-features ul li i {
  font-size: 18px;
  color: var(--accent-color);
  text-shadow: 0 0 10px rgba(128, 0, 32, 0.6);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card.featured-pricing .pricing-features ul li i {
  color: #ffffff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.pricing-features ul li.disabled {
  color: #666;
  opacity: 0.5;
}

.pricing-features ul li.disabled i {
  color: #666;
  text-shadow: none;
}

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

.pricing-footer {
  margin-top: auto;
  text-align: center;
}

.pricing-btn {
  display: inline-block;
  width: 100%;
  padding: 16px 30px;
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  color: #ffffff;
  border: 2px solid rgba(128, 0, 32, 0.5);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(128, 0, 32, 0.4);
}

.pricing-btn:hover {
  background: linear-gradient(135deg, #a52a2a 0%, #800020 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(128, 0, 32, 0.6);
  color: #ffffff;
}

.pricing-btn.featured-btn {
  background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
  color: #000000;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.pricing-btn.featured-btn:hover {
  background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
  color: #000000;
}

@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing .section-main-title {
    font-size: 32px;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  background-color: var(--background-color);
  padding: 60px 0;
}

.faq .faq-container {
  margin-top: 30px;
}

.faq .faq-item {
  background-color: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  padding: 24px 20px 16px 20px;
  margin-bottom: 16px;
  position: relative;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
  transition: all 0.3s ease;
}

.faq .faq-item:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
}

.faq .faq-icon {
  font-size: 22px;
  color: var(--accent-color);
  margin-right: 12px;
  vertical-align: middle;
}

.faq .faq-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  padding-left: 36px;
  position: relative;
  cursor: pointer;
  transition: color 0.3s;
}

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

.faq .faq-toggle {
  position: absolute;
  right: 20px;
  top: 28px;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.3s, color 0.3s;
  color: var(--text-color);
}

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

.faq .faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  padding-left: 36px;
  padding-top: 0;
  margin-top: 8px;
  font-size: 15px;
  transition: max-height 0.5s ease, opacity 0.4s ease;
}

.faq .faq-content p {
  margin: 0;
  line-height: 1.6;
}

.faq .faq-active {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

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

.faq .faq-active .faq-content {
  max-height: 200px;
  opacity: 1;
  padding-top: 12px;
}

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

@media (max-width: 576px) {
  .faq .faq-item {
    padding: 20px 16px 14px 16px;
  }

  .faq .faq-toggle {
    top: 24px;
  }

  .faq .faq-item h3 {
    font-size: 16px;
    padding-left: 32px;
  }

  .faq .faq-content {
    padding-left: 32px;
  }
}

/*--------------------------------------------------------------
# FAQ Page Sections
--------------------------------------------------------------*/

/* FAQ Hero Section */
.faq-hero {
  padding: 120px 20px 80px;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.faq-hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.faq-hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.1;
  animation: faq-hero-float 20s infinite ease-in-out;
}

.faq-hero-shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  top: -200px;
  left: 10%;
  animation-delay: 0s;
}

.faq-hero-shape-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #a52a2a 0%, transparent 70%);
  bottom: -175px;
  right: 15%;
  animation-delay: 5s;
}

@keyframes faq-hero-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.faq-hero-content {
  position: relative;
  z-index: 1;
}

.faq-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.2) 0%, rgba(165, 42, 42, 0.2) 100%);
  border: 1px solid rgba(128, 0, 32, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-hero-badge i {
  color: var(--accent-color);
}

.faq-hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faq-hero-text {
  font-size: 18px;
  line-height: 1.8;
  color: #d0d0d0;
  max-width: 700px;
  margin: 0 auto;
}

/* FAQ Modern Section */
.faq-modern {
  padding: 100px 20px;
  position: relative;
}

.faq-container-modern {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}

.faq-item-modern {
  background: linear-gradient(135deg, #1a0a0a 0%, #2a1a1a 100%);
  border: 2px solid rgba(128, 0, 32, 0.2);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item-modern:hover {
  border-color: rgba(128, 0, 32, 0.4);
  box-shadow: 0 8px 25px rgba(128, 0, 32, 0.2);
}

.faq-item-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 25px 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.faq-item-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item-modern.active .faq-item-header::before {
  opacity: 1;
}

.faq-item-icon-wrapper {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.2) 0%, rgba(165, 42, 42, 0.2) 100%);
  border: 2px solid rgba(128, 0, 32, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.faq-item-modern.active .faq-item-icon-wrapper {
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  border-color: var(--accent-color);
  transform: rotate(5deg);
}

.faq-item-icon {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.faq-item-modern.active .faq-item-icon {
  color: #ffffff;
}

.faq-item-title {
  flex: 1;
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  margin: 0;
  transition: color 0.3s ease;
}

.faq-item-modern.active .faq-item-title {
  color: var(--accent-color);
}

.faq-item-toggle {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(128, 0, 32, 0.1);
  border-radius: 10px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.faq-item-toggle i {
  font-size: 20px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.faq-item-modern.active .faq-item-toggle {
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.3) 0%, rgba(165, 42, 42, 0.3) 100%);
  transform: rotate(180deg);
}

.faq-item-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item-modern.active .faq-item-content {
  max-height: 500px;
  padding: 0 30px 25px;
}

.faq-item-content-inner {
  padding-top: 20px;
  border-top: 1px solid rgba(128, 0, 32, 0.2);
}

.faq-item-content-inner p {
  font-size: 16px;
  line-height: 1.8;
  color: #d0d0d0;
  margin: 0;
}

/* Additional FAQ Section */
.additional-faq {
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.additional-faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(128, 0, 32, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.additional-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.additional-faq-card {
  position: relative;
}

.additional-faq-card-inner {
  background: linear-gradient(135deg, #1a0a0a 0%, #2a1a1a 100%);
  border: 2px solid rgba(128, 0, 32, 0.2);
  border-radius: 20px;
  padding: 35px 30px;
  height: 100%;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.additional-faq-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.additional-faq-card:hover .additional-faq-card-inner {
  transform: translateY(-8px);
  border-color: rgba(128, 0, 32, 0.6);
  box-shadow: 0 15px 40px rgba(128, 0, 32, 0.4);
}

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

.additional-faq-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.2) 0%, rgba(165, 42, 42, 0.2) 100%);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
  transition: all 0.3s ease;
}

.additional-faq-card:hover .additional-faq-icon {
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  transform: rotate(5deg) scale(1.1);
}

.additional-faq-icon i {
  font-size: 32px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.additional-faq-card:hover .additional-faq-icon i {
  color: #ffffff;
}

.additional-faq-title {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.additional-faq-text {
  font-size: 15px;
  line-height: 1.7;
  color: #d0d0d0;
  margin: 0;
}

/* FAQ Support Section */
.faq-support {
  padding: 100px 20px;
  position: relative;
}

.faq-support-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.faq-support-icon {
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.2) 0%, rgba(165, 42, 42, 0.2) 100%);
  border: 2px solid rgba(128, 0, 32, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 30px;
  transition: all 0.3s ease;
}

.faq-support-icon i {
  font-size: 48px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.faq-support:hover .faq-support-icon {
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  border-color: var(--accent-color);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 30px rgba(128, 0, 32, 0.6);
}

.faq-support:hover .faq-support-icon i {
  color: #ffffff;
}

.faq-support-title {
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
}

.faq-support-text {
  font-size: 18px;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 40px;
}

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

.btn-support-primary,
.btn-support-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 35px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
  position: relative;
  overflow: hidden;
}

.btn-support-primary {
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  border-color: var(--accent-color);
  color: #ffffff;
}

.btn-support-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(128, 0, 32, 0.6);
}

.btn-support-secondary {
  background: transparent;
  border-color: rgba(128, 0, 32, 0.5);
  color: #ffffff;
}

.btn-support-secondary:hover {
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.2) 0%, rgba(165, 42, 42, 0.2) 100%);
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.btn-support-primary i,
.btn-support-secondary i {
  transition: transform 0.3s ease;
}

.btn-support-primary:hover i,
.btn-support-secondary:hover i {
  transform: translateX(5px);
}

/* Responsive FAQ */
@media (max-width: 768px) {
  .faq-hero-title {
    font-size: 36px;
  }

  .faq-item-header {
    padding: 20px;
    gap: 15px;
  }

  .faq-item-icon-wrapper {
    width: 40px;
    height: 40px;
  }

  .faq-item-icon {
    font-size: 20px;
  }

  .faq-item-title {
    font-size: 18px;
  }

  .faq-item-modern.active .faq-item-content {
    padding: 0 20px 20px;
  }

  .additional-faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-support-title {
    font-size: 32px;
  }

  .faq-support-buttons {
    flex-direction: column;
  }

  .btn-support-primary,
  .btn-support-secondary {
    width: 100%;
    justify-content: center;
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
:root {
  --accent-color: var(--footer-newsletter);
  --text-color: #212529;
}

/* Section Accent */
.text-accent {
  color: var(--accent-color);
}

.btn-accent {
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  color: #fff;
  border: 2px solid rgba(128, 0, 32, 0.5);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(128, 0, 32, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.btn-accent:hover {
  background: linear-gradient(135deg, #a52a2a 0%, #800020 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(128, 0, 32, 0.6);
}

/* Contact Section */
.contact.section {
  background: linear-gradient(135deg, #000000 0%, #1a0a0a 100%);
  color: #e0e0e0;
  border-top: 2px solid var(--accent-color);
}

.contact-box {
  background: linear-gradient(135deg, #1a0a0a 0%, #2a1a1a 100%);
  border: 2px solid rgba(128, 0, 32, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.icon-box i {
  color: var(--accent-color);
  text-shadow: 0 0 10px rgba(128, 0, 32, 0.6);
}

.contact-form {
  background: linear-gradient(135deg, #1a0a0a 0%, #2a1a1a 100%);
  border-left: 4px solid var(--accent-color);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.contact-form input,
.contact-form textarea {
  border: 2px solid rgba(128, 0, 32, 0.3);
  border-radius: 6px;
  padding: 12px 16px;
  font-size: 15px;
  background-color: #0a0a0a;
  color: #ffffff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 15px rgba(128, 0, 32, 0.4);
  background-color: #1a0a0a;
  outline: none;
}

.form-status .loading,
.form-status .error-message,
.form-status .sent-message {
  font-size: 14px;
  margin-top: 10px;
}

/*--------------------------------------------------------------
# Contact Page Sections
--------------------------------------------------------------*/

/* Contact Hero Section */
.contact-hero {
  padding: 120px 20px 80px;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.contact-hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.contact-hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.1;
  animation: contact-hero-float 20s infinite ease-in-out;
}

.contact-hero-shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  top: -200px;
  left: 10%;
  animation-delay: 0s;
}

.contact-hero-shape-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #a52a2a 0%, transparent 70%);
  bottom: -175px;
  right: 15%;
  animation-delay: 5s;
}

@keyframes contact-hero-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.contact-hero-content {
  position: relative;
  z-index: 1;
}

.contact-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.2) 0%, rgba(165, 42, 42, 0.2) 100%);
  border: 1px solid rgba(128, 0, 32, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-hero-badge i {
  color: var(--accent-color);
}

.contact-hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-hero-text {
  font-size: 18px;
  line-height: 1.8;
  color: #d0d0d0;
  max-width: 700px;
  margin: 0 auto;
}

/* Contact Modern Section */
.contact-modern {
  padding: 100px 20px;
  position: relative;
}

.contact-info-modern {
  position: sticky;
  top: 100px;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.contact-info-card {
  background: linear-gradient(135deg, #1a0a0a 0%, #2a1a1a 100%);
  border: 2px solid rgba(128, 0, 32, 0.2);
  border-radius: 15px;
  padding: 25px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  border-color: rgba(128, 0, 32, 0.5);
  transform: translateX(5px);
  box-shadow: 0 8px 25px rgba(128, 0, 32, 0.2);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.2) 0%, rgba(165, 42, 42, 0.2) 100%);
  border: 2px solid rgba(128, 0, 32, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon {
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  border-color: var(--accent-color);
  transform: rotate(5deg) scale(1.1);
}

.contact-info-icon i {
  font-size: 28px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-info-icon i {
  color: #ffffff;
}

.contact-info-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.contact-info-content p {
  font-size: 14px;
  color: #b0b0b0;
  margin-bottom: 8px;
}

.contact-info-content a {
  font-size: 16px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.contact-info-content a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(128, 0, 32, 0.6);
}

.contact-info-content span {
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
}

/* Contact Form Modern */
.contact-form-modern {
  background: linear-gradient(135deg, #1a0a0a 0%, #2a1a1a 100%);
  border: 2px solid rgba(128, 0, 32, 0.2);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.contact-form-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0.6;
}

.contact-form-header {
  margin-bottom: 35px;
}

.contact-form-title {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.contact-form-subtitle {
  font-size: 16px;
  color: #d0d0d0;
  margin: 0;
}

.contact-form {
  position: relative;
  z-index: 1;
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #e0e0e0;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(128, 0, 32, 0.2);
  border-radius: 12px;
  font-size: 16px;
  color: #ffffff;
  font-family: var(--default-font);
  transition: all 0.3s ease;
}

.form-control::placeholder {
  color: #808080;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  background: rgba(0, 0, 0, 0.4);
  box-shadow: 0 0 20px rgba(128, 0, 32, 0.3);
}

.form-control:focus::placeholder {
  color: #a0a0a0;
}

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

/* Form Validation Styles */
.form-control.is-valid {
  border-color: #28a745;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='m2.3 6.73.98-.98-.98-.98-.98.98.98.98zm2.85-3.7L4.5 2.5l-1.65 1.53L2.5 2.5l-.65.65L3.35 4.5l1.8-1.47z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  padding-right: calc(1.5em + 0.75rem);
}

.form-control.is-valid:focus {
  border-color: #28a745;
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
}

.form-control.is-invalid {
  border-color: #dc3545;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 3.6.4.4.4-.4m0 4.8-.4-.4-.4.4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
  padding-right: calc(1.5em + 0.75rem);
}

.form-control.is-invalid:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.was-validated .form-control:invalid ~ .invalid-feedback,
.was-validated .form-control:invalid ~ .invalid-tooltip,
.form-control.is-invalid ~ .invalid-feedback,
.form-control.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:valid ~ .invalid-feedback,
.was-validated .form-control:valid ~ .invalid-tooltip,
.form-control.is-valid ~ .invalid-feedback,
.form-control.is-valid ~ .invalid-tooltip {
  display: none;
}

.was-validated textarea.form-control:invalid,
textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated textarea.form-control:valid,
textarea.form-control.is-valid {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

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

.btn-contact-submit {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  border: 2px solid var(--accent-color);
  border-radius: 12px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-contact-submit::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #a52a2a 0%, #800020 100%);
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-contact-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(128, 0, 32, 0.6);
}

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

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

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

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

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

.form-status .loading {
  background: rgba(128, 0, 32, 0.2);
  color: var(--accent-color);
  border: 1px solid rgba(128, 0, 32, 0.3);
}

.form-status .error-message {
  background: rgba(220, 53, 69, 0.2);
  color: #ff6b6b;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.form-status .sent-message {
  background: rgba(40, 167, 69, 0.2);
  color: #51cf66;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

/* Contact Methods Section */
.contact-methods {
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.contact-methods::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 0%, rgba(128, 0, 32, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.contact-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.contact-method-card-modern {
  position: relative;
}

.contact-method-card-inner {
  background: linear-gradient(135deg, #1a0a0a 0%, #2a1a1a 100%);
  border: 2px solid rgba(128, 0, 32, 0.2);
  border-radius: 20px;
  padding: 40px 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.contact-method-card-inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.contact-method-card-modern:hover .contact-method-card-inner {
  transform: translateY(-8px);
  border-color: rgba(128, 0, 32, 0.6);
  box-shadow: 0 15px 40px rgba(128, 0, 32, 0.4);
}

.contact-method-card-modern:hover .contact-method-card-inner::before {
  opacity: 1;
}

.contact-method-icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
}

.contact-method-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.2) 0%, rgba(165, 42, 42, 0.2) 100%);
  border-radius: 18px;
  transition: all 0.3s ease;
}

.contact-method-card-modern:hover .contact-method-icon-bg {
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  transform: rotate(5deg) scale(1.1);
}

.contact-method-icon {
  position: relative;
  z-index: 1;
  font-size: 40px;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition: all 0.3s ease;
}

.contact-method-card-modern:hover .contact-method-icon {
  color: #ffffff;
  transform: scale(1.1);
}

.contact-method-title {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
}

.contact-method-text {
  font-size: 15px;
  line-height: 1.7;
  color: #d0d0d0;
  margin-bottom: 25px;
  flex-grow: 1;
}

.contact-method-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.contact-method-link:hover {
  color: #ffffff;
  gap: 15px;
}

.contact-method-link i {
  transition: transform 0.3s ease;
}

.contact-method-link:hover i {
  transform: translateX(5px);
}

.contact-method-schedule {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: rgba(128, 0, 32, 0.1);
  border: 1px solid rgba(128, 0, 32, 0.2);
  border-radius: 10px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

.contact-method-schedule i {
  color: var(--accent-color);
  font-size: 18px;
}

/* Contact Team Section */
.contact-team {
  padding: 100px 20px;
  position: relative;
}

.team-content {
  padding-right: 30px;
}

.team-description {
  font-size: 16px;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 40px;
}

.team-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.team-feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.team-feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.2) 0%, rgba(165, 42, 42, 0.2) 100%);
  border: 2px solid rgba(128, 0, 32, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.team-feature-item:hover .team-feature-icon {
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  border-color: var(--accent-color);
  transform: rotate(5deg) scale(1.1);
}

.team-feature-icon i {
  font-size: 24px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.team-feature-item:hover .team-feature-icon i {
  color: #ffffff;
}

.team-feature-text h4 {
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.team-feature-text p {
  font-size: 15px;
  line-height: 1.7;
  color: #d0d0d0;
  margin: 0;
}

.team-info-card {
  background: linear-gradient(135deg, #1a0a0a 0%, #2a1a1a 100%);
  border: 2px solid rgba(128, 0, 32, 0.2);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.team-info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0.6;
}

.team-info-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 35px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(128, 0, 32, 0.2);
}

.team-info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.2) 0%, rgba(165, 42, 42, 0.2) 100%);
  border: 2px solid rgba(128, 0, 32, 0.3);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-info-icon i {
  font-size: 28px;
  color: var(--accent-color);
}

.team-info-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.team-info-items {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

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

.team-info-item-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.2) 0%, rgba(165, 42, 42, 0.2) 100%);
  border: 2px solid rgba(128, 0, 32, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.team-info-item:hover .team-info-item-icon {
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  border-color: var(--accent-color);
  transform: rotate(5deg);
}

.team-info-item-icon i {
  font-size: 22px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.team-info-item:hover .team-info-item-icon i {
  color: #ffffff;
}

.team-info-item-content h4 {
  font-size: 12px;
  font-weight: 600;
  color: #b0b0b0;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.team-info-item-content a,
.team-info-item-content span {
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.team-info-item-content a:hover {
  color: var(--accent-color);
  text-shadow: 0 0 10px rgba(128, 0, 32, 0.6);
}

/* Responsive Contact */
@media (max-width: 992px) {
  .contact-info-modern {
    position: static;
    margin-bottom: 50px;
  }
}

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

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

  .form-row {
    flex-direction: column;
    gap: 0;
  }

  .contact-methods-grid {
    grid-template-columns: 1fr;
  }

  .team-content {
    padding-right: 0;
    margin-bottom: 40px;
  }
}

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

/* Policy Hero Section */
.policy-hero {
  padding: 120px 20px 80px;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.policy-hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.policy-hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.1;
  animation: policy-hero-float 20s infinite ease-in-out;
}

.policy-hero-shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  top: -200px;
  left: 10%;
  animation-delay: 0s;
}

.policy-hero-shape-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #a52a2a 0%, transparent 70%);
  bottom: -175px;
  right: 15%;
  animation-delay: 5s;
}

@keyframes policy-hero-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.policy-hero-content {
  position: relative;
  z-index: 1;
}

.policy-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.2) 0%, rgba(165, 42, 42, 0.2) 100%);
  border: 1px solid rgba(128, 0, 32, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.policy-hero-badge i {
  color: var(--accent-color);
}

.policy-hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.policy-hero-text {
  font-size: 18px;
  line-height: 1.8;
  color: #d0d0d0;
  max-width: 700px;
  margin: 0 auto;
}

/* Policy Content Section */
.policy-content {
  padding: 100px 20px;
  position: relative;
}

.policy-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.policy-section {
  background: linear-gradient(135deg, #1a0a0a 0%, #2a1a1a 100%);
  border: 2px solid rgba(128, 0, 32, 0.2);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.policy-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.policy-section:hover {
  border-color: rgba(128, 0, 32, 0.5);
  box-shadow: 0 10px 30px rgba(128, 0, 32, 0.3);
  transform: translateY(-5px);
}

.policy-section:hover::before {
  opacity: 1;
}

.policy-section-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(128, 0, 32, 0.2);
}

.policy-section-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.2) 0%, rgba(165, 42, 42, 0.2) 100%);
  border: 2px solid rgba(128, 0, 32, 0.3);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.policy-section:hover .policy-section-icon {
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  border-color: var(--accent-color);
  transform: rotate(5deg) scale(1.1);
}

.policy-section-icon i {
  font-size: 28px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.policy-section:hover .policy-section-icon i {
  color: #ffffff;
}

.policy-section-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.policy-section-body {
  color: #d0d0d0;
  line-height: 1.8;
}

.policy-section-body p {
  font-size: 16px;
  margin-bottom: 15px;
}

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

.policy-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.policy-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 12px 0;
  font-size: 16px;
  color: #d0d0d0;
  line-height: 1.7;
}

.policy-list li i {
  color: var(--accent-color);
  font-size: 20px;
  margin-top: 2px;
  flex-shrink: 0;
}

.policy-list li strong {
  color: #ffffff;
  font-weight: 600;
}

.policy-contact-info {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 15px 25px;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.1) 0%, rgba(165, 42, 42, 0.1) 100%);
  border: 1px solid rgba(128, 0, 32, 0.3);
  border-radius: 12px;
}

.policy-contact-info i {
  color: var(--accent-color);
  font-size: 20px;
}

.policy-contact-info a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.policy-contact-info a:hover {
  color: var(--accent-color);
  text-shadow: 0 0 10px rgba(128, 0, 32, 0.6);
}

/* Thanks Page */
.thanks-hero {
  padding: 120px 20px 80px;
  background: linear-gradient(180deg, #0a0a0a 0%, #1a0a0a 100%);
  position: relative;
  overflow: hidden;
}

.thanks-hero-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.thanks-hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.1;
  animation: thanks-hero-float 20s infinite ease-in-out;
}

.thanks-hero-shape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
  top: -200px;
  left: 10%;
  animation-delay: 0s;
}

.thanks-hero-shape-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #a52a2a 0%, transparent 70%);
  bottom: -175px;
  right: 15%;
  animation-delay: 5s;
}

@keyframes thanks-hero-float {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(30px, -30px) scale(1.1);
  }
}

.thanks-hero-content {
  position: relative;
  z-index: 1;
}

.thanks-icon-wrapper {
  position: relative;
  width: 150px;
  height: 150px;
  margin: 0 auto 40px;
}

.thanks-icon-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.2) 0%, rgba(165, 42, 42, 0.2) 100%);
  border: 3px solid rgba(128, 0, 32, 0.3);
  border-radius: 50%;
  animation: thanks-icon-pulse 2s infinite ease-in-out;
}

@keyframes thanks-icon-pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

.thanks-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  animation: thanks-pulse-ring 2s infinite ease-out;
}

@keyframes thanks-pulse-ring {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.5);
    opacity: 0;
  }
}

.thanks-icon {
  position: relative;
  z-index: 1;
  font-size: 80px;
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  animation: thanks-icon-bounce 1s ease-in-out;
}

@keyframes thanks-icon-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.thanks-hero-title {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.thanks-hero-text {
  font-size: 18px;
  line-height: 1.8;
  color: #d0d0d0;
  max-width: 700px;
  margin: 0 auto;
}

.thanks-content {
  padding: 100px 20px;
  position: relative;
}

.thanks-content-wrapper {
  background: linear-gradient(135deg, #1a0a0a 0%, #2a1a1a 100%);
  border: 2px solid rgba(128, 0, 32, 0.2);
  border-radius: 20px;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.thanks-content-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0.6;
}

.thanks-description {
  font-size: 18px;
  line-height: 1.8;
  color: #d0d0d0;
  margin-bottom: 25px;
}

.thanks-description strong {
  color: #ffffff;
  font-weight: 700;
}

.thanks-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-thanks-primary,
.btn-thanks-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 35px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid;
  position: relative;
  overflow: hidden;
}

.btn-thanks-primary {
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  border-color: var(--accent-color);
  color: #ffffff;
}

.btn-thanks-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(128, 0, 32, 0.6);
}

.btn-thanks-secondary {
  background: transparent;
  border-color: rgba(128, 0, 32, 0.5);
  color: #ffffff;
}

.btn-thanks-secondary:hover {
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.2) 0%, rgba(165, 42, 42, 0.2) 100%);
  border-color: var(--accent-color);
  transform: translateY(-3px);
}

.btn-thanks-primary i,
.btn-thanks-secondary i {
  transition: transform 0.3s ease;
}

.btn-thanks-primary:hover i,
.btn-thanks-secondary:hover i {
  transform: translateX(5px);
}

/* Responsive Policy & Thanks Pages */
@media (max-width: 768px) {
  .policy-hero-title,
  .thanks-hero-title {
    font-size: 36px;
  }

  .policy-section {
    padding: 30px 20px;
  }

  .policy-section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .policy-section-icon {
    width: 50px;
    height: 50px;
  }

  .policy-section-icon i {
    font-size: 24px;
  }

  .policy-section-title {
    font-size: 24px;
  }

  .thanks-icon-wrapper {
    width: 120px;
    height: 120px;
  }

  .thanks-icon {
    font-size: 60px;
  }

  .thanks-content-wrapper {
    padding: 40px 25px;
  }

  .thanks-buttons {
    flex-direction: column;
  }

  .btn-thanks-primary,
  .btn-thanks-secondary {
    width: 100%;
    justify-content: center;
  }
}

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

/*--------------------------------------------------------------
# Cookie Popup
--------------------------------------------------------------*/
#cookie-popup {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, #1a0a0a 0%, #2a1a1a 100%);
  color: #e0e0e0;
  border: 2px solid rgba(128, 0, 32, 0.4);
  padding: 0;
  font-family: var(--default-font);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.7), 0 0 30px rgba(128, 0, 32, 0.3);
  border-radius: 20px;
  font-size: 14px;
  max-width: 500px;
  width: calc(100% - 40px);
  z-index: 10000;
  display: none;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow: hidden;
}

#cookie-popup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  opacity: 0.8;
}

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

#cookie-popup .popup-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  position: relative;
}

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

#cookie-popup .popup-message p {
  margin: 0;
  padding: 0;
  line-height: 1.7;
  color: #e0e0e0;
  font-size: 14px;
}

#cookie-popup .popup-message a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
  position: relative;
}

#cookie-popup .popup-message a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

#cookie-popup .popup-message a:hover {
  color: #ffffff;
  text-shadow: 0 0 10px rgba(128, 0, 32, 0.6);
}

#cookie-popup .popup-message a:hover::after {
  width: 100%;
}

#cookie-popup .popup-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}

#cookie-popup button {
  background: linear-gradient(135deg, rgba(128, 0, 32, 0.3) 0%, rgba(165, 42, 42, 0.3) 100%);
  color: #ffffff;
  border: 2px solid rgba(128, 0, 32, 0.5);
  padding: 12px 28px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  font-family: var(--default-font);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

#cookie-popup button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  transition: left 0.3s ease;
  z-index: -1;
}

#cookie-popup button:hover {
  border-color: var(--accent-color);
  color: #ffffff;
  box-shadow: 0 6px 25px rgba(128, 0, 32, 0.5);
  transform: translateY(-2px);
}

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

#cookie-popup button:active {
  transform: translateY(0);
}

#cookie-popup button.accept-btn {
  background: linear-gradient(135deg, #800020 0%, #a52a2a 100%);
  border-color: var(--accent-color);
}

#cookie-popup button.accept-btn::before {
  background: linear-gradient(135deg, #a52a2a 0%, #800020 100%);
}

#cookie-popup button.accept-btn:hover {
  box-shadow: 0 6px 25px rgba(128, 0, 32, 0.7);
}

@media (max-width: 768px) {
  #cookie-popup {
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: auto;
    max-width: none;
    transform: translateY(100px);
  }

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

  #cookie-popup .popup-content {
    padding: 25px 20px;
    gap: 15px;
  }

  #cookie-popup .popup-actions {
    flex-direction: column;
    width: 100%;
  }

  #cookie-popup button {
    width: 100%;
    padding: 14px 28px;
  }

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