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

/* Global Colors - Antique Gold Theme */
:root {
  --background-color: #1a0f0a;             /* Deep burgundy background */
  --default-color: #f5f0e8;                /* Cream text */
  --heading-color: #ffffff;                /* White headings */
  --accent-color: #d4af37;                 /* Antique gold */
  --accent-secondary: #8b4513;             /* Saddle brown */
  --surface-color: rgba(139, 69, 19, 0.3); /* Brown overlay */
  --contrast-color: #ffffff;               /* White contrast */
  --bg-color: rgba(212, 175, 55, 0.1);    /* Gold tint */
  --nav-color: #f5f0e8;                    /* Cream nav text */
  --nav-hover-color: #d4af37;              /* Gold nav hover */
  --nav-mobile-background-color: rgba(26, 15, 10, 0.95); /* Dark burgundy mobile */
  --nav-dropdown-background-color: rgba(139, 69, 19, 0.95); /* Brown dropdown */
  --nav-dropdown-color: #f5f0e8;           /* Cream dropdown text */
  --nav-dropdown-hover-color: #d4af37;    /* Gold dropdown hover */
}

/* Color Presets */

.light-background {
  --background-color: rgba(139, 69, 19, 0.15);
  --surface-color: rgba(212, 175, 55, 0.1);
}

.dark-background {
  --background-color: #1a0f0a;
  --default-color: #f5f0e8;
  --heading-color: #ffffff;
  --surface-color: rgba(139, 69, 19, 0.3);
  --contrast-color: #ffffff;
}


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

/*--------------------------------------------------------------
# Antique Theme Sections
--------------------------------------------------------------*/

/* Hero Antique Section */
.hero-antique {
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #1a0f0a 0%, #2d1a0d 25%, #3d2515 50%, #8b4513 75%, #a0522d 100%);
}

.antique-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.antique-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(139, 69, 19, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(212, 175, 55, 0.05) 0%, transparent 50%);
  opacity: 0.6;
}

.antique-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 40%, transparent 70%);
  border-radius: 50%;
}

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

.antique-element {
  position: absolute;
  color: rgba(212, 175, 55, 0.3);
  font-size: 2rem;
  animation: float 6s ease-in-out infinite;
}

.antique-element.element-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.antique-element.element-2 {
  top: 15%;
  right: 15%;
  animation-delay: 2s;
}

.antique-element.element-3 {
  bottom: 25%;
  left: 15%;
  animation-delay: 4s;
}

.antique-element.element-4 {
  bottom: 20%;
  right: 10%;
  animation-delay: 1s;
}

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

.antique-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.9), rgba(160, 82, 45, 0.9));
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 50px;
  padding: 12px 24px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(139, 69, 19, 0.3);
}

.badge-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  border-radius: 50%;
  color: #1a0f0a;
  font-size: 14px;
}

.badge-text {
  color: #f5f0e8;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.badge-decoration {
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  border-radius: 1px;
}

.hero-antique-title {
  margin-bottom: 2rem;
}

.title-main {
  font-size: 3.5rem;
  font-weight: 300;
  color: #f5f0e8;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.title-antique {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(135deg, #d4af37, #b8860b, #daa520);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}

.hero-antique-description {
  font-size: 1.25rem;
  color: #f5f0e8;
  line-height: 1.6;
  max-width: 600px;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero-antique-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-antique-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: #1a0f0a;
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-antique-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.btn-antique-primary .btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-antique-primary:hover .btn-glow {
  left: 100%;
}

.btn-antique-outline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
  border-radius: 50px;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-antique-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #daa520;
  color: #daa520;
  transform: translateY(-1px);
}

/* Secondary Hero Section */
.hero-antique-secondary {
  margin-top: 80px;
  padding: 80px 0;
  background: linear-gradient(135deg, rgba(26, 15, 10, 0.95), rgba(45, 26, 13, 0.95));
  border-radius: 20px;
  margin-bottom: 60px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.secondary-content .antique-subtitle {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d4af37;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.secondary-content .antique-subtitle i {
  font-size: 1.2rem;
}

.secondary-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f5f0e8;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.secondary-description {
  font-size: 1.1rem;
  color: #f5f0e8;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.secondary-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  border-radius: 12px;
  color: #1a0f0a;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-text h6 {
  color: #f5f0e8;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: #f5f0e8;
  opacity: 0.8;
  font-size: 0.9rem;
  line-height: 1.4;
}

.btn-antique-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
  border-radius: 50px;
  padding: 14px 28px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-antique-secondary:hover {
  background: #d4af37;
  color: #1a0f0a;
  transform: translateY(-1px);
}

/* Features Antique Section */
.features-antique {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #2d1a0d 50%, #3d2515 100%);
  position: relative;
  overflow: hidden;
}

.features-antique-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.antique-marble-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(139, 69, 19, 0.06) 0%, transparent 50%);
  opacity: 0.4;
}

.features-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 50%, transparent 70%);
}

.antique-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 2rem;
}

.antique-section-badge .badge-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a0f0a;
  font-size: 16px;
}

.antique-section-badge span {
  color: #d4af37;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.antique-section-badge .badge-decoration {
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
}

.features-antique-title {
  font-size: 3rem;
  font-weight: 700;
  color: #f5f0e8;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.title-highlight {
  background: linear-gradient(135deg, #d4af37, #b8860b, #daa520);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.features-antique-description {
  font-size: 1.2rem;
  color: #f5f0e8;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.feature-antique-card {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(160, 82, 45, 0.1));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  height: 100%;
}

.feature-antique-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2);
}

.feature-antique-card.featured {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(139, 69, 19, 0.15));
  border-color: rgba(212, 175, 55, 0.4);
}

.card-antique-frame {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.frame-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.frame-corner.tl {
  top: 15px;
  left: 15px;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 15px;
}

.frame-corner.tr {
  top: 15px;
  right: 15px;
  border-left: none;
  border-bottom: none;
  border-top-right-radius: 15px;
}

.frame-corner.bl {
  bottom: 15px;
  left: 15px;
  border-right: none;
  border-top: none;
  border-bottom-left-radius: 15px;
}

.frame-corner.br {
  bottom: 15px;
  right: 15px;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 15px;
}

.card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-antique-card:hover .card-glow {
  opacity: 1;
}

.featured-ribbon {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: #1a0f0a;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.feature-antique-header {
  text-align: center;
  margin-bottom: 2rem;
}

.feature-icon-container {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  position: relative;
}

.icon-antique-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a0f0a;
  font-size: 2rem;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  transition: all 0.3s ease;
}

.feature-antique-card:hover .icon-antique-bg {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.icon-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-antique-card:hover .icon-glow {
  opacity: 1;
}

.feature-antique-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f5f0e8;
  margin-bottom: 1rem;
}

.feature-antique-description {
  color: #f5f0e8;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.feature-antique-specs {
  margin-bottom: 2rem;
}

.spec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.75rem;
}

.spec-item i {
  color: #d4af37;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.spec-item span {
  color: #f5f0e8;
  font-size: 0.95rem;
  opacity: 0.9;
}

.btn-antique-feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: #1a0f0a;
  border: none;
  border-radius: 25px;
  padding: 12px 24px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-antique-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-antique-feature.featured {
  background: linear-gradient(135deg, #b8860b, #daa520);
}

/* Collections Antique Section */
.collections-antique {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #2d1a0d 30%, #3d2515 70%, #5d3418 100%);
  position: relative;
  overflow: hidden;
}

.collections-antique-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.antique-ornament-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(212, 175, 55, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(139, 69, 19, 0.08) 0%, transparent 40%),
    linear-gradient(45deg, transparent 40%, rgba(212, 175, 55, 0.02) 50%, transparent 60%);
  opacity: 0.5;
}

.collections-glow-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, rgba(212, 175, 55, 0.01) 60%, transparent 80%);
}

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

.collection-element {
  position: absolute;
  color: rgba(212, 175, 55, 0.2);
  font-size: 1.5rem;
  animation: float-gentle 8s ease-in-out infinite;
}

.collection-element.el-1 {
  top: 25%;
  left: 8%;
  animation-delay: 0s;
}

.collection-element.el-2 {
  top: 20%;
  right: 12%;
  animation-delay: 3s;
}

.collection-element.el-3 {
  bottom: 30%;
  right: 8%;
  animation-delay: 6s;
}

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

.collections-antique-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #f5f0e8;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.collections-antique-description {
  font-size: 1.25rem;
  color: #f5f0e8;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 4rem;
}

/* Featured Collection Card */
.featured-collection-card {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.15), rgba(160, 82, 45, 0.1), rgba(139, 69, 19, 0.15));
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 25px;
  padding: 3rem;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
}

.collection-antique-frame {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.frame-golden-border {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 20px;
  opacity: 0.6;
}

.frame-corner-decoration {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid #d4af37;
}

.frame-corner-decoration.tl {
  top: -2px;
  left: -2px;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 15px;
}

.frame-corner-decoration.tr {
  top: -2px;
  right: -2px;
  border-left: none;
  border-bottom: none;
  border-top-right-radius: 15px;
}

.frame-corner-decoration.bl {
  bottom: -2px;
  left: -2px;
  border-right: none;
  border-top: none;
  border-bottom-left-radius: 15px;
}

.frame-corner-decoration.br {
  bottom: -2px;
  right: -2px;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 15px;
}

.collection-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(212, 175, 55, 0.03) 50%, transparent 70%);
  border-radius: 50%;
}

.collection-premium-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: #1a0f0a;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1.5rem;
}

.collection-antique-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #f5f0e8;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.collection-antique-subtitle {
  font-size: 1.1rem;
  color: #d4af37;
  font-weight: 500;
  margin-bottom: 2rem;
}

.collection-features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.feature-premium-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 15px;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.feature-icon-premium {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  border-radius: 12px;
  color: #1a0f0a;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.feature-text h6 {
  color: #f5f0e8;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: #f5f0e8;
  opacity: 0.8;
  font-size: 0.9rem;
  line-height: 1.4;
}

.collection-stats {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

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

.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #d4af37;
  display: block;
  margin-bottom: 0.25rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #f5f0e8;
  opacity: 0.8;
  font-weight: 500;
}

.btn-antique-collection {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: #1a0f0a;
  border: none;
  border-radius: 30px;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-antique-collection:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
}

.btn-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

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

.btn-antique-collection:hover .btn-golden-glow {
  left: 100%;
}

/* Secondary Collections */
.secondary-collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.collection-secondary-card {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.08), rgba(160, 82, 45, 0.05));
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.collection-secondary-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 15px 30px rgba(139, 69, 19, 0.2);
}

.collection-secondary-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.collection-icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(139, 69, 19, 0.3));
  border-radius: 15px;
  color: #d4af37;
  font-size: 1.5rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.collection-secondary-header h4 {
  color: #f5f0e8;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.collection-secondary-content {
  margin-bottom: 1.5rem;
}

.collection-secondary-content p {
  color: #f5f0e8;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 1rem;
}

.collection-benefits {
  list-style: none;
  padding: 0;
  margin: 0;
}

.collection-benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f5f0e8;
  opacity: 0.8;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.collection-benefits li i {
  color: #d4af37;
  font-size: 0.9rem;
}

