/* static/css/website/courses.css */

/* ================================================== */
/* ==               GOOGLE FONTS                   == */
/* ================================================== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

/* ================================================== */
/* ==             PAGE & SECTION DEFAULTS          == */
/* ================================================== */
:root {
  --light-background: linear-gradient(135deg, #f6ebe6 0%, #e2e9f1 100%);
  --dark-background: #111827;
  --background-color: var(
    --light-background
  ); /* Define default background for light mode */
}
body {
  width: 100%; /* Ensure body takes full width */
  margin: 0; /* Remove default body margin */
  padding: 0; /* Remove default body padding */
  overflow-x: hidden; /* Prevent horizontal scroll from animations */
  background: var(--background-color); /* Use the --background-color variable */
}
/* Dark mode styles */
html[data-theme="dark"] {
  --background-color: var(
    --dark-background
  ); /* Override background for dark mode */
}

section {
  margin-bottom: 4rem; /* Increased spacing between sections */
  padding: 0 1rem; /* Add horizontal padding to sections instead of body */
  background: none !important; /* Force all sections to have no background */
}

/* Add a new container for content that should be constrained in width */

.section-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-header .highlight-text {
  color: var(--secondary-color);
}

.section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
}

/* ================================================== */
/* ==               ABOUT US SECTION               == */
/* ================================================== */
.about-us {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  background: var(
    --card-bg
  ); /* Keep card background for this specific element */
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: var(--card-shadow);
  border: 1px solid var(--border-color);
  max-width: 1200px; /* Limit the width */
  margin: 0 auto; /* Center the block */
}
.about-us-text h1 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
}
.about-us-text h1 span {
  color: var(--secondary-color);
  font-weight: 600;
  font-size: 2rem;
}

.about-us-text p {
  font-size: 1.1rem;
  text-align: justify;
}

.about-us-image {
  background: var(--background-color);
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid var(--border-color);
}

.about-us-image h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

/* ================================================== */
/* ==             STATISTICS SECTION               == */
/* ================================================== */
.statistics {
  padding: 3rem 0;
  background: none !important; /* Force transparent background */
}

.statistics .container {
  /* Ensure this container exists in your HTML or add it */
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  align-items: center;
  padding: 2rem 1rem;
  border-radius: 15px;
  min-width: 290px;
  flex: 1;
  max-width: 320px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  background-color: var(--card-bg) !important; /* Keep individual stat card backgrounds */
  border: none !important; /* Remove any borders */
}

.service-img-icon {
  width: 50px;
  height: 50px;
  margin-right: 20px;
}

.stat-info h3 {
  margin: 0 0 4px 0;
  font-size: 15px;
  font-weight: 700;
}

.stat-info .stat-number {
  font-size: 34px;
  font-weight: 500;
  display: block;
  line-height: 1.1;
}

html[data-theme="dark"] .stat {
  background-color: var(--card-bg) !important;
  box-shadow: none !important;
  border: none !important;
}

/* ================================================== */
/* ==      INSTRUCTORS SECTION (DESIGN RESTORED)   == */
/* ================================================== */
.instructors-section {
  position: relative;
  padding: 1rem 1rem;
  text-align: center;
  border-radius: 1rem;
  background: none !important; /* Force transparent background */
}
.instructor-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start; /* Aligns cards to the top */
  gap: 1.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
/* Target the h2 specifically within the instructors-section */
.instructors-section h2 {
  font-weight: 300; /* Or 200, or 100, depending on your desired thinness and font support */
  /* You might also want to set the font-family explicitly here if it's not inherited */
  font-family: "Poppins", sans-serif;
  color: var(--primary-color);
}

