/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1B263B;
  background: linear-gradient(135deg, #0a0e1a 0%, #1a1f35 50%, #0f1421 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #FFD60A;
  text-shadow: 0 0 20px rgba(255, 214, 10, 0.3);
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  color: #e0e6f0;
  font-size: 16px;
}

a {
  color: #E85D04;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #FFD60A;
  text-shadow: 0 0 10px rgba(255, 214, 10, 0.5);
}

ul {
  list-style: none;
}

/* Header */
header {
  background: linear-gradient(180deg, rgba(26, 38, 59, 0.95) 0%, rgba(15, 20, 33, 0.9) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid #E85D04;
  box-shadow: 0 4px 20px rgba(232, 93, 4, 0.3);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 16px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(255, 214, 10, 0.4));
  transition: transform 0.3s ease;
}

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

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #e0e6f0;
  font-weight: 600;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav a::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #E85D04, #FFD60A);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #FFD60A;
  background: rgba(232, 93, 4, 0.1);
}

.main-nav a:hover::before {
  width: 80%;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #E85D04, #FFD60A);
  border: none;
  color: #1B263B;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(232, 93, 4, 0.5);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(255, 214, 10, 0.6);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1a1f35 0%, #0f1421 100%);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  z-index: 1000;
  padding: 80px 30px 30px;
  transition: right 0.4s ease;
  border-left: 3px solid #E85D04;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #E85D04;
  color: #FFD60A;
  font-size: 32px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close:hover {
  background: #E85D04;
  color: #1B263B;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #e0e6f0;
  font-size: 18px;
  font-weight: 600;
  padding: 15px 20px;
  border-radius: 10px;
  border: 1px solid rgba(232, 93, 4, 0.3);
  transition: all 0.3s ease;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  background: rgba(232, 93, 4, 0.2);
  border-color: #E85D04;
  color: #FFD60A;
  transform: translateX(5px);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, rgba(232, 93, 4, 0.1), rgba(255, 214, 10, 0.05));
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #E85D04;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 214, 10, 0.1) 0%, transparent 70%);
  animation: pulseGlow 8s ease-in-out infinite;
}

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

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  animation: slideInDown 0.8s ease-out;
}

.hero-subtitle {
  font-size: 20px;
  color: #e0e6f0;
  margin-bottom: 32px;
  line-height: 1.6;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  animation: fadeIn 0.8s ease-out 0.4s both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.trust-badge {
  color: #FFD60A;
  font-weight: 600;
  font-size: 16px;
  margin-top: 20px;
  animation: fadeIn 0.8s ease-out 0.6s both;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #E85D04, #FFD60A);
  color: #1B263B;
  border-color: #E85D04;
  box-shadow: 0 4px 15px rgba(232, 93, 4, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 214, 10, 0.5);
  background: linear-gradient(135deg, #FFD60A, #E85D04);
}

.btn-secondary {
  background: transparent;
  color: #FFD60A;
  border: 2px solid #E85D04;
}

.btn-secondary:hover {
  background: rgba(232, 93, 4, 0.2);
  border-color: #FFD60A;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(232, 93, 4, 0.3);
}

/* Section Styles */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subtitle {
  text-align: center;
  color: #b8c4d8;
  font-size: 18px;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

section h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 40px;
}

/* Services Grid */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  background: linear-gradient(145deg, rgba(26, 38, 59, 0.8), rgba(15, 20, 33, 0.9));
  border: 2px solid rgba(232, 93, 4, 0.3);
  border-radius: 15px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 400px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 214, 10, 0.1), transparent);
  transition: left 0.6s ease;
}

.service-card:hover::before {
  left: 100%;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: #E85D04;
  box-shadow: 0 15px 40px rgba(232, 93, 4, 0.4), 0 0 30px rgba(255, 214, 10, 0.2);
}

.service-card h3 {
  color: #FFD60A;
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p {
  color: #b8c4d8;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.7;
}

.service-card .price {
  color: #E85D04;
  font-weight: 700;
  font-size: 18px;
  margin-top: 20px;
  text-shadow: 0 0 10px rgba(232, 93, 4, 0.3);
}

/* Benefits Grid */
.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.benefit-item {
  background: linear-gradient(135deg, rgba(232, 93, 4, 0.15), rgba(255, 214, 10, 0.05));
  border: 2px solid #E85D04;
  border-radius: 12px;
  padding: 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 214, 10, 0.3);
  border-color: #FFD60A;
}

.benefit-item h3 {
  font-size: 18px;
  margin-bottom: 0;
  color: #e0e6f0;
}

