:root {
  --theme-color1: #191e24;
  --theme-color2: #00c7c4;
  --theme-color3: #7054e6;
  --theme-color4: #f89321;
  --theme-color5: #ef5c72;
  --bg-theme-color1: var(--theme-color1);
  --bg-theme-color2: var(--theme-color2);
  --bg-theme-color3: var(--theme-color3);
  --bg-theme-color4: var(--theme-color4);
  --bg-theme-color5: var(--theme-color5);
  --headings-color: var(--theme-color1);
  --text-font: "DM Sans", sans-serif;
  --title-font: "DM Sans", sans-serif;
  --container-width: 1200px;
  --thumb-size: 24px;
}

/* =============================================
   ALAPÉRTELMEZETT STÍLUSOK
============================================= */
html {
  scroll-behavior: smooth;
}

body {
  padding-top: 70px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
    sans-serif;
}

h1 {
  font-family: "DM Sans", sans-serif;
  font-weight: bold;
  font-size: calc(2.2rem + 3vw);
  color: var(--headings-color);
}

h2 {
  font-size: calc(2rem + 0.9vw);
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
}

a {
  color: #6d8de1;
}

p {
  margin: 0 0 10px;
}

/* =============================================
   NAVIGÁCIÓS SÁV
============================================= */
.custom-navbar {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(230, 230, 230, 0.8);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
  align-items: center;
  color: #000 !important;
  display: inline-flex;
  font-weight: 700;
  font-size: 1.15rem;
  gap: 0.5rem;
}

.navbar-brand:hover,
.navbar-brand:focus,
.navbar-brand:active,
.navbar-brand:visited,
.navbar-brand span {
  color: #000 !important;
}

.navbar-brand-logo {
  height: 40px;
  width: auto;
}

.navbar-contact {
  font-size: 0.85rem;
}

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

.navbar-contact a:hover {
  color: #673ab7;
}

/* =============================================
   HERO SECTION
============================================= */
#hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.modern-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #e9eff5;
  overflow: hidden;
  z-index: -1;
}

.modern-background::before,
.modern-background::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  z-index: -1;
}

.modern-background::before {
  background: linear-gradient(
    165deg,
    transparent 49.8%,
    rgba(255, 255, 255, 0.5) 50%,
    transparent 50.2%
  );
  transform: translateY(-20%) rotate(10deg);
}

.modern-background::after {
  background: linear-gradient(
    85deg,
    transparent 49.8%,
    rgba(255, 255, 255, 0.3) 50%,
    transparent 50.2%
  );
  transform: translateY(15%) rotate(-30deg);
}

.floating-logos {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: none;
}

.logo-box {
  position: absolute;
  border-radius: 8px;
  opacity: 0.65;
  object-fit: contain;
}

.logo-box.logo-1 {
  top: 8%;
  left: 3%;
  width: 70px;
  transform: rotate(-12deg);
}

.logo-box.logo-2 {
  top: 15%;
  left: 28%;
  width: 75px;
  transform: rotate(8deg);
}

.logo-box.logo-3 {
  top: 10%;
  right: 28%;
  width: 65px;
  transform: rotate(-18deg);
  opacity: 0.55;
}

.logo-box.logo-4 {
  top: 8%;
  right: 3%;
  width: 60px;
  transform: rotate(22deg);
}

.logo-box.logo-5 {
  top: 48%;
  left: 5%;
  width: 80px;
  transform: rotate(-8deg);
  opacity: 0.5;
}

.logo-box.logo-6 {
  top: 42%;
  left: 32%;
  width: 65px;
  transform: rotate(14deg);
}

.logo-box.logo-7 {
  top: 50%;
  right: 30%;
  width: 55px;
  transform: rotate(-6deg);
  opacity: 0.5;
}

.logo-box.logo-8 {
  top: 45%;
  right: 5%;
  width: 70px;
  transform: rotate(18deg);
}

.logo-box.logo-9 {
  top: 80%;
  left: 8%;
  width: 65px;
  transform: rotate(-20deg);
  opacity: 0.55;
}

.logo-box.logo-10 {
  top: 75%;
  left: 22%;
  width: 80px;
  transform: rotate(10deg);
  opacity: 0.5;
}

.logo-box.logo-11 {
  top: 82%;
  right: 22%;
  width: 60px;
  transform: rotate(-14deg);
  opacity: 0.55;
}

.logo-box.logo-12 {
  top: 78%;
  right: 5%;
  width: 75px;
  transform: rotate(16deg);
}

.character-chat-container {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  position: relative;
  height: calc(100vh - 70px);
  padding-top: 5vh;
}

.character-wrapper {
  flex: 0 0 30%;
  max-width: 30%;
  display: flex;
  justify-content: center;
  margin-top: 15vh;
}

