/* ======================
   CSS RESET & NORMALIZE
   ====================== */
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-size: 100%; vertical-align: baseline;
  box-sizing: border-box; font: inherit;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F5F5F5;
  font-family: 'Roboto', Arial, sans-serif;
  color: #243F6E;
}
ol, ul { list-style: none; }
img { max-width: 100%; display: block; border: 0; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
button, input, select, textarea { font: inherit; outline: none; }
button { cursor: pointer; background: none; border: none; }

/* ===============================
   CSS VARIABLES (with fallbacks)
   =============================== */
:root {
  --primary: #243F6E;
  --primary-rgb: 36,63,110;
  --secondary: #F5F5F5;
  --accent: #F9B233;
  --accent-dark: #D79A20;
  --neutral: #F6F0EA;
  --card-bg: #fff;
  --shadow: 0 4px 24px 0 rgba(36,63,110,0.07);
  --radius: 18px;
  --radius-lg: 26px;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  background: var(--secondary);
  color: var(--primary);
  font-weight: 400;
  overscroll-behavior-y: none;
}

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

/* ====================
   TYPOGRAPHY & LINKS
   ==================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: #243F6E;
  font-weight: 700;
}
h1 { font-size: 2.75rem; line-height: 1.2; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.33rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1.02rem; margin-bottom: 8px; }
p { font-size: 1.10rem; margin-bottom: 12px; }
.subheadline {
  font-size: 1.1rem;
  color: #425992;
  margin-bottom: 18px;
}
a {
  color: var(--primary);
  font-weight: 500;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--accent);
  text-decoration: underline;
}

/* ====================
   HEADER & LOGO
   ==================== */
header {
  background: #fff;
  box-shadow: 0 6px 22px -8px rgba(var(--primary-rgb),0.08);
  position: sticky;
  top: 0; left: 0; z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 18px;
}
.logo img {
  height: 44px;
  width: auto;
  border-radius: var(--radius);
  padding: 5px;
  background: #fff0de;
  transition: box-shadow 0.2s;
}
.logo img:hover { box-shadow: 0 2px 8px rgba(249,178,51,0.15); }

/* ====================
   MAIN NAVIGATION
   ==================== */
.main-nav {
  display: flex; gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.04rem;
  padding: 8px 16px;
  border-radius: var(--radius);
  transition: background 0.15s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #ffe9c3;
  color: var(--accent);
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: #243F6E;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.07rem;
  padding: 12px 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 18px -7px rgba(249,178,51,0.12);
  border: none;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  margin-left: 14px;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px -4px rgba(249,178,51,0.17);
}
.btn-secondary {
  background: #fff0de;
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  border-radius: var(--radius);
  padding: 11px 24px;
  border: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  margin-top: 12px;
  display: inline-block;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #ffeba9;
  color: var(--accent-dark);
  box-shadow: 0 3px 12px -6px var(--accent);
}

/* ====================
   MOBILE NAVIGATION
   ==================== */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--accent);
  background: none;
  border: none;
  padding: 6px 10px;
  border-radius: 50%;
  transition: background 0.15s;
  z-index: 202;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #ffe5ab;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 0 0 100vw rgba(36,63,110,0.12);
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.55,.01,.47,1.17);
  z-index: 400;
  display: flex;
  flex-direction: column;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
  box-shadow: 0 2px 32px rgba(36,63,110,0.13);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 26px 28px 0 0;
  font-size: 2.35rem;
  color: var(--primary);
  background: #fff0de;
  border-radius: 50%;
  border: none;
  z-index: 401;
  transition: background 0.18s, color 0.18s;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center; justify-content: center;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--accent);
  color: #fff;
}
.mobile-nav {
  margin-top: 34px;
  display: flex;
  flex-direction: column;
  gap: 26px;
  align-items: flex-start;
  padding: 0 32px;
}
.mobile-nav a {
  color: var(--primary);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  padding: 13px 8px;
  border-radius: var(--radius);
  background: none;
  width: 100%;
  transition: background 0.18s, color 0.15s;
  margin-bottom: 8px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ffefa7;
  color: var(--accent-dark);
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .main-nav { gap: 8px; }
  .btn-primary { padding: 12px 16px; margin-left: 5px; font-size: 1rem; }
  header .container { gap: 10px; }
}
@media (max-width: 900px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (max-width: 575px) {
  .container { padding-left: 8px; padding-right: 8px; }
  .logo img { height: 36px; }
}

/* ====================
   FLEXBOX LAYOUTS
   (Required patterns)
   ==================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  box-shadow: var(--shadow);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--card-bg);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 22px;
  flex: 1 1 275px;
  min-width: 250px;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 8px 32px -4px rgba(36,63,110,0.13);
  transform: translateY(-3px) scale(1.03);
}
.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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff7eb;
  border-radius: var(--radius-lg);
  box-shadow: 0 3px 20px -9px #f9b23336;
  margin-bottom: 22px;
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 480px;
  transition: box-shadow 0.14s, transform 0.14s;
}
.testimonial-card p {
  color: #2a3149;
  font-size: 1.12rem;
  line-height: 1.52;
}
.testimonial-user {
  color: #576180;
  font-family: var(--font-display);
  font-size: 0.98rem;
  margin-left: 8px;
  font-style: italic;
}
.testimonial-card:hover {
  box-shadow: 0 8px 36px -7px #f9b23344;
  transform: translateY(-2px) scale(1.01);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =======================
   HOMEPAGE / HERO STYLES
   ======================= */
.hero {
  background: linear-gradient(125deg, #fff7eb 0, #ffefcb 97%);
  padding: 54px 0 48px 0;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-bottom: 50px;
}
.hero .container {
  display: flex; flex-direction: column; align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  max-width: 650px;
  margin: 0 auto;
}
.hero h1 {
  font-size: 2.6rem;
  letter-spacing: -1px;
  text-align: center;
}
.hero p {
  text-align: center;
}

@media (max-width: 768px) {
  .hero { padding: 37px 0 32px; }
  .hero .content-wrapper { max-width: 97vw; }
}

/* ===============
   FEATURES LISTS
   =============== */
.features, .about, .services, .cta, .testimonials, .legal, .timeline, .contact-info, .thank-you-section {
  margin-bottom: 48px;
}
.features .container, .about .container, .services .container, .cta .container, .testimonials .container, .contact-info .container {
  display: flex; flex-direction: column;
}
.features .content-wrapper,
.about .content-wrapper,
.services .content-wrapper,
.cta .content-wrapper,
.testimonials .content-wrapper,
.contact-info .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: var(--card-bg);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 32px 24px;
}
.features ul, .about ul, .services ul, .timeline ul, .contact-info ul, .thank-you-section ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 14px;
}
.features ul li, .about ul li, .services ul li, .timeline ul li, .contact-info ul li, .thank-you-section ul li {
  padding-left: 0;
  font-size: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #425992;
}
.features ul li img, .about ul li img, .services ul li img, .timeline ul li img, .thank-you-section ul li img, .contact-info ul li img {
  width: 32px; height: 32px; margin-right: 8px; flex-shrink: 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-top: 12px;
}
.feature-grid li {
  background: #fffdfb;
  border-radius: var(--radius);
  box-shadow: 0 2px 11px -6px #f9b2331a;
  padding: 26px 22px 22px 18px;
  min-width: 210px;
  max-width: 310px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.18s, transform 0.14s;
}
.feature-grid li:hover {
  box-shadow: 0 6px 22px -5px #f9b23338;
  transform: translateY(-3px) scale(1.02);
}
.feature-grid h3 {
  color: var(--primary);
  font-size: 1.18rem;
  margin-bottom: 5px;
}