/* Testimonials */
.testimonials {
  background: linear-gradient(135deg, rgba(15, 20, 33, 0.95), rgba(26, 38, 59, 0.9));
  padding: 60px 20px;
  border-radius: 20px;
  margin: 60px 20px;
  border: 2px solid rgba(232, 93, 4, 0.3);
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.testimonial-card {
  background: linear-gradient(145deg, rgba(26, 38, 59, 0.9), rgba(15, 20, 33, 0.95));
  border: 2px solid #E85D04;
  border-radius: 15px;
  padding: 32px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(232, 93, 4, 0.4);
  border-color: #FFD60A;
}

.testimonial-card p {
  color: #e0e6f0;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 8px;
}

.testimonial-author {
  color: #FFD60A;
  font-weight: 600;
  font-style: italic;
  margin-top: 8px;
}

.rating {
  color: #FFD60A;
  font-size: 20px;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(255, 214, 10, 0.5);
}

/* Pricing Cards */
.pricing {
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(232, 93, 4, 0.05), rgba(255, 214, 10, 0.02));
  border-radius: 20px;
  margin: 40px 0;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.pricing-card {
  background: linear-gradient(145deg, rgba(26, 38, 59, 0.8), rgba(15, 20, 33, 0.9));
  border: 2px solid rgba(232, 93, 4, 0.4);
  border-radius: 20px;
  padding: 40px 32px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pricing-card.featured {
  border-color: #FFD60A;
  border-width: 3px;
  transform: scale(1.05);
  box-shadow: 0 15px 50px rgba(255, 214, 10, 0.3);
}

.pricing-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(232, 93, 4, 0.4);
  border-color: #FFD60A;
}

.pricing-card .badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #E85D04, #FFD60A);
  color: #1B263B;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(255, 214, 10, 0.4);
}

.pricing-card h3 {
  font-size: 28px;
  color: #FFD60A;
  margin-bottom: 16px;
}

.pricing-card .price {
  font-size: 48px;
  font-weight: 700;
  color: #E85D04;
  margin-bottom: 24px;
  text-shadow: 0 0 20px rgba(232, 93, 4, 0.3);
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
}

.pricing-card .price span {
  font-size: 20px;
  color: #b8c4d8;
}

.pricing-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
  text-align: left;
}

.pricing-card ul li {
  color: #e0e6f0;
  font-size: 15px;
  padding-left: 24px;
  position: relative;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFD60A;
  font-weight: 700;
  font-size: 18px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(232, 93, 4, 0.2), rgba(255, 214, 10, 0.1));
  padding: 80px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 60px 20px;
  border: 2px solid #E85D04;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 214, 10, 0.2), transparent);
  animation: pulse 3s ease-in-out infinite;
}

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

.cta-section h2 {
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}

.cta-section p {
  position: relative;
  z-index: 1;
  font-size: 18px;
  color: #e0e6f0;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.urgency, .guarantee {
  color: #FFD60A;
  font-weight: 600;
  font-size: 15px;
  margin-top: 24px;
  position: relative;
  z-index: 1;
}