.btn-secondary-collection {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d4af37;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.btn-secondary-collection:hover {
  color: #daa520;
  border-bottom-color: #daa520;
  transform: translateX(5px);
}

/* Trust Section */
.collections-trust-section {
  background: linear-gradient(135deg, rgba(26, 15, 10, 0.9), rgba(45, 26, 13, 0.9));
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.trust-antique-frame {
  text-align: center;
}

.trust-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #f5f0e8;
  margin-bottom: 0.5rem;
}

.trust-header p {
  color: #f5f0e8;
  opacity: 0.8;
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

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

.trust-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(139, 69, 19, 0.3));
  border-radius: 50%;
  color: #d4af37;
  font-size: 1.8rem;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.trust-content h5 {
  color: #f5f0e8;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.trust-content p {
  color: #f5f0e8;
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.5;
}

/* Reviews Antique Section */
.reviews-antique {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #2d1a0d 40%, #3d2515 100%);
  position: relative;
  overflow: hidden;
}

.reviews-antique-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.antique-testimonial-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(139, 69, 19, 0.06) 0%, transparent 50%);
  opacity: 0.3;
}

.reviews-golden-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, rgba(212, 175, 55, 0.01) 50%, transparent 70%);
}

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

.review-element {
  position: absolute;
  color: rgba(212, 175, 55, 0.15);
  font-size: 3rem;
  animation: testimonial-float 10s ease-in-out infinite;
}

.review-element.el-1 {
  top: 20%;
  left: 5%;
  animation-delay: 0s;
}

.review-element.el-2 {
  top: 10%;
  right: 8%;
  animation-delay: 3s;
}

.review-element.el-3 {
  bottom: 25%;
  right: 5%;
  animation-delay: 6s;
}

@keyframes testimonial-float {
  0%, 100% { transform: translateY(0px) rotate(0deg) scale(1); }
  50% { transform: translateY(-25px) rotate(2deg) scale(1.05); }
}

.reviews-antique-title {
  font-size: 3rem;
  font-weight: 700;
  color: #f5f0e8;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.reviews-antique-description {
  font-size: 1.2rem;
  color: #f5f0e8;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 4rem;
}

/* Review Cards */
.reviews-carousel-container {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.review-antique-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.12), rgba(160, 82, 45, 0.08));
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 25px;
  padding: 3rem;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.6s ease;
  backdrop-filter: blur(15px);
}

.review-antique-card.active {
  opacity: 1;
  transform: translateX(0);
}

.review-antique-card.featured {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(139, 69, 19, 0.1));
  border-color: rgba(212, 175, 55, 0.4);
}

.review-antique-frame {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.frame-elegant-border {
  position: absolute;
  top: 25px;
  left: 25px;
  right: 25px;
  bottom: 25px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 20px;
}

.review-golden-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border-bottom-left-radius: 100px;
  opacity: 0.6;
}

.review-golden-accent.featured {
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.3), rgba(212, 175, 55, 0.2));
}

.review-premium-badge {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  border-radius: 50%;
  color: #1a0f0a;
  font-size: 1.2rem;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.review-premium-badge.featured {
  background: linear-gradient(135deg, #b8860b, #daa520);
}

.review-featured-ribbon {
  position: absolute;
  top: 30px;
  left: 30px;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: #1a0f0a;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.review-antique-header {
  margin-bottom: 2rem;
}

.review-quote-icon {
  font-size: 3rem;
  color: #d4af37;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.review-quote-icon.featured {
  color: #daa520;
  opacity: 0.9;
}

.review-category-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(212, 175, 55, 0.3);
}

.review-category-badge.featured {
  background: rgba(218, 165, 32, 0.15);
  color: #daa520;
  border-color: rgba(218, 165, 32, 0.4);
}

.review-antique-content {
  margin-bottom: 2rem;
}

.review-antique-text {
  font-size: 1.2rem;
  color: #f5f0e8;
  line-height: 1.6;
  font-style: italic;
}

.review-antique-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.author-avatar {
  flex-shrink: 0;
}

.avatar-frame {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(139, 69, 19, 0.3));
  border-radius: 50%;
  color: #d4af37;
  font-size: 1.2rem;
  font-weight: 600;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.author-avatar.featured .avatar-frame {
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.3), rgba(139, 69, 19, 0.4));
  border-color: rgba(218, 165, 32, 0.4);
}

.author-info h5 {
  color: #f5f0e8;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.author-info p {
  color: #f5f0e8;
  opacity: 0.7;
  font-size: 0.9rem;
  margin: 0;
}

.author-location {
  color: #d4af37;
  font-weight: 500;
}

.author-rating {
  margin-left: auto;
}

.rating-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 0.25rem;
}

.rating-stars i {
  color: #d4af37;
  font-size: 1rem;
}

.rating-text {
  color: #f5f0e8;
  font-size: 0.85rem;
  opacity: 0.8;
  font-weight: 500;
}

/* Carousel Navigation */
.reviews-carousel-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}

.carousel-nav-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(139, 69, 19, 0.3));
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  color: #d4af37;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

.carousel-nav-btn:hover {
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: #1a0f0a;
  transform: scale(1.1);
}

.carousel-indicators {
  display: flex;
  gap: 12px;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: #d4af37;
  transform: scale(1.3);
}

/* Trust Metrics */
.reviews-trust-metrics {
  margin-top: 4rem;
}

.metrics-antique-container {
  background: linear-gradient(135deg, rgba(26, 15, 10, 0.9), rgba(45, 26, 13, 0.9));
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.metrics-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.metrics-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #f5f0e8;
  margin-bottom: 0.5rem;
}

.metrics-header p {
  color: #f5f0e8;
  opacity: 0.8;
  font-size: 1.1rem;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

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

.metric-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(139, 69, 19, 0.3));
  border-radius: 50%;
  color: #d4af37;
  font-size: 1.8rem;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.metric-content {
  color: #f5f0e8;
}

.metric-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #d4af37;
  display: block;
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
}

.metric-description {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 0.25rem;
}

/* Techniques Antique Section */
.techniques-antique {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #2d1a0d 50%, #3d2515 100%);
  position: relative;
  overflow: hidden;
}

.techniques-antique-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.antique-circuit-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(139, 69, 19, 0.04) 0%, transparent 40%);
  opacity: 0.4;
}

.techniques-golden-gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1200px;
  height: 1200px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.02) 0%, rgba(212, 175, 55, 0.01) 40%, transparent 70%);
}

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

.tech-element {
  position: absolute;
  color: rgba(212, 175, 55, 0.2);
  font-size: 1.8rem;
  animation: tech-orbit 12s linear infinite;
}

.tech-element.el-1 {
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.tech-element.el-2 {
  top: 25%;
  right: 15%;
  animation-delay: 3s;
}

.tech-element.el-3 {
  bottom: 20%;
  right: 10%;
  animation-delay: 6s;
}

@keyframes tech-orbit {
  0% { transform: rotate(0deg) translateX(20px) rotate(0deg); }
  100% { transform: rotate(360deg) translateX(20px) rotate(-360deg); }
}

.techniques-antique-title {
  font-size: 3rem;
  font-weight: 700;
  color: #f5f0e8;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.techniques-antique-description {
  font-size: 1.2rem;
  color: #f5f0e8;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 4rem;
}

/* Technique Alternating Blocks */
.technique-alternating-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 6rem;
}

.technique-alternating-block.reverse {
  direction: rtl;
}

.technique-alternating-block.reverse .technique-content-side {
  direction: ltr;
}

.technique-content-side {
  padding: 2rem 0;
}

.technique-premium-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
}

.badge-icon-wrapper {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  border-radius: 12px;
  color: #1a0f0a;
  font-size: 1.2rem;
}

.technique-premium-badge span {
  color: #d4af37;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.technique-alternating-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f5f0e8;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.title-accent {
  background: linear-gradient(135deg, #d4af37, #b8860b, #daa520);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.technique-alternating-description {
  font-size: 1.15rem;
  color: #f5f0e8;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.technique-features-showcase {
  margin-bottom: 2.5rem;
}

.feature-showcase-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.feature-showcase-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  border-radius: 10px;
  color: #1a0f0a;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-showcase-content h6 {
  color: #f5f0e8;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.feature-showcase-content p {
  color: #f5f0e8;
  opacity: 0.8;
  font-size: 0.9rem;
  line-height: 1.4;
}

.technique-security-features .feature-showcase-item,
.technique-community-features .feature-showcase-item {
  background: rgba(139, 69, 19, 0.08);
  border-color: rgba(139, 69, 19, 0.2);
}

.technique-cta-wrapper {
  margin-top: 2rem;
}

.btn-technique-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: #1a0f0a;
  border: none;
  border-radius: 25px;
  padding: 14px 28px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-technique-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-technique-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
  border-radius: 25px;
  padding: 14px 28px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-technique-secondary:hover {
  background: rgba(212, 175, 55, 0.1);
  border-color: #daa520;
  color: #daa520;
}

.technique-visual-side {
  display: flex;
  align-items: center;
  justify-content: center;
}

.technique-visual-container {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.visual-antique-frame {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 25px;
  z-index: 1;
}

.visual-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 40%, transparent 70%);
  border-radius: 25px;
  z-index: 0;
}

.technique-visual-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  position: relative;
  z-index: 2;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.visual-tech-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tech-circuit-animation {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 15px;
  animation: circuit-pulse 3s ease-in-out infinite;
}

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

