/* ========================================
   KC Digital Academy — Hand-Drawn Design System
   ======================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@400;700&family=Patrick+Hand&display=swap');

/* --- Design Tokens --- */
:root {
  --bg: #fdfbf7;
  --fg: #2d2d2d;
  --muted: #e5e0d8;
  --accent: #ff4d4d;
  --border: #2d2d2d;
  --blue: #2d5da1;
  --white: #ffffff;
  --postit: #fff9c4;

  --font-heading: 'Kalam', cursive;
  --font-body: 'Patrick Hand', cursive;

  --shadow: 4px 4px 0px 0px var(--fg);
  --shadow-lg: 8px 8px 0px 0px var(--fg);
  --shadow-sm: 2px 2px 0px 0px var(--fg);
  --shadow-subtle: 3px 3px 0px 0px rgba(45, 45, 45, 0.1);

  --radius-wobbly: 255px 15px 225px 15px / 15px 225px 15px 255px;
  --radius-wobbly-md: 15px 255px 15px 225px / 225px 15px 255px 15px;
  --radius-wobbly-sm: 125px 10px 115px 10px / 10px 115px 10px 125px;
  --radius-wobbly-alt: 50px 220px 40px 180px / 180px 40px 220px 50px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--fg);
  font-size: 18px;
  line-height: 1.6;
  background-image: radial-gradient(var(--muted) 1px, transparent 1px);
  background-size: 24px 24px;
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
}

img, svg, video {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--fg);
  text-decoration: none;
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--fg);
  word-break: break-word;
}

ul {
  list-style: none;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

@media (min-width: 600px) {
  .container {
    padding: 0 24px;
  }
}

@media (min-width: 1200px) {
  .container {
    padding: 0 32px;
  }
}

.section {
  padding: 80px 0;
}

@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }
}

/* --- Utility Classes --- */
.text-accent { color: var(--accent); }
.text-blue { color: var(--blue); }
.text-muted { color: #8a8278; }
.text-center { text-align: center; }
.text-white { color: var(--white); }

.rotate-1 { transform: rotate(1deg); }
.rotate-neg1 { transform: rotate(-1deg); }
.rotate-2 { transform: rotate(2deg); }
.rotate-neg2 { transform: rotate(-2deg); }

.hidden-mobile {
  display: none;
}
@media (min-width: 768px) {
  .hidden-mobile { display: block; }
}

/* ========================================
   HEADER / NAVIGATION
   ======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(253, 251, 247, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 3px solid var(--fg);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--fg);
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.brand-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--fg);
  box-shadow: 1.5px 1.5px 0 var(--fg);
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.logo:hover .brand-logo-img {
  transform: rotate(8deg) scale(1.06);
}

@media (max-width: 480px) {
  .brand-logo-img {
    width: 36px;
    height: 36px;
  }
}

@media (min-width: 480px) {
  .logo {
    font-size: 1.55rem;
  }
}

@media (min-width: 1024px) {
  .logo {
    font-size: 1.65rem;
  }
}

.logo span {
  color: var(--accent);
}

.logo .logo-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  margin-left: 2px;
  animation: bounce-dot 2s ease-in-out infinite;
}

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

.main-nav {
  display: none;
}

.main-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 1.1rem;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.15s;
}

.main-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: url("data:image/svg+xml,%3Csvg width='100' height='6' viewBox='0 0 100 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 3 Q 10 0, 20 3 T 40 3 T 60 3 T 80 3 T 100 3' fill='none' stroke='%23ff4d4d' stroke-width='2.5'/%3E%3C/svg%3E") repeat-x;
  background-size: 40px 6px;
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav a:hover {
  color: var(--accent);
}

.nav-cta {
  display: none;
}

.btn {
  font-family: var(--font-body);
  font-size: 1.1rem;
  padding: 10px 28px;
  border: 3px solid var(--fg);
  border-radius: var(--radius-wobbly);
  background: var(--white);
  color: var(--fg);
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.1s ease;
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  background: var(--accent);
  color: var(--white);
  box-shadow: var(--shadow-sm);
  transform: translate(2px, 2px);
}

.btn:active {
  box-shadow: none;
  transform: translate(4px, 4px);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
}

.btn-accent:hover {
  background: #e03e3e;
  color: var(--white);
}

.btn-blue {
  background: var(--blue);
  color: var(--white);
}

.btn-blue:hover {
  background: #1e4a85;
  color: var(--white);
}

.btn-lg {
  font-size: 1.3rem;
  padding: 14px 36px;
}

/* Hamburger */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--fg);
  border-radius: 4px;
  transition: all 0.25s;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(253, 251, 247, 0.97);
  z-index: 105;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--fg);
  transition: color 0.15s;
}