.character-image {
  position: relative;
  display: inline-block;
}

.character-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.character-name {
  position: absolute;
  bottom: 8%;
  right: -20%;
  z-index: 10;
  opacity: 0.9;
}

.character-name span {
  display: inline-block;
  background-color: white;
  color: black;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  font-weight: 500;
  white-space: nowrap;
}

.speech-bubble-area {
  position: relative;
  display: flex;
  justify-content: flex-end;
  width: 45%;
}

.speech-bubble {
  background: #ffffff;
  border-radius: 1rem;
  padding: 2rem;
  width: 100%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.speech-bubble h1 {
  font-size: 2.2vw;
  line-height: 1.3;
  font-weight: 400;
  text-align: center;
  margin: 0.1em 0;
}

.speech-bubble p {
  font-size: 2.2vw;
  line-height: 1.3;
  font-weight: 400;
  text-align: center;
  margin: 10px 0 0.1em;
}

.bubble-tail {
  position: absolute;
  top: 15vh;
  right: -2rem;
  width: 80px;
  height: 80px;
  transform: rotate(-35deg);
}

.bubble-tail .dot {
  position: absolute;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.bubble-tail .dot:nth-child(1) {
  width: 40px;
  height: 40px;
  top: 0;
  left: 0;
}

.bubble-tail .dot:nth-child(2) {
  width: 25px;
  height: 25px;
  top: 35px;
  left: 35px;
}

.bubble-tail .dot:nth-child(3) {
  width: 12px;
  height: 12px;
  top: 55px;
  left: 55px;
}

.scroll-down-icon {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-down-icon svg {
  width: 35px;
  height: 35px;
  fill: #343a40;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-20px);
  }
  60% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* =============================================
   ABOUT ME SECTION
============================================= */
#about-me-section {
  padding: 5rem 0;
  background: #fff;
}

#about-me-section h2 {
  font-weight: 700;
  color: #343a40;
  margin-bottom: 1.5rem;
}

#about-me-section p {
  color: #292a2b;
  line-height: 1.7;
  margin-bottom: 2rem;
}

#about-me-section ul {
  list-style: none;
  padding-left: 0;
}

#about-me-section ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  color: #495057;
}

#about-me-section ul li .bi {
  color: #673ab7;
  margin-right: 0.75rem;
  margin-top: 0.2rem;
  font-size: 1.5rem;
}

#about-me-section ul li span {
  flex: 1;
}

#about-me-section .carousel-item img {
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

#about-me-section .fst-italic {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: #f8f9fa;
  border-left: 4px solid #673ab7;
  border-radius: 0.5rem;
}

/* =============================================
   EXAM SECTION
============================================= */
#exam-section {
  background-color: #fff;
  padding: 0;
}

.exam-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 5rem 0;
  color: white;
  position: relative;
  overflow: hidden;
}

.exam-hero::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.exam-hero::after {
  content: "";
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.exam-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(10px);
  position: relative;
  z-index: 1;
}

.exam-badge i {
  font-size: 1.2rem;
}

.exam-title {
  color: white;
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  position: relative;
  z-index: 1;
}

.exam-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: rgba(255, 255, 255, 0.95);
  position: relative;
  z-index: 1;
}

.exam-lead strong {
  color: white;
  font-weight: 700;
}

.exam-stat-box {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.exam-stat {
  background: rgba(255, 255, 255, 0.15);
  padding: 1.5rem;
  border-radius: 1rem;
  backdrop-filter: blur(10px);
  flex: 1;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.exam-subjects {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  z-index: 1;
}

.subject-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.subject-card:hover {
  transform: translateX(10px);
  background: white;
}

.subject-card img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  flex-shrink: 0;
}

.exam-tovi-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
  position: relative;
  z-index: 1;
  margin-top: 1rem;
}

.exam-tovi-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 1rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  grid-column: span 2;
  overflow: hidden;
}

.exam-tovi-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.exam-tovi-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.exam-tovi-image {
  display: flex;
  align-items: end;
  justify-content: center;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  padding: 0.6rem 0.6rem 0;
}

.exam-tovi-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.6rem;
}

.exam-tovi-content {
  padding: 0.65rem 0.75rem 0.8rem;
  text-align: center;
}

.exam-tovi-content h3 {
  color: #343a40;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.exam-tovi-content p {
  color: #6c757d;
  font-size: 0.84rem;
  line-height: 1.3;
  margin: 0;
}

.subject-card h4 {
  margin: 0 0 0.25rem 0;
  font-weight: 700;
  color: #343a40;
  font-size: 1.2rem;
}

.subject-card p {
  margin: 0;
  color: #6c757d;
  font-size: 0.95rem;
}

#interactive-prep-section {
  padding: 5rem 0;
  background: #f1f4f8;
}

