/* ================================================== */
/* ============= CSS RESET & NORMALIZATION ========== */
/* ================================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: #FCFBFF;
  color: #1E2A47;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #1E2A47;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ===== Fun Font Imports (Google Fonts) ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;700&display=swap');


/* ================================================== */
/* ================= BRAND COLORS =================== */
/* ================================================== */
:root {
  --color-primary: #1E2A47;    /* Deep Sapphire (brand) */
  --color-secondary: #F5A623;  /* Orange (brand) */
  --color-accent: #FFFFFF;     /* White accent */
  --color-info: #49C6E5;       /* Playful cyan */
  --color-success: #4CD964;    /* Fun green */
  --color-error: #FD5281;      /* Vivid pink */
  --color-bg-light: #FCFBFF;   /* Gentle background */
  --color-card: #FFF9ED;       /* Vanilla for cards */
  --color-grey: #FAFAFA;       /* UI backgrounds */
  --color-border: #EDE7F6;     /* Soft border */
}


/* ================================================== */
/* =========== TYPOGRAPHY & HEADINGS =============== */
/* ================================================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1.15;
  letter-spacing: 0.5px;
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.3rem; margin-bottom: 12px; font-weight: 700; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 10px; font-weight: 700; }

@media (max-width: 768px) {
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.3rem; }
}

p, li, span {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-primary);
  font-size: 1rem;
  line-height: 1.7;
}
strong, b {
  font-weight: 700;
}

.subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-primary);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 26px;
  letter-spacing: 0.1px;
}


/* ================================================== */
/* ================ LAYOUT HELPERS ================== */
/* ================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 768px) {
  .section {
    padding: 28px 6px;
    margin-bottom: 28px;
  }
}


/* ================================================== */
/* ================= HEADER & NAV =================== */
/* ================================================== */
header {
  background: var(--color-accent);
  border-bottom: 2px solid var(--color-border);
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  gap: 20px;
}
header img {
  height: 40px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-primary);
  padding: 8px 6px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-secondary);
  color: #fff;
  outline: none;
}

.cta-btn {
  background: var(--color-secondary);
  color: #fff;
  border-radius: 28px;
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 13px 34px;
  margin-left: 16px;
  box-shadow: 0 5px 14px rgba(245, 166, 35, 0.13);
  border: none;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.18s, box-shadow 0.18s, transform 0.15s;
  outline: none;
  text-align: center;
  position: relative;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fdc544;
  color: var(--color-primary);
  box-shadow: 0 3px 12px rgba(245, 166, 35, 0.20), 0 0 1px #fff;
  transform: translateY(-1px) scale(1.04);
}

/* Hamburger menu button */
.mobile-menu-toggle {
  background: var(--color-secondary);
  color: #fff;
  font-size: 2rem;
  border: none;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 7px rgba(245, 166, 35, 0.11);
  transition: background 0.20s, box-shadow 0.20s, color 0.16s;
  z-index: 250;
}
.mobile-menu-toggle:focus {
  outline: 3px solid #fdc544;
}

/* Hide main nav and show burger on mobile */
@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Mobile menu modal overlay */
.mobile-menu {
  position: fixed;
  z-index: 2010;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(30, 42, 71, 0.97);
  transform: translateX(100vw);
  transition: transform 0.4s cubic-bezier(.4,.6,.08,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 0 0 0;
  pointer-events: none;
  opacity: 0; 
}
.mobile-menu.open {
  pointer-events: all;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2.1rem;
  padding: 5px 22px 5px 14px;
  align-self: flex-end;
  margin-top: 20px;
  cursor: pointer;
  z-index: 2050;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 20px;
  gap: 14px;
  padding: 12px 34px 24px 34px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.24rem;
  color: #fff;
  padding: 12px 8px;
  border-radius: 8px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
  outline: none;
}

@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}