.mobile-menu a:hover {
  color: var(--accent);
}

@media (min-width: 768px) {
  .hamburger { display: none; }
  .main-nav { display: block; }
  .nav-cta { display: block; }
  .main-nav ul { gap: 18px; }
  .main-nav a { font-size: 1.05rem; }
  .nav-cta .btn {
    padding: 8px 18px;
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .main-nav ul { gap: 32px; }
  .main-nav a { font-size: 1.1rem; }
  .nav-cta .btn {
    padding: 10px 28px;
    font-size: 1.1rem;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  padding: 44px 0 32px;
  position: relative;
  overflow: visible;
}

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

.hero-badge {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 6px 16px;
  border: 2px dashed var(--blue);
  border-radius: var(--radius-wobbly-sm);
  color: var(--blue);
  background: rgba(45, 93, 161, 0.06);
  transform: rotate(-1deg);
  margin-bottom: 14px;
}

.hero h1 {
  font-size: 2.1rem;
  line-height: 1.18;
  margin-bottom: 16px;
  word-break: break-word;
}

@media (min-width: 480px) {
  .hero h1 {
    font-size: 2.5rem;
  }
}

.hero h1 .accent-word {
  color: var(--accent);
  position: relative;
  display: inline-block;
}

.hero h1 .accent-word::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: -4px;
  right: -4px;
  height: 6px;
  background: url("data:image/svg+xml,%3Csvg width='120' height='8' viewBox='0 0 120 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 5 Q 15 0, 30 5 T 60 5 T 90 5 T 120 5' fill='none' stroke='%23ff4d4d' stroke-width='3'/%3E%3C/svg%3E") repeat-x;
  background-size: 60px 8px;
}

.hero h1 .rotating-mark {
  display: inline-block;
  animation: wiggle 2s ease-in-out infinite;
  color: var(--accent);
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(8deg); }
  75% { transform: rotate(-8deg); }
}

.hero-text {
  font-size: 1.15rem;
  color: #5a5550;
  max-width: 520px;
  margin-bottom: 24px;
  line-height: 1.65;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
    text-align: center;
  }
}

.hero-image-wrapper {
  position: relative;
}

.hero-image-frame {
  border: 3px solid var(--fg);
  border-radius: var(--radius-wobbly-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: rotate(1.5deg);
  background: var(--white);
}

.hero-image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Corner marks on hero image */
.hero-image-wrapper::before,
.hero-image-wrapper::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  border-color: var(--accent);
  border-style: solid;
  z-index: 2;
}
.hero-image-wrapper::before {
  top: -8px;
  left: -8px;
  border-width: 3px 0 0 3px;
}
.hero-image-wrapper::after {
  bottom: -8px;
  right: -8px;
  border-width: 0 3px 3px 0;
}

/* Decorative bouncing circle */
.hero-decor-circle {
  display: none;
  position: absolute;
  top: 15px;
  right: -10px;
  width: 56px;
  height: 56px;
  border: 3px dashed var(--accent);
  border-radius: 50%;
  animation: float-bounce 3s ease-in-out infinite;
}

@keyframes float-bounce {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-15px) rotate(180deg); }
}

/* Decorative arrow pointing to CTA */
.hero-arrow {
  display: none;
  position: absolute;
  bottom: -20px;
  left: 220px;
}

.hero-arrow svg {
  width: 80px;
  height: 50px;
}

@media (min-width: 768px) {
  .hero { padding: 70px 0 50px; }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .hero h1 { font-size: 2.9rem; }
  .hero-text { font-size: 1.25rem; }
  .hero-decor-circle { display: block; }
}