.interactive-prep-title {
  color: #343a40;
  font-weight: 800;
  margin: 0;
}

.interactive-prep-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 980px;
  margin: 0 auto;
}

.interactive-prep-card {
  display: grid;
  grid-template-columns: minmax(180px, 260px) 1fr;
  align-items: center;
  gap: 1.5rem;
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.interactive-prep-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 0.75rem;
  background: #ffffff;
}

.interactive-prep-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interactive-prep-content h3 {
  color: #343a40;
  font-size: 1.45rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.interactive-prep-content p {
  color: #495057;
  font-size: 1.05rem;
  line-height: 1.7;
  margin: 0;
}

#exam-importance-section {
  padding: 3.5rem 0;
  background: #f28c28;
}

.exam-importance-title {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
}

.exam-importance-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 1080px;
  margin: 0 auto;
}

.exam-importance-item {
  text-align: center;
  padding: 0.5rem 1rem;
}

.exam-importance-icon {
  color: #ffffff;
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 1rem;
}

.exam-importance-item h3 {
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.6rem;
}

.exam-importance-item p {
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
}

@media (min-width: 992px) and (max-height: 820px) {
  #exam-section .exam-hero {
    padding-top: 3rem;
  }

  #exam-section .mb-5 {
    margin-bottom: 2rem !important;
  }

  #exam-section .exam-title {
    font-size: 2.4rem;
    margin-bottom: 0.75rem;
  }

  #exam-section .exam-badge {
    margin-bottom: 0.75rem;
  }

  .exam-tovi-content {
    padding: 0.55rem 0.7rem 0.7rem;
  }

  .exam-tovi-content h3 {
    font-size: 0.95rem;
  }

  .exam-tovi-content p {
    font-size: 0.8rem;
    line-height: 1.25;
  }
}

/* =============================================
   COLOR SECTIONS
============================================= */
.color-section {
  min-height: 100vh;
  background-color: #7054e6;
  position: relative;
  padding: 120px 0 0px;
}

.color-section-title-box {
  border-bottom: solid;
  border-color: white;
  border-top: solid;
  border-color: white;
  position: relative;
  margin-bottom: 50px;
}

.auto-container {
  position: static;
  max-width: var(--container-width);
  padding: 25px 15px;
  margin: 0 auto;
  width: 100%;
}

.color-section h2 {
  color: white;
  text-align: center;
}

.color-section li {
  color: white;
  font-size: 24px;
  margin-bottom: 25px;
}

.action-text {
  background: #ffffff;
  color: #000000;
  font-size: calc(1.325rem + 0.9vw);
  padding: 1.5rem;
  border-radius: 1rem;
  text-align: center;
}

#szv-online-prep-section {
  padding: 5rem 0;
  background-color: #ffffff;
}

#szv-online-prep-section .section-title {
  color: #343a40;
  font-weight: 800;
  margin-bottom: 1rem;
}

.szv-online-prep-highlight {
  background-color: #f0f0f0;
  border-radius: 1rem;
  margin-bottom: 3rem;
  padding: 1.5rem;
  text-align: center;
}

.szv-online-prep-highlight p {
  color: #343a40;
}

.szv-online-prep-card {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  margin-bottom: 1.5rem;
  padding: 1.5rem;
}

.szv-online-prep-icon {
  color: #673ab7;
  font-size: 2.5rem;
  line-height: 1;
  min-width: 3rem;
}

.szv-online-prep-card h3 {
  color: #343a40;
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}

.szv-online-prep-card p {
  color: #495057;
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 0;
}

.szv-practice-image {
  border: 4px solid #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  display: block;
  height: auto;
  margin: 20px auto;
  max-width: 80%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 80%;
}

.szv-practice-image:hover {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.szv-python-image {
  margin-bottom: 30px;
  transform: rotate(-8deg);
}

.szv-python-image:hover {
  transform: rotate(-8deg) scale(1.05);
}

.szv-access-image {
  transform: rotate(5deg);
}

.szv-access-image:hover {
  transform: rotate(5deg) scale(1.05);
}

.color-section-big {
  text-align: center;
  color: white;
  font-size: 36px;
}

#contain-section {
  background-color: #7054e6;
  padding-top: 20px;
  padding-bottom: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-image: url(/assets/ia/img/pattern-1.png);
}

.vertical-line-right {
  border-bottom: 1px dotted white;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .vertical-line-right {
    border-right: 1px solid white;
    border-bottom: none !important;
  }
}

.contain-icon {
  color: white;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
  font-size: 62px;
}

.contain-text {
  display: block;
  text-align: center;
  color: white;
  font-size: 32px;
}

#bg-blue {
  background-color: #6d8de1;
  padding-bottom: 30px;
}

