/* ===============================
   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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: Roboto, Arial, sans-serif;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  background: #fff;
  color: #1C437E;
  font-size: 16px;
  font-family: Roboto, Arial, sans-serif;
  min-height: 100vh;
  position: relative;
  line-height: 1.6;
}

/* ===============================
   BRAND VARS & COLORS
=============================== */
:root {
  --primary: #1C437E;
  --secondary: #FEC347;
  --accent: #E9F1F7;
  --electric-blue: #1cb9fc;
  --hot-pink: #FF2787;
  --neon-green: #6EFF3B;
  --deep-navy: #09203f;
  --card-shadow: rgba(28, 67, 126, 0.13);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --display: 'Montserrat', Arial, sans-serif;
  --body: 'Roboto', Arial, sans-serif;
}

/* ===============================
   GLOBAL TYPOGRAPHY
=============================== */
h1, .h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: 2.25rem;
  color: var(--primary);
  letter-spacing: -1px;
  margin-bottom: 18px;
  line-height: 1.1;
}
h2, .h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.7rem;
  color: var(--primary);
  margin-bottom: 12px;
  line-height: 1.15;
}
h3, .h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--deep-navy);
  margin-bottom: 8px;
}
h4, .h4 {
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
}
p, ul, ol, li {
  font-family: var(--body);
  font-size: 1rem;
}
p {
  margin-bottom: 16px;
}
strong {
  color: var(--primary);
  font-weight: bold;
}

/* ===============================
   SPACING & CONTAINER PATTERNS
=============================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px var(--card-shadow);
  background: #fff;
}
.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;
  margin-bottom: 20px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 2px 16px var(--card-shadow);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 210px;
  max-width: 300px;
  padding: 18px 16px 20px 16px;
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: 0 2px 12px var(--card-shadow);
  margin-bottom: 20px;
  transition: box-shadow .19s cubic-bezier(.83,.08,.34,1);
}
.feature-item img {
  width: 48px;
  height: 48px;
}
.feature-item:hover {
  box-shadow: 0 8px 36px var(--card-shadow);
  transform: translateY(-3px) scale(1.03);
}

/* Accent background sections */
.accent-bg {
  background: var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 32px rgba(28,67,126,0.06);
  margin-bottom: 60px;
}

/* ===============================
   HEADER & NAVIGATION
=============================== */
header {
  width: 100%;
  background: #fff;
  border-bottom: 2.5px solid var(--secondary);
  font-family: var(--display);
  position: sticky;
  top: 0;
  z-index: 40;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.logo img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: var(--display);
  font-weight: 600;
  text-decoration: none;
  color: var(--primary);
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 8px;
  transition: background 0.2s, color 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--secondary);
  color: var(--deep-navy);
}
.main-nav .btn-primary {
  margin-left: 14px;
}

/* Hamburger (mobile) menu toggle */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  border: none;
  font-size: 2.1rem;
  border-radius: 50%;
  padding: 7px 13px;
  margin-left: 10px;
  cursor: pointer;
  color: var(--primary);
  transition: background 0.15s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--hot-pink);
  color: #fff;
}

/* ===============================
   MOBILE MENU OVERLAY
=============================== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28,67,126,0.98);
  z-index: 110;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.81,-0.06,.22,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 30px;
  gap: 0;
  box-shadow: 0 0 72px 0 rgba(28,67,126,0.17);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: var(--electric-blue);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  margin-right: 22px;
  padding: 8px 15px;
  cursor: pointer;
  margin-bottom: 20px;
  transition: background 0.15s, color 0.17s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--neon-green);
  color: var(--deep-navy);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-left: 36px;
  margin-top: 20px;
}
.mobile-nav a {
  display: block;
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.28rem;
  padding: 16px 12px 16px 4px;
  text-decoration: none;
  letter-spacing: 0.4px;
  border-radius: 10px;
  transition: background 0.15s, color 0.13s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--hot-pink);
  color: #fff;
}

@media (max-width: 1100px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 940px) {
  .main-nav {
    gap: 9px;
  }
  .main-nav a {
    font-size: 0.97rem;
    padding: 8px 6px;
  }
}

@media (max-width: 850px) {
  .main-nav a {
    font-size: 0.96rem;
    padding: 6px 4px;
  }
  header .container {
    min-height: 60px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .container {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* ===============================
   HERO SECTION
=============================== */
.hero {
  background: linear-gradient(90deg, var(--secondary) 30%, var(--electric-blue) 95%);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  padding: 48px 0 48px 0;
  margin-bottom: 40px;
  box-shadow: 0 8px 52px -17px var(--electric-blue);
}
.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  max-width: 690px;
  align-items: flex-start;
  gap: 6px;
}
.hero h1 {
  color: #fff;
  text-shadow: 0 4px 32px rgba(28,67,126,0.13);
}
.hero p {
  font-size: 1.15rem;
  color: #fff;
  margin-bottom: 22px;
  font-weight: 500;
  letter-spacing: 0.12px;
}
.hero .btn-primary {
  margin-top: 10px;
}