@media (min-width: 992px) {
  .hero-arrow { display: block; }
}

@media (min-width: 1024px) {
  .hero { padding: 80px 0 60px; }
  .hero-grid {
    gap: 48px;
  }
  .hero h1 { font-size: 3.6rem; }
  .hero-text { font-size: 1.3rem; }
}

/* ========================================
   STATS STRIP
   ======================================== */
.stats {
  padding: 40px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1;
  max-width: 135px;
  margin: 0 auto;
  border: 3px solid var(--fg);
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.1s;
  padding: 10px;
}

.stat-item:nth-child(1) { border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%; transform: rotate(-2deg); }
.stat-item:nth-child(2) { border-radius: 45% 55% 40% 60% / 60% 40% 55% 45%; transform: rotate(1deg); }
.stat-item:nth-child(3) { border-radius: 50% 45% 55% 50% / 55% 50% 45% 50%; transform: rotate(1.5deg); }
.stat-item:nth-child(4) { border-radius: 40% 60% 45% 55% / 50% 45% 60% 40%; transform: rotate(-1deg); }

.stat-item:hover {
  transform: rotate(0deg) scale(1.05);
}

.stat-number {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.85rem;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: #5a5550;
  margin-top: 3px;
}

@media (min-width: 480px) {
  .stats-grid {
    gap: 20px;
  }
  .stat-item {
    max-width: 150px;
    padding: 16px;
  }
  .stat-number {
    font-size: 2.2rem;
  }
  .stat-label {
    font-size: 0.95rem;
  }
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .stat-item {
    max-width: 165px;
  }
  .stat-number { font-size: 2.6rem; }
  .stat-label { font-size: 1.05rem; }
}

@media (min-width: 1024px) {
  .stats-grid {
    gap: 32px;
  }
  .stat-item {
    max-width: 180px;
  }
  .stat-number { font-size: 2.8rem; }
  .stat-label { font-size: 1.1rem; }
}

/* ========================================
   ABOUT / WHY US
   ======================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
}

.about-image-card {
  border: 3px solid var(--fg);
  border-radius: var(--radius-wobbly);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: rotate(-1.5deg);
  background: var(--white);
}

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

/* Sticky note badge */
.sticky-note {
  position: absolute;
  bottom: -16px;
  right: -10px;
  background: var(--postit);
  border: 2px solid var(--fg);
  padding: 8px 18px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  transform: rotate(3deg);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}

.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.about-content p {
  font-size: 1.15rem;
  color: #5a5550;
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-list {
  margin: 20px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.1rem;
}

.about-list li .check-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 77, 77, 0.08);
  margin-top: 2px;
}

.about-list li .check-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
  .about-content h2 { font-size: 2.6rem; }
}

/* ========================================
   SECTION COMMON STYLES
   ======================================== */
.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1.15rem;
  color: #5a5550;
  max-width: 580px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 4px 14px;
  background: var(--postit);
  border: 2px solid var(--fg);
  transform: rotate(-1deg);
  margin-bottom: 12px;
  box-shadow: 1px 1px 0 var(--fg);
}

@media (min-width: 768px) {
  .section-header h2 { font-size: 2.6rem; }
}

/* ========================================
   COURSES SECTION
   ======================================== */
.courses-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.course-card {
  position: relative;
  background: var(--postit);
  border: 3px solid var(--fg);
  border-radius: var(--radius-wobbly);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.1s, box-shadow 0.1s;
}

.course-card:nth-child(1) { transform: rotate(-0.5deg); }
.course-card:nth-child(2) { transform: rotate(0.8deg); }
.course-card:nth-child(3) { transform: rotate(-1deg); }
.course-card:nth-child(4) { transform: rotate(0.6deg); }
.course-card:nth-child(5) { transform: rotate(-0.7deg); }
.course-card:nth-child(6) { transform: rotate(0.9deg); }

.course-card:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* Tack decoration */
.course-card .tack {
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  background: var(--accent);
  border: 2px solid #c43a3a;
  border-radius: 50%;
  box-shadow: 1px 1px 2px rgba(0,0,0,0.2);
  z-index: 2;
}

