/* Professional Kids Educational Sales Page - Enhanced with Icons and Proper Images */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary-blue: #0057a0;
  --primary-red: #c51300;
  --accent-orange: #ff4500;
  --success-green: #1c995b;
  --text-dark: #363636;
  --text-light: #454545;
  --bg-light: #f9fafb;
  --bg-cream: #fff9f4;
  --bg-blue-light: #e3f2f9;
  --bg-pink-light: #ffe0e9;
  --bg-yellow-light: #fffcd7;
  --highlight-yellow: #ffee7d;
  --shadow-light: 0px 0px 10px 1px rgba(0, 0, 0, 0.15);
  --shadow-medium: 0px 0px 8px 1px rgba(0, 0, 0, 0.35);
}

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

body {
  font-family: 'Open Sans', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: #ffffff;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Hero Section */
.hero-section {
  background: var(--bg-cream);
  padding: 50px 0;
  text-align: center;
}

.hero-badge {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--primary-blue);
  margin-bottom: 20px;
}

.hero-title {
  font-family: 'Open Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 5vw, 48px);
  color: var(--text-dark);
  margin-bottom: 25px;
  line-height: 1.2;
}

.hero-title .highlight-red {
  color: var(--primary-red);
}

.hero-title .highlight-blue {
  color: var(--primary-blue);
}

.hero-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: clamp(24px, 3vw, 36px);
  color: #7e0000;
  line-height: 1.3;
  margin-bottom: 30px;
}

.hero-subtitle .highlight-bg {
  background: var(--highlight-yellow);
  padding: 0 15px;
}

.hero-image {
  margin: 25px 0;
}

.hero-image img {
  max-width: 100%;
  height: auto;
}

/* CTA Buttons */
.cta-button {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent-orange), #ff6b35);
  color: white;
  padding: 15px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-light);
  border: none;
  cursor: pointer;
  margin: 10px;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  color: white;
  text-decoration: none;
}

/* Buy Button Image */
.buy-button-image {
  display: inline-block;
  margin: 20px 0;
  transition: transform 0.3s ease;
}

.buy-button-image:hover {
  transform: scale(1.05);
}

.buy-button-image img {
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: var(--shadow-light);
}

/* Section Styles */
.section {
  padding: 50px 0;
}

.section-alt {
  background: var(--bg-blue-light);
}

.section-pink {
  background: var(--bg-pink-light);
}

.section-yellow {
  background: var(--bg-yellow-light);
}

.section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 38px);
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 30px;
}

.section-title.red {
  color: #9c0000;
}

.section-title.blue {
  color: var(--primary-blue);
}

.section-subtitle {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 30px;
}

/* Content Sections */
.content-text {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.8;
  padding: 0 25px;
  margin-bottom: 25px;
  text-align: justify;
}

.content-text.center {
  text-align: center;
}

/* Icon Features */
.icon-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.icon-feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 25px;
  background: white;
  border-radius: 12px;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease;
}

.icon-feature:hover {
  transform: translateY(-5px);
}

.feature-icon {
  font-size: 40px;
  color: var(--success-green);
  flex-shrink: 0;
  margin-top: 5px;
}

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

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

.feature-icon.orange {
  color: var(--accent-orange);
}

.feature-text {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
}

.feature-text strong {
  color: var(--primary-blue);
  font-weight: 600;
}

/* Special Features Section */
.special-features {
  padding: 50px 0;
}

.special-feature-item {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-bottom: 40px;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: var(--shadow-light);
}

.special-icon {
  font-size: 60px;
  flex-shrink: 0;
}

.special-icon.pink { color: #fb2e80; }
.special-icon.yellow { color: #d5af00; }
.special-icon.green { color: #377401; }
.special-icon.purple { color: #ab218e; }
.special-icon.blue { color: #4c52a3; }
.special-icon.orange { color: #da4f36; }
.special-icon.cyan { color: #009cd7; }
.special-icon.forest { color: #348056; }

.special-text {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.8;
}

.special-text strong {
  color: var(--primary-blue);
  font-weight: 600;
}

/* Card Styles */
.card {
  background: white;
  box-shadow: var(--shadow-light);
  border-radius: 12px;
  padding: 40px;
  margin: 30px 0;
  border: 1px solid #e5e7eb;
}

.card.highlight {
  border: 4px dashed var(--primary-red);
  background: #fafafa;
}

.card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: var(--primary-blue);
  text-align: center;
  margin-bottom: 20px;
}

.card-text {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.8;
  text-align: justify;
}

/* Pricing Section */
.pricing-section {
  background: var(--bg-light);
  padding: 60px 0;
}

.pricing-card {
  background: white;
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-medium);
  border: 2px solid var(--primary-blue);
  max-width: 500px;
  margin: 0 auto;
}

.pricing-badge {
  background: linear-gradient(135deg, var(--primary-blue), #0041d5);
  color: white;
  padding: 10px 25px;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 20px;
  display: inline-block;
}

.price {
  font-family: 'Poppins', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 10px;
}

.price-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 30px;
}

/* Benefits List */
.benefits-list {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 16px;
}

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

.check-icon {
  color: var(--success-green);
  font-size: 20px;
  flex-shrink: 0;
}

/* Guarantee Section */
.guarantee-section {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  margin: 40px 0;
  border: 3px solid var(--accent-orange);
}

.guarantee-image {
  margin: 0 auto 20px;
  width: 230px;
  height: 230px;
}

.guarantee-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.guarantee-title {
  font-family: 'Poppins', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.guarantee-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  color: var(--text-dark);
  line-height: 1.8;
}

/* Demo Section */
.demo-section {
  background: linear-gradient(135deg, #1f2937, #374151);
  color: white;
  padding: 60px 0;
  text-align: center;
}

.demo-placeholder {
  /*background: rgba(255, 255, 255, 0.1);*/
  background: #fff;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 40px;
  margin: 30px 0;
}

/* Footer */
.footer {
  background: var(--text-dark);
  color: white;
  padding: 60px 0 40px;
  text-align: center;
}

.footer-text {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #c2c0bb;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  color: #c2c0bb;
  font-size: 16px;
  font-weight: 600;
}

/* Sticky Popup */
.sticky-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-red);
  color: white;
  padding: 15px 220px;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.popup-text {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 18px;
}

.popup-price {
  font-size: 36px;
  font-weight: 800;
}

.popup-cta {
  background: #ffee00;
  color: black;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
}

.popup-cta:hover {
  background: #fff200;
  color: black;
  text-decoration: none;
}

.popup-close {
  background: none;
  border: none;
  color: white;
  font-size: 24px;
  cursor: pointer;
  padding: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-section {
    padding: 30px 0;
  }
  
  .section {
    padding: 30px 0;
  }
  
  .icon-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .special-feature-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .card {
    padding: 25px;
  }
  
  .pricing-card {
    padding: 30px 20px;
  }
  
  .footer-links {
    flex-direction: column;
    gap: 15px;
  }
  
  .sticky-popup {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .content-text {
    font-size: 16px;
    padding: 0 15px;
  }
  
  .buy-button-image img {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 28px;
  }
  
  .hero-subtitle {
    font-size: 20px;
  }
  
  .section-title {
    font-size: 24px;
  }
  
  .content-text {
    font-size: 16px;
  }
  
  .special-icon {
    font-size: 40px;
  }
  
  .buy-button-image img {
    max-width: 250px;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-justify { text-align: justify; }
.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.font-bold { font-weight: 700; }
.font-semibold { font-weight: 600; }

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

.animate-fade-in {
  animation: fadeInUp 0.6s ease-out;
}