.ai-processing-indicator {
  display: flex;
  gap: 8px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

.processing-dot {
  width: 8px;
  height: 8px;
  background: #d4af37;
  border-radius: 50%;
  animation: processing-blink 2s ease-in-out infinite;
}

.processing-dot.active {
  animation-delay: 0s;
}

.processing-dot:nth-child(2) {
  animation-delay: 0.5s;
}

.processing-dot:nth-child(3) {
  animation-delay: 1s;
}

@keyframes processing-blink {
  0%, 80%, 100% { opacity: 0.3; transform: scale(1); }
  40% { opacity: 1; transform: scale(1.2); }
}

.visual-blockchain-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.blockchain-nodes {
  position: relative;
  width: 200px;
  height: 150px;
}

.node {
  position: absolute;
  width: 20px;
  height: 20px;
  background: rgba(212, 175, 55, 0.6);
  border: 2px solid #d4af37;
  border-radius: 50%;
  animation: node-pulse 2s ease-in-out infinite;
}

.node.active {
  background: #d4af37;
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

.node:nth-child(1) {
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.node:nth-child(2) {
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  animation-delay: 0.5s;
}

.node:nth-child(3) {
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  animation-delay: 1s;
}

.node:nth-child(4) {
  bottom: 20px;
  left: 30px;
  animation-delay: 1.5s;
}

.node:nth-child(5) {
  bottom: 20px;
  right: 30px;
  animation-delay: 2s;
}

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

.connection-line {
  position: absolute;
  background: linear-gradient(90deg, #d4af37, transparent);
  height: 2px;
  animation: connection-flow 3s ease-in-out infinite;
}

.connection-line.line-1 {
  top: 30px;
  left: 50%;
  width: 40px;
  transform: translateX(-50%) rotate(45deg);
  transform-origin: left center;
  animation-delay: 0s;
}

.connection-line.line-2 {
  top: 50%;
  left: 40px;
  width: 30px;
  transform: translateY(-50%);
  animation-delay: 0.5s;
}

.connection-line.line-3 {
  top: 50%;
  right: 40px;
  width: 30px;
  transform: translateY(-50%);
  animation-delay: 1s;
}

.connection-line.line-4 {
  bottom: 30px;
  left: 50px;
  width: 25px;
  transform: rotate(-30deg);
  transform-origin: left center;
  animation-delay: 1.5s;
}

.connection-line.line-5 {
  bottom: 30px;
  right: 50px;
  width: 25px;
  transform: rotate(30deg);
  transform-origin: right center;
  animation-delay: 2s;
}

@keyframes connection-flow {
  0%, 100% { opacity: 0; transform: scaleX(0); }
  50% { opacity: 1; transform: scaleX(1); }
}

.security-shield {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #d4af37;
  font-size: 2rem;
  opacity: 0.8;
  animation: shield-glow 2s ease-in-out infinite alternate;
}

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

.community-network-visual {
  width: 100%;
  height: 300px;
  position: relative;
}

.network-nodes {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 250px;
  height: 200px;
}

.central-node {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  border-radius: 50%;
  color: #1a0f0a;
  font-size: 1.5rem;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
  animation: central-pulse 3s ease-in-out infinite;
}

@keyframes central-pulse {
  0%, 100% { box-shadow: 0 0 30px rgba(212, 175, 55, 0.5); transform: translate(-50%, -50%) scale(1); }
  50% { box-shadow: 0 0 50px rgba(212, 175, 55, 0.8); transform: translate(-50%, -50%) scale(1.1); }
}

.satellite-nodes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.satellite-node {
  position: absolute;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.3), rgba(139, 69, 19, 0.4));
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  color: #d4af37;
  font-size: 1rem;
  transition: all 0.3s ease;
  animation: satellite-orbit 8s linear infinite;
}

.satellite-node:hover {
  background: linear-gradient(135deg, #d4af37, #b8860b);
  color: #1a0f0a;
  transform: scale(1.2);
}

.satellite-node.type-1 {
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  animation-delay: 0s;
}

.satellite-node.type-2 {
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  animation-delay: 2s;
}

.satellite-node.type-3 {
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  animation-delay: 4s;
}

.satellite-node.type-4 {
  bottom: 10px;
  left: 25%;
  animation-delay: 6s;
}

.satellite-node.type-5 {
  bottom: 10px;
  right: 25%;
  animation-delay: 1s;
}

@keyframes satellite-orbit {
  0% { transform: rotate(0deg) translateX(80px) rotate(0deg) translateX(-50%) translateY(-50%); }
  100% { transform: rotate(360deg) translateX(80px) rotate(-360deg) translateX(-50%) translateY(-50%); }
}

.satellite-node.type-1 {
  animation: orbit-1 8s linear infinite;
}

@keyframes orbit-1 {
  0% { transform: translateX(-50%) translateY(-80px); }
  100% { transform: translateX(-50%) translateY(-80px) rotate(360deg); }
}

.satellite-node.type-2 {
  animation: orbit-2 8s linear infinite;
}

@keyframes orbit-2 {
  0% { transform: translateX(-80px) translateY(-50%); }
  100% { transform: translateX(-80px) translateY(-50%) rotate(360deg); }
}

.satellite-node.type-3 {
  animation: orbit-3 8s linear infinite;
}

@keyframes orbit-3 {
  0% { transform: translateX(80px) translateY(-50%); }
  100% { transform: translateX(80px) translateY(-50%) rotate(360deg); }
}

.satellite-node.type-4 {
  animation: orbit-4 8s linear infinite;
}

@keyframes orbit-4 {
  0% { transform: translateX(-60px) translateY(60px); }
  100% { transform: translateX(-60px) translateY(60px) rotate(360deg); }
}

.satellite-node.type-5 {
  animation: orbit-5 8s linear infinite;
}

@keyframes orbit-5 {
  0% { transform: translateX(60px) translateY(60px); }
  100% { transform: translateX(60px) translateY(60px) rotate(360deg); }
}

.network-connections {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.network-connections::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 120px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: network-glow 4s ease-in-out infinite alternate;
}

@keyframes network-glow {
  0% { opacity: 0.3; }
  100% { opacity: 0.7; }
}

/* Techniques Stats */
.techniques-stats-section {
  margin-top: 4rem;
}

.stats-antique-container {
  background: linear-gradient(135deg, rgba(26, 15, 10, 0.9), rgba(45, 26, 13, 0.9));
  border-radius: 20px;
  padding: 3rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.stats-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.stats-header h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #f5f0e8;
  margin-bottom: 0.5rem;
}

.stats-header p {
  color: #f5f0e8;
  opacity: 0.8;
  font-size: 1.1rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

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

.stat-antique-item .stat-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(139, 69, 19, 0.3));
  border-radius: 50%;
  color: #d4af37;
  font-size: 1.8rem;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.stat-antique-item .stat-content {
  color: #f5f0e8;
}

.stat-antique-item .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #d4af37;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-antique-item .stat-label {
  font-size: 1rem;
  opacity: 0.9;
  font-weight: 500;
}

.stat-antique-item .stat-description {
  font-size: 0.85rem;
  opacity: 0.7;
  margin-top: 0.25rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .technique-alternating-block {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .technique-alternating-block.reverse {
    direction: ltr;
  }

  .technique-alternating-block.reverse .technique-content-side {
    direction: ltr;
  }

  .hero-antique-main .row {
    text-align: center;
  }

  .hero-antique-title {
    font-size: 2.5rem;
  }

  .title-antique {
    font-size: 3rem;
  }

  .features-antique-title,
  .collections-antique-title,
  .reviews-antique-title,
  .techniques-antique-title {
    font-size: 2.2rem;
  }

  .review-antique-card {
    padding: 2rem;
  }

  .satellite-node {
    width: 30px;
    height: 30px;
    font-size: 0.8rem;
  }
}

/* About Page Antique Styles */
.about-cta-antique {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #2d1a0d 50%, #3d2515 100%);
  position: relative;
  overflow: hidden;
}

.cta-antique-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.antique-golden-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 75% 75%, rgba(139, 69, 19, 0.06) 0%, transparent 40%);
  opacity: 0.6;
}

.cta-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, rgba(212, 175, 55, 0.02) 50%, transparent 70%);
}

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

.cta-element {
  position: absolute;
  color: rgba(212, 175, 55, 0.25);
  font-size: 1.5rem;
  animation: float-gentle 6s ease-in-out infinite;
}

.cta-element.el-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.cta-element.el-2 {
  top: 30%;
  right: 15%;
  animation-delay: 2s;
}

.cta-element.el-3 {
  bottom: 25%;
  right: 10%;
  animation-delay: 4s;
}

.cta-antique-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f5f0e8;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.cta-antique-description {
  font-size: 1.1rem;
  color: #f5f0e8;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.cta-antique-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.feature-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d4af37;
  font-weight: 500;
}

.feature-highlight i {
  font-size: 1.1rem;
}

/* Story Antique Section */
.story-antique {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #2d1a0d 30%, #3d2515 70%, #4a2d1a 100%);
  position: relative;
  overflow: hidden;
}

.story-antique-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.antique-marble-texture {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
    linear-gradient(135deg, rgba(139, 69, 19, 0.03) 0%, rgba(160, 82, 45, 0.02) 50%, rgba(139, 69, 19, 0.03) 100%);
  opacity: 0.5;
}

.story-golden-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.02) 0%, rgba(212, 175, 55, 0.01) 60%, transparent 80%);
}

.story-antique-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #f5f0e8;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.story-antique-description {
  font-size: 1.1rem;
  color: #f5f0e8;
  line-height: 1.7;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

.story-timeline {
  position: relative;
}

.timeline-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-left: 2rem;
  position: relative;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #d4af37, rgba(212, 175, 55, 0.3));
}

.timeline-marker {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  border-radius: 50%;
  color: #1a0f0a;
  font-size: 1.2rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.timeline-content h5 {
  color: #d4af37;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.timeline-content p {
  color: #f5f0e8;
  opacity: 0.8;
  line-height: 1.5;
}

.antique-image-frame {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.frame-golden-border {
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 18px;
  z-index: 1;
}

.frame-corner-decoration {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 2px solid #d4af37;
  background: rgba(26, 15, 10, 0.9);
}

.frame-corner-decoration.tl {
  top: -5px;
  left: -5px;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 12px;
}

.frame-corner-decoration.tr {
  top: -5px;
  right: -5px;
  border-left: none;
  border-bottom: none;
  border-top-right-radius: 12px;
}

.frame-corner-decoration.bl {
  bottom: -5px;
  left: -5px;
  border-right: none;
  border-top: none;
  border-bottom-left-radius: 12px;
}

.frame-corner-decoration.br {
  bottom: -5px;
  right: -5px;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 12px;
}

.image-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 40%, transparent 70%);
  z-index: 2;
}

.story-antique-image {
  width: 100%;
  height: auto;
  position: relative;
  z-index: 3;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(26, 15, 10, 0.9));
  padding: 2rem;
  z-index: 4;
}

.overlay-content h4 {
  color: #d4af37;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.overlay-content p {
  color: #f5f0e8;
  opacity: 0.9;
  font-size: 0.9rem;
}

/* About Hero Antique */
.about-hero-antique {
  padding: 100px 0 60px;
  background: linear-gradient(135deg, #1a0f0a 0%, #2d1a0d 50%, #3d2515 100%);
  position: relative;
  overflow: hidden;
}

.about-hero-antique-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.antique-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(139, 69, 19, 0.04) 0%, transparent 40%);
  opacity: 0.4;
}

.hero-antique-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, rgba(212, 175, 55, 0.01) 60%, transparent 80%);
}

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

.hero-element {
  position: absolute;
  color: rgba(212, 175, 55, 0.2);
  font-size: 1.8rem;
  animation: float-gentle 7s ease-in-out infinite;
}

.hero-element.el-1 {
  top: 20%;
  left: 8%;
  animation-delay: 0s;
}

.hero-element.el-2 {
  top: 15%;
  right: 12%;
  animation-delay: 2.5s;
}

.hero-element.el-3 {
  bottom: 25%;
  left: 10%;
  animation-delay: 5s;
}

.hero-element.el-4 {
  bottom: 15%;
  right: 8%;
  animation-delay: 1s;
}

.about-hero-antique-title {
  font-size: 3rem;
  font-weight: 700;
  color: #f5f0e8;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.about-hero-antique-description {
  font-size: 1.1rem;
  color: #f5f0e8;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2rem;
}

.stats-antique-showcase {
  position: relative;
}

.stats-antique-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.stat-antique-card {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(160, 82, 45, 0.08));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.stat-antique-card.featured {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(139, 69, 19, 0.1));
  border-color: rgba(212, 175, 55, 0.4);
}