/* Example: if you also want to adjust other text within the section */
.instructors-section p {
  font-weight: 400; /* Regular weight for paragraph text */
}
.profile-card {
  width: 280px;
  padding: 2rem 1.5rem;
  text-align: center;
  border-radius: 20px;
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  box-shadow: var(--card-shadow);
  transition: all 0.4s ease;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.profile-card:nth-child(1) {
  animation-delay: 0.1s;
}
.profile-card:nth-child(2) {
  animation-delay: 0.2s;
}
.profile-card:nth-child(3) {
  animation-delay: 0.3s;
}

.profile-card:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.profile-photo-wrapper {
  width: 100px;
  height: 100px;
  margin: -70px auto 15px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 4px solid var(--card-bg);
  transition: all 0.4s ease;
}
.profile-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.profile-card:hover .profile-photo-wrapper img {
  transform: scale(1.1);
}
.profile-name {
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
  color: var(--heading-color);
}
.profile-role {
  font-size: 0.85rem;
  font-weight: 400;
  margin-bottom: 15px;
  color: var(--text-muted);
}
.profile-description {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 15px;
  color: var(--text-color);
}
.profile-icons {
  display: flex;
  justify-content: center;
  gap: 25px;
}
.profile-icons a {
  font-size: 1.2rem;
  transition: all 0.4s ease;
  color: var(--text-muted);
}
.profile-icons a:hover {
  transform: translateY(-5px) scale(1.2);
  color: var(--primary-color);
}

/* ================================================== */
/* ==           DYNAMIC COURSES SECTION            == */
/* ================================================== */
.online-courses-section {
  font-family: "Poppins", sans-serif;
  padding: 2rem 0;
  background: none !important; /* Force transparent background */
}
.online-courses-section .container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.online-courses-section span {
  color: var(--secondary-color);
}
.online-courses-section h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  text-align: center;
}
/* Scoped styles for courses navigation */
.courses-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.courses-nav ul li a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
  transition: color 0.3s;
  cursor: pointer;
}

.courses-nav ul li a:hover,
.courses-nav ul li a.active {
  color: var(--primary-color);
}

.courses-nav ul li a.active::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--primary-color);
}
.content-pane {
  display: none;
  animation: fadeInUp 0.5s ease;
}
.content-pane.active {
  display: block;
}
.important-notes {
  background-color: var(--card-bg);
  border-radius: 10px;
  padding: 2rem;
  max-width: 800px;
  margin: 2rem auto 0;
  border: 1px solid var(--border-color);
}
.important-notes h4 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  /* MODIFIED: Added flex properties for icon alignment */
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
/* NEW: Style for the header icon */
.important-notes h4 i {
  color: var(--primary-color);
  font-size: 1.2em; /* Makes icon slightly larger than text */
}
.important-notes .note-item {
  margin-bottom: 1rem;
  /* MODIFIED: Added flex properties for icon alignment */
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
/* NEW: Style for the list item icons */
.important-notes .note-item i {
  color: var(--primary-color);
  margin-top: 0.2rem; /* Aligns icon better with the first line of text */
  flex-shrink: 0; /* Prevents icon from shrinking */
}

.course-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.course-card {
  background: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.course-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}
.course-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.course-card > p {
  flex-grow: 0;
  margin-bottom: 1rem;
}
.course-details {
  display: flex;
  justify-content: space-around;
  text-align: center;
  margin: 1rem 0;
  padding: 1rem 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  flex-grow: 1;
}
.detail-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.detail-item i {
  font-size: 1.75rem;
  color: var(--primary-color);
}
.detail-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.detail-item span strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-color);
  font-weight: 600;
}
.course-price {
  font-size: 1.2rem;
  font-weight: bold;
  color: var(--secondary-color);
  margin: 1rem 0;
  text-align: center;
}
.course-actions {
  margin-top: auto;
}
.apply-button {
  display: block;
  width: 100%;
  background: var(--primary-color);
  color: var(--text-on-primary);
  padding: 0.8rem 2rem;
  border: none;
  border-radius: 9999px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}
.apply-button:hover {
  background: var(--primary-color-darker);
  transform: scale(1.05);
}

/* ================================================== */
/* ==     COURSE APPLICATION FORM PAGE (NEW)       == */
/* ================================================== */
.apply-package-page {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 4rem 1rem;
  background: none !important; /* Force transparent background for the page */
  min-height: 100vh;
}

.apply-package-card {
  max-width: 600px;
  width: 100%;
  background: var(--card-bg) !important; /* Keep specific card background */
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-2xl);
  padding: 2rem 2.5rem;
  box-shadow: var(--card-shadow);
}
.animate-fade-in-up {
  animation: fadeInUp 0.6s ease-out forwards;
}
.apply-package-header {
  text-align: center;
  margin-bottom: 2rem;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}