#bg-red {
  background-color: #f05a5a;
}

#bg-lightblue {
  background-color: #41c2fa;
}

#bg-bluegreen {
  background-color: #00c7c4;
}

.color-section-title-caption {
  color: white;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
}

.gotopackagesbtn {
  margin: 60px auto 0;
  display: block;
  text-align: center;
  width: 160px;
}

/* =============================================
   QUIZ SECTION
============================================= */
#quiz-section {
  margin: 50px 0;
}

#quiz-section svg {
  position: absolute;
  left: 0;
  top: 7px;
  color: var(--theme-color2);
  font-size: 18px;
  line-height: 26px;
}

#quiz-section li {
  position: relative;
  padding-left: 27px;
  font-size: 18px;
  line-height: 26px;
  font-weight: 500;
  margin-bottom: 25px;
}

/* =============================================
   SUBJECTS SECTION
============================================= */
.subject-image-box {
  background-image: url("/assets/ia/img/background-icons-grey.webp");
  background-size: cover;
  text-align: center;
  margin: initial;
}

#subjects-section p {
  font-size: 20px;
  margin-bottom: 30px;
}

#subjects-section div {
  align-self: center;
}

#subjects-section .container {
  align-items: stretch;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.subjects-section-title {
  color: #343a40;
  font-weight: 800;
  grid-column: 1 / -1;
  margin-bottom: 1rem;
  text-align: center;
}

#subjects-section .row {
  align-content: start;
  align-self: stretch !important;
  align-items: start !important;
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0 !important;
  overflow: hidden;
  padding: 0;
}

#subjects-section .row > [class*="col-"] {
  flex: 0 0 auto;
  max-width: 100%;
  order: initial !important;
  padding: 1.5rem !important;
  width: 100%;
}

#subjects-section .row > .text-center {
  margin-bottom: 0;
  padding-bottom: 0 !important;
}

.subjects-section-icon {
  font-size: 5rem;
  line-height: 1;
}

.subjects-section-icon-quiz {
  color: #673ab7;
}

.subjects-section-icon-computer {
  color: #008c95;
}

.subjects-section-icon-presentation {
  color: #f28c28;
}

#subjects-section h3 {
  color: #343a40;
  font-size: 1.35rem;
  text-align: center;
}

.subject-help {
  align-self: stretch !important;
  align-content: flex-start;
  color: #fff;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.65rem;
  justify-content: flex-start !important;
  margin-top: auto;
  box-sizing: border-box;
  min-height: 220px;
  padding: 1.25rem 1.5rem 1.5rem;
  width: 100%;
}

.subject-help-label {
  display: block;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.subject-help p {
  color: inherit;
  font-size: 20px !important;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 !important;
  text-align: center;
}

.subject-help-quiz {
  background-color: #673ab7;
}

.subject-help-computer {
  background-color: #008c95;
}

.subject-help-presentation {
  background-color: #f28c28;
}

/* =============================================
   WHY SECTION (CATEGORIES)
============================================= */
.why-section {
  background-color: #f1f7f7;
}

.why-section .title {
  font-weight: 600;
}

.category-block-current {
  position: relative;
  margin-bottom: 50px;
}

.category-block-current .inner-box {
  position: relative;
  text-align: center;
  max-width: 160px;
  margin: 0 auto;
}

.category-block-current .inner-box:hover .icon {
  transform: scale(-1) rotate(180deg);
  color: #ffffff !important;
  background-color: var(--bg-theme-color2);
}

.category-block-current .icon-box {
  position: relative;
  height: 170px;
  width: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border: 2px dashed var(--border-theme-color2);
  border-radius: 50%;
  margin-bottom: 20px;
}

.category-block-current .icon-box .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  width: 130px;
  background-color: #ffffff;
  font-size: 64px;
  line-height: 1em;
  border-radius: 50%;
  color: var(--theme-color2);
  transition: all 300ms ease;
}

.category-block-current .title {
  margin-bottom: 0;
}

.category-block-current .title:hover {
  color: var(--theme-color2);
}

.category-block-current:nth-child(6n + 2) .inner-box .icon-box {
  border-color: #ef5c72;
}

.category-block-current:nth-child(6n + 2) .inner-box .icon {
  color: #ef5c72;
}

.category-block-current:nth-child(6n + 2) .inner-box:hover .icon {
  background-color: #ef5c72;
}

.category-block-current:nth-child(6n + 3) .inner-box .icon-box {
  border-color: #f8b81f;
}

.category-block-current:nth-child(6n + 3) .inner-box .icon {
  color: #f8b81f;
}

.category-block-current:nth-child(6n + 3) .inner-box:hover .icon {
  background-color: #f8b81f;
}

.category-block-current:nth-child(6n + 4) .inner-box .icon-box {
  border-color: #22d17e;
}