.stat-card-antique-frame {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.stat-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.stat-glow.featured {
  background: radial-gradient(circle, rgba(218, 165, 32, 0.08) 0%, transparent 70%);
}

.featured-star {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #d4af37;
  font-size: 1.2rem;
  opacity: 0.8;
}

.stat-icon-container {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(139, 69, 19, 0.3));
  border-radius: 50%;
  color: #d4af37;
  font-size: 1.5rem;
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.stat-icon-container.featured {
  background: linear-gradient(135deg, rgba(218, 165, 32, 0.3), rgba(139, 69, 19, 0.4));
  border-color: rgba(218, 165, 32, 0.4);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #d4af37;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-number.featured {
  color: #daa520;
}

.stat-label {
  color: #f5f0e8;
  opacity: 0.8;
  font-size: 1rem;
  font-weight: 500;
}

.stat-label.featured {
  color: #daa520;
  opacity: 0.9;
}

/* Values Antique Section */
.values-antique {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #2d1a0d 40%, #3d2515 100%);
  position: relative;
  overflow: hidden;
}

.values-antique-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.antique-values-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 35% 25%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 65% 75%, rgba(139, 69, 19, 0.04) 0%, transparent 50%);
  opacity: 0.3;
}

.values-golden-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.02) 0%, rgba(212, 175, 55, 0.01) 50%, transparent 70%);
}

.values-antique-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #f5f0e8;
  line-height: 1.2;
  margin-bottom: 2rem;
}

.values-antique-description {
  font-size: 1.1rem;
  color: #f5f0e8;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 3rem;
}

.values-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pillar-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.pillar-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  border-radius: 15px;
  color: #1a0f0a;
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.pillar-content h5 {
  color: #f5f0e8;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.pillar-content p {
  color: #f5f0e8;
  opacity: 0.8;
  line-height: 1.6;
}

.values-visual-container {
  position: relative;
}

.philosophy-antique-card {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.12), rgba(160, 82, 45, 0.08));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
}

.philosophy-antique-card.main {
  margin-bottom: 2rem;
}

.philosophy-antique-card.secondary {
  background: rgba(139, 69, 19, 0.08);
  border-color: rgba(139, 69, 19, 0.15);
  padding: 1.5rem;
}

.card-antique-frame {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.frame-corner {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 2px solid rgba(212, 175, 55, 0.4);
}

.frame-corner.tl {
  top: 15px;
  left: 15px;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 12px;
}

.frame-corner.tr {
  top: 15px;
  right: 15px;
  border-left: none;
  border-bottom: none;
  border-top-right-radius: 12px;
}

.frame-corner.bl {
  bottom: 15px;
  left: 15px;
  border-right: none;
  border-top: none;
  border-bottom-left-radius: 12px;
}

.frame-corner.br {
  bottom: 15px;
  right: 15px;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 12px;
}

.card-golden-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(212, 175, 55, 0.1));
  border-bottom-left-radius: 20px;
}

.philosophy-card-header {
  margin-bottom: 1.5rem;
}

.philosophy-icon-wrapper {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  border-radius: 15px;
  color: #1a0f0a;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.philosophy-icon-wrapper.small {
  width: 50px;
  height: 50px;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.philosophy-card-header h4 {
  color: #f5f0e8;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0;
}

.philosophy-card-header h5 {
  color: #d4af37;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
}

.philosophy-card-content {
  color: #f5f0e8;
  opacity: 0.8;
  line-height: 1.6;
}

.philosophy-secondary-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

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

.decorative-orb {
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3), rgba(212, 175, 55, 0.1));
  border-radius: 50%;
  animation: orb-float 8s ease-in-out infinite;
}

.decorative-orb.orb-1 {
  top: 20%;
  right: 10%;
  animation-delay: 0s;
}

.decorative-orb.orb-2 {
  bottom: 30%;
  left: 15%;
  animation-delay: 3s;
}

.decorative-orb.orb-3 {
  top: 60%;
  right: 20%;
  animation-delay: 6s;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0px) scale(1); opacity: 0.3; }
  50% { transform: translateY(-20px) scale(1.2); opacity: 0.7; }
}

/* Contact Antique Styles */
.contact-hero-antique {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #2d1a0d 50%, #3d2515 100%);
  position: relative;
  overflow: hidden;
}

.contact-hero-antique-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.antique-contact-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
    radial-gradient(circle at 75% 75%, rgba(139, 69, 19, 0.04) 0%, transparent 40%);
  opacity: 0.4;
}

.contact-golden-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.02) 0%, rgba(212, 175, 55, 0.01) 60%, transparent 80%);
}

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

.contact-element {
  position: absolute;
  color: rgba(212, 175, 55, 0.2);
  font-size: 1.8rem;
  animation: float-gentle 6s ease-in-out infinite;
}

.contact-element.el-1 {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.contact-element.el-2 {
  top: 25%;
  right: 12%;
  animation-delay: 2s;
}

.contact-element.el-3 {
  bottom: 20%;
  right: 8%;
  animation-delay: 4s;
}

.contact-hero-antique-title {
  font-size: 3rem;
  font-weight: 700;
  color: #f5f0e8;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.contact-hero-antique-description {
  font-size: 1.2rem;
  color: #f5f0e8;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 2rem;
}

.contact-support-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.contact-support-features .support-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d4af37;
  font-weight: 500;
}

.contact-support-features .support-feature i {
  font-size: 1.1rem;
}

.contact-form-antique {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #2d1a0d 50%, #3d2515 100%);
  position: relative;
  overflow: hidden;
}

.contact-form-antique-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.antique-form-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(139, 69, 19, 0.03) 0%, transparent 50%);
  opacity: 0.3;
}

.form-golden-accent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.02) 0%, rgba(212, 175, 55, 0.01) 50%, transparent 70%);
}

.contact-form-antique-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f5f0e8;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.contact-form-antique-description {
  font-size: 1.1rem;
  color: #f5f0e8;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 2rem;
}

/* Contact Info Antique */
.contact-info-antique {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #2d1a0d 30%, #3d2515 70%, #5d3418 100%);
  position: relative;
  overflow: hidden;
}

.contact-info-antique-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.antique-info-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(212, 175, 55, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(139, 69, 19, 0.05) 0%, transparent 40%);
  opacity: 0.5;
}

.info-golden-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.02) 0%, rgba(212, 175, 55, 0.01) 50%, transparent 70%);
}

.contact-antique-card {
  background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(160, 82, 45, 0.08));
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 2.5rem;
  height: 100%;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}

.contact-antique-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 20px 40px rgba(139, 69, 19, 0.2);
}

.contact-antique-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-icon-wrapper {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #d4af37, #b8860b);
  border-radius: 50%;
  color: #1a0f0a;
  font-size: 1.8rem;
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.contact-antique-header h4 {
  color: #f5f0e8;
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
}

.contact-antique-content {
  color: #f5f0e8;
}

.contact-address {
  margin-bottom: 1.5rem;
}

.contact-address strong {
  color: #d4af37;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #d4af37;
  font-weight: 500;
  margin-top: 0.5rem;
}

.contact-phone i {
  font-size: 0.9rem;
}

.contact-phone a {
  color: #d4af37;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-phone a:hover {
  color: #daa520;
}

.contact-antique-note {
  opacity: 0.8;
  line-height: 1.6;
  font-size: 0.95rem;
}

.contact-phone-primary {
  text-align: center;
  margin-bottom: 2rem;
}

.phone-link-antique {
  display: inline-block;
  color: #d4af37;
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1rem 2rem;
  border: 2px solid #d4af37;
  border-radius: 15px;
  transition: all 0.3s ease;
  background: rgba(212, 175, 55, 0.05);
}

.phone-link-antique:hover {
  background: #d4af37;
  color: #1a0f0a;
  transform: scale(1.05);
}

.phone-number {
  display: block;
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.phone-label {
  display: block;
  font-size: 0.8rem;
  opacity: 0.8;
  font-weight: 400;
}

.contact-hours-antique {
  margin-bottom: 1.5rem;
}

.contact-hours-antique h6 {
  color: #d4af37;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hour-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.hour-item:last-child {
  border-bottom: none;
}

.hour-item.closed {
  opacity: 0.6;
}

.day {
  color: #f5f0e8;
  font-weight: 500;
}

.time {
  color: #d4af37;
  font-weight: 600;
}

.contact-digital-options {
  margin-bottom: 1.5rem;
}

.digital-option {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.digital-option i {
  color: #d4af37;
  font-size: 1.3rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.option-content h6 {
  color: #f5f0e8;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.option-content p {
  color: #f5f0e8;
  opacity: 0.8;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
}

.response-time {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #d4af37;
  font-weight: 500;
  font-size: 0.95rem;
  padding: 1rem;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(212, 175, 55, 0.1);
}

.response-time i {
  font-size: 1rem;
}

/* FAQ Antique Styles */
.faq-cta-antique {
  padding: 80px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #2d1a0d 50%, #3d2515 100%);
  position: relative;
  overflow: hidden;
}

.faq-cta-antique-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.antique-faq-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(212, 175, 55, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 75% 75%, rgba(139, 69, 19, 0.04) 0%, transparent 40%);
  opacity: 0.5;
}

.cta-faq-glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.03) 0%, rgba(212, 175, 55, 0.01) 60%, transparent 80%);
}

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

.faq-element {
  position: absolute;
  color: rgba(212, 175, 55, 0.2);
  font-size: 1.6rem;
  animation: float-gentle 7s ease-in-out infinite;
}

.faq-element.el-1 {
  top: 20%;
  left: 8%;
  animation-delay: 0s;
}

.faq-element.el-2 {
  top: 25%;
  right: 10%;
  animation-delay: 2.5s;
}

.faq-element.el-3 {
  bottom: 20%;
  right: 8%;
  animation-delay: 5s;
}

.faq-cta-antique-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #f5f0e8;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.faq-cta-antique-description {
  font-size: 1.1rem;
  color: #f5f0e8;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 650px;
  margin: 0 auto 2rem;
}

.faq-support-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.faq-support-features .support-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #d4af37;
  font-weight: 500;
}

.faq-support-features .support-feature-item i {
  font-size: 1.1rem;
}

.faq-hero-antique {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #2d1a0d 50%, #3d2515 100%);
  position: relative;
  overflow: hidden;
}

.faq-hero-antique-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.antique-faq-hero-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(139, 69, 19, 0.04) 0%, transparent 50%);
  opacity: 0.4;
}

.faq-hero-golden-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.02) 0%, rgba(212, 175, 55, 0.01) 60%, transparent 80%);
}

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

.faq-hero-element {
  position: absolute;
  color: rgba(212, 175, 55, 0.2);
  font-size: 1.8rem;
  animation: float-gentle 8s ease-in-out infinite;
}

.faq-hero-element.el-1 {
  top: 18%;
  left: 10%;
  animation-delay: 0s;
}

.faq-hero-element.el-2 {
  top: 22%;
  right: 12%;
  animation-delay: 2s;
}

.faq-hero-element.el-3 {
  bottom: 18%;
  left: 12%;
  animation-delay: 4s;
}

.faq-hero-element.el-4 {
  bottom: 22%;
  right: 10%;
  animation-delay: 6s;
}

.faq-hero-antique-title {
  font-size: 3rem;
  font-weight: 700;
  color: #f5f0e8;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.faq-hero-antique-description {
  font-size: 1.2rem;
  color: #f5f0e8;
  line-height: 1.6;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.faq-quick-access {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.quick-access-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
  padding: 12px 20px;
  border-radius: 25px;
  border: 1px solid rgba(212, 175, 55, 0.2);
  font-weight: 500;
  transition: all 0.3s ease;
}

.quick-access-item:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.4);
  color: #daa520;
  transform: translateY(-2px);
}

.quick-access-item i {
  font-size: 1.1rem;
}