/* Course Categories */
.categories-grid, .courses-grid, .trainers-grid, .steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.category-card, .course-card, .trainer-card, .step {
  background: linear-gradient(145deg, rgba(26, 38, 59, 0.8), rgba(15, 20, 33, 0.9));
  border: 2px solid rgba(232, 93, 4, 0.3);
  border-radius: 15px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-card:hover, .course-card:hover, .trainer-card:hover, .step:hover {
  transform: translateY(-5px);
  border-color: #E85D04;
  box-shadow: 0 15px 35px rgba(232, 93, 4, 0.3);
}

.course-info {
  color: #FFD60A;
  font-size: 14px;
  font-weight: 600;
  margin-top: 12px;
}

/* Statistics & Values */
.stats-grid, .values-grid, .facility-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.stat-card, .value-card, .facility-item {
  background: linear-gradient(135deg, rgba(232, 93, 4, 0.15), rgba(255, 214, 10, 0.05));
  border: 2px solid #E85D04;
  border-radius: 15px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-card:hover, .value-card:hover, .facility-item:hover {
  transform: scale(1.08);
  box-shadow: 0 12px 35px rgba(255, 214, 10, 0.4);
  border-color: #FFD60A;
}

.stat-card h3 {
  font-size: 48px;
  color: #E85D04;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(232, 93, 4, 0.4);
}

.stat-card p {
  color: #b8c4d8;
  font-size: 16px;
}

/* Contact Forms */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.contact-card {
  background: linear-gradient(145deg, rgba(26, 38, 59, 0.8), rgba(15, 20, 33, 0.9));
  border: 2px solid #E85D04;
  border-radius: 15px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 400px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(232, 93, 4, 0.3);
  border-color: #FFD60A;
}

.contact-card h3 {
  color: #FFD60A;
  margin-bottom: 16px;
}

.contact-note {
  color: #b8c4d8;
  font-size: 14px;
  font-style: italic;
  margin-top: 12px;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
}

.form-intro {
  text-align: center;
  margin-bottom: 32px;
  color: #b8c4d8;
  font-size: 16px;
}

.form-placeholder {
  background: linear-gradient(145deg, rgba(26, 38, 59, 0.8), rgba(15, 20, 33, 0.9));
  border: 2px solid #E85D04;
  border-radius: 15px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-placeholder h3 {
  text-align: center;
  margin-bottom: 24px;
}

.form-placeholder p {
  color: #b8c4d8;
  padding: 12px;
  background: rgba(15, 20, 33, 0.5);
  border-radius: 8px;
  border: 1px solid rgba(232, 93, 4, 0.3);
}

.privacy-note {
  font-size: 13px;
  color: #8a99ad;
  text-align: center;
}

.privacy-note a {
  color: #E85D04;
  text-decoration: underline;
}

/* Location & Opening Hours */
.location-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}

.address, .address-block {
  background: linear-gradient(145deg, rgba(26, 38, 59, 0.8), rgba(15, 20, 33, 0.9));
  border: 2px solid #E85D04;
  border-radius: 15px;
  padding: 32px;
  text-align: center;
}

.hours-table {
  background: linear-gradient(145deg, rgba(26, 38, 59, 0.8), rgba(15, 20, 33, 0.9));
  border: 2px solid #E85D04;
  border-radius: 15px;
  padding: 32px;
  max-width: 600px;
  margin: 0 auto 24px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(232, 93, 4, 0.2);
  gap: 20px;
}

.hours-row:last-child {
  border-bottom: none;
}

.day {
  color: #e0e6f0;
  font-weight: 600;
}

.time {
  color: #FFD60A;
  font-weight: 700;
}

.info-note {
  text-align: center;
  color: #b8c4d8;
  font-style: italic;
  font-size: 14px;
}

/* Legal Content */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.text-section {
  background: linear-gradient(145deg, rgba(26, 38, 59, 0.8), rgba(15, 20, 33, 0.9));
  border: 2px solid rgba(232, 93, 4, 0.3);
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
}

.text-section h2 {
  text-align: left;
  color: #FFD60A;
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
}

.text-section h2:first-child {
  margin-top: 0;
}

.text-section p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.text-section ul {
  margin: 16px 0;
  padding-left: 24px;
}

.text-section ul li {
  color: #e0e6f0;
  margin-bottom: 8px;
  padding-left: 8px;
  position: relative;
}

.text-section ul li::before {
  content: '▸';
  position: absolute;
  left: -16px;
  color: #E85D04;
}

.last-updated {
  color: #b8c4d8;
  font-size: 14px;
  font-style: italic;
  text-align: center;
}

/* GDPR & Cookie Sections */
.processing-grid, .actions-grid, .services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.processing-card, .action-card, .service-item {
  background: linear-gradient(145deg, rgba(26, 38, 59, 0.8), rgba(15, 20, 33, 0.9));
  border: 2px solid rgba(232, 93, 4, 0.3);
  border-radius: 15px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.processing-card:hover, .action-card:hover {
  border-color: #E85D04;
  box-shadow: 0 10px 30px rgba(232, 93, 4, 0.3);
}

.legal-basis {
  color: #FFD60A;
  font-size: 13px;
  font-weight: 600;
  margin-top: 8px;
}

.processing-info {
  text-align: center;
  color: #b8c4d8;
  font-size: 14px;
  font-style: italic;
  margin-top: 20px;
}

.duration {
  color: #E85D04;
  font-size: 14px;
  font-weight: 600;
  margin-top: 8px;
}

/* Thank You Page */
.success-icon {
  font-size: 80px;
  color: #FFD60A;
  text-align: center;
  margin-bottom: 24px;
  animation: scaleIn 0.6s ease-out;
  text-shadow: 0 0 30px rgba(255, 214, 10, 0.6);
}

@keyframes scaleIn {
  from { transform: scale(0); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.confirmation-box {
  background: linear-gradient(145deg, rgba(26, 38, 59, 0.8), rgba(15, 20, 33, 0.9));
  border: 2px solid #E85D04;
  border-radius: 15px;
  padding: 40px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.suggestions-grid, .links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.suggestion-card, .link-card {
  background: linear-gradient(145deg, rgba(26, 38, 59, 0.8), rgba(15, 20, 33, 0.9));
  border: 2px solid rgba(232, 93, 4, 0.3);
  border-radius: 15px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.trust-message {
  text-align: center;
  font-size: 18px;
  color: #e0e6f0;
  font-weight: 600;
  margin-bottom: 12px;
}

/* Additional Services & Offers */
.additional-services, .special-offers {
  padding: 60px 20px;
}

.offers-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.offer-card {
  background: linear-gradient(145deg, rgba(232, 93, 4, 0.1), rgba(255, 214, 10, 0.05));
  border: 2px solid #E85D04;
  border-radius: 15px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 400px;
  transition: all 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 214, 10, 0.3);
  border-color: #FFD60A;
}

.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 24px;
}

.payment-method {
  background: linear-gradient(145deg, rgba(26, 38, 59, 0.8), rgba(15, 20, 33, 0.9));
  border: 2px solid rgba(232, 93, 4, 0.3);
  border-radius: 12px;
  padding: 24px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 200px;
  max-width: 300px;
  text-align: center;
}

.info-text, .info-box {
  text-align: center;
  color: #FFD60A;
  font-weight: 600;
  font-size: 16px;
  margin-top: 24px;
}

.guarantee-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.guarantee-item {
  background: linear-gradient(145deg, rgba(26, 38, 59, 0.8), rgba(15, 20, 33, 0.9));
  border: 2px solid #E85D04;
  border-radius: 15px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 400px;
  text-align: center;
}

.rules-list ul {
  background: linear-gradient(145deg, rgba(26, 38, 59, 0.8), rgba(15, 20, 33, 0.9));
  border: 2px solid rgba(232, 93, 4, 0.3);
  border-radius: 15px;
  padding: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.rules-list ul li {
  color: #e0e6f0;
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  border-bottom: 1px solid rgba(232, 93, 4, 0.2);
}

.rules-list ul li:last-child {
  border-bottom: none;
}

.rules-list ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFD60A;
  font-size: 18px;
  font-weight: 700;
}

/* Footer */
footer {
  background: linear-gradient(180deg, rgba(15, 20, 33, 0.95) 0%, rgba(10, 14, 26, 1) 100%);
  border-top: 3px solid #E85D04;
  padding: 60px 20px 20px;
  margin-top: 80px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.5);
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-section h3 {
  color: #FFD60A;
  font-size: 18px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 8px rgba(255, 214, 10, 0.3));
}

.footer-section p {
  color: #b8c4d8;
  font-size: 14px;
  line-height: 1.8;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav a {
  color: #b8c4d8;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #FFD60A;
  padding-left: 8px;
}

.copyright {
  text-align: center;
  color: #8a99ad;
  font-size: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(232, 93, 4, 0.3);
}

/* Cookie Consent Banner */
#cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, rgba(15, 20, 33, 0.98) 0%, rgba(10, 14, 26, 0.98) 100%);
  border-top: 3px solid #E85D04;
  padding: 24px 20px;
  z-index: 999;
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-text {
  flex: 1 1 400px;
  color: #e0e6f0;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-text a {
  color: #E85D04;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 25px;
  border: 2px solid #E85D04;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-btn.accept {
  background: linear-gradient(135deg, #E85D04, #FFD60A);
  color: #1B263B;
  border-color: #E85D04;
}

.cookie-btn.accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 214, 10, 0.4);
}

.cookie-btn.reject {
  background: transparent;
  color: #b8c4d8;
  border-color: #8a99ad;
}

.cookie-btn.reject:hover {
  background: rgba(138, 153, 173, 0.1);
  color: #e0e6f0;
}

.cookie-btn.settings {
  background: transparent;
  color: #FFD60A;
  border-color: #E85D04;
}

.cookie-btn.settings:hover {
  background: rgba(232, 93, 4, 0.15);
}

/* Cookie Settings Modal */
#cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 26, 0.95);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: linear-gradient(145deg, rgba(26, 38, 59, 0.95), rgba(15, 20, 33, 0.98));
  border: 3px solid #E85D04;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.cookie-modal-content h2 {
  color: #FFD60A;
  margin-bottom: 24px;
  text-align: center;
}

.cookie-category {
  background: rgba(15, 20, 33, 0.6);
  border: 1px solid rgba(232, 93, 4, 0.3);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 20px;
}

.cookie-category h3 {
  color: #FFD60A;
  font-size: 18px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  color: #b8c4d8;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: rgba(138, 153, 173, 0.3);
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid #8a99ad;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: #E85D04;
  border-color: #FFD60A;
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: white;
  top: 2px;
  left: 2px;
  transition: all 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  left: 26px;
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .service-card, .pricing-card, .category-card, .course-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .benefit-item, .stat-card, .value-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .testimonial-card, .contact-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1 1 auto;
  }
  
  .stat-card h3 {
    font-size: 36px;
  }
  
  .hours-row {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 15px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .benefit-item, .stat-card, .value-card {
    flex: 1 1 100%;
  }
  
  .pricing-card .price {
    font-size: 36px;
  }
  
  section {
    padding: 30px 16px;
  }
  
  .service-card, .pricing-card, .text-section {
    padding: 24px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .mobile-menu {
    width: 280px;
  }
}