/* ============================= */
/* SMART SECTION (KIDS UI) */
/* ============================= */

.smart-section {
  padding: 80px 20px;
  /*background: linear-gradient(135deg, var(--soft-bg), #ffffff);*/
  position: relative;
  overflow: hidden;
}

/* TITLE */
.main-title {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary-red);
  margin-bottom: 30px;
}

/* INTRO */
.smart-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: var(--text-dark);
}

.smart-intro p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 10px;
}

/* ============================= */
/* GRID LAYOUT */
/* ============================= */

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

/* FULL WIDTH CARD */
.full-width {
  grid-column: span 2;
}

/* ============================= */
/* CARD DESIGN */
/* ============================= */

.smart-card {
  position: relative;
  background: var(--white);
  padding: 25px;
  border-radius: 30px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.smart-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* ICON */
.card-icon {
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 28px;
  background: var(--white);
  padding: 8px 12px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* HEADINGS */
.smart-card h3 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 26px;
  color: var(--primary-blue);
}

/* TEXT */
.smart-card p {
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 6px;
}

/* ============================= */
/* COLOR THEMES (FUN KIDS STYLE) */
/* ============================= */

.play {
  background: linear-gradient(135deg, #fff8e1, #ffe5e5);
  border: 2px dashed var(--accent-yellow);
}

.pp1 {
  background: linear-gradient(135deg, #e3f2fd, #e6f7ff);
  border: 2px dashed var(--bs-blue);
}

.pp2 {
  background: linear-gradient(135deg, #ffe5e5, #fff0f3);
  border: 2px dashed var(--primary-red);
}

/* ============================= */
/* VIDEO SECTION */
/* ============================= */

.video-card {
  background: var(--white);
  padding: 10px;
  border-radius: 25px;
  border: 3px solid var(--mint);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: 0.3s;
}

.video-card:hover {
  transform: scale(1.03);
}

.video-card video {
  width: 100%;
  border-radius: 20px;
  display: block;
}

/* ============================= */
/* FUN DECORATIVE SHAPES */
/* ============================= */

.smart-section::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: var(--mint);
  border-radius: 50%;
  top: -60px;
  left: -60px;
  opacity: 0.3;
}

.smart-section::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  background: var(--accent-yellow);
  border-radius: 50%;
  bottom: -60px;
  right: -60px;
  opacity: 0.2;
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */

@media (max-width: 992px) {
  .smart-grid {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: span 1;
  }
}

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

  .smart-card {
    padding: 20px;
  }

  .card-icon {
    font-size: 22px;
    top: -15px;
  }

  .smart-intro p {
    font-size: 14px;
  }
}