.category-block-current:nth-child(6n + 4) .inner-box .icon {
  color: #22d17e;
}

.category-block-current:nth-child(6n + 4) .inner-box:hover .icon {
  background-color: #22d17e;
}

.category-block-current:nth-child(6n + 5) .inner-box .icon-box {
  border-color: #8e56ff;
}

.category-block-current:nth-child(6n + 5) .inner-box .icon {
  color: #8e56ff;
}

.category-block-current:nth-child(6n + 5) .inner-box:hover .icon {
  background-color: #8e56ff;
}

.category-block-current:nth-child(6n + 6) .inner-box .icon-box {
  border-color: #41c2fa;
}

.category-block-current:nth-child(6n + 6) .inner-box .icon {
  color: #41c2fa;
}

.category-block-current:nth-child(6n + 6) .inner-box:hover .icon {
  background-color: #41c2fa;
}

/* =============================================
   TOPICS OVERVIEW SECTION
============================================= */
#topics-overview-section {
  background: radial-gradient(circle at center, #5c7abc, #3b5998);
  padding: 60px 0;
}

.topic-card {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.topic-card:hover {
  transform: translateY(-5px);
}

/* =============================================
   EXTRA SERVICES SECTION
============================================= */
#extra-services-section {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.service-slider-wrapper {
  position: relative;
}

.service-slider-container {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-bottom: 20px;
  margin: 0 -10px;
}

.service-slider-container::-webkit-scrollbar {
  display: none;
}

.service-slider-grid {
  display: flex;
  gap: 0;
  padding: 0 10px;
}

.service-slider-card {
  flex: 0 0 280px;
  padding: 0 10px;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
  position: relative;
}

.service-slider-card:hover {
  transform: scale(1.05);
  z-index: 10;
}

.extra-service-item {
  width: 100%;
  background-color: #ffffff;
  padding: 2.5rem 1.5rem;
  border-radius: 12px;
  text-align: center;
  cursor: pointer;
  border: 1px solid #e0e4e8;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  font-family: inherit;
  transition: none;
  box-shadow: none;
}

.extra-service-item .icon-wrapper {
  font-size: 3rem;
  color: #4a5aeb;
  margin-bottom: 1rem;
  line-height: 1;
}

.extra-service-item .service-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #344054;
  margin: 0;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background-color: #fff;
  color: #1a2b48;
  border: 1px solid #d6dbe0;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
  display: none;
}

.slider-btn:hover {
  background-color: #f8f9fa;
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev-btn {
  left: -15px;
}

.slider-btn.next-btn {
  right: -15px;
}

/* =============================================
   PACKAGES SECTION
============================================= */
#packages-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

#packages-section .section-title {
  font-weight: 700;
  color: #343a40;
  margin-bottom: 1rem;
}

.packages-grid {
  margin-top: 1rem;
}

.package-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.package-popular {
  border: 3px solid #673ab7;
  transform: scale(1.05);
}

.package-popular:hover {
  transform: scale(1.05) translateY(-8px);
}

.popular-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #673ab7 0%, #9575cd 100%);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(103, 58, 183, 0.3);
  white-space: nowrap;
}

.popular-badge i {
  margin-right: 0.3rem;
}

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

.package-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: #343a40;
  margin-bottom: 0.5rem;
}

.package-subtitle {
  color: #6c757d;
  font-size: 1rem;
  margin-bottom: 0;
  line-height: 1.5;
}

.package-price {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid #e9ecef;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: #673ab7;
  display: inline-block;
  line-height: 1;
}

.price-currency {
  font-size: 1.5rem;
  color: #6c757d;
  margin-left: 0.3rem;
}

