/* ==== CSS RESET & BASE ==== */
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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body { line-height: 1; }
ol, ul, li { list-style: none; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; border: 0; }
button { font: inherit; background: none; border: none; padding: 0; cursor: pointer; }
table { border-collapse: collapse; border-spacing: 0; }

/* ==== VARIABLES & BRAND COLORS ==== */
:root {
  --color-primary: #25405A;
  --color-secondary: #F8F9FA;
  --color-accent: #D6A267;
  --color-playful-1: #26B9E3;
  --color-playful-2: #FFB900;
  --color-playful-3: #FF637D;
  --color-playful-4: #7ED957;
  --color-footer-bg: #EBF4FA;
  --color-nav-bg: #ffffff;
  --color-nav-border: #E3E8EF;
  --color-shadow: rgba(30,60,80,0.10);
  --color-shadow2: rgba(38,185,227,0.08);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* ==== TYPOGRAPHY ==== */
h1, .h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.3rem;
  color: var(--color-primary);
  letter-spacing: -1px;
  margin-bottom: 18px;
}
h2, .h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--color-primary);
  margin-bottom: 16px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-playful-1);
  margin-bottom: 10px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--color-primary);
}
p, ul, ol, li {
  font-family: var(--font-body);
  color: #262626;
  font-size: 1rem;
  line-height: 1.7;
}
strong { font-weight: 700; color: var(--color-primary); }
a { transition: color 0.2s; }

/* ==== LAYOUT STRUCTURE ==== */
body {
  background: var(--color-secondary);
  font-family: var(--font-body);
  min-height: 100vh;
  font-size: 16px;
  color: #263045;
}
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0; /* inner elements manage their own spacing */
}
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* ==== HEADER ==== */
header {
  width: 100%;
  background: var(--color-nav-bg);
  border-bottom: 1px solid var(--color-nav-border);
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 74px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
header nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--color-primary);
  padding: 10px 0 8px 0;
  font-weight: 600;
  border-radius: 18px;
  transition: background 0.18s, color 0.18s;
}
header nav a:hover, header nav a.active {
  background: var(--color-playful-1);
  color: #fff;
}
header img[alt="BriskEngine Renovierung"] {
  height: 50px;
  margin-right: 20px;
}
header .btn-primary {
  margin-left: 15px;
}
header .mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--color-primary);
  background: #fff;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--color-accent);
  box-shadow: 0 2px 4px var(--color-shadow2);
  transition: background 0.18s, box-shadow 0.25s;
  position: absolute;
  right: 18px; top: 17px;
  z-index: 99;
}
header .mobile-menu-toggle:active,
header .mobile-menu-toggle:focus {
  background: var(--color-accent);
  color: #fff;
}

/* ==== BUTTONS ==== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  border-radius: 28px;
  background: linear-gradient(95deg, var(--color-playful-1) 70%, var(--color-playful-3) 100%);
  box-shadow: 0 2px 12px var(--color-shadow2);
  transition: background 0.22s, box-shadow 0.2s, transform 0.16s;
  border: 2px solid transparent;
  margin: 15px 0;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(95deg, var(--color-playful-3) 80%, var(--color-playful-1) 100%);
  color: #fff;
  transform: translateY(-2px) scale(1.04) rotate(-2deg);
  box-shadow: 0 6px 20px var(--color-shadow2);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  background: #fff;
  border-radius: 23px;
  border: 2px solid var(--color-playful-1);
  box-shadow: 0 2px 8px var(--color-shadow);
  margin-top: 10px;
  margin-bottom: 10px;
  transition: background 0.19s, color 0.19s, border 0.2s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-playful-1);
  color: #fff;
  border-color: var(--color-playful-3);
}

/* ==== HERO SECTION ==== */
.hero-section {
  background: linear-gradient(120deg, var(--color-playful-2) 18%, var(--color-secondary) 90%);
  min-height: 350px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 60px;
  padding-top: 40px;
  padding-bottom: 45px;
}
.hero-section .container, .hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.hero-section h1 {
  font-size: 2.8rem;
  color: var(--color-primary);
  letter-spacing: -2px;
}
.hero-section .subheadline {
  font-size: 1.22rem;
  font-family: var(--font-body);
  color: var(--color-playful-1);
  margin-bottom: 10px;
  margin-top: -8px;
}