/* ===============
   SERVICE LISTS
   =============== */
.service-list, .service-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.service-list li, .service-categories li {
  background: #fffdf8;
  border-radius: var(--radius);
  box-shadow: 0 2px 8px -6px #f9b23318;
  padding: 22px 16px 19px 16px;
  min-width: 210px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  transition: box-shadow 0.14s, transform 0.13s;
}
.service-list li:hover, .service-categories li:hover {
  box-shadow: 0 7px 14px -6px #f9b23336;
  transform: translateY(-2px);
}

/* ===============
   TABLE STYLES
   =============== */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 1px 7px -2px #243f6e14;
  margin-bottom: 22px;
  overflow: hidden;
  font-size: 1.04rem;
}
.pricing-table th, .pricing-table td {
  padding: 16px 12px;
  text-align: left;
}
.pricing-table thead {
  background: #fff4e0;
}
.pricing-table th {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.07rem;
}
.pricing-table tbody tr {
  border-bottom: 1px solid #f3e7cf;
}
.pricing-table tbody tr:last-child { border-bottom: none; }

/* ======================
   CTA / ABOUT / TIMELINE
   ====================== */
.cta .content-wrapper {
  align-items: center;
  text-align: center;
}
.cta h2 { font-size: 2rem; margin-bottom: 10px; }
.cta p { margin-bottom: 16px; }
.timeline ul {
  margin-bottom: 10px;
}
.timeline ul li {
  color: #243F6E;
  font-weight: 500;
}

/* ======================
   THANK YOU PAGE
   ====================== */