/* Responsive adjustments for mobile */
@media (max-width: 768px) {
  .stats-antique-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-antique-card,
  .feature-antique-card {
    padding: 2rem;
  }

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

  .technique-alternating-block {
    grid-template-columns: 1fr;
  }

  .faq-quick-access {
    gap: 1rem;
  }

  .quick-access-item {
    padding: 10px 16px;
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background: linear-gradient(135deg, #1a0f0a 0%, #3d1a0d 25%, #5d2a0d 50%, #8b4513 75%, #a0522d 100%);
  background-attachment: fixed;
  font-family: var(--default-font);
  padding-top: 80px;
  min-height: 100vh;
}

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

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

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

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

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
  display: none;
  background: linear-gradient(135deg, #8b4513, #5d2a0d);
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: linear-gradient(135deg, #d4af37, #8b4513);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
}

.php-email-form .loading {
  display: none;
  background: transparent;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

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

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

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

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

.header-new.scrolled {
  background: rgba(26, 15, 10, 0.95);
  box-shadow: 0 4px 30px rgba(16, 185, 129, 0.3);
  border-bottom: 2px solid rgba(212, 175, 55, 0.4);
}

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

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

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

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

.logo-icon-new {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d4af37, #8b4513);
  border: 2px solid var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a0f0a;
  font-size: 24px;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.4);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.menu-toggle.active {
  display: none;
}

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

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

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

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

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

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

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

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

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

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

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid rgba(16, 185, 129, 0.1);
}

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

.header-main {
  background: transparent;
}

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

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

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

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

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

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

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

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

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

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

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

  .navmenu li {
    position: relative;
  }

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

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

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

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

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

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

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

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

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

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

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

/* Navmenu - Mobile */
@media (max-width: 991px) {
  .mobile-nav-toggle {
    color: var(--heading-color);
    font-size: 32px;
    line-height: 0;
    cursor: pointer;
    transition: all 0.3s;
    padding: 8px;
    border-radius: 8px;
  }
  
  .mobile-nav-toggle:hover {
    background-color: var(--bg-color);
    color: var(--accent-color);
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background: transparent;
  font-size: 14px;
  position: relative;
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 24px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  background: transparent;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  transition: 0.3s;
  ;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

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

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

.footer .footer-newsletter .newsletter-form input[type=submit] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -8px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  ;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

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

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-right: 10px;
  transition: 0.3s;
}

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

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

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

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
}

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

.footer .footer-links ul li:first-child {
  padding-top: 0;
}

.footer .footer-links ul a {
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1;
}

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

.footer .footer-about a {
  color: var(--heading-color);
  font-size: 24px;
  font-weight: 600;
  font-family: var(--heading-font);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .copyright {
  padding: 25px 0;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: #1a0f0a;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  opacity: 1;
  visibility: visible;
}

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

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

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

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

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

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

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

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

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

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background: transparent;
  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: transparent;
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

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

/*--------------------------------------------------------------
# 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-description {
  font-size: 20px;
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 30px;
}

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

.hero-benefits {
  margin: 30px 0;
}

  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.btn-ai-outline:hover {
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-ai-secondary {
  position: relative;
  padding: 14px 32px;
  background: linear-gradient(135deg, #8b4513, #5d2a0d);
  color: #ffffff;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.btn-ai-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.6);
  color: #ffffff;
}

.btn-ai-secondary .btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.btn-ai-secondary:hover .btn-glow {
  left: 100%;
}

.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-image-container {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(212, 175, 55, 0.3);
}

.ai-glow-effect {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  animation: rotate-glow 10s linear infinite;
  pointer-events: none;
  z-index: 1;
}

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

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

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

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


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

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

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

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

.hero-secondary {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  z-index: 2;
}

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

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

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

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

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

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

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

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

.decoration-circle-ai {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3), transparent);
  border: 2px solid rgba(212, 175, 55, 0.2);
  animation: pulse-ai 3s ease-in-out infinite;
}

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

.decoration-circle-ai.circle-2 {
  width: 180px;
  height: 180px;
  bottom: 20%;
  left: -90px;
  animation-delay: 1.5s;
}

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

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

.ai-pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(212, 175, 55, 0.03) 10px, rgba(212, 175, 55, 0.03) 20px);
  pointer-events: none;
  z-index: 1;
}

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

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

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

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

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

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

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

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

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

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

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

.about-wrapper {
  position: relative;
}

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

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

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

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

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

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

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

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

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

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

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

.about-visual {
  position: relative;
}

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

  background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.2;
}

.features-description-ai {
  font-size: 18px;
  color: rgba(224, 242, 254, 0.8);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.features-grid-ai {
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.feature-card-ai {
  position: relative;
  background: rgba(26, 15, 10, 0.7);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  padding: 35px 30px;
  height: 100%;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  overflow: hidden;
}

.feature-card-ai::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(16, 185, 129, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.feature-card-ai:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

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

.feature-card-glow-ai {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.feature-card-ai:hover .feature-card-glow-ai {
  opacity: 1;
  animation: rotate-glow 8s linear infinite;
}

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

.feature-icon-wrapper-ai {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 3px solid rgba(212, 175, 55, 0.4);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #d4af37;
  font-size: 36px;
  transition: all 0.3s ease;
}

.feature-card-ai:hover .feature-icon-wrapper-ai {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.feature-title-ai {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0;
  line-height: 1.3;
}

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

.feature-description-ai {
  font-size: 15px;
  color: rgba(224, 242, 254, 0.9);
  line-height: 1.7;
  margin-bottom: 25px;
}

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

.feature-btn-ai {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 8px;
  color: #d4af37;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.feature-btn-ai:hover {
  background: rgba(212, 175, 55, 0.2);
  border-color: rgba(212, 175, 55, 0.6);
  transform: translateX(5px);
  color: #d4af37;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


.techniques-background-gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(ellipse at top left, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at bottom right, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

.technique-item-ai {
  margin-bottom: 100px;
  position: relative;
  z-index: 2;
}

.technique-item-ai:last-child {
  margin-bottom: 0;
}

.technique-image-wrapper-ai {
  position: relative;
  border-radius: 20px;
  overflow: visible;
  border: 2px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.technique-image-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
  border-radius: 20px;
  animation: techniqueGlow 3s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes techniqueGlow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.05); }
}

.technique-image-ai {
  width: 100%;
  height: auto;
  border-radius: 18px;
  transition: transform 0.3s ease;
}

.technique-image-wrapper-ai:hover .technique-image-ai {
  transform: scale(1.02);
}

.technique-badge-ai {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 25px;
  color: #d4af37;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  margin-bottom: 15px;
}

.technique-title-ai {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.3;
}

.technique-description-ai {
  font-size: 18px;
  color: rgba(224, 242, 254, 0.9);
  line-height: 1.7;
  margin-bottom: 30px;
  font-style: italic;
}

.technique-content-ai {
  font-size: 16px;
  color: rgba(224, 242, 254, 0.8);
  line-height: 1.7;
  margin-bottom: 0;
}

.technique-features-container-ai {
  margin-top: 30px;
}

.technique-feature-item-ai {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: rgba(26, 15, 10, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-left: 4px solid #d4af37;
  border-radius: 12px;
  margin-bottom: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.technique-feature-item-ai:hover {
  transform: translateX(10px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
  background: rgba(26, 15, 10, 0.7);
}

.technique-feature-icon-ai {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  color: #d4af37;
  font-size: 24px;
  flex-shrink: 0;
}

.technique-feature-text-ai {
  flex: 1;
  color: rgba(224, 242, 254, 0.9);
  font-size: 15px;
  line-height: 1.6;
}

.technique-feature-text-ai strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 8px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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



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

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

.review-card {
  position: relative;
  padding: 40px 35px;
  background: rgba(26, 15, 10, 0.6);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}

.review-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(16, 185, 129, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.review-card:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.review-card:hover::before {
  opacity: 1;
}

.review-card.featured {
  border-color: rgba(16, 185, 129, 0.5);
  background: rgba(26, 15, 10, 0.8);
}

.review-card.featured:hover {
  border-color: rgba(16, 185, 129, 0.8);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
}

.review-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.review-card:hover .review-glow {
  opacity: 1;
  animation: rotate-glow 8s linear infinite;
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #8b4513, #5d2a0d);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  z-index: 10;
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}

.review-icon-wrapper {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 15px;
  color: #d4af37;
  font-size: 28px;
  flex-shrink: 0;
}

.review-card.featured .review-icon-wrapper {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(212, 175, 55, 0.2));
  border-color: rgba(16, 185, 129, 0.4);
  color: #8b4513;
}

.review-quote-icon {
  font-size: 48px;
  color: rgba(212, 175, 55, 0.2);
  line-height: 1;
}

.review-text {
  font-size: 16px;
  line-height: 1.8;
  color: rgba(224, 242, 254, 0.9);
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  font-style: italic;
}

.review-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.review-author-info {
  flex: 1;
}

.review-author-name {
  font-weight: 700;
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 5px;
}

.review-author-title {
  font-size: 14px;
  color: rgba(224, 242, 254, 0.7);
}

.review-rating {
  display: flex;
  gap: 4px;
  color: #d4af37;
  font-size: 16px;
}

.review-card.featured .review-rating {
  color: #8b4513;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .testimonial-author-ai {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

}


.solutions-background-effect {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.15) 0%, transparent 50%);
  animation: solutionsPattern 20s ease-in-out infinite;
  pointer-events: none;
}

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

.solutions-header-ai {
  position: relative;
  z-index: 2;
}

.solutions-badge-ai {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 30px;
  color: #d4af37;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.solutions-title-ai {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.2;
}

.solutions-description-ai {
  font-size: 18px;
  color: rgba(224, 242, 254, 0.8);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.solutions-grid-ai {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 60px;
  position: relative;
  z-index: 2;
}

.solution-card-ai {
  position: relative;
  padding: 40px 35px;
  background: rgba(26, 15, 10, 0.7);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  transition: all 0.4s ease;
  overflow: hidden;
  height: 100%;
}

.solution-card-ai::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(16, 185, 129, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.solution-card-ai:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.solution-card-ai:hover::before {
  opacity: 1;
}

.solution-card-featured-ai {
  border-color: rgba(16, 185, 129, 0.5);
  background: rgba(26, 15, 10, 0.9);
}

.solution-card-featured-ai:hover {
  border-color: rgba(16, 185, 129, 0.8);
  box-shadow: 0 20px 40px rgba(16, 185, 129, 0.4);
}

.solution-card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.solution-card-ai:hover .solution-card-glow {
  opacity: 1;
  animation: rotate-glow 8s linear infinite;
}

.featured-label-ai {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 14px;
  background: linear-gradient(135deg, #8b4513, #5d2a0d);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 20px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
  z-index: 10;
}

.solution-card-header-ai {
  text-align: center;
  margin-bottom: 30px;
}

.solution-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 3px solid rgba(212, 175, 55, 0.4);
  border-radius: 20px;
  color: #d4af37;
  font-size: 36px;
  transition: all 0.3s ease;
}

.solution-card-ai:hover .solution-icon-wrapper {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.solution-icon-wrapper.featured {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(212, 175, 55, 0.2));
  border-color: rgba(16, 185, 129, 0.4);
  color: #8b4513;
}

.solution-card-title-ai {
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
}

.solution-badge-ai {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}

.solution-badge-text {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #d4af37, #8b4513);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.solution-badge-subtitle {
  font-size: 12px;
  color: rgba(224, 242, 254, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.solution-badge-ai.featured .solution-badge-text {
  background: linear-gradient(135deg, #8b4513, #d4af37);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.solution-features-ai {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.solution-features-ai li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  color: rgba(224, 242, 254, 0.9);
  font-size: 15px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.solution-features-ai li:last-child {
  border-bottom: none;
}

.solution-features-ai li i {
  color: #d4af37;
  font-size: 18px;
  margin-top: 2px;
  flex-shrink: 0;
}

.solution-card-featured-ai .solution-features-ai li i {
  color: #8b4513;
}

.solution-btn-ai {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 10px;
  color: #d4af37;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  transition: all 0.3s ease;
}

.solution-btn-ai:hover {
  background: linear-gradient(135deg, #d4af37, #8b4513);
  color: #1a0f0a;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.solution-btn-featured-ai {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(212, 175, 55, 0.2));
  border-color: rgba(16, 185, 129, 0.4);
  color: #8b4513;
}

.solution-btn-featured-ai:hover {
  background: linear-gradient(135deg, #8b4513, #d4af37);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.solutions-footer-ai {
  margin-top: 80px;
  position: relative;
  z-index: 2;
}

.solutions-info-ai {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.solution-info-item-ai {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 30px;
  background: rgba(26, 15, 10, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.solution-info-item-ai:hover {
  border-color: rgba(212, 175, 55, 0.5);
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.2);
}

.solution-info-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  color: #d4af37;
  font-size: 24px;
  flex-shrink: 0;
}

.solution-info-item-ai strong {
  display: block;
  color: #ffffff;
  font-size: 18px;
  margin-bottom: 8px;
}

.solution-info-item-ai p {
  color: rgba(224, 242, 254, 0.8);
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  transform: translateX(-50%);
  background: rgba(139, 69, 19, 0.3);
  color: var(--default-color);
  border: 2px solid var(--accent-color);
  padding: 20px;
  font-family: var(--default-font);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
  font-size: 14px;
  max-width: 400px;
  z-index: 1000;
  display: none;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

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

#cookie-popup p {
  margin: 0;
  padding: 0;
}

#cookie-popup .popup-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cookie-popup button {
  background: var(--accent-color);
  color: #1a0f0a;
  border: 2px solid var(--accent-color);
  padding: 10px 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
}

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

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

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

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

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

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

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

.about_elem {
  margin-bottom: 2rem;
}



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.footer-logo-new i {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d4af37, #8b4513);
  border: 2px solid var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #1a0f0a;
}

.footer-tagline-new {
  font-size: 15px;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 30px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.contact-item-new a {
  color: var(--default-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

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

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

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

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

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

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

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

/* Impressum Section (Terms Page) */
.impressum {
  padding: 100px 0 80px;
  background: transparent;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Privacy Hero Section */
.privacy-hero {
  padding: 100px 0 80px;
  background: transparent;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Cookie Hero Section */
.cookie-hero {
  padding: 100px 0 80px;
  background: transparent;
}

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

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

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

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

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

.cookie-content-wrapper {
  background: transparent;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

  .about-hero-title-ai,
  .contact-hero-title-ai,
  .faq-hero-title-ai {
    font-size: 36px;
  }

  .philosophy-title-ai,
  .contact-form-title-ai,
  .faq-section-title-ai,
  .faq-cta-title-ai {
    font-size: 32px;
  }

  .about-hero-stats-ai {
    grid-template-columns: 1fr;
  }

  .faq-card-body-ai {
    padding-left: 0;
    padding-top: 20px;
  }
}

/*--------------------------------------------------------------
# About Page - AI Anti-Fraud Theme
--------------------------------------------------------------*/
.about-hero-ai {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #5d2a0d 50%, #1a0f0a 100%);
  position: relative;
  overflow: hidden;
}

.about-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  opacity: 0.6;
  pointer-events: none;
}

.about-hero-badge-ai {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 30px;
  color: #d4af37;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.about-hero-title-ai {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
}

.about-hero-description-ai {
  font-size: 18px;
  color: rgba(224, 242, 254, 0.9);
  line-height: 1.7;
  margin-bottom: 20px;
}

.about-hero-stats-ai {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.stat-card-ai {
  padding: 30px;
  background: rgba(26, 15, 10, 0.7);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card-ai:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.stat-icon-ai {
  width: 60px;
  height: 60px;
  margin: 0 auto 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 15px;
  color: #d4af37;
  font-size: 28px;
}

.stat-number-ai {
  font-size: 36px;
  font-weight: 800;
  background: linear-gradient(135deg, #d4af37, #8b4513);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 10px;
}

.stat-label-ai {
  font-size: 14px;
  color: rgba(224, 242, 254, 0.8);
  font-weight: 500;
}

.philosophy-ai {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #8b4513 30%, #1a0f0a 100%);
  position: relative;
  overflow: hidden;
}

.philosophy-background-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(212, 175, 55, 0.03) 2px, rgba(212, 175, 55, 0.03) 4px);
  opacity: 0.5;
  pointer-events: none;
}

.philosophy-badge-ai {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 30px;
  color: #d4af37;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.philosophy-title-ai {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
  line-height: 1.2;
}

.philosophy-description-ai {
  font-size: 18px;
  color: rgba(224, 242, 254, 0.9);
  line-height: 1.7;
  margin-bottom: 30px;
}

.philosophy-points-ai {
  margin-top: 30px;
}

.philosophy-point-ai {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: rgba(26, 15, 10, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-left: 4px solid #d4af37;
  border-radius: 15px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.philosophy-point-ai:hover {
  transform: translateX(10px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.philosophy-point-icon-ai {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  color: #d4af37;
  font-size: 24px;
  flex-shrink: 0;
}

.philosophy-point-ai h5 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.philosophy-point-ai p {
  color: rgba(224, 242, 254, 0.9);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
}

.philosophy-visual-ai {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.philosophy-item-ai {
  padding: 30px;
  background: rgba(26, 15, 10, 0.7);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.philosophy-item-ai:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.philosophy-icon-wrapper-ai {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 3px solid rgba(212, 175, 55, 0.4);
  border-radius: 15px;
  color: #d4af37;
  font-size: 28px;
  margin-bottom: 20px;
}

.philosophy-item-ai h4 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.philosophy-item-ai p {
  color: rgba(224, 242, 254, 0.9);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/*--------------------------------------------------------------
# Contact Page - AI Anti-Fraud Theme
--------------------------------------------------------------*/
.contact-form-section-ai {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #5d2a0d 50%, #1a0f0a 100%);
  position: relative;
  overflow: hidden;
}

.contact-form-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.contact-form-header-ai {
  position: relative;
  z-index: 2;
}

.contact-form-badge-ai {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 30px;
  color: #d4af37;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

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

.contact-form-description-ai {
  font-size: 18px;
  color: rgba(224, 242, 254, 0.8);
  line-height: 1.7;
}

.contact-form-ai {
  position: relative;
  z-index: 2;
  padding: 40px;
  background: rgba(26, 15, 10, 0.7);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(20px);
}

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

.form-label-ai {
  display: block;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 15px;
}

.required-star-ai {
  color: #d4af37;
  margin-left: 3px;
}

.form-input-ai,
.form-textarea-ai {
  width: 100%;
  padding: 14px 18px;
  background: rgba(26, 15, 10, 0.8);
  border: 2px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  color: #ffffff;
  font-size: 15px;
  transition: all 0.3s ease;
}

.form-input-ai:focus,
.form-textarea-ai:focus {
  outline: none;
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
  background: rgba(26, 15, 10, 0.9);
}

.form-input-ai::placeholder,
.form-textarea-ai::placeholder {
  color: rgba(224, 242, 254, 0.5);
}

.invalid-feedback-ai {
  display: none;
  color: #ef4444;
  font-size: 13px;
  margin-top: 5px;
}

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

.form-submit-button-ai {
  position: relative;
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #d4af37, #8b4513);
  border: none;
  border-radius: 10px;
  color: #1a0f0a;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-submit-button-ai:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
}

.contact-hero-ai {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #8b4513 30%, #1a0f0a 100%);
  position: relative;
  overflow: hidden;
}

.contact-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.contact-hero-badge-ai {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 30px;
  color: #d4af37;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.contact-hero-title-ai {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
}

.contact-hero-description-ai {
  font-size: 18px;
  color: rgba(224, 242, 254, 0.9);
  line-height: 1.7;
}

.contact-info-ai {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #5d2a0d 50%, #1a0f0a 100%);
  position: relative;
  overflow: hidden;
}

.contact-info-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(212, 175, 55, 0.03) 2px, rgba(212, 175, 55, 0.03) 4px);
  opacity: 0.5;
  pointer-events: none;
}

.contact-info-card-ai {
  position: relative;
  padding: 35px;
  background: rgba(26, 15, 10, 0.7);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  height: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
}

.contact-info-card-ai:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.contact-info-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.contact-info-card-ai:hover .contact-info-glow {
  opacity: 1;
  animation: rotate-glow 8s linear infinite;
}

.contact-info-icon-ai {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 3px solid rgba(212, 175, 55, 0.4);
  border-radius: 18px;
  color: #d4af37;
  font-size: 32px;
  margin-bottom: 25px;
}

.contact-info-card-ai h4 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
}

.contact-info-card-ai p {
  color: rgba(224, 242, 254, 0.9);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.contact-link-ai {
  color: #d4af37;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-link-ai:hover {
  color: #8b4513;
}

.contact-hours-ai {
  color: rgba(224, 242, 254, 0.8);
  font-size: 14px;
  line-height: 1.8;
}

.contact-note-ai {
  color: rgba(224, 242, 254, 0.7);
  font-size: 14px;
  font-style: italic;
  margin-top: 15px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# FAQ Page - AI Anti-Fraud Theme
--------------------------------------------------------------*/
.faq-hero-ai {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #5d2a0d 50%, #1a0f0a 100%);
  position: relative;
  overflow: hidden;
}

.faq-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  opacity: 0.6;
  pointer-events: none;
}

.faq-hero-badge-ai {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 30px;
  color: #d4af37;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.faq-hero-title-ai {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
}

.faq-hero-description-ai {
  font-size: 18px;
  color: rgba(224, 242, 254, 0.9);
  line-height: 1.7;
}

.faq-cta-ai {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #8b4513 30%, #1a0f0a 100%);
  position: relative;
  overflow: hidden;
}

.faq-cta-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.faq-cta-badge-ai {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 30px;
  color: #d4af37;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

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

.faq-cta-description-ai {
  font-size: 18px;
  color: rgba(224, 242, 254, 0.8);
  line-height: 1.7;
}

.faq-section-ai {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #5d2a0d 50%, #1a0f0a 100%);
  position: relative;
  overflow: hidden;
}

.faq-section-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(212, 175, 55, 0.03) 2px, rgba(212, 175, 55, 0.03) 4px);
  opacity: 0.5;
  pointer-events: none;
}

.faq-section-header-ai {
  position: relative;
  z-index: 2;
}

.faq-section-badge-ai {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 30px;
  color: #d4af37;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

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

.faq-card-ai {
  position: relative;
  padding: 35px;
  background: rgba(26, 15, 10, 0.7);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  height: 100%;
  transition: all 0.4s ease;
  overflow: hidden;
}

.faq-card-ai::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), rgba(16, 185, 129, 0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.faq-card-ai:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

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

.faq-card-glow-faq {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.faq-card-ai:hover .faq-card-glow-faq {
  opacity: 1;
  animation: rotate-glow 8s linear infinite;
}

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

.faq-icon-ai {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 3px solid rgba(212, 175, 55, 0.4);
  border-radius: 15px;
  color: #d4af37;
  font-size: 28px;
  flex-shrink: 0;
}

.faq-question-ai {
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  flex: 1;
}

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

.faq-answer-ai {
  color: rgba(224, 242, 254, 0.9);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

/*--------------------------------------------------------------
# Privacy Policy Page - AI Anti-Fraud Theme
--------------------------------------------------------------*/
.privacy-hero-ai {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #5d2a0d 50%, #1a0f0a 100%);
  position: relative;
  overflow: hidden;
}

.privacy-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  opacity: 0.6;
  pointer-events: none;
}

.privacy-hero-badge-ai {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 30px;
  color: #d4af37;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.privacy-hero-title-ai {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
}

.privacy-hero-description-ai {
  font-size: 18px;
  color: rgba(224, 242, 254, 0.9);
  line-height: 1.7;
  margin-bottom: 20px;
}

.privacy-hero-updated-ai {
  font-size: 14px;
  color: rgba(224, 242, 254, 0.7);
}

.privacy-content-ai {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #8b4513 30%, #1a0f0a 100%);
  position: relative;
  overflow: hidden;
}

.privacy-content-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(212, 175, 55, 0.03) 2px, rgba(212, 175, 55, 0.03) 4px);
  opacity: 0.5;
  pointer-events: none;
}

.privacy-content-wrapper-ai {
  position: relative;
  z-index: 2;
  padding: 50px;
  background: rgba(26, 15, 10, 0.6);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(20px);
}

.privacy-section-ai {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.privacy-section-header-ai {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.privacy-section-icon-ai {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 3px solid rgba(212, 175, 55, 0.4);
  border-radius: 15px;
  color: #d4af37;
  font-size: 28px;
  flex-shrink: 0;
}

.privacy-section-ai h2 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.privacy-section-ai h3 {
  color: #d4af37;
  font-size: 22px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.privacy-section-ai p {
  color: rgba(224, 242, 254, 0.9);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.privacy-section-ai ul {
  color: rgba(224, 242, 254, 0.9);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 25px;
}

.privacy-section-ai ul li {
  margin-bottom: 10px;
}

.privacy-info-box-ai {
  padding: 25px;
  background: rgba(26, 15, 10, 0.5);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-left: 4px solid #d4af37;
  border-radius: 12px;
  margin: 20px 0;
}

.privacy-link-ai {
  color: #d4af37;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.privacy-link-ai:hover {
  color: #8b4513;
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Cookie Policy Page - AI Anti-Fraud Theme
--------------------------------------------------------------*/
.cookie-hero-ai {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #5d2a0d 50%, #1a0f0a 100%);
  position: relative;
  overflow: hidden;
}

.cookie-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  opacity: 0.6;
  pointer-events: none;
}

.cookie-hero-badge-ai {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 30px;
  color: #d4af37;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.cookie-hero-title-ai {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
}

.cookie-hero-description-ai {
  font-size: 18px;
  color: rgba(224, 242, 254, 0.9);
  line-height: 1.7;
  margin-bottom: 20px;
}

.cookie-hero-updated-ai {
  font-size: 14px;
  color: rgba(224, 242, 254, 0.7);
}

.cookie-content-ai {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #8b4513 30%, #1a0f0a 100%);
  position: relative;
  overflow: hidden;
}

.cookie-content-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(212, 175, 55, 0.03) 2px, rgba(212, 175, 55, 0.03) 4px);
  opacity: 0.5;
  pointer-events: none;
}

.cookie-content-wrapper-ai {
  position: relative;
  z-index: 2;
  padding: 50px;
  background: rgba(26, 15, 10, 0.6);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(20px);
}

.cookie-section-ai {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.cookie-section-header-ai {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.cookie-section-icon-ai {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 3px solid rgba(212, 175, 55, 0.4);
  border-radius: 15px;
  color: #d4af37;
  font-size: 28px;
  flex-shrink: 0;
}

.cookie-section-ai h2 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.cookie-section-ai h3 {
  color: #d4af37;
  font-size: 22px;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 15px;
}

.cookie-section-ai p {
  color: rgba(224, 242, 254, 0.9);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.cookie-section-ai ul {
  color: rgba(224, 242, 254, 0.9);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 25px;
}

.cookie-section-ai ul li {
  margin-bottom: 10px;
}

.cookie-section-ai strong {
  color: #d4af37;
  font-weight: 600;
}

/*--------------------------------------------------------------
# Terms Page - AI Anti-Fraud Theme
--------------------------------------------------------------*/
.terms-hero-ai {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #5d2a0d 50%, #1a0f0a 100%);
  position: relative;
  overflow: hidden;
}

.terms-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 50%);
  opacity: 0.6;
  pointer-events: none;
}

.terms-hero-badge-ai {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 30px;
  color: #d4af37;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.terms-hero-title-ai {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
}

.terms-hero-description-ai {
  font-size: 18px;
  color: rgba(224, 242, 254, 0.9);
  line-height: 1.7;
}

.terms-hero-content-ai {
  position: relative;
  z-index: 2;
  padding: 50px;
  background: rgba(26, 15, 10, 0.6);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(20px);
}

.terms-hero-section-ai {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.terms-hero-section-header-ai {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}

.terms-hero-section-icon-ai {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  color: #d4af37;
  font-size: 24px;
  flex-shrink: 0;
}

.terms-hero-section-ai h2 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.terms-hero-section-ai p {
  color: rgba(224, 242, 254, 0.9);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.terms-content-ai {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #8b4513 30%, #1a0f0a 100%);
  position: relative;
  overflow: hidden;
}

.terms-content-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(212, 175, 55, 0.03) 2px, rgba(212, 175, 55, 0.03) 4px);
  opacity: 0.5;
  pointer-events: none;
}

.terms-content-header-ai {
  position: relative;
  z-index: 2;
}

.terms-content-badge-ai {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 2px solid rgba(212, 175, 55, 0.5);
  border-radius: 30px;
  color: #d4af37;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.terms-content-title-ai {
  font-size: 42px;
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 15px;
  line-height: 1.2;
}

.terms-content-description-ai {
  font-size: 16px;
  color: rgba(224, 242, 254, 0.8);
}

.terms-content-wrapper-ai {
  position: relative;
  z-index: 2;
  padding: 50px;
  background: rgba(26, 15, 10, 0.6);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(20px);
}

.terms-section-ai {
  margin-bottom: 50px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

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

.terms-section-header-ai {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.terms-section-icon-ai {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 2px solid rgba(212, 175, 55, 0.4);
  border-radius: 12px;
  color: #d4af37;
  font-size: 24px;
  flex-shrink: 0;
}

.terms-section-ai h3 {
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

.terms-section-ai p {
  color: rgba(224, 242, 254, 0.9);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

.terms-link-ai {
  color: #d4af37;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.terms-link-ai:hover {
  color: #8b4513;
  text-decoration: underline;
}

/*--------------------------------------------------------------
# Thanks Page - AI Anti-Fraud Theme
--------------------------------------------------------------*/
.thanks-hero-ai {
  padding: 120px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #5d2a0d 50%, #1a0f0a 100%);
  position: relative;
  overflow: hidden;
}

.thanks-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.thanks-icon-ai {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-icon-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: thanksPulse 2s ease-in-out infinite;
}

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

.thanks-icon-ai i {
  position: relative;
  z-index: 2;
  font-size: 80px;
  color: #8b4513;
  animation: thanksBounce 1s ease-in-out;
}

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

.thanks-badge-ai {
  display: inline-block;
  padding: 10px 24px;
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(212, 175, 55, 0.2));
  border: 2px solid rgba(16, 185, 129, 0.5);
  border-radius: 30px;
  color: #8b4513;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(16, 185, 129, 0.3);
}

.thanks-title-ai {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 25px;
  line-height: 1.2;
}

.thanks-description-ai {
  font-size: 18px;
  color: rgba(224, 242, 254, 0.9);
  line-height: 1.7;
}

.thanks-content-ai {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #8b4513 30%, #1a0f0a 100%);
  position: relative;
  overflow: hidden;
}

.thanks-content-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 2px, rgba(212, 175, 55, 0.03) 2px, rgba(212, 175, 55, 0.03) 4px);
  opacity: 0.5;
  pointer-events: none;
}

.thanks-content-wrapper-ai {
  position: relative;
  z-index: 2;
  padding: 50px;
  background: rgba(26, 15, 10, 0.6);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(20px);
}

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

.thanks-text-ai {
  font-size: 18px;
  color: rgba(224, 242, 254, 0.9);
  line-height: 1.7;
  margin-bottom: 0;
}

.thanks-info-ai {
  margin-top: 50px;
}

.thanks-info-item-ai {
  position: relative;
  padding: 35px;
  background: rgba(26, 15, 10, 0.7);
  border: 2px solid rgba(212, 175, 55, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  height: 100%;
  transition: all 0.3s ease;
  overflow: hidden;
  text-align: center;
}

.thanks-info-item-ai:hover {
  transform: translateY(-10px);
  border-color: rgba(212, 175, 55, 0.6);
  box-shadow: 0 20px 40px rgba(212, 175, 55, 0.3);
}

.thanks-info-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.thanks-info-item-ai:hover .thanks-info-glow {
  opacity: 1;
  animation: rotate-glow 8s linear infinite;
}

.thanks-info-icon-ai {
  width: 70px;
  height: 70px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(16, 185, 129, 0.2));
  border: 3px solid rgba(212, 175, 55, 0.4);
  border-radius: 18px;
  color: #d4af37;
  font-size: 32px;
}

.thanks-info-item-ai h4 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
}

.thanks-info-item-ai p {
  color: rgba(224, 242, 254, 0.9);
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.thanks-link-ai {
  color: #d4af37;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.thanks-link-ai:hover {
  color: #8b4513;
  text-decoration: underline;
}

.thanks-actions-ai {
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.thanks-actions-title-ai {
  font-size: 32px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
}

.thanks-actions-text-ai {
  font-size: 16px;
  color: rgba(224, 242, 254, 0.9);
  line-height: 1.7;
  margin-bottom: 30px;
}

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

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

  .about-hero-ai,
  .contact-form-section-ai,
  .contact-hero-ai,
  .contact-info-ai,
  .faq-hero-ai,
  .faq-section-ai,
  .faq-cta-ai,
  .philosophy-ai {
    padding: 80px 0;
  }

  .about-hero-title-ai,
  .contact-hero-title-ai,
  .faq-hero-title-ai {
    font-size: 32px;
  }

  .philosophy-title-ai,
  .contact-form-title-ai,
  .faq-section-title-ai,
  .faq-cta-title-ai {
    font-size: 28px;
  }

  .about-hero-stats-ai {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .stat-card-ai {
    padding: 25px 20px;
  }

  .philosophy-point-ai {
    flex-direction: column;
    padding: 20px;
  }

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

  .contact-info-card-ai {
    padding: 25px 20px;
  }

  .faq-card-ai {
    padding: 25px 20px;
  }

  .faq-card-body-ai {
    padding-left: 0;
    padding-top: 20px;
  }

  .faq-card-header-ai {
    flex-direction: column;
    gap: 15px;
  }
  
  .impressum-section h2,
  .privacy-section h2,
  .cookie-section h2 {
    font-size: 22px;
  }
  
  .terms-section h3,
  .privacy-section h3,
  .cookie-section h3 {
    font-size: 18px;
  }
}

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

  .privacy-hero-ai,
  .cookie-hero-ai,
  .terms-hero-ai,
  .thanks-hero-ai {
    padding: 60px 0 40px;
  }

  .privacy-hero-title-ai,
  .cookie-hero-title-ai,
  .terms-hero-title-ai,
  .thanks-title-ai {
    font-size: 28px;
  }

  .privacy-content-wrapper-ai,
  .cookie-content-wrapper-ai,
  .terms-hero-content-ai,
  .terms-content-wrapper-ai,
  .thanks-content-wrapper-ai {
    padding: 25px 15px;
  }

  .privacy-section-ai,
  .cookie-section-ai,
  .terms-section-ai {
    margin-bottom: 25px;
    padding-bottom: 20px;
  }

  .privacy-section-header-ai,
  .cookie-section-header-ai,
  .terms-section-header-ai {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .privacy-section-icon-ai,
  .cookie-section-icon-ai,
  .terms-section-icon-ai {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .thanks-icon-ai {
    width: 90px;
    height: 90px;
  }

  .thanks-icon-ai i {
    font-size: 50px;
  }

  .thanks-subtitle-ai {
    font-size: 24px;
  }

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

  .thanks-buttons-ai {
    flex-direction: column;
    align-items: stretch;
  }
}

/*==============================================================
# Antique Legal Pages Styles (Privacy, Terms, Cookies, Thanks)
==============================================================*/

/* Privacy Policy Antique Styles */
.privacy-hero-antique {
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #1a0f0a 0%, #2d1a0d 25%, #3d2515 50%, #8b4513 75%, #a0522d 100%);
}

.privacy-hero-antique::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
  opacity: 0.6;
  animation: antiqueGlow 8s ease-in-out infinite;
}

@keyframes antiqueGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 0.8; }
}

.privacy-hero-badge-antique {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(139, 69, 19, 0.2));
  border: 2px solid rgba(212, 175, 55, 0.6);
  border-radius: 30px;
  color: #d4af37;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
  animation: antiquePulse 3s ease-in-out infinite;
}

@keyframes antiquePulse {
  0%, 100% { box-shadow: 0 0 25px rgba(212, 175, 55, 0.3); }
  50% { box-shadow: 0 0 35px rgba(212, 175, 55, 0.5); }
}

.privacy-hero-title-antique {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}

.privacy-hero-title-antique .title-gradient {
  background: linear-gradient(135deg, #ffffff 0%, #d4af37 50%, #8b4513 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.privacy-hero-description-antique {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 700px;
}

.privacy-hero-updated-antique {
  font-size: 16px;
  color: rgba(212, 175, 55, 0.9);
  font-weight: 500;
  margin-top: 20px;
}

.privacy-content-antique {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #2d1810 100%);
  position: relative;
}

.privacy-content-antique::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4af37' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.privacy-content-wrapper-antique {
  position: relative;
  z-index: 2;
}

.privacy-section-antique {
  background: rgba(26, 15, 10, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.privacy-section-antique:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
}

.privacy-section-header-antique {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.privacy-section-icon-antique {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d4af37, #8b4513);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a0f0a;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.privacy-section-antique h2 {
  color: #d4af37;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.privacy-section-antique h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  margin: 20px 0 15px 0;
}

.privacy-section-antique p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 15px;
}

.privacy-info-box-antique {
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 10px;
  padding: 25px;
  margin-top: 20px;
  backdrop-filter: blur(5px);
}

.privacy-info-box-antique p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 10px;
  font-weight: 500;
}

/* Terms Page Antique Styles */
.terms-hero-antique {
  position: relative;
  overflow: hidden;
  padding: 120px 0 100px;
  background: linear-gradient(135deg, #1a0f0a 0%, #2d1a0d 25%, #3d2515 50%, #8b4513 75%, #a0522d 100%);
}

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

.terms-hero-badge-antique {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(139, 69, 19, 0.2));
  border: 2px solid rgba(212, 175, 55, 0.6);
  border-radius: 30px;
  color: #d4af37;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.terms-hero-title-antique {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}

.terms-hero-description-antique {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 20px;
}

.terms-hero-content-antique {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}

.terms-hero-section-antique {
  background: rgba(26, 15, 10, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  padding: 35px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.terms-hero-section-antique:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
}

.terms-hero-section-header-antique {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.terms-hero-section-icon-antique {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #d4af37, #8b4513);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a0f0a;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.terms-hero-section-antique h2 {
  color: #d4af37;
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.terms-hero-section-antique p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 10px;
}

.terms-hero-section-antique a {
  color: #d4af37;
  text-decoration: none;
  font-weight: 600;
}

.terms-hero-section-antique a:hover {
  color: #ffffff;
}

.terms-content-antique {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #2d1810 100%);
  position: relative;
}

.terms-content-wrapper-antique {
  position: relative;
  z-index: 2;
}

.terms-section-antique {
  background: rgba(26, 15, 10, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.terms-section-antique:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
}

.terms-section-header-antique {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.terms-section-icon-antique {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d4af37, #8b4513);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a0f0a;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.terms-section-antique h2 {
  color: #d4af37;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.terms-section-antique h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  margin: 20px 0 15px 0;
}

.terms-section-antique p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 15px;
}

/* Cookie Policy Antique Styles */
.cookie-hero-antique {
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #1a0f0a 0%, #2d1a0d 25%, #3d2515 50%, #8b4513 75%, #a0522d 100%);
}

.cookie-hero-badge-antique {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(139, 69, 19, 0.2));
  border: 2px solid rgba(212, 175, 55, 0.6);
  border-radius: 30px;
  color: #d4af37;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.cookie-hero-title-antique {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}

.cookie-hero-description-antique {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 700px;
}

.cookie-hero-updated-antique {
  font-size: 16px;
  color: rgba(212, 175, 55, 0.9);
  font-weight: 500;
  margin-top: 20px;
}

.cookie-content-antique {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #2d1810 100%);
  position: relative;
}

.cookie-content-wrapper-antique {
  position: relative;
  z-index: 2;
}

.cookie-section-antique {
  background: rgba(26, 15, 10, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.cookie-section-antique:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
}

.cookie-section-header-antique {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.cookie-section-icon-antique {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #d4af37, #8b4513);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a0f0a;
  font-size: 24px;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.cookie-section-antique h2 {
  color: #d4af37;
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

.cookie-section-antique h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 600;
  margin: 20px 0 15px 0;
}

.cookie-section-antique p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 15px;
}

.cookie-table-antique {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  background: rgba(212, 175, 55, 0.05);
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.cookie-table-antique th,
.cookie-table-antique td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.cookie-table-antique th {
  background: rgba(212, 175, 55, 0.1);
  color: #d4af37;
  font-weight: 600;
  font-size: 16px;
}

.cookie-table-antique td {
  color: rgba(255, 255, 255, 0.9);
}

.cookie-table-antique tr:last-child td {
  border-bottom: none;
}

/* Thanks Page Antique Styles */
.thanks-hero-antique {
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #1a0f0a 0%, #2d1a0d 25%, #3d2515 50%, #8b4513 75%, #a0522d 100%);
}

.thanks-icon-antique {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.thanks-icon-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: thanksGlow 2s ease-in-out infinite;
}

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

.thanks-icon-antique i {
  font-size: 80px;
  color: #d4af37;
  filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.5));
}

.thanks-badge-antique {
  display: inline-block;
  padding: 12px 28px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(139, 69, 19, 0.2));
  border: 2px solid rgba(212, 175, 55, 0.6);
  border-radius: 30px;
  color: #d4af37;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
}

.thanks-title-antique {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}

.thanks-description-antique {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 600px;
}

.thanks-content-antique {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a0f0a 0%, #2d1810 100%);
  position: relative;
}

.thanks-content-wrapper-antique {
  position: relative;
  z-index: 2;
}

.thanks-subtitle-antique {
  font-size: 32px;
  font-weight: 700;
  color: #d4af37;
  margin-bottom: 25px;
}

.thanks-text-antique {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 700px;
}

.thanks-info-antique {
  margin-top: 50px;
}

.thanks-info-item-antique {
  position: relative;
  background: rgba(26, 15, 10, 0.8);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 15px;
  padding: 35px 25px;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.thanks-info-item-antique:hover {
  border-color: rgba(212, 175, 55, 0.4);
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.15);
  transform: translateY(-5px);
}

.thanks-info-glow {
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.thanks-info-item-antique:hover .thanks-info-glow {
  opacity: 1;
}

.thanks-info-icon-antique {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #d4af37, #8b4513);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1a0f0a;
  font-size: 28px;
  margin: 0 auto 20px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.thanks-info-item-antique h3 {
  color: #d4af37;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
}

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

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

.thanks-btn-primary-antique {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #d4af37, #8b4513);
  color: #1a0f0a;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.thanks-btn-primary-antique:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
  color: #1a0f0a;
}

.thanks-btn-outline-antique {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: transparent;
  color: #d4af37;
  border: 2px solid #d4af37;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.thanks-btn-outline-antique:hover {
  background: #d4af37;
  color: #1a0f0a;
  transform: translateY(-2px);
}

.thanks-link-antique {
  color: #d4af37;
  font-weight: 600;
  text-decoration: none;
}

.thanks-link-antique:hover {
  color: #ffffff;
}

.thanks-actions-antique {
  margin-top: 60px;
}

.thanks-actions-title-antique {
  color: #d4af37;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.thanks-actions-text-antique {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 16px;
}

/* Responsive Antique Legal Pages */
@media (max-width: 768px) {
  .privacy-hero-antique,
  .terms-hero-antique,
  .cookie-hero-antique,
  .thanks-hero-antique {
    padding: 100px 0 60px;
  }

  .privacy-hero-title-antique,
  .terms-hero-title-antique,
  .cookie-hero-title-antique,
  .thanks-title-antique {
    font-size: 36px;
  }

  .privacy-hero-description-antique,
  .terms-hero-description-antique,
  .cookie-hero-description-antique,
  .thanks-description-antique {
    font-size: 18px;
  }

  .privacy-content-antique,
  .terms-content-antique,
  .cookie-content-antique,
  .thanks-content-antique {
    padding: 60px 0;
  }

  .privacy-section-antique,
  .terms-section-antique,
  .cookie-section-antique {
    padding: 30px 20px;
  }

  .privacy-section-header-antique,
  .terms-section-header-antique,
  .cookie-section-header-antique {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .privacy-section-icon-antique,
  .terms-section-icon-antique,
  .cookie-section-icon-antique {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .terms-hero-content-antique {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .thanks-info-antique .row > div {
    margin-bottom: 20px;
  }

  .thanks-buttons-antique {
    flex-direction: column;
    align-items: center;
  }

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

  .cookie-table-antique {
    font-size: 14px;
  }

  .cookie-table-antique th,
  .cookie-table-antique td {
    padding: 10px;
  }
}