/* Wbut Course - Creative Educational Platform */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;800&family=Space+Mono:wght@400;700&family=Playfair+Display:wght@700;900&display=swap');

:root {
  /* Color System */
  --primary: #FF6B35;
  --primary-dark: #E85A28;
  --secondary: #004E89;
  --secondary-light: #1A7FB7;
  --accent: #F7B801;
  --accent-dark: #D9A100;
  --dark: #1A1A2E;
  --light: #FFFFFF;
  --gray-100: #F8F9FA;
  --gray-200: #E9ECEF;
  --gray-300: #DEE2E6;
  --gray-700: #495057;
  --gray-900: #212529;
  
  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'Space Mono', monospace;
  
  /* Spacing */
  --section-padding: 100px 0;
  --container-padding: 0 20px;
  
  /* Effects */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray-900);
  background: var(--light);
  overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 4vw, 2.5rem); }
h4 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p {
  margin-bottom: 1rem;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--light);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(255, 107, 53, 0.4);
  color: var(--light);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--light);
  box-shadow: 0 4px 20px rgba(0, 78, 137, 0.3);
}

.btn-secondary:hover {
  background: var(--secondary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 78, 137, 0.4);
  color: var(--light);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--light);
  transform: translateY(-2px);
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

header.scrolled {
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  color: var(--dark);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.nav-links a {
  color: var(--dark);
  font-weight: 500;
  font-size: 15px;
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--primary);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  width: 25px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--container-padding);
}

section {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  background: linear-gradient(135deg, #F8F9FA 0%, #E9ECEF 100%);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-text {
  z-index: 2;
}

.hero-label {
  display: inline-block;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--light);
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  margin-bottom: 30px;
  line-height: 1.1;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

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

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

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

.hero-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: perspective(1000px) rotateY(-5deg);
  transition: var(--transition);
}

.hero-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* Decorative Elements */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0.1;
  pointer-events: none;
}

.deco-circle-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -5%;
}

.deco-circle-2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  right: 5%;
}

/* Section Headers */
.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.section-label {
  display: inline-block;
  padding: 6px 16px;
  background: var(--gray-100);
  color: var(--primary);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header h2 {
  margin-bottom: 20px;
}

.section-header p {
  font-size: 18px;
  color: var(--gray-700);
}

/* Learning Path Timeline */
.timeline {
  position: relative;
  padding: 40px 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 80px;
  position: relative;
}

.timeline-item:nth-child(even) .timeline-content {
  order: 2;
}

.timeline-item:nth-child(even) .timeline-visual {
  order: 1;
}

.timeline-content {
  position: relative;
  padding: 40px;
  background: var(--light);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.timeline-number {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: var(--light);
  border: 5px solid var(--light);
  z-index: 2;
}

.timeline-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(247, 184, 1, 0.1));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 28px;
  color: var(--primary);
}

.timeline-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.timeline-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Skills Evolution */
.skills-evolution {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  color: var(--light);
}

.skills-evolution .section-header {
  color: var(--light);
}

.skills-evolution .section-header p {
  color: rgba(255, 255, 255, 0.8);
}

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

.skill-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
  transition: var(--transition);
}

.skill-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
}

.skill-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin-bottom: 20px;
}

.skill-card h3 {
  color: var(--light);
  margin-bottom: 15px;
}

.skill-card p {
  color: rgba(255, 255, 255, 0.8);
}

.skill-level {
  margin-top: 20px;
}

.skill-level-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}

.skill-progress {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  overflow: hidden;
}

.skill-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 10px;
  transition: width 1s ease-out;
}

/* Code Design Fusion */
.fusion-section {
  background: var(--gray-100);
}

.fusion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}

.fusion-card {
  background: var(--light);
  border-radius: 20px;
  padding: 50px;
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

.fusion-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.fusion-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.code-icon {
  color: var(--secondary);
}

.design-icon {
  color: var(--primary);
}

.fusion-card h3 {
  margin-bottom: 20px;
}

.fusion-features {
  list-style: none;
}

.fusion-features li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: var(--gray-700);
}

.fusion-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Skill Radar */
.radar-section {
  background: var(--dark);
  color: var(--light);
}

.radar-section .section-header {
  color: var(--light);
}

.radar-section .section-header p {
  color: rgba(255, 255, 255, 0.7);
}

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

.radar-item {
  text-align: center;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  transition: var(--transition);
}

.radar-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.radar-icon {
  font-size: 48px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.radar-item h4 {
  color: var(--light);
  margin-bottom: 10px;
}

.radar-item p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}

/* Student Mindset */
.mindset-section {
  background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
}

.mindset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.mindset-card {
  position: relative;
  padding: 40px;
  background: var(--light);
  border-radius: 20px;
  box-shadow: var(--shadow-md);
  border-left: 5px solid var(--primary);
  transition: var(--transition);
}

.mindset-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.mindset-quote {
  font-size: 18px;
  font-style: italic;
  color: var(--gray-700);
  margin-bottom: 20px;
  line-height: 1.6;
}