/* ===============================
   FEATURES SECTION
=============================== */
.features,
.features.accent-bg,
.about.accent-bg,
.services.accent-bg,
.contact.accent-bg {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-lg);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
}
.features .feature-item {
  min-width: 210px;
  flex: 1 1 210px;
}

/* ===============================
   SERVICES / CARDS
=============================== */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-card {
  background: #fff;
  padding: 24px 18px 22px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 18px var(--card-shadow);
  min-width: 200px;
  max-width: 280px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.15s;
  position: relative;
}
.service-card:hover {
  box-shadow: 0 8px 40px var(--card-shadow);
  transform: translateY(-5px) scale(1.035);
}
.service-card .price {
  margin-top: 14px;
  color: var(--hot-pink);
  font-weight: 700;
  font-size: 1rem;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-bottom: 30px;
}
.service-list li {
  background: #fff;
  box-shadow: 0 2px 18px var(--card-shadow);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.14s;
}
.service-list li:hover {
  box-shadow: 0 8px 36px var(--card-shadow);
  transform: translateY(-2px) scale(1.015);
}
.service-list .price {
  color: var(--hot-pink);
  font-weight: 600;
  margin-top: 14px;
}

.pricing-details {
  background: var(--accent);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 18px var(--card-shadow);
  font-weight: 600;
  color: var(--primary);
  padding: 20px;
  margin-bottom: 28px;
  font-family: var(--display);
  font-size: 1.07rem;
}
.booking-link {
  margin-bottom: 14px;
  margin-top: 18px;
}

/* ===============================
   TESTIMONIALS & RATINGS
=============================== */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius-lg);
}
.testimonials-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 26px;
}
.testimonial-card {
  flex: 1 1 270px;
  background: #fff;
  color: #181E26;
  box-shadow: 0 2px 18px var(--card-shadow);
  border-radius: var(--radius-md);
  padding: 20px 26px 18px 26px;
  min-width: 220px;
  max-width: 370px;
  position: relative;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 1.02rem;
  transition: box-shadow 0.17s, transform 0.15s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 40px var(--card-shadow);
  transform: translateY(-5px) scale(1.03);
}
.testimonial-author {
  display: block;
  font-weight: 700;
  font-family: var(--display);
  color: var(--primary);
  margin-top: 10px;
  font-size: 0.98rem;
}
.ratings-summary {
  background: #fff;
  padding: 15px 20px;
  color: var(--deep-navy);
  font-weight: 700;
  font-family: var(--display);
  border-radius: var(--radius-sm);
  box-shadow: 0 1px 10px var(--card-shadow);
  margin-bottom: 18px;
}
.ratings-summary p {
  margin-bottom: 3px;
}