.apply-package-header h1 {
  font-size: 1.75rem;
}
.apply-package-header p {
  color: var(--text-muted);
  margin-bottom: 0;
}
.header-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--tag-english-bg);
  color: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--card-bg);
  box-shadow: 0 0 0 1px var(--border-color);
}
.header-icon svg {
  width: 28px;
  height: 28px;
}

.package-details {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  background: var(--background-color);
}
.package-details p {
  margin-bottom: 0;
  max-width: none;
}
.package-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}
.info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
}
.info-item i {
  font-size: 1.75rem;
  color: var(--primary-color);
}
.info-item span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.info-item span strong {
  display: block;
  font-size: 1.1rem;
  color: var(--text-color);
  font-weight: 600;
}

.notes-section {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--border-color);
  background: var(--background-color);
}
.notes-section p {
  margin-bottom: 0.5rem;
  max-width: none;
}
.notes-section h4 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--heading-color);
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}
.input-with-icon {
  position: relative;
}
.input-with-icon .icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-md);
  background-color: var(--background-color);
  color: var(--text-color);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input {
  padding-left: 3rem;
}
.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px
    color-mix(in srgb, var(--primary-color) 20%, transparent);
}
input.form-input[readonly] {
  background-color: #e9ecef;
  cursor: not-allowed;
}
html[data-theme="dark"] input.form-input[readonly] {
  background-color: #2a3a5a;
}

.placement-test-choice {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.placement-test-choice input[type="checkbox"] {
  width: 1.15em;
  height: 1.15em;
  cursor: pointer;
}
.placement-test-choice label {
  font-weight: 500;
  cursor: pointer;
  margin: 0;
}

.submit-button {
  width: 100%;
  padding: 0.85rem 1.5rem;
  border: none;
  border-radius: var(--border-radius-md);
  background-color: var(--primary-color);
  color: var(--text-on-primary);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.submit-button:hover {
  background-color: var(--primary-color-darker);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.back-link {
  text-align: center;
  margin-top: 2rem;
}
.back-link a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.back-link a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

/* ================================================== */
/* ==        NEW TESTIMONIALS SECTION (REVISED)    == */
/* ================================================== */
.new-testimonial-section {
  padding: 60px 0;
  background: none !important;
  transition: background var(--transition-speed) ease;
}

.new-testimonial-header {
  text-align: center;
  margin-bottom: 2rem;
  background: none !important;
}
.new-testimonial-header h2 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 1rem;
  color: var(--primary-color);
}
.new-testimonial-header span {
  font-weight: 600;
  color: var(--secondary-color);
}

.new-testimonial-slider-wrapper {
  overflow: hidden;
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black 20%,
    black 80%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    black 20%,
    black 80%,
    transparent
  );
}

.new-testimonial-slider {
  display: flex;
  gap: 2.5rem;
}

.new-testimonial-slider-wrapper.is-animated .new-testimonial-slider {
  animation: scroll 60s linear infinite;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 1.25rem));
  }
}

.new-testimonial-card {
  background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.02),
      rgba(0, 0, 0, 0.02)
    ),
    var(--card-bg);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 8px 24px -6px rgba(0, 0, 0, 0.08);
  position: relative;
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-shrink: 0;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
}

html[data-theme="dark"] .new-testimonial-card {
  background: linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.05),
      rgba(0, 0, 0, 0.05)
    ),
    var(--card-bg);
}

.new-testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px -8px rgba(0, 0, 0, 0.12);
}

.quote-icon {
  font-size: 3.5rem;
  color: var(--secondary-color);
  position: absolute;
  top: 15px;
  left: 20px;
  opacity: 0.15;
}

.card-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-grow: 1;
}

.card-footer {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  width: 100%;
}

.author-details .quote-text {
  font-style: italic;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 0;
}

.author-info {
  text-align: center;
}

.author-info .author-name {
  font-weight: 600;
  color: var(--primary-color);
  display: block;
}