/* ==== FEATURES GRID ==== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 24px;
  margin-bottom: 20px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 14px var(--color-shadow);
  padding: 30px 22px 22px 22px;
  min-width: 210px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.16s, box-shadow 0.18s, background 0.22s;
  margin-bottom: 20px;
  border: 2.5px solid var(--color-playful-1);
  position: relative;
  z-index: 2;
  animation: float-card 0.6s cubic-bezier(.7,-0.3,.23,1.3) 1;
}
.feature-grid > div:hover {
  background: var(--color-playful-1);
  color: #fff;
  transform: scale(1.04) rotate(-1.5deg);
  box-shadow: 0 8px 30px var(--color-shadow2);
  border-color: var(--color-playful-2);
}
.feature-grid img {
  height: 48px;
  width: 48px;
  background: var(--color-playful-4);
  border-radius: 50%;
  padding: 10px;
  margin-bottom: 6px;
  box-shadow: 0 3px 10px var(--color-shadow2);
}
.feature-grid h3 { color: var(--color-playful-2); margin-bottom: 4px; }
.feature-grid > div:hover h3, .feature-grid > div:hover p { color: #fff; }
.feature-grid p {
  color: #555;
  transition: color 0.16s;
}

/* ==== TESTIMONIALS ==== */
.testimonials-section {
  background: linear-gradient(104deg, var(--color-secondary) 85%, var(--color-playful-4) 100%);
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 26px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  color: #28343c;
  min-width: 250px;
  max-width: 330px;
  padding: 20px 18px 18px 24px;
  margin-bottom: 20px;
  border-radius: 22px;
  box-shadow: 0 2px 16px var(--color-shadow);
  border-left: 8px solid var(--color-playful-1);
  border-right: 3px solid var(--color-playful-2);
  position: relative;
  z-index: 2;
  transition: box-shadow 0.18s, transform 0.15s;
}
.testimonial-card strong {
  color: var(--color-playful-3);
  font-size: 1.01rem;
  font-weight: 700;
}
.testimonial-card p {
  color: #263045;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px var(--color-shadow2);
  transform: scale(1.03) rotate(-1deg);
}
.star-rating-summary {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-playful-1);
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 1.07rem;
}
.star-rating-summary img {
  height: 26px; width: 26px;
  margin-right: 3px;
}

/* ==== BLOG CARDS ==== */
.blog-summary-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 20px;
}
.blog-card {
  background: #fff;
  border-radius: 20px;
  min-width: 220px;
  max-width: 320px;
  padding: 20px 22px 18px 22px;
  box-shadow: 0 2px 12px var(--color-shadow2);
  margin-bottom: 20px;
  border: 2px solid var(--color-playful-4);
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  position: relative;
  transition: box-shadow 0.17s, border 0.17s, transform 0.16s;
}
.blog-card:before {
  content: '';
  position: absolute;
  right: 12px; top: 10px;
  background: var(--color-playful-3);
  width: 18px; height: 18px;
  border-radius: 50%;
  opacity: .12;
  z-index: 1;
  pointer-events: none;
}
.blog-card:hover {
  border-color: var(--color-playful-2);
  box-shadow: 0 6px 28px var(--color-shadow);
  transform: rotate(-1.2deg) scale(1.035);
}
.blog-card h3 {
  font-size: 1.11rem;
  color: var(--color-playful-2);
  font-weight: 700;
  margin-bottom: 5px;
}
.blog-card p {
  color: #535353;
  font-size: 0.98rem;
  margin-bottom: 7px;
}
.blog-card a {
  color: var(--color-playful-1);
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: color 0.13s;
  margin-top: 6px;
}
.blog-card a:hover {
  color: var(--color-playful-3);
  text-decoration: underline;
}