.course-card .course-emoji {
  font-size: 2.2rem;
  margin-bottom: 10px;
  display: block;
}

.course-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.course-card .course-desc {
  font-size: 1rem;
  color: #5a5550;
  margin-bottom: 16px;
  line-height: 1.5;
}

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

.course-card .course-meta span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.9rem;
  color: #6b6560;
}

.course-card .course-meta svg {
  width: 16px;
  height: 16px;
  stroke: var(--blue);
  stroke-width: 2.5;
  fill: none;
}

@media (min-width: 768px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .courses-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

/* ========================================
   HOW IT WORKS
   ======================================== */
.how-it-works {
  background: var(--white);
  border-top: 3px dashed var(--muted);
  border-bottom: 3px dashed var(--muted);
}

.steps-container {
  position: relative;
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  position: relative;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border: 3px solid var(--fg);
  border-radius: 55% 45% 50% 50% / 50% 50% 45% 55%;
  background: var(--accent);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  margin-bottom: 16px;
  position: relative;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

.step-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 1.05rem;
  color: #5a5550;
  max-width: 280px;
  margin: 0 auto;
}

/* Squiggly line between steps (desktop only) */
.squiggly-line {
  display: none;
  position: absolute;
  top: 28px;
  left: 20%;
  right: 20%;
  height: 6px;
  background: url("data:image/svg+xml,%3Csvg width='200' height='8' viewBox='0 0 200 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 4 Q 12 0, 25 4 T 50 4 T 75 4 T 100 4 T 125 4 T 150 4 T 175 4 T 200 4' fill='none' stroke='%23e5e0d8' stroke-width='3' stroke-dasharray='8 4'/%3E%3C/svg%3E") repeat-x;
  background-size: 100px 8px;
  z-index: 1;
}

@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
  .squiggly-line { display: block; }
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.testimonial-card {
  position: relative;
  background: var(--white);
  border: 3px solid var(--fg);
  border-radius: var(--radius-wobbly-md);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.1s;
}

.testimonial-card:hover {
  transform: rotate(1deg);
}

/* Speech bubble tail */
.testimonial-card::after {
  content: '';
  position: absolute;
  bottom: -18px;
  left: 36px;
  width: 0;
  height: 0;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 18px solid var(--fg);
}

.testimonial-card::before {
  content: '';
  position: absolute;
  bottom: -14px;
  left: 38px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 15px solid var(--white);
  z-index: 1;
}

.testimonial-card .quote-mark {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: -8px;
  display: block;
}

.testimonial-card p {
  font-size: 1.05rem;
  color: #5a5550;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--fg);
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--fg);
}

.testimonial-author-info strong {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  display: block;
}

.testimonial-author-info span {
  font-size: 0.9rem;
  color: #8a8278;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
  position: relative;
}