.author-info .author-title {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: block;
  opacity: 0.8;
}

.star-rating {
  margin-bottom: 1.5rem;
  color: #f59e0b; /* Amber 500 */
}
.star-rating .bi-star {
  color: var(--border-color);
}

.card-link {
  display: block;
  margin-top: 1rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.2s ease;
}
.card-link:hover {
  text-decoration: underline;
  color: var(--primary-color-darker);
}
.card-link i {
  margin-left: 0.25rem;
  font-size: 0.8rem;
}

.no-testimonials-message {
  width: 100%;
  text-align: center;
  padding: 4rem 2rem;
  background-color: var(--card-bg);
  border-radius: 15px;
  color: var(--text-muted);
}

/* ================================================== */
/* ==               FOOTER STYLES                 == */
/* ================================================== */
footer {
  max-width: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 2rem 0 1rem !important;
}

footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ================================================== */
/* ==               RESPONSIVE STYLES              == */
/* ================================================== */
@media (max-width: 768px) {
  .about-us {
    grid-template-columns: 1fr;
  }
  .section-header h2,
  .about-us-text h1 {
    font-size: 2rem;
  }
  .new-testimonial-header {
    text-align: center;
    justify-content: center;
  }
  .new-testimonial-header .header-text {
    width: 100%;
    margin-bottom: 1rem;
  }
  .apply-package-card {
    padding: 1.5rem;
  }
}
.floating-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(47, 104, 189, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 3px solid white;
}

.floating-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(47, 104, 189, 0.6);
}

.floating-icon:active {
    transform: scale(0.95);
}

.floating-icon svg {
    display: none;
}

.floating-icon::before {
    content: "💡";
    font-size: 32px;
    line-height: 1;
}

.tips-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    align-items: center;
    justify-content: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
    pointer-events: none;
    opacity: 0;
    backdrop-filter: blur(4px);
}

.tips-modal.active {
    display: flex;
    pointer-events: auto;
    opacity: 1;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
    max-width: 550px;
    width: 90%;
    animation: popIn 0.3s ease;
    position: relative;
    z-index: 2001;
}

@keyframes popIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}

.modal-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.modal-content li {
    padding: 10px 0;
    color: #333;
    border-bottom: 1px solid #eee;
    font-size: 15px;
}

.modal-content li:last-child {
    border-bottom: none;
}

.modal-content li:before {
    content: "💡 ";
    margin-right: 10px;
    font-size: 18px;
}

.close-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.close-btn:hover {
    background: var(--primary-color-darker);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(47, 104, 189, 0.3);
}

.close-btn:active {
    transform: translateY(0);
}

/* DARK MODE SUPPORT */
@media (prefers-color-scheme: dark) {
    .click-text {
        background: var(--card-bg);
        color: var(--secondary-color);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }

    .floating-icon {
        background: var(--primary-color);
        box-shadow: 0 8px 20px rgba(95, 168, 227, 0.3);
    }

    .floating-icon:hover {
        box-shadow: 0 12px 30px rgba(95, 168, 227, 0.5);
    }

    .tips-modal {
        background: rgba(0, 0, 0, 0.8);
    }

    .modal-content {
        background: var(--background-color);
        color: #374151;
        border: 1px solid #e5e7eb;
    }

    .modal-content h2 {
        color: var(--primary-color);
    }

    .modal-content li {
        color: #374151;
        border-bottom-color: #e5e7eb;
    }

    .close-btn {
        background: var(--primary-color);
    }

    .close-btn:hover {
        background: var(--primary-color-darker);
        box-shadow: 0 8px 20px rgba(95, 168, 227, 0.4);
    }
}

/* RESPONSIVE - MOBILE */
@media (max-width: 768px) {
    .floating-container {
        top: 80px;
        right: 20px;
    }

    .floating-icon {
        width: 50px;
        height: 50px;
    }

    .click-text {
        font-size: 12px;
        padding: 6px 12px;
    }

    .modal-content {
        padding: 30px;
        margin: 20px;
    }

    .modal-content h2 {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .modal-content li {
        padding: 8px 0;
        font-size: 14px;
    }

    .close-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
}