.thank-you-section {
  margin: 64px 0 32px 0;
}
.thank-you-section .content-wrapper {
  text-align: center;
  align-items: center;
  gap: 18px;
}
.thank-you-section ul {
  gap: 10px;
  margin-bottom: 8px;
  justify-content: center;
}

/* ======================
   CONTACT PAGE
   ====================== */
.contact-info .content-wrapper {
  align-items: flex-start;
  gap: 12px;
}
.contact-info ul {
  gap: 8px;
}
.map-embed-placeholder {
  background: #fff6e9;
  border-radius: var(--radius);
  padding: 18px 14px;
  margin-top: 14px;
  color: #425992;
  font-size: 1rem;
  box-shadow: 0 2px 11px -6px #f9b23312;
}

/* ======================
   FOOTER STYLES
   ====================== */
footer {
  background: #fff;
  padding: 36px 0 22px 0;
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  box-shadow: 0 -1px 14px -8px rgba(36,63,110, 0.08);
  margin-top: 44px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-menu {
  display: flex;
  gap: 18px; 
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 12px;
}
.footer-menu a {
  color: #425992;
  font-size: 0.97rem;
  border-radius: var(--radius);
  padding: 6px 10px;
  transition: background 0.16s, color 0.17s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #ffedc3;
  color: var(--accent-dark);
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
  font-size: 0.98rem;
  color: #425992;
  text-align: left;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  padding: 0 6px 0 0;
}
.footer-contact img {
  width: 19px; height: 19px; margin-right: 3px; opacity: 0.94;
}

/* =====================
   LEGAL (POLICIES) PAGE
   ===================== */
.legal .content-wrapper {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 29px 21px 27px 21px;
}
.legal h1, .legal h2, .legal h3 {
  margin-bottom: 15px;
}
.legal ul {
  margin-bottom: 16px;
}

/* =====================
   COOKIE CONSENT BANNER
   ===================== */
.cookie-banner {
  position: fixed;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  width: 96vw;
  max-width: 520px;
  background: #fff8ec;
  box-shadow: 0 7px 34px -11px #243f6e28;
  border-radius: var(--radius-lg);
  padding: 27px 21px 19px 24px;
  z-index: 5000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.33s cubic-bezier(.55,.01,.47,1.18), opacity 0.28s;
  color: #2c3854;
}
.cookie-banner.active {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner h4 {
  font-family: var(--font-display);
  font-size: 1.07rem;
  margin-bottom: 2px;
}
.cookie-banner p {
  font-size: 0.96rem;
  margin-bottom: 4px;
  color: #425992;
}
.cookie-btns {
  display: flex; gap: 13px; flex-wrap: wrap;
  margin-top: 3px;
}
.cookie-btns button {
  border-radius: var(--radius);
  padding: 9px 22px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  border: none;
  box-shadow: 0 1px 7px -4px #f9b23321;
  transition: background 0.16s, color 0.16s, box-shadow 0.13s;
  margin-bottom: 6px;
}
.cookie-btns .accept-all {
  background: var(--accent);
  color: #243F6E;
}
ul.feature-grid, .testimonials .content-wrapper {
    display: flex;
    flex-direction: row;
    gap: 15px;
    margin-bottom: 14px;
}
.cookie-btns .accept-all:hover {
  background: var(--accent-dark); color: #fff;
}
.cookie-btns .reject-all {
  background: #fff3d0;
  color: #243F6E;
}
.cookie-btns .reject-all:hover {
  background: #ffecb4; color: var(--accent-dark);
}
.cookie-btns .cookie-settings {
  background: #fff;
  color: var(--primary);
  border: 1px solid #ffebc2;
}
.cookie-btns .cookie-settings:hover {
  background: #ffebc2;
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0.92);
  width: 96vw;
  max-width: 560px;
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 13px 38px -8px #243f6e33;
  z-index: 5020;
  padding: 32px 26px 28px;
  opacity: 0;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  gap: 19px;
  transition: opacity 0.29s, transform 0.29s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%,-50%) scale(1.02);
}
.cookie-modal h4 {
  font-family: var(--font-display); font-size: 1.12rem; margin-bottom: 2px; color: var(--primary);
}
.cookie-category {
  display: flex; align-items: center; gap: 15px;
  background: #FFFAF1;
  border-radius: var(--radius);
  padding: 12px 8px 12px 16px;
  font-size: 1rem;
  margin-bottom: 7px;
}
.cookie-category .toggle {
  margin-left: auto;
}
.toggle-switch {
  position: relative;
  display: inline-block;
  width: 36px; height: 21px;
}
.toggle-switch input {
  opacity: 0;
  width: 0; height: 0;
}
.toggle-switch .slider {
  position: absolute;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #eadfb3;
  border-radius: 21px;
  transition: background 0.2s;
}
.toggle-switch input:checked + .slider {
  background: var(--accent);
}
.toggle-switch .slider::before {
  position: absolute;
  content: "";
  left: 3px; top: 3px;
  width: 15px; height: 15px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.18s;
  box-shadow: 0 1px 4px -2px #83580c24;
}
.toggle-switch input:checked + .slider::before {
  transform: translateX(15px);
}
.cookie-modal .modal-actions {
  display: flex; gap: 15px; justify-content: flex-end; margin-top: 8px;
}
.cookie-modal .modal-actions button {
  border-radius: var(--radius);
  padding: 11px 23px;
  font-family: var(--font-display);
  font-weight: 600;
  border: none;
  background: var(--accent);
  color: #243F6E;
  box-shadow: 0 1px 7px -4px #f9b23321;
  font-size: 1rem;
  transition: background 0.16s, color 0.16s, box-shadow 0.13s;
}
.cookie-modal .modal-actions button:hover {
  background: var(--accent-dark); color: #fff;
}
.cookie-modal .modal-actions .modal-close {
  background: #fff3d0; color: #243F6E;
  border: 1px solid #ffebc2;
}
.cookie-modal .modal-actions .modal-close:hover {
  background: #ffebc2;
}