.cta-box {
  border: 3px solid var(--fg);
  border-radius: var(--radius-wobbly);
  background: var(--postit);
  padding: 36px 18px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

@media (min-width: 600px) {
  .cta-box {
    padding: 48px 32px;
  }
}

.cta-box h2 {
  font-size: 2.1rem;
  margin-bottom: 14px;
}

.cta-box p {
  font-size: 1.12rem;
  color: #5a5550;
  margin-bottom: 26px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-box .dashed-circle {
  display: none;
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  border: 3px dashed var(--accent);
  border-radius: 50%;
  opacity: 0.4;
}

@media (min-width: 768px) {
  .cta-box h2 { font-size: 2.8rem; }
  .cta-box { padding: 64px 48px; }
  .cta-box .dashed-circle { display: block; }
}

@media (max-width: 600px) {
  .btn-lg {
    font-size: 1.1rem;
    padding: 12px 20px;
  }
  .cta-box .btn-lg {
    width: 100%;
    max-width: 360px;
    text-align: center;
  }
}

/* ========================================
   FOOTER
   ======================================== */
.site-footer {
  background: var(--fg);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 40px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 4px;
  background: url("data:image/svg+xml,%3Csvg width='80' height='6' viewBox='0 0 80 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 3 Q 10 0, 20 3 T 40 3 T 60 3 T 80 3' fill='none' stroke='%23ff4d4d' stroke-width='2'/%3E%3C/svg%3E") repeat-x;
  background-size: 40px 6px;
}

.footer-col p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo .footer-logo-img {
  width: 38px;
  height: 38px;
  border-color: rgba(255, 255, 255, 0.4);
  box-shadow: none;
}

.footer-logo span {
  color: var(--accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  transition: color 0.15s;
  position: relative;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--accent);
  text-decoration: line-through;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
  margin-top: 3px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  stroke: rgba(255,255,255,0.8);
  stroke-width: 2.5;
  fill: none;
}

.footer-bottom {
  border-top: 1px dashed rgba(255,255,255,0.15);
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 32px;
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
  }
}

@media (max-width: 600px) {
  .footer-bottom .container {
    flex-direction: column !important;
    text-align: center;
    gap: 10px;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */
/* Scroll reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Counter animation handled in JS */

/* ========================================
   SCROLL TO TOP
   ======================================== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  border: 3px solid var(--fg);
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.1s;
  z-index: 50;
}

@media (max-width: 600px) {
  .scroll-top {
    bottom: 20px;
    right: 20px;
  }
}

.scroll-top.show {
  opacity: 1;
  pointer-events: all;
}

.scroll-top:hover {
  background: var(--accent);
  transform: translate(2px, 2px);
  box-shadow: none;
}

.scroll-top:hover svg {
  stroke: var(--white);
}

.scroll-top svg {
  width: 22px;
  height: 22px;
  stroke: var(--fg);
  stroke-width: 2.5;
  fill: none;
}

/* ========================================
   COURSE DETAIL PAGE STYLES
   ======================================== */

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 1.05rem;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-style: dashed;
}

.breadcrumb span.divider {
  color: #8a8278;
}

.breadcrumb span.current {
  color: var(--fg);
  font-weight: bold;
}

/* Course Highlight Bar */
.course-highlight-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}

@media (max-width: 480px) {
  .course-highlight-bar {
    gap: 10px;
    margin: 20px 0;
  }
}

@media (min-width: 768px) {
  .course-highlight-bar {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}

.highlight-pill {
  background: var(--white);
  border: 2px solid var(--fg);
  border-radius: var(--radius-wobbly-sm);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.15s;
}

@media (max-width: 480px) {
  .highlight-pill {
    padding: 10px 10px;
    gap: 8px;
  }
  .highlight-icon {
    font-size: 1.45rem;
  }
  .highlight-text strong {
    font-size: 0.95rem;
  }
  .highlight-text span {
    font-size: 0.8rem;
  }
}

.highlight-pill:hover {
  transform: translateY(-2px);
}

.highlight-icon {
  font-size: 1.8rem;
  line-height: 1;
}

.highlight-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--fg);
}

.highlight-text span {
  font-size: 0.95rem;
  color: #6a645e;
}

/* What You'll Learn Pillars */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .pillars-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pillar-card {
  position: relative;
  background: var(--white);
  border: 3px solid var(--fg);
  border-radius: var(--radius-wobbly-md);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  transition: transform 0.15s, box-shadow 0.15s;
}

.pillar-card:hover {
  transform: rotate(-0.8deg) translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.pillar-card .pillar-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: block;
}

.pillar-card h3 {
  font-size: 1.35rem;
  margin-bottom: 8px;
}

.pillar-card p {
  font-size: 1.05rem;
  color: #5a5550;
  line-height: 1.6;
}

/* Syllabus Modules Accordion */
.modules-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.module-item {
  background: var(--white);
  border: 3px solid var(--fg);
  border-radius: var(--radius-wobbly-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow 0.15s;
}

.module-item:hover {
  box-shadow: var(--shadow);
}

.module-header {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--fg);
  gap: 16px;
}

.module-header .module-num {
  background: var(--postit);
  border: 2px solid var(--fg);
  border-radius: var(--radius-wobbly-sm);
  padding: 2px 10px;
  font-size: 0.95rem;
  color: var(--fg);
  flex-shrink: 0;
}