/* ===============================
   ABOUT & LEGAL PAGES
=============================== */
.about-team {
  margin-bottom: 32px;
}
.team-features {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
  margin-bottom: 24px;
}
.team-features li {
  font-family: var(--body);
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--electric-blue);
  font-size: 1.06rem;
}
.legal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 32px 0 var(--card-shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.legal h1, .legal h2, .legal h3 {
  margin-bottom: 14px;
}
.legal ul {
  margin-bottom: 18px;
  margin-left: 18px;
}
.legal li {
  margin-bottom: 6px;
}

/* ===============================
   CONTACT PAGE LAYOUT
=============================== */
.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 28px;
}
.contact-details {
  flex: 1 1 240px;
  min-width: 200px;
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: 0 2px 16px var(--card-shadow);
  padding: 18px 18px 14px 18px;
}
.contact-action {
  flex: 2 1 320px;
  min-width: 220px;
  background: var(--electric-blue);
  color: #fff;
  padding: 22px 22px 18px 22px;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 18px var(--card-shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--body);
}
.contact-action h3 {
  color: #fff;
}
.contact-action ul {
  list-style: none;
  margin-top: 12px;
  margin-bottom: 14px;
  padding-left: 0;
}
.contact-action li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
  margin-bottom: 7px;
}
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
  font-size: 1rem;
  color: var(--primary);
}
.map-placeholder img {
  filter: drop-shadow(0 2px 4px var(--card-shadow));
}

/* ===============================
   BUTTONS & LINKS
=============================== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  font-family: var(--display);
  font-weight: 800;
  font-size: 1.1rem;
  padding: 12px 26px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  transition: background 0.15s, color 0.13s, box-shadow 0.13s, transform 0.13s;
  box-shadow: 0 2px 10px var(--card-shadow);
  margin-bottom: 8px;
  margin-top: 8px;
  text-align: center;
}
.btn-primary {
  color: #fff !important;
  background: linear-gradient(90deg, var(--primary) 65%, var(--electric-blue) 100%);
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, var(--hot-pink) 40%, var(--primary) 100%);
  color: #fff !important;
  transform: translateY(-1px) scale(1.04);
}
.btn-secondary {
  color: var(--primary);
  background: var(--secondary);
  border: 2px solid var(--primary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--electric-blue);
  color: #fff;
  border-color: var(--hot-pink);
  transform: scale(1.045);
}
a {
  color: var(--hot-pink);
  text-decoration: underline dotted 2px;
  transition: color 0.13s;
}
a:hover, a:focus {
  color: var(--electric-blue);
  text-decoration: underline solid 2px;
}

/* ===============================
   FOOTER
=============================== */
footer {
  width: 100%;
  background: #1C437E;
  color: #fff;
  padding: 34px 0 18px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-menu {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.footer-menu a {
  color: var(--secondary);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 9px;
  border-radius: 7px;
  transition: background 0.12s, color 0.13s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: var(--hot-pink);
  background: #fff;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 10px;
}
.contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  min-width: 200px;
}
.contact-row img {
  width: 24px;
  height: 24px;
  filter: invert(68%) sepia(22%) saturate(1200%) hue-rotate(10deg);
}
.footer-brand {
  width: 100%;
  text-align: center;
  font-size: 0.98rem;
  margin-top: 10px;
  color: #fff;
  opacity: 0.7;
  letter-spacing: 0.5px;
}

/* ===============================
   RESPONSIVE ADJUSTMENTS
=============================== */
@media (max-width: 1020px) {
  .feature-grid,
  .service-cards,
  .card-container,
  .testimonials-wrap,
  .content-grid {
    gap: 16px;
  }
}

@media (max-width: 968px) {
  .feature-grid,
  .service-cards,
  .card-container,
  .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 12px;
  }
  .footer-menu {
    gap: 10px;
  }
}