/* ================================================== */
/* ==================== FOOTER ====================== */
/* ================================================== */
footer {
  background: #fff;
  border-top: 2px solid var(--color-border);
  padding-top: 34px;
  padding-bottom: 26px;
  margin-top: 70px;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-menu {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.footer-menu a {
  color: var(--color-primary);
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.9;
  padding: 4px 6px;
  border-radius: 5px;
  transition: background 0.15s, color 0.15s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #fff;
  background: var(--color-secondary);
  outline: none;
}
footer p {
  opacity: 0.8;
  font-size: 0.98rem;
  margin-top: 12px;
}

@media (max-width: 500px) {
  .footer-menu {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}

/* ================================================== */
/* =================== HERO SECTIONS ================= */
/* ================================================== */
.hero {
  background: linear-gradient(100deg, #FFF9ED 70%, #F5A623 130%);
  border-bottom: 2px solid var(--color-border);
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 48px;
  padding-bottom: 48px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 17px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 0;
}
.hero h1 {
  font-size: 2.7rem;
  background: -webkit-linear-gradient(90deg, #1E2A47 80%, #F5A623 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 1px;
}
@media (max-width: 900px) {
  .hero {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .hero h1 { font-size: 2.1rem; }
}
@media (max-width: 600px) {
  .hero .content-wrapper {
    padding-bottom: 0;
  }
}

/* ================================================== */
/* =============== FLEX PATTERNS FOR CARDS =========== */
/* ================================================== */
.card-container, .card-grid, .feature-grid, .service-listings, .course-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 15px;
  margin-bottom: 5px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 800px) {
  .card-container, .card-grid, .feature-grid, .service-listings, .course-list {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
}


/* ================================================== */
/* =================== FEATURE ITEM ================== */
.feature-item {
  background: var(--color-card);
  border-radius: 22px;
  box-shadow: 0 2px 13px 0 rgba(245, 166, 35,0.08);
  border: 2px solid var(--color-border);
  flex: 1 1 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 30px 22px 22px 22px;
  min-width: 220px;
  max-width: 350px;
  margin-bottom: 18px;
  position: relative;
  transition: transform 0.22s cubic-bezier(.22,.61,.36,1), box-shadow 0.22s;
  pointer-events: auto;
}
.feature-item img {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  background: #fff;
  margin-bottom: 9px;
  box-shadow: 0 1px 3px 0 rgba(30,42,71,.06);
}
.feature-item:hover {
  transform: translateY(-7px) scale(1.035);
  box-shadow: 0 6px 26px 0 rgba(245, 166, 35,0.18);
  z-index: 4;
}
.feature-item h3 {
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 5px;
}
.feature-item p {
  font-size: 1.01rem;
}


/* ================================================== */
/* ================= SERVICE CARDS ================== */
.service-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(76,217,100,0.08);
  border: 2px solid var(--color-border);
  flex: 1 1 290px;
  max-width: 330px;
  min-width: 225px;
  padding: 32px 22px 21px 22px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  transition: box-shadow 0.21s, transform 0.18s;
  position: relative;
}
.service-card h3 {
  color: var(--color-secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 7px;
}
.service-card .price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 10px;
  font-size: 1.01rem;
  margin-bottom: 6px;
  letter-spacing: 1px;
}
.service-card .cta-btn {
  margin-top: 3px;
  padding: 10px 24px;
  transition: background 0.19s, color 0.19s, box-shadow 0.16s;
  font-size: 1rem;
}
.service-card:hover,.service-card:focus-within {
  box-shadow: 0 5px 20px 0 rgba(245,166,35,0.18);
  transform: translateY(-3px) scale(1.025);
  z-index: 3;
}
.syllabus-highlights {
  margin-top: 6px;
  margin-bottom: 8px;
}
.syllabus-highlights ul li {
  font-size: 0.97rem;
  margin-bottom: 5px;
  list-style: disc inside;
  color: #616677;
}


/* ================================================== */
/* =============== TESTIMONIALS ===================== */
/* ================================================== */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  justify-content: flex-start;
}
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(76,217,100, 0.11);
  border: 2px solid var(--color-border);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 22px 26px 18px 26px;
  min-width: 250px;
  max-width: 380px;
  transition: box-shadow 0.25s, transform 0.18s;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 7px 30px 0 rgba(30, 42, 71, 0.17);
  transform: translateY(-5px) scale(1.038);
  z-index: 8;
}
.star-rating {
  font-size: 1.2rem;
  color: #F5A623;
  letter-spacing: 2px;
  margin-bottom: 0;
}
.testimonial-card p {
  color: #22223a;
  font-size: 1.06rem;
  margin: 0 0 4px 0;
}
.testimonial-author {
  color: #888;
  font-size: 0.96rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
@media (max-width: 800px) {
  .testimonial-slider, .testimonial-list {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .testimonial-card { max-width: 100%; }
}

/* Contrast for testimonials (dark text on light bg) */
.testimonial-card,
.testimonial-card p,
.testimonial-author,
.star-rating {
  color: #22223a !important;
}


/* ================================================== */
/* ================= CTA BANNER ===================== */
.cta-banner {
  background: #fff9ed;
  border: 2px solid var(--color-secondary);
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  padding: 34px 24px;
  margin: 26px 0 0 0;
  box-shadow: 0 2px 10px 0 rgba(245, 166, 35, 0.10);
}
.cta-banner h2 {
  font-size: 1.6rem;
  margin-right: 18px;
  flex: 1 1 auto;
}
.cta-banner .cta-btn {
  margin-top: 0;
  white-space: nowrap;
}
@media (max-width: 700px) {
  .cta-banner {
    flex-direction: column;
    gap: 10px;
    padding: 24px 11px;
    text-align: center;
  }
  .cta-banner h2 { margin-right: 0; }
}


/* ================================================== */
/* ================= BLOG STYLES ==================== */
.featured-articles-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 18px;
  margin-top: 12px;
}
.featured-post {
  background: #F5A623;
  color: #fff;
  border-radius: 18px;
  padding: 24px 20px 21px 26px;
  min-width: 230px;
  flex: 1 1 280px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 2px 14px 0 rgba(245,166,35,0.13);
  position: relative;
}
.featured-post h3 {
  color: #fff;
  font-size: 1.1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
  font-weight: 900;
}
.featured-post p, .featured-post a {
  color: #fff;
  font-size: 1.02rem;
}
.featured-post:hover, .featured-post:focus-within {
  box-shadow: 0 7px 24px rgba(245, 166, 35, 0.22);
  transform: translateY(-4px) scale(1.035);
  z-index: 4;
}
.post-categories {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 6px;
}
.category {
  background: var(--color-info);
  color: #fff;
  padding: 4px 14px;
  border-radius: 13px;
  font-size: 0.95rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-left: 3px;
}

@media (max-width: 800px) {
  .featured-articles-slider {
    flex-direction: column;
    gap: 13px;
  }
}


/* ================================================== */
/* =============== TEXT SECTIONS ==================== */
.text-section {
  font-size: 1rem;
  margin-bottom: 22px;
}
.text-section h2 {
  margin-bottom: 16px;
}
.text-section ul, .text-section ol {
  margin-top: 10px;
  margin-bottom: 13px;
  padding-left: 17px;
}
.text-section ul li, .text-section ol li {
  margin-bottom: 8px;
  color: #52578f;
  font-size: 0.98rem;
}
.text-section a {
  color: var(--color-info);
  text-decoration: underline;
  font-weight: 700;
  transition: color 0.19s;
}
.text-section a:hover, .text-section a:focus {
  color: var(--color-error);
}

.map-location {
  margin-top: 13px;
  font-size: 1.01rem;
  font-weight: 700;
}


/* ================================================== */
/* =============== MISC INTERACTIVE ================ */
/* ================================================== */
.service-filter {
  margin-bottom: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  color: var(--color-primary);
  font-weight: 500;
  background: #fff9ed;
  padding: 8px 14px;
  border-radius: 9px;
}

ol {
  padding-left: 18px;
}


/* ================================================== */
/* ===== COOKIE CONSENT BANNER & MODAL ============== */
/* ================================================== */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 3099;
  background: #FFF9ED;
  border-top: 3px solid var(--color-secondary);
  box-shadow: 0 -5px 18px 0 rgba(245,166,35,0.13);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 28px;
  gap: 18px;
  font-size: 1rem;
  transition: transform 0.35s cubic-bezier(.14,.81,.52,1), opacity 0.22s;
}
.cookie-banner.closed {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 2 1 auto;
  color: var(--color-primary);
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  background: var(--color-secondary);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  border-radius: 22px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.18s, transform 0.12s, color 0.18s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fdc544;
  color: var(--color-primary);
  outline: none;
  transform: scale(1.04);
}
.cookie-btn.secondary {
  background: #F5A62322;
  color: var(--color-primary);
  border: 2px solid var(--color-secondary);
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: var(--color-accent);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 18px 8px;
  }
  .cookie-banner .cookie-btns {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }
}

.cookie-modal {
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(30,42,71,0.95);
  z-index: 3199;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s;
}
.cookie-modal.open {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal-content {
  background: #FFF9ED;
  border-radius: 18px;
  padding: 38px 29px 28px 29px;
  min-width: 310px;
  max-width: 90vw;
  box-shadow: 0 9px 34px 0 rgba(30, 42, 71, 0.15);
  display: flex;
  flex-direction: column;
  gap: 22px;
  color: var(--color-primary);
  position: relative;
  z-index: 2;
}
.cookie-modal-content h2 {
  font-size: 1.4rem;
  margin-bottom: 9px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 12px;
}
.cookie-category input[type=checkbox] {
  accent-color: var(--color-secondary);
  width: 20px;
  height: 20px;
}
.cookie-category.disabled input[type=checkbox] {
  accent-color: #D8D8D8;
}
.cookie-modal .close-cookie-modal {
  position: absolute;
  top: 15px;
  right: 18px;
  background: transparent;
  border: none;
  color: var(--color-primary);
  font-size: 2rem;
  cursor: pointer;
}
@media (max-width: 500px) {
  .cookie-modal-content {
    min-width: 90vw;
    padding: 24px 6vw 18px 6vw;
  }
  .cookie-modal .close-cookie-modal {
    top: 7px; right: 3vw;
  }
}

/* Mask for modal */
.cookie-modal-mask {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(30, 42, 71, 0.46);
  z-index: 1;
}


/* ================================================== */
/* =============== MEDIA QUERIES ==================== */
/* ================================================== */
@media (max-width: 900px) {
  .container { padding-left: 7px; padding-right: 7px; }
  .feature-item, .service-card, .testimonial-card, .featured-post {
    min-width: 98%;
    max-width: 98%;
  }
}
@media (max-width: 600px) {
  .section, .content-wrapper, .container {
    padding-left: 2px;
    padding-right: 2px;
  }
  .feature-item, .service-card, .testimonial-card, .featured-post {
    padding: 17px 6px 15px 11px;
  }
}

/* ================================================== */
/* =========== PLAYFUL DECORATIVE/ANIMATION ========= */
/* ================================================== */
.feature-item, .service-card, .cta-banner, .testimonial-card, .featured-post {
  /* Bouncy entrance on scroll (for modern/fun feel) */
  animation: pop-in 0.87s cubic-bezier(.16,.81,.54,1.7) both;
}
@keyframes pop-in {
  0% {
    transform: scale(0.90) translateY(40px);
    opacity: 0.25;
  }
  70% {
    transform: scale(1.05) translateY(-6px);
    opacity: 0.95;
  }
  100% {
    transform: scale(1) translateY(0px);
    opacity: 1;
  }
}

.cta-btn, .cookie-btn {
  transition: background 0.18s, color 0.18s, box-shadow 0.20s, transform 0.13s;
  will-change: background, color, box-shadow, transform;
}

input[type="text"], input[type="email"], textarea {
  background: #fff;
  border: 2px solid var(--color-border);
  border-radius: 8px;
  font-size: 1rem;
  padding: 11px 14px;
  width: 100%;
  margin-bottom: 12px;
  font-family: 'Roboto', Arial, sans-serif;
  transition: border 0.16s, box-shadow 0.16s;
}
input:focus, textarea:focus {
  border: 2px solid var(--color-secondary);
  outline: none;
  box-shadow: 0 1px 6px rgba(245,166,35,0.15);
}


/* ================================================== */
/* =============== ACCESSIBLE FOCUS ================ */
/* ================================================== */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus, .footer-menu a:focus, .main-nav a:focus, .cookie-modal .close-cookie-modal:focus {
  outline: 2.5px dashed #fdc544;
  outline-offset: 2px;
  z-index: 21;
}


/* ================================================== */
/* ================ UTILITY CLASSES ================= */
.gap24 { gap: 24px; }
.gap20 { gap: 20px; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-32 { margin-top: 32px; }

/* ============= MINIMUM SPACING BETWEEN CARDS ============= */
.card-container > *, .service-listings > *, .feature-grid > *, .testimonial-slider > *, .testimonial-list > *, .course-list > *, .featured-articles-slider > * {
  margin-bottom: 20px !important;
}

/* Prevent overlapping everywhere */
* {
  box-sizing: border-box;
}

/* ========== End of style.css ========= */