.mindset-author {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--primary);
  font-weight: 600;
}

/* Learning Formats */
.formats-section {
  background: var(--light);
}

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

.format-card {
  background: var(--gray-100);
  border-radius: 20px;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.format-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.format-image {
  height: 200px;
  overflow: hidden;
}

.format-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.format-card:hover .format-image img {
  transform: scale(1.1);
}

.format-content {
  padding: 30px;
}

.format-badge {
  display: inline-block;
  padding: 6px 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--light);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 15px;
}

.format-content h4 {
  margin-bottom: 15px;
}

.format-content p {
  color: var(--gray-700);
  font-size: 15px;
}

/* Pricing */
.pricing-section {
  background: linear-gradient(135deg, var(--gray-100) 0%, var(--light) 100%);
}

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

.pricing-card {
  background: var(--light);
  border-radius: 30px;
  padding: 50px 40px;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pricing-card.featured {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  color: var(--light);
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

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

.pricing-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 16px;
  background: var(--accent);
  color: var(--dark);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.pricing-card h3 {
  font-size: 28px;
  margin-bottom: 10px;
}

.pricing-card.featured h3,
.pricing-card.featured p,
.pricing-card.featured li {
  color: var(--light);
}

.pricing-description {
  color: var(--gray-700);
  margin-bottom: 30px;
  font-size: 15px;
}

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

.pricing-price {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1;
}

.pricing-price span {
  font-size: 24px;
  font-weight: 400;
  opacity: 0.7;
}

.pricing-period {
  color: var(--gray-700);
  margin-bottom: 30px;
  font-size: 14px;
}

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

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
}

.pricing-features li {
  padding: 12px 0;
  padding-left: 30px;
  position: relative;
  color: var(--gray-700);
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.pricing-card.featured .pricing-features li::before {
  color: var(--accent);
}

.pricing-card .btn {
  width: 100%;
}

.pricing-card.featured .btn {
  background: var(--light);
  color: var(--secondary);
}

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

/* FAQ */
.faq-section {
  background: var(--light);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--gray-100);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  font-size: 24px;
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer-content {
  padding: 0 30px 25px;
  color: var(--gray-700);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--light);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  color: var(--light);
  margin-bottom: 20px;
}

.cta-content p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
}

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

.cta-section .btn {
  background: var(--light);
  color: var(--primary);
}

.cta-section .btn:hover {
  background: var(--dark);
  color: var(--light);
  transform: translateY(-2px);
}

/* Footer */
footer {
  background: var(--dark);
  color: var(--light);
  padding: 80px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}

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

.footer-logo {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--light);
  margin-bottom: 20px;
  display: block;
}

.footer-logo span {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-description {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  line-height: 1.7;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--primary);
  transform: translateY(-3px);
  color: var(--light);
}

.footer-section h4 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  color: var(--light);
}

.footer-links {
  list-style: none;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  font-size: 15px;
}

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

.footer-bottom {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom a:hover {
  color: var(--primary);
}

/* Contact Page */
.contact-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  color: var(--light);
  text-align: center;
  padding: 150px 0 100px;
}

.contact-hero h1 {
  color: var(--light);
  margin-bottom: 20px;
}

.contact-hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 80px 0;
}

.contact-info-card {
  background: var(--gray-100);
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: var(--transition);
}

.contact-info-card:hover {
  background: var(--light);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.contact-info-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--light);
  flex-shrink: 0;
}

.contact-info-content h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.contact-info-content p {
  color: var(--gray-700);
  font-size: 15px;
}

.contact-info-content a {
  color: var(--primary);
  font-weight: 600;
}

.contact-form {
  background: var(--light);
  border-radius: 20px;
  padding: 50px;
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  border: 2px solid var(--gray-200);
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

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

.form-error {
  color: #dc3545;
  font-size: 13px;
  margin-top: 5px;
  display: none;
}

.form-error.show {
  display: block;
}

.map-container {
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-md);
  margin-top: 40px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* About Page */
.about-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--light);
  text-align: center;
  padding: 150px 0 100px;
}

.about-hero h1 {
  color: var(--light);
  margin-bottom: 20px;
}

.about-hero p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

.about-content {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-grid.reverse {
  direction: rtl;
}

.about-grid.reverse > * {
  direction: ltr;
}

.about-text h2 {
  margin-bottom: 20px;
}

.about-text p {
  color: var(--gray-700);
  margin-bottom: 20px;
  line-height: 1.7;
}

.about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

.value-card {
  background: var(--gray-100);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  background: var(--light);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: var(--light);
  margin: 0 auto 25px;
}

.value-card h3 {
  margin-bottom: 15px;
  font-size: 22px;
}

.value-card p {
  color: var(--gray-700);
  font-size: 15px;
}

/* Course Pages */
.course-hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-light) 100%);
  color: var(--light);
  padding: 150px 0 100px;
}

.course-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.course-hero-text h1 {
  color: var(--light);
  margin-bottom: 20px;
}

.course-hero-text p {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
}

.course-meta {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.course-meta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
}