/* =====================
   RESPONSIVE LAYOUTS
   ===================== */
@media (max-width: 1120px) {
  .feature-grid, .service-list, .service-categories {
    gap: 15px; justify-content: flex-start;
  }
}
@media (max-width: 960px) {
  .section, .features .content-wrapper, .about .content-wrapper, .services .content-wrapper, .cta .content-wrapper, .testimonials .content-wrapper, .legal .content-wrapper, .timeline .content-wrapper, .contact-info .content-wrapper, .thank-you-section .content-wrapper {
    padding: 26px 7px;
  }
}
@media (max-width: 768px) {
  .content-grid, .feature-grid, .service-list, .service-categories, .footer-contact { flex-direction: column; gap: 20px; }
  .testimonial-card { max-width: 100%; min-width: 180px; }
  .about ul, .features ul, .services ul, .contact-info ul, .thank-you-section ul, .timeline ul { gap: 12px; }
  .text-image-section { flex-direction: column; gap: 22px; align-items: center; }
  .container { padding-left: 8px; padding-right: 8px; }
}
@media (max-width: 680px) {
  h1 { font-size: 2.10rem; }
  h2 { font-size: 1.30rem; }
  .btn-primary, .btn-secondary { padding: 11px 12px; font-size: 0.98rem; }
  .hero { border-radius: 0 0 var(--radius) var(--radius); }
  .section, .features .content-wrapper, .about .content-wrapper, .services .content-wrapper, .cta .content-wrapper, .testimonials .content-wrapper, .thank-you-section .content-wrapper, .legal .content-wrapper {
    padding: 16px 2px;
  }
  .cookie-banner, .cookie-modal {
    padding: 15px 6px 15px 6px;
    max-width: 99vw;
  }
}
@media (max-width: 430px) {
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.11rem; margin-bottom: 5px; }
  .btn-primary, .btn-secondary { font-size: 0.93rem; padding: 9px 9px; }
  .cookie-banner, .cookie-modal { font-size: 0.97rem; }
}

/* ===========================
   UTILITY/HELPER CLASSES
   =========================== */
.italic { font-style: italic; }
.bold { font-weight: 600; }
.rounded { border-radius: var(--radius); }
.flex { display: flex; }
.flex-row { flex-direction: row; }
.flex-col { flex-direction: column; }
.align-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }

/* =====================
   ANIMATIONS/MICRO-UX
   ===================== */
.btn-primary, .btn-secondary, .footer-menu a, .main-nav a, .mobile-nav a {
  transition: background 0.18s, color 0.16s, box-shadow 0.16s, transform 0.13s;
}
h1, h2, h3, p, .btn-primary {
  transition: color 0.14s;
}
.card, .testimonial-card, .feature-grid li, .service-list li, .service-categories li {
  transition: box-shadow 0.14s, transform 0.13s;
}
.hero {
  animation: fadeHeroIn 1.1s cubic-bezier(.59,0,.38,1) 0.2s 1 backwards;
}
@keyframes fadeHeroIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =====================
   CUSTOM SCROLLBARS
   ===================== */
::-webkit-scrollbar { width: 10px; background: #fcf6e3; }
::-webkit-scrollbar-thumb { background: #fde098; border-radius: 12px; }

/* =====================
   END OF CSS FILE
   ===================== */