.module-header .module-title {
  flex-grow: 1;
}

.module-header .module-toggle {
  width: 32px;
  height: 32px;
  border: 2px solid var(--fg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-family: var(--font-body);
  transition: transform 0.25s, background-color 0.2s;
  flex-shrink: 0;
}

.module-item.active .module-toggle {
  transform: rotate(45deg);
  background: var(--accent);
  color: var(--white);
}

.module-content {
  display: none;
  padding: 0 24px 20px 24px;
  border-top: 2px dashed var(--muted);
}

.module-item.active .module-content {
  display: block;
  animation: fadeIn 0.25s ease-in;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

.module-topics {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

@media (min-width: 640px) {
  .module-topics {
    grid-template-columns: 1fr 1fr;
  }
}

.module-topics li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 1.05rem;
  color: #4a4540;
}

.module-topics li::before {
  content: '✏️';
  font-size: 0.9rem;
  margin-top: 2px;
}

/* Duration & Batches */
.batches-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .batches-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1024px) {
  .batches-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}

.batch-card {
  position: relative;
  background: var(--white);
  border: 3px solid var(--fg);
  border-radius: var(--radius-wobbly);
  padding: 32px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.15s;
}

.batch-card.featured {
  background: var(--postit);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02) rotate(-0.5deg);
}

.batch-card .batch-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  background: var(--accent);
  color: var(--white);
  padding: 3px 12px;
  border-radius: var(--radius-wobbly-sm);
  margin-bottom: 12px;
}

.batch-card h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.batch-card .batch-duration {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 14px;
}

.batch-card ul {
  text-align: left;
  margin: 18px 0 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.batch-card ul li {
  display: flex;
  gap: 8px;
  font-size: 1.05rem;
  color: #4a4540;
}

/* Who Should Join */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 768px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .audience-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.audience-card {
  background: var(--white);
  border: 3px solid var(--fg);
  border-radius: var(--radius-wobbly-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.15s;
}

.audience-card:nth-child(even) {
  transform: rotate(0.8deg);
}
.audience-card:nth-child(odd) {
  transform: rotate(-0.8deg);
}

.audience-card:hover {
  transform: rotate(0deg) translateY(-4px);
  box-shadow: var(--shadow);
}

.audience-card .audience-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 14px;
  border: 2px solid var(--fg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  background: rgba(255, 77, 77, 0.08);
}

.audience-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.audience-card p {
  font-size: 1rem;
  color: #5a5550;
  line-height: 1.5;
}

/* Practical Projects */
.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .projects-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.project-card {
  position: relative;
  background: var(--white);
  border: 3px solid var(--fg);
  border-radius: var(--radius-wobbly-sm);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  transition: transform 0.15s;
}

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

.project-card .project-tag {
  display: inline-block;
  font-size: 0.85rem;
  font-family: var(--font-heading);
  background: var(--postit);
  border: 1px solid var(--fg);
  padding: 2px 10px;
  border-radius: var(--radius-wobbly-sm);
  margin-bottom: 10px;
}

.project-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
}

.project-card p {
  font-size: 1rem;
  color: #5a5550;
  line-height: 1.5;
  margin-bottom: 14px;
}

.project-card .project-deliverable {
  font-size: 0.95rem;
  color: var(--blue);
  background: rgba(45, 93, 161, 0.06);
  padding: 8px 12px;
  border-radius: var(--radius-wobbly-sm);
  border: 1px dashed var(--blue);
}

/* Tools Covered Grid */
.tools-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.tool-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 2px solid var(--fg);
  border-radius: var(--radius-wobbly-sm);
  padding: 10px 18px;
  box-shadow: var(--shadow-sm);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  transition: all 0.15s;
}

.tool-chip:hover {
  background: var(--postit);
  transform: translate(2px, 2px);
  box-shadow: none;
}

.tool-chip .tool-emoji {
  font-size: 1.3rem;
}

@media (max-width: 480px) {
  .tool-chip {
    padding: 8px 14px;
    font-size: 1rem;
    gap: 6px;
  }
  .tool-chip .tool-emoji {
    font-size: 1.15rem;
  }
}