.course-meta-item i {
  font-size: 20px;
  color: var(--accent);
}

.course-price {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 30px;
}

.course-hero-visual {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 40px;
}

.course-highlights {
  list-style: none;
}

.course-highlights li {
  padding: 15px 0;
  padding-left: 35px;
  position: relative;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
}

.course-highlights li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 20px;
}

.course-section {
  padding: 80px 0;
}

.course-section:nth-child(even) {
  background: var(--gray-100);
}

.course-curriculum {
  max-width: 900px;
  margin: 0 auto;
}

.curriculum-item {
  background: var(--light);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.curriculum-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.curriculum-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
}

.curriculum-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light);
  font-weight: 700;
}

.curriculum-item h4 {
  flex: 1;
  margin-left: 20px;
  margin-bottom: 0;
}

.curriculum-duration {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--gray-700);
}

.curriculum-item p {
  color: var(--gray-700);
  font-size: 15px;
  margin-bottom: 0;
}

/* Article Pages */
.article-hero {
  background: var(--gray-100);
  padding: 150px 0 80px;
  text-align: center;
}

.article-meta {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 30px;
  font-size: 15px;
  color: var(--gray-700);
}

.article-meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px;
}

.article-image {
  border-radius: 20px;
  overflow: hidden;
  margin: 40px 0;
  box-shadow: var(--shadow-md);
}

.article-image img {
  width: 100%;
  height: auto;
  display: block;
}

.article-content h2 {
  margin-top: 50px;
  margin-bottom: 20px;
  color: var(--dark);
}

.article-content h3 {
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--dark);
}

.article-content p {
  color: var(--gray-700);
  margin-bottom: 20px;
  line-height: 1.8;
}

.article-content ul,
.article-content ol {
  margin-bottom: 25px;
  padding-left: 30px;
}

.article-content li {
  margin-bottom: 10px;
  color: var(--gray-700);
  line-height: 1.7;
}

.article-cta {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--light);
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  margin: 60px 0;
}

.article-cta h3 {
  color: var(--light);
  margin-bottom: 15px;
}

.article-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 25px;
}

/* Policy Pages */
.policy-hero {
  background: var(--gray-100);
  padding: 150px 0 80px;
  text-align: center;
}

.policy-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 20px;
}

.policy-content h2 {
  margin-top: 50px;
  margin-bottom: 20px;
  color: var(--dark);
}

.policy-content h3 {
  margin-top: 40px;
  margin-bottom: 15px;
  color: var(--dark);
}

.policy-content p {
  color: var(--gray-700);
  margin-bottom: 20px;
  line-height: 1.8;
}

.policy-content ul,
.policy-content ol {
  margin-bottom: 25px;
  padding-left: 30px;
}

.policy-content li {
  margin-bottom: 10px;
  color: var(--gray-700);
  line-height: 1.7;
}

.policy-section {
  background: var(--gray-100);
  padding: 30px;
  border-radius: 15px;
  margin: 30px 0;
  border-left: 5px solid var(--primary);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--light);
  padding: 25px;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

.cookie-text {
  flex: 1;
}

.cookie-text p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
}

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

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

.cookie-buttons .btn {
  padding: 12px 28px;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-content,
  .about-grid,
  .course-hero-content,
  .contact-content {
    grid-template-columns: 1fr;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 80px;
  }
  
  .timeline-item:nth-child(even) .timeline-content,
  .timeline-item:nth-child(even) .timeline-visual {
    order: initial;
  }
  
  .timeline-number {
    left: 30px;
  }
}

@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--light);
    flex-direction: column;
    padding: 100px 40px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    align-items: flex-start;
    gap: 30px;
  }
  
  .nav-links.active {
    right: 0;
  }
  
  .mobile-toggle {
    display: flex;
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
  
  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
  
  .fusion-grid {
    grid-template-columns: 1fr;
  }
  
  .formats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }
  
  .hero {
    min-height: auto;
    padding-top: 120px;
  }
  
  .hero-buttons {
    flex-direction: column;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .timeline-item {
    padding-left: 60px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons .btn {
    width: 100%;
  }
  
  .contact-hero,
  .about-hero,
  .course-hero,
  .article-hero,
  .policy-hero {
    padding: 120px 0 60px;
  }
  
  .contact-form {
    padding: 30px;
  }
}

@media (max-width: 576px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.5rem; }
  
  .btn {
    padding: 14px 28px;
    font-size: 15px;
  }
  
  .timeline::before {
    left: 20px;
  }
  
  .timeline-item {
    padding-left: 50px;
  }
  
  .timeline-number {
    left: 20px;
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .pricing-card {
    padding: 40px 30px;
  }
  
  .pricing-price {
    font-size: 42px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Loading Spinner */
.spinner {
  border: 3px solid var(--gray-200);
  border-top: 3px solid var(--primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

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




.navbar-brand img{
    max-width: 250px;
    width: 250px;
    object-fit: contain;
}

html{
    overflow-x: hidden;
}


footer .navbar-brand img{
    filter: brightness(0) invert(1);
}

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