/* ==== CARD CONTAINER & GRID PATTERNS ==== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==== CONTACT & FORM ==== */
.contact-shortform-fields,
.contact-form-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
  margin-bottom: 22px;
  margin-top: 10px;
  align-items: center;
}
.contact-shortform-fields span,
.contact-form-fields span {
  display: flex;
  align-items: center;
  font-size: 1rem;
  background: #fff;
  border-radius: 15px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 0;
  box-shadow: 0 1px 5px var(--color-shadow2);
  gap: 7px;
  color: #35404f;
  font-family: var(--font-body);
}
.contact-form-fields a { color: var(--color-playful-1); text-decoration: underline; }
.contact-form-fields img, .contact-shortform-fields img {
  height: 22px;
  margin-right: 6px;
}
.phone-link {
  color: var(--color-primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 1.15rem;
  text-decoration: underline dashed var(--color-playful-2);
  transition: color 0.17s;
}
.phone-link img {
  height: 22px;
}
.phone-link:hover {
  color: var(--color-playful-1);
  text-decoration-color: var(--color-playful-3);
}

/* ==== PRICING TABLE ==== */
.pricing-table-section {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1.5px 8px var(--color-shadow2);
  margin-bottom: 60px;
}
.pricing-table {
  width: 100%;
  font-family: var(--font-body);
  border-radius: 10px;
  margin: 22px 0 10px 0;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 14px 18px;
  text-align: left;
  font-size: 1.06rem;
}
.pricing-table th {
  background: var(--color-playful-1);
  color: #fff;
  font-weight: 800;
}
.pricing-table tr:nth-child(even) td {
  background: var(--color-playful-4);
  color: #264045;
}
.pricing-table tr:nth-child(odd) td {
  background: #f8fafb;
}

/* ==== NEWSLETTER CTA ==== */
.newsletter-cta {
  background: var(--color-playful-4);
  border-radius: 24px;
  box-shadow: 0 1.5px 8px var(--color-shadow2);
  padding: 23px 20px;
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.newsletter-cta p {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--color-primary);
}

/* ==== FOOTER ==== */
footer {
  width: 100%;
  background: var(--color-footer-bg);
  border-top: 1px solid var(--color-nav-border);
  padding: 36px 0 24px 0;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 34px 44px;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 15px;
}
.footer-menu a {
  font-size: 1rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 600;
  opacity: 0.85;
  transition: color 0.15s, opacity 0.15s;
}
.footer-menu a:hover {
  color: var(--color-playful-1);
  opacity: 1;
}
.social-links {
  display: flex;
  flex-direction: row;
  gap: 15px;
  align-items: center;
}
.social-links a img {
  height: 28px;
  width: 28px;
  filter: drop-shadow(0px 2px 2px var(--color-shadow2));
  transition: filter 0.15s, transform 0.15s;
}
.social-links a:hover img {
  filter: drop-shadow(0px 4px 10px var(--color-playful-2));
  transform: scale(1.12) rotate(-7deg);
}
footer img[alt="BriskEngine Renovierung"] {
  height: 40px; margin: 4px 12px 0 0;
}
footer p {
  font-size: 0.98rem;
  color: #5c6470;
  margin-top: 8px;
}

/* ==== STATS SECTION ==== */
.stats-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
  margin: 12px 0 0 0;
}
.stats-section li {
  background: var(--color-playful-2);
  color: var(--color-primary);
  border-radius: 16px;
  font-family: var(--font-display);
  font-size: 1.13rem;
  font-weight: 700;
  padding: 16px 30px;
  box-shadow: 0 2px 10px var(--color-shadow2);
  transition: background 0.15s, box-shadow 0.13s;
  margin-bottom: 18px;
}
.stats-section li strong { color: var(--color-playful-3); font-size: 1.22rem; font-weight: 800; }
.stats-section li:hover { background: var(--color-playful-1); color: #fff; box-shadow: 0 8px 36px var(--color-shadow2); }

/* ==== MODALS, OVERLAYS, ANIMATIONS ==== */
@keyframes float-card {
  0% { transform: scale(0.88) translateY(30px); opacity:0; }
  55% { transform: scale(1.03) translateY(-16px); opacity:0.72; }
  89% { transform: scale(0.97) translateY(5px); opacity:1; }
  100% { transform: scale(1) translateY(0); opacity:1; }
}

/* ==== MOBILE NAVIGATION ==== */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0;
  right: 0;
  width: 82vw;
  max-width: 360px;
  height: 100vh;
  background: #fff;
  box-shadow: -3px 2px 30px var(--color-shadow2);
  transform: translateX(110%);
  opacity: 0;
  transition: transform 0.33s cubic-bezier(.85,-0.01,.26,.99), opacity 0.27s;
  z-index: 9000;
  visibility: hidden;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  box-shadow: -7px 2px 38px var(--color-shadow2);
}
.mobile-menu-close {
  position: absolute;
  top: 18px; right: 18px;
  font-size: 2rem;
  background: #fff;
  color: var(--color-playful-3);
  border-radius: 50%;
  width: 40px; height: 40px;
  box-shadow: 0 2px 8px var(--color-shadow);
  z-index: 9100;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 68px 0 0 30px;
  width: 80%;
  font-family: var(--font-display);
}
.mobile-nav a {
  font-size: 1.13rem;
  color: var(--color-primary);
  background: none;
  padding: 11px 0;
  border-radius: 17px;
  transition: background 0.13s, color 0.13s;
}
.mobile-nav a:hover {
  background: var(--color-playful-2);
  color: #fff;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  z-index: 9999;
  background: var(--color-footer-bg);
  padding: 22px 16px 18px 16px;
  border-radius: 19px 19px 0 0;
  box-shadow: 0 -2px 16px var(--color-shadow2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  animation: fadeInUp 0.6s;
}
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(100px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner-message {
  font-family: var(--font-body);
  color: #28343c;
  text-align: center;
  font-size: 1.1rem;
}
.cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
.cookie-banner .btn-primary,
.cookie-banner .btn-secondary {
  min-width: 115px;
  font-size: 1rem;
  padding: 10px 12px;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(60, 72, 90, 0.37);
  z-index: 10100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-dialog {
  background: #fff;
  border-radius: 24px;
  padding: 38px 28px;
  box-shadow: 0 4px 44px var(--color-shadow2);
  min-width: 320px; max-width: 98vw;
  max-height: 90vh; overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 13px;
  animation: scaleUp 0.5s;
}
@keyframes scaleUp {
  from { transform: scale(0.82); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal-header {
  display: flex; flex-direction: row; align-items: center; justify-content: space-between;
  margin-bottom: 6px;
}
.cookie-close-modal {
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--color-playful-3);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 22px 0 9px 0;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  font-family: var(--font-body);
  font-size: 1.03rem;
  padding: 5px 0;
}
.cookie-category input[type='checkbox'] {
  width: 20px; height: 20px;
  accent-color: var(--color-playful-1);
}
.cookie-category label {
  font-size: 1.02rem;
  color: var(--color-primary);
  cursor: pointer;
  user-select: none;
}
.cookie-category.essential label {
  color: var(--color-playful-2);
  font-weight: 700;
}
.cookie-category.essential input {
  visibility: hidden;
  pointer-events: none;
}
.cookie-modal-footer {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 12px;
}

/* ==== RESPONSIVE/MOBILE ==== */
@media (max-width: 1068px) {
  .container { max-width: 96vw; }
}
@media (max-width: 900px) {
  .feature-grid, .testimonial-list, .blog-summary-cards, .content-grid, .stats-section ul {
    gap: 16px;
  }
  .feature-grid > div, .testimonial-card, .blog-card {
    min-width: 175px;
    max-width: 98vw;
  }
  header .container { gap: 8px; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
  }
  header nav {
    display: none;
  }
  header .btn-primary {
    display: none;
  }
  header .mobile-menu-toggle {
    display: flex;
  }
  .section, section, .hero-section {
    padding: 32px 6vw;
  }
  .feature-grid, .testimonial-list, .blog-summary-cards, .stats-section ul {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .feature-grid > div, .testimonial-card, .blog-card, .stats-section li {
    min-width: 0; width: 100%;
  }
  .content-wrapper {
    padding: 0;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .mobile-menu { width: 98vw; max-width: 98vw; }
  .mobile-nav { margin-left: 12vw; }
  footer .content-wrapper { gap: 24px; flex-direction: column; align-items: flex-start; }
  .footer-menu { gap: 12px; }
  .social-links { gap: 8px; }
}
@media (max-width: 500px) {
  .hero-section h1 { font-size: 1.5rem; }
  .btn-primary, .btn-secondary { font-size: 0.97rem; padding: 12px 11px; }
  .cookie-modal-dialog { padding: 17px 6px; min-width: 0; }
}

/* ==== UTILITY ==== */
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.text-center { text-align: center; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.gap-20 { gap: 20px; }
.gap-10 { gap: 10px; }

/* ==== SELECT FORM ELEMENTS ==== */
input, select, textarea {
  border-radius: 7px;
  padding: 9px 14px;
  border: 2px solid var(--color-nav-border);
  font-family: var(--font-body);
  font-size: 1.07rem;
  background: #fff;
  box-shadow: 0 1px 3px var(--color-shadow2);
  outline: none;
  transition: border-color 0.18s;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--color-playful-1);
}

/* ==== EXTRAS & DECORS ==== */
@media (min-width: 1200px) {
  .hero-section:before {
    content: '';
    position: absolute;
    right: 0; top: 22px;
    width: 280px; height: 170px;
    background: radial-gradient(ellipse closest-side, var(--color-playful-1) 18%, transparent 80%);
    opacity: .17;
    z-index: 1;
    pointer-events: none;
    border-radius: 62%/37%;
  }
}

/* ==== PAGE-SPECIFIC SECTIONS (CONTACT/DETAILS/MAP) ==== */
.contact-details-section ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-details-section li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.08rem;
}
.contact-details-section img { height: 24px; }
.location-map-section .embedded-map {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  background: var(--color-playful-4);
  padding: 14px 18px;
  border-radius: 12px;
}
.location-map-section img { height: 38px; }

/* ==== CONFIRMATION SECTION ==== */
.confirmation-section h1 {
  font-size: 2rem;
  color: var(--color-playful-3);
  margin-bottom: 12px;
}
.confirmation-section p, .confirmation-section a {
  font-size: 1.05rem;
}
.confirmation-section a.btn-primary {
  margin-top: 18px;
}

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