/* Certification Section */
.cert-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 768px) {
  .cert-container {
    grid-template-columns: 1.2fr 1fr;
  }
}

.cert-preview-card {
  position: relative;
  background: var(--white);
  border: 4px solid var(--fg);
  border-radius: var(--radius-wobbly);
  padding: 36px 28px;
  box-shadow: var(--shadow-lg);
  transform: rotate(-1deg);
  text-align: center;
}

.cert-preview-card .cert-stamp {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  border: 3px dashed var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  transform: rotate(15deg);
  background: var(--bg);
}

@media (max-width: 520px) {
  .cert-preview-card {
    padding: 24px 16px;
  }
  .cert-preview-card .cert-stamp {
    width: 64px;
    height: 64px;
    font-size: 0.72rem;
    top: -12px;
    right: -4px;
    transform: rotate(8deg);
  }
}

.cert-preview-card h3 {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 6px;
}

.cert-preview-card p.cert-sub {
  font-size: 1.1rem;
  color: #5a5550;
  margin-bottom: 20px;
}

.cert-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cert-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.cert-item .cert-badge {
  font-size: 1.4rem;
  line-height: 1;
}

.cert-item strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.cert-item span {
  font-size: 0.95rem;
  color: #6a645e;
}

/* Hand-Drawn Form Controls */
.enquiry-card {
  background: var(--white);
  border: 3px solid var(--fg);
  border-radius: var(--radius-wobbly);
  padding: 40px 32px;
  box-shadow: var(--shadow-lg);
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

@media (max-width: 520px) {
  .enquiry-card {
    padding: 24px 16px;
  }
}

.form-group {
  margin-bottom: 20px;
  text-align: left;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--fg);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 1.15rem;
  border: 2px solid var(--fg);
  border-radius: var(--radius-wobbly-sm);
  background: var(--white);
  color: var(--fg);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #a8a096;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(45, 93, 161, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* Modal Popup */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 45, 45, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: var(--bg);
  border: 4px solid var(--fg);
  border-radius: var(--radius-wobbly);
  box-shadow: var(--shadow-lg);
  padding: 36px 28px;
  max-width: 540px;
  width: 100%;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

@media (max-width: 600px) {
  .modal-overlay {
    padding: 12px;
  }
  .modal-box {
    padding: 26px 16px;
    max-height: 85vh;
  }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: 2px solid var(--fg);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 1.2rem;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.modal-close:hover {
  background: var(--accent);
  color: var(--white);
}

/* Floating Enquiry Button */
.floating-enquiry-btn {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 90;
  background: var(--accent);
  color: var(--white);
  border: 3px solid var(--fg);
  border-radius: var(--radius-wobbly);
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.15s, box-shadow 0.15s;
  text-decoration: none;
}

.floating-enquiry-btn:hover {
  transform: translate(2px, 2px);
  box-shadow: var(--shadow-sm);
  color: var(--white);
  background: #e03e3e;
}

/* ========================================
   WHATSAPP FLOATING BUTTON
   ======================================== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 95;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #ffffff;
  padding: 10px 18px;
  border: 3px solid var(--fg);
  border-radius: var(--radius-wobbly-md);
  box-shadow: var(--shadow);
  text-decoration: none;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s, background 0.2s;
  animation: floatPulse 3s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translate(-2px, -3px) rotate(-1.5deg);
  box-shadow: var(--shadow-lg);
  background: #20ba59;
  color: #ffffff;
}

.whatsapp-float svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
  flex-shrink: 0;
}

.whatsapp-float .whatsapp-status-dot {
  width: 9px;
  height: 9px;
  background: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 24px;
  border: 1.5px solid #25D366;
}

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

@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 20px;
    left: 20px;
    padding: 12px;
    border-radius: 50%;
    width: 52px;
    height: 52px;
    justify-content: center;
  }
  .whatsapp-float span.whatsapp-text {
    display: none;
  }
  .whatsapp-float .whatsapp-status-dot {
    top: 5px;
    right: 5px;
    left: auto;
  }
}