.price-note {
  color: #6c757d;
  font-size: 0.95rem;
  font-style: italic;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.package-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.package-features li {
  padding: 0.75rem 0;
  color: #495057;
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
}

.package-features li i {
  color: #28a745;
  margin-right: 0.75rem;
  margin-top: 0.2rem;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.package-bonus {
  background: linear-gradient(135deg, #ffeaa7 0%, #fdcb6e 100%);
  color: #2d3436;
  padding: 1rem;
  border-radius: 0.75rem;
  text-align: center;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(253, 203, 110, 0.3);
}

.package-bonus i {
  margin-right: 0.5rem;
  color: #d63031;
}

.package-guarantee-badge {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  margin: auto 0 1rem;
  padding: 1rem;
  border: 2px solid #673ab7;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, #f6f1ff 0%, #ffffff 100%);
  color: #343a40;
  text-align: left;
  box-shadow: 0 6px 18px rgba(103, 58, 183, 0.14);
}

.package-guarantee-badge i {
  flex: 0 0 auto;
  color: #673ab7;
  font-size: 2rem;
  line-height: 1;
}

.package-guarantee-badge-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
}

.package-guarantee-badge-title {
  color: #673ab7;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.package-guarantee-badge-promise {
  color: #343a40;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.28;
}

.package-guarantee-badge-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.15rem;
  padding: 0.25rem 0.7rem;
  border: 1px solid #673ab7;
  border-radius: 999px;
  background: #ffffff;
  color: #673ab7;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
}

.package-guarantee-badge-details:hover {
  background: #673ab7;
  color: #ffffff;
}

.btn-package {
  background: linear-gradient(135deg, #673ab7 0%, #9575cd 100%);
  color: white;
  border: none;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(103, 58, 183, 0.3);
}

.btn-package:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(103, 58, 183, 0.4);
  background: linear-gradient(135deg, #5e35b1 0%, #7e57c2 100%);
  color: white;
}

.package-guarantee {
  text-align: center;
  color: #6c757d;
  font-size: 0.85rem;
  margin-top: 1rem;
  margin-bottom: 0;
}

.package-guarantee i {
  color: #28a745;
  margin-right: 0.3rem;
}

/* =============================================
   PRICE SLIDER
============================================= */
.price-slider-container {
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 1rem;
  padding: 2rem;
}

.price-slider-wrapper {
  position: relative;
  padding: 0 calc(var(--thumb-size) / 2);
  margin-top: 1.5rem;
  padding-bottom: 70px;
}

#price-slider {
  width: 100%;
  margin: 0;
  padding: 0;
}

.slider-labels {
  position: relative;
  width: 100%;
  height: 60px;
  margin-top: 5px;
}

.slider-labels .label {
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  text-align: center;
}

.slider-labels .label::before {
  display: none;
}

.slider-labels .label p {
  padding-top: 15px;
  font-size: 12px;
  color: #6c757d;
  font-weight: bold;
  white-space: nowrap;
  margin: 0;
}

.slider-labels .label:first-child {
  transform: translateX(0);
  text-align: left;
}

.slider-labels .label:last-child {
  transform: translateX(-100%);
  text-align: right;
}

.price-card {
  border: 2px solid #dee2e6;
  border-radius: 0.75rem;
  padding: 1rem;
  text-align: center;
  cursor: default;
  transition: all 0.3s ease;
  flex: 1;
  max-width: 200px;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 120px;
  background-color: #fff;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.price-card.active {
  border-color: #673ab7;
  background-color: #f3e5f5;
  border-width: 3px;
}

.price-card .package-title {
  font-weight: 700;
  margin-bottom: 0.5rem;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #343a40;
}

.price-card .package-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: #673ab7;
  margin-top: auto;
  border-bottom: none;
  padding-bottom: 0;
}

.price-card.active .package-price {
  color: #673ab7;
}

.price-card .card-check {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 1.5rem;
  color: #673ab7;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.price-card.active .card-check {
  opacity: 1;
}

/* =============================================
   AI FAQ SECTION
============================================= */
#ai-faq-section {
  padding: 5rem 0;
  background-color: #fff;
}

.ai-chat-title {
  font-weight: 700;
}

.ai-chat-window {
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 1rem;
  height: 400px;
  overflow-y: auto;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chat-message {
  display: flex;
  max-width: 80%;
}

.message-bubble {
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  line-height: 1.5;
}

.message-bubble p {
  margin-bottom: 0;
}

.user-message {
  align-self: flex-end;
}

.user-message .message-bubble {
  background-color: #007bff;
  color: white;
  border-top-right-radius: 0.25rem;
}

.ai-message {
  align-self: flex-start;
}

.ai-message .message-bubble {
  background-color: #e9ecef;
  color: #212529;
  border-top-left-radius: 0.25rem;
}

.typing-indicator .message-bubble {
  display: flex;
  align-items: center;
  gap: 5px;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  background-color: #adb5bd;
  border-radius: 50%;
  animation: typing 1s infinite;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.2s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.4s;
}

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

.ai-mascot-image {
  max-height: 500px;
  width: auto;
  object-fit: contain;
}

.btn-primary-custom {
  color: white;
  background-color: #673ab7;
  border-color: #673ab7;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary-custom:hover {
  background-color: #5e35b1;
  border-color: #5e35b1;
}

/* =============================================
   TOVISHOP SECTION
============================================= */
#tovishop {
  background-color: purple;
  padding: 3rem 0;
}

#tovishop h3 {
  color: white;
  margin-bottom: 2rem;
}

#tovishop p {
  color: white;
}

/* =============================================
   FAQ SECTION
============================================= */
#faq-section {
  padding: 5rem 0;
  background-color: #f8f9fa;
  margin-top: 50px;
}

#faq-section .section-title {
  font-weight: 700;
  color: #343a40;
  margin-bottom: 2rem;
}