@media (max-width: 800px) {
  .features .feature-item, .service-card, .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
  .features .feature-item {
    width: 100%;
  }
  .service-list {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 660px) {
  .contact-info-grid {
     flex-direction: column;
     gap: 16px;
  }
}
@media (max-width: 558px) {
  .hero {
    padding: 34px 0 32px 0;
  }
  .container, .section {
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .footer-contact {
    gap: 6px;
  }
}
@media (max-width: 560px) {
  h1, .h1 {
    font-size: 1.45rem;
  }
  h2, .h2 {
    font-size: 1.12rem;
  }
}
@media (max-width: 450px) {
  .container, .section {
    padding-left: 3vw;
    padding-right: 3vw;
  }
  .feature-item, .card, .service-card {
    padding: 11px 8px 14px 8px;
  }
  .feature-grid, .service-cards, .testimonials-wrap {
    gap: 12px;
  }
}

/* ===============================
   COOKIE CONSENT BANNER & MODAL
=============================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--primary);
  color: #fff;
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 7vw 18px 7vw;
  box-shadow: 0 0 32px 0 var(--card-shadow);
  font-size: 1rem;
  transition: transform .35s cubic-bezier(.85,-0.16,.23,1);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner-text {
  font-size: 1rem;
  flex: 2 1 360px;
  line-height: 1.5;
}
.cookie-banner-buttons {
  display: flex;
  gap: 11px;
  flex-wrap: wrap;
}
.cookie-banner .btn-consent {
  font-family: var(--display);
  border-radius: 28px;
  font-size: 1rem;
  padding: 9px 23px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  box-shadow: 0 2px 6px var(--card-shadow);
  outline: none;
}
.cookie-banner .accept {
  background: var(--neon-green);
  color: var(--deep-navy);
}
.cookie-banner .accept:hover,
.cookie-banner .accept:focus {
  background: var(--hot-pink);
  color: #fff;
}
.cookie-banner .reject {
  background: var(--hot-pink);
  color: #fff;
}
.cookie-banner .reject:hover,
.cookie-banner .reject:focus {
  background: #fff;
  color: var(--primary);
}
.cookie-banner .settings {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-banner .settings:hover,
.cookie-banner .settings:focus {
  background: var(--electric-blue);
  color: #fff;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  bottom: 50vh;
  transform: translate(-50%, 40vh);
  z-index: 1600;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 39px 0 var(--card-shadow);
  max-width: 420px;
  width: 95vw;
  padding: 32px 24px 26px 24px;
  display: none;
  flex-direction: column;
  gap: 18px;
  color: var(--primary);
  animation: cookie-modal-fade .35s cubic-bezier(.71,.06,.42,1);
}
.cookie-modal.active {
  display: flex;
}
@keyframes cookie-modal-fade {
  from { opacity: 0; transform: translate(-50%, 80vh); }
  to { opacity: 1; transform: translate(-50%, 40vh); }
}
.cookie-modal h2 {
  font-size: 1.22rem;
  margin-bottom: 11px;
  font-weight: 800;
  font-family: var(--display);
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}
.cookie-modal input[type='checkbox'][disabled] ~ label {
  color: #999;
}
.cookie-modal .cookie-category-title {
  font-weight: 700;
  font-size: 1rem;
}
.cookie-modal .cookie-toggle {
  margin-left: auto;
  accent-color: var(--electric-blue);
  width: 20px;
  height: 20px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal .cookie-close {
  background: var(--hot-pink);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.4rem;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 9px;
  right: 13px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .13s;
}
.cookie-modal .cookie-close:hover,
.cookie-modal .cookie-close:focus {
  background: var(--electric-blue);
  color: #fff;
}

@media (max-width: 768px) {
  .section,
  .features,
  .features.accent-bg,
  .about.accent-bg,
  .services.accent-bg,
  .contact.accent-bg,
  .legal {
    padding: 23px 6vw;
    margin-bottom: 36px;
  }
  .hero {
    padding: 18px 0 20px 0;
    margin-bottom: 22px;
  }
  .hero h1,
  .hero p {
    font-size: 1rem;
  }
  .content-wrapper {
    padding: 0;
  }
  .feature-grid,
  .service-cards,
  .card-container,
  .testimonials-wrap,
  .content-grid,
  .contact-info-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    padding-left: 5vw;
    padding-right: 5vw;
    gap: 11px;
    align-items: flex-start;
  }
}

/* ===============================
   MICRO-ANIMATIONS
=============================== */
.btn-primary, .btn-secondary, .btn-consent {
  transition: background 0.13s, color 0.13s, transform 0.13s;
}
.feature-item, .service-card, .testimonial-card {
  transition: box-shadow 0.17s, transform 0.15s;
}
.feature-item:active, .service-card:active, .testimonial-card:active {
  transform: scale(0.97);
}

/* ===============================
   CONFIRMATION PAGE
=============================== */
.confirmation {
  padding: 60px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.confirmation .content-wrapper {
  align-items: center;
  text-align: center;
  background: var(--accent);
  padding: 46px 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 12px var(--card-shadow);
}