#faq-section .accordion-item {
  background-color: #fff;
  border: none;
  border-radius: 0.75rem !important;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s ease;
  overflow: hidden;
}

#faq-section .accordion-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

#faq-section .accordion-header {
  border-radius: 0.75rem;
}

#faq-section .accordion-button {
  font-weight: 700;
  color: #343a40;
  background-color: #fff;
  border-radius: 0.75rem !important;
  box-shadow: none !important;
  padding: 1.25rem 1.5rem;
  font-size: 1.1rem;
}

#faq-section .accordion-button:not(.collapsed) {
  color: #673ab7;
  background-color: #f3e5f5;
}

#faq-section .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23343a40'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#faq-section .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23673ab7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

#faq-section .accordion-body {
  color: #495057;
  line-height: 1.7;
  padding: 1.5rem;
}

#faq-section .accordion-body p {
  margin-bottom: 1rem;
}

#faq-section .accordion-body p:last-child {
  margin-bottom: 0;
}

#faq-section .img-fluid {
  border-radius: 1rem;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

#faq-section .bg-light {
  background-color: #f8f9fa !important;
  border: 1px solid #e9ecef;
}

.accordion {
  --bs-accordion-border-color: none;
  --bs-accordion-bg: rgba(33, 37, 41, 0);
  --bs-accordion-btn-focus-box-shadow: rgba(0, 0, 0, 0);
}

.accordion-button {
  background-color: transparent !important;
  color: black;
}

.accordion-button:after {
  color: black !important;
}

/* =============================================
   FOOTER SECTION
============================================= */
footer {
  background-color: #191e24;
  padding-top: 25px;
}

#footer-section {
  background-color: #343a40;
  color: #adb5bd;
}

#footer-section .footer-title {
  color: #fff;
  font-weight: 700;
}

#footer-section .footer-description {
  color: #fff;
}

#footer-section .footer-link {
  color: #adb5bd;
  text-decoration: none;
  transition: color 0.3s ease;
}

#footer-section .footer-link:hover {
  color: #fff;
}

.footer-bottom {
  background-color: #212529;
}

footer h2 {
  color: white;
}

footer a,
footer a:hover,
footer a:link,
footer a:visited,
footer a:active {
  color: #d6cbcb;
  text-decoration: none;
  font-weight: normal;
}

footer li {
  margin-top: 10px;
}

footer ul {
  color: white;
}

/* =============================================
   RESPONSIVE
============================================= */
@media (min-width: 992px) {
  .floating-logos {
    display: block;
  }

  .slider-btn {
    display: block;
  }
}

@media (max-width: 1400px) {
  .price-slider-container {
    padding-bottom: 57px !important;
  }

  .price-slider-wrapper {
    padding-bottom: 120px;
  }

  .slider-labels .label::before {
    top: -13px;
  }

  .slider-labels .label p {
    position: absolute;
    top: 35px;
    left: -9px;
    transform-origin: center center;
    transform: translateX(-50%) rotate(-90deg);
    text-align: center;
  }
}

@media (max-width: 991.98px) {
  .exam-hero {
    padding: 3rem 0;
  }

  #subjects-section .container {
    grid-template-columns: 1fr;
  }

  .subject-help {
    min-height: 98px;
    padding: 1rem 1.25rem;
  }

  .exam-title {
    font-size: 2rem;
  }

  .exam-stat-box {
    gap: 1rem;
  }

  .subject-card {
    padding: 1.25rem;
  }

  .exam-tovi-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .exam-tovi-card,
  .exam-tovi-card:nth-child(4),
  .exam-tovi-card:nth-child(5) {
    grid-column: span 1;
  }

  .package-popular {
    transform: scale(1);
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .package-popular:hover {
    transform: translateY(-8px);
  }

  #faq-section .img-fluid {
    margin-top: 2rem;
  }
}

@media (max-width: 767.98px) {
  #interactive-prep-section {
    padding: 3.5rem 0;
  }

  .interactive-prep-card {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1rem;
  }

  .interactive-prep-content h3 {
    font-size: 1.2rem;
  }

  .interactive-prep-content p {
    font-size: 1rem;
  }

  #exam-importance-section {
    padding: 3rem 0;
  }

  .exam-importance-title {
    font-size: 1.55rem;
  }

  .exam-importance-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .exam-importance-icon {
    font-size: 3rem;
  }

  #szv-online-prep-section {
    padding: 3.5rem 0;
  }

  .szv-online-prep-highlight {
    padding: 1rem;
  }

  .szv-online-prep-highlight .fs-1 {
    font-size: 2rem !important;
  }

  .szv-online-prep-highlight .fs-2 {
    font-size: 1.6rem !important;
  }

  .szv-online-prep-card {
    padding: 1.2rem;
  }

  .szv-practice-image {
    max-width: 90%;
    width: 90%;
  }

  .szv-python-image {
    margin-bottom: 25px;
    transform: rotate(-5deg);
  }

  .szv-python-image:hover {
    transform: rotate(-5deg) scale(1.05);
  }

  .szv-access-image {
    transform: rotate(3deg);
  }

  .szv-access-image:hover {
    transform: rotate(3deg) scale(1.05);
  }

  .packages-grid {
    row-gap: 2rem;
  }

  .character-chat-container {
    flex-direction: column;
    justify-content: center;
    padding-top: 0;
    height: auto;
    min-height: calc(100vh - 70px);
  }

  .character-wrapper {
    flex-basis: auto;
    width: 100%;
    max-width: none;
    order: 2;
    margin-top: 1.5rem;
    display: block;
    text-align: center;
  }

  .character-image img {
    width: 70%;
  }

  .speech-bubble-area {
    order: 1;
    width: 90%;
    margin: 2rem auto 1rem;
    justify-content: center;
  }

  .speech-bubble {
    width: 100%;
    padding: 1.5rem;
  }

  .speech-bubble h1,
  .speech-bubble p {
    font-size: 5vw;
  }

  .bubble-tail {
    top: auto;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%) rotate(0deg);
  }

  .character-name span {
    font-size: 10px;
    padding: 3px 6px;
  }

  .character-name {
    bottom: 10%;
    right: 8%;
  }

  .exam-stat-box {
    flex-direction: column;
  }

  .exam-title {
    font-size: 1.75rem;
  }

  .exam-lead {
    font-size: 1rem;
  }

  .subject-card img {
    width: 50px;
    height: 50px;
  }

  .subject-card h4 {
    font-size: 1.1rem;
  }

  .exam-tovi-strip {
    grid-template-columns: 1fr;
  }

  .exam-tovi-card,
  .exam-tovi-card:nth-child(4),
  .exam-tovi-card:nth-child(5) {
    grid-column: span 1;
  }

  .package-card {
    padding: 2rem 1.5rem;
  }

  .package-name {
    font-size: 1.5rem;
  }

  .price-amount {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .price-card {
    max-width: 150px;
    padding: 0.75rem;
  }

  .price-card .package-title {
    font-size: 0.9rem;
  }

  .price-card .package-price {
    font-size: 1.2rem;
  }
}

.animated {
  visibility: visible;
  animation-delay: 600ms;
}

.caption {
  text-align: center;
  color: white;
  font-size: 25px;
}
.carousel-dark .carousel-indicators [data-bs-target] {
    filter: invert(1) grayscale(100);
}
#order-section .payer-btn {
    transition: all 0.3s ease;
    font-weight: 600;
}

#order-section .payer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#order-section .payer-btn.active {
    transform: scale(1.05);
}

#order-section .form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

#order-section .card {
    border: none;
}

#order-section .alert {
    border-left: 4px solid;
}

#order-section .alert-info {
    border-left-color: #0dcaf0;
}

#order-section .alert-danger {
    border-left-color: #dc3545;
}

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

/* Custom primary color */
.btn-primary {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.btn-primary:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
}

.text-primary {
    color: #0d6efd !important;
}
/* =============================================
   MEGRENDELÉSI OLDAL
============================================= */
#order-section .payer-btn {
    transition: all 0.3s ease;
    font-weight: 600;
}

#order-section .payer-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

#order-section .payer-btn.active {
    transform: scale(1.05);
}

#order-section .form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

#order-section .card {
    border: 2px solid #0d6efd !important;
}

#order-section .alert {
    border-left: 4px solid;
}

#order-section .alert-info {
    border-left-color: #0dcaf0;
}

#order-section .alert-danger {
    border-left-color: #dc3545;
}

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

/* Custom primary color */
.btn-primary-custom {
    background-color: #0d6efd;
    border-color: #0d6efd;
    color: white;
    font-weight: 700;
    padding: 0.75rem 1.5rem;
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #0b5ed7;
    border-color: #0a58ca;
    color: white;
}

.text-primary {
    color: #0d6efd !important;
}

.border-primary {
    border-color: #0d6efd !important;
}
.details-link {
    color: #495057 !important;
    text-decoration: underline !important;
    font-weight: 600 !important;
    cursor: pointer;
    font-size: inherit;
}

.installment-box {
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 0.75rem;
  padding: 0.9rem;
  margin-bottom: 0.75rem;
}

.installment-box-title {
  font-weight: 700;
  color: #673ab7;
}

.installment-label {
  color: #6c757d;
  font-size: 0.85rem;
  font-weight: 600;
}

.installment-divider {
  margin: 0.6rem 0;
}
