/* =======================
   CSS RESET & NORMALIZATION
   ======================= */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
}
body {
  background: #F7F9FA;
  color: #24180d;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.75;
  min-height: 100vh;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', Georgia, serif;
  color: #162346;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
h1 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.17rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, li {
  color: #24180d;
  font-size: 1rem;
  margin-bottom: 10px;
}
strong {
  color: #1b253d;
}
a {
  color: #34B3D1;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FF7B4A;
  text-decoration: underline;
}
ul, ol {
  padding-left: 20px;
  margin-bottom: 20px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, .btn-primary {
  cursor: pointer;
  border: none;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
}
/* =======================
   COLORS
   ======================= */
:root {
  --primary: #162346;
  --secondary: #34B3D1;
  --accent: #F7F9FA;
  --text: #24180d;
  --cta: #FF7B4A;
  --testimonial-bg: #fff6e7;
  --card-bg: #fff9f7;
  --menu-bg: #fef8f4;
  --shadow: 0 2px 16px 0 rgba(50, 36, 21, 0.08);
  --shadow-strong: 0 8px 32px 0 rgba(50, 36, 21, 0.18);
}

/* =======================
   LAYOUT CONTAINERS
   ======================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
/* =======================
   HEADER + NAVIGATION
   ======================= */
header {
  background: #fff;
  box-shadow: var(--shadow);
  padding-bottom: 0;
  position: relative;
  z-index: 20;
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}
.header-top img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  padding: 7px 18px;
  font-size: 1rem;
  color: #162346;
  border-radius: 20px;
  font-weight: 500;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #f9eee5;
  color: #FF7B4A;
}
.btn-primary {
  background: linear-gradient(90deg, #FFB85C 0%, #FF7B4A 100%);
  color: #fff;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 32px;
  font-size: 1.12rem;
  box-shadow: 0 4px 20px 0 rgba(255, 123, 74, 0.09);
  letter-spacing: 0.03em;
  border: none;
  transition: box-shadow 0.18s, background 0.18s, color 0.18s;
  margin-left: 12px;
  outline: none;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #FF9652 0%, #FF7B4A 100%);
  color: #fff;
  box-shadow: 0 8px 24px 0 rgba(255, 123, 74, 0.13);
  text-decoration: none;
}

/* =======================
   MOBILE MENU
   ======================= */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  font-size: 2rem;
  color: #FF7B4A;
  border-radius: 50%;
  padding: 6px 12px;
  margin-right: 6px;
  transition: background 0.16s;
  z-index: 200;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: #fff3e6;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--menu-bg);
  z-index: 300;
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.72,.04,.3,.92);
  box-shadow: var(--shadow-strong);
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 28px 28px 28px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  font-size: 2rem;
  color: #FF7B4A;
  align-self: flex-end;
  margin-bottom: 24px;
  border-radius: 50%;
  padding: 6px 12px;
  transition: background 0.16s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #fff3e6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.mobile-nav a {
  color: #162346;
  font-size: 1.18rem;
  padding: 14px 8px;
  border-radius: 18px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fff3e6;
  color: #FF7B4A;
}
/* Hide desktop navigation on mobile, show burger */
@media (max-width: 992px) {
  .main-nav, .btn-primary {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block !important;
  }
}
@media (max-width: 576px) {
  .mobile-menu {
    padding: 26px 8px 8px 8px;
  }
}

/* =======================
   HERO SECTION
   ======================= */
.hero {
  background: linear-gradient(97deg, #fff5ec 0%, #fff7f4 60%, #f7fcfd 100%);
  border-radius: 0 0 45px 45px;
  box-shadow: 0 2px 16px 0 rgba(255, 186, 92, 0.10);
  margin-bottom: 60px;
  padding: 48px 0 36px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}
.hero h1 {
  color: #162346;
  font-size: 2.4rem;
  line-height: 1.16;
  margin-bottom: 10px;
}
.hero .subheadline {
  font-size: 1.17rem;
  color: #733715;
  margin-bottom: 14px;
  font-weight: 500;
}
@media (max-width: 600px) {
  .hero {
    padding: 30px 0 14px 0;
    border-radius: 0 0 24px 24px;
  }
  .hero .content-wrapper {
    align-items: flex-start;
  }
  .hero h1 {
    font-size: 1.45rem;
  }
}

/* =======================
   FEATURES, SERVICES, ABOUT SECTIONS
   ======================= */
.features, .about, .services, .cta, .about-office, .contact-section, .privacy-policy, .rodo-info, .cookie-policy, .terms-content, .thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.features ul, .services ul, .about ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-bottom: 0;
}
/* Feature grid (for homepage icon features) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
}
.feature-grid li {
  background: #fff9f7;
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 32px 24px;
  flex: 1 1 240px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.16s, transform 0.13s;
  border: 2px solid #ffeee2;
}
.feature-grid li:hover {
  box-shadow: 0 8px 26px 0 rgba(255, 186, 92, 0.17);
  transform: translateY(-2px) scale(1.02);
}
.feature-grid li img {
  width: 48px;
  height: 48px;
  margin-bottom: 8px;
}
.feature-grid li strong {
  font-size: 1.09rem;
  color: #E56A30;
}
.features ul li, .services ul li, .about ul li {
  background: #fffbf6;
  border-radius: 16px;
  padding: 18px 20px 18px 50px;
  position: relative;
  flex: 1 1 210px;
  box-shadow: var(--shadow);
  min-width: 170px;
  margin-bottom: 0;
  margin-right: 0;
  font-size: 1rem;
  color: #4A3112;
}
.features ul li img, .services ul li img, .about ul li img {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 28px;
  height: 28px;
  margin: 0;
}
.features .content-wrapper > div, .services .content-wrapper > div, .about .content-wrapper > div {
  margin-top: 16px;
}

@media (max-width: 900px) {
  .feature-grid, .features ul, .services ul, .about ul {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid li, .features ul li, .services ul li, .about ul li {
    width: 100%;
    min-width: 0;
    padding-left: 54px;
  }
}

/* =======================
   CTA SECTION
   ======================= */
.cta {
  background: linear-gradient(99deg, #fff9f7 30%, #ffe7d7 100%);
  border-radius: 34px;
  box-shadow: 0 2px 20px 0 rgba(255, 123, 74, 0.10);
  margin-bottom: 52px;
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  align-items: center;
}
.cta h2 {
  color: #E56A30;
  font-size: 1.80rem;
  margin-bottom: 12px;
}
.cta ul {
  margin-bottom: 18px;
}
@media (max-width: 700px) {
  .cta {
    border-radius: 18px;
    padding: 22px 10px;
  }
  .cta .content-wrapper {
    gap: 10px;
  }
}

/* =======================
   CARD CONTAINERS & CARDS
   ======================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff9f7;
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 24px;
  flex: 1 1 350px;
  transition: box-shadow 0.15s, transform 0.14s;
}
.card:hover {
  box-shadow: 0 8px 24px 0 rgba(255, 186, 92, 0.13);
  transform: translateY(-2px) scale(1.017);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* =======================
   TESTIMONIAL CARDS
   ======================= */
.testimonials {
  background: #fff6e7;
  border-radius: 32px;
  box-shadow: 0 2px 18px 0 rgba(255, 144, 70, 0.10);
  padding: 40px 20px;
  margin-bottom: 60px;
}
.testimonials h2 {
  color: #D95124;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 20px 24px 18px 24px;
  margin-bottom: 20px;
  border-left: 6px solid #FFB85C;
  transition: box-shadow 0.15s, transform 0.13s;
  color: #1C140A;
}
.testimonial-card p {
  font-size: 1.09rem;
  margin-bottom: 6px;
  color: #1C140A;
}
.testimonial-card span {
  color: #E56A30; font-size: 0.97rem;
}
.testimonial-card strong {
  color: #162346;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(255, 167, 73, 0.11);
  transform: translateY(-1px) scale(1.01);
}
@media (max-width: 700px) {
  .testimonials {
    border-radius: 16px;
    padding: 24px 10px;
  }
  .testimonial-card {
    padding: 14px 12px 12px 14px;
    border-radius: 14px;
  }
}

/* =======================
   SCHEDULE TABLE
   ======================= */
.schedule-table {
  width: 100%;
  border-radius: 12px;
  background: #fff9f7;
  box-shadow: var(--shadow);
  margin: 24px 0 36px 0;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
}
.schedule-table th,
.schedule-table td {
  padding: 14px 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #24180d;
}
.schedule-table thead th {
  background: #FFB85C;
  color: #fff;
  font-weight: 700;
  border-radius: 8px 8px 0 0;
  text-align: left;
}
.schedule-table tbody tr {
  transition: background 0.13s;
}
.schedule-table tbody tr:hover {
  background: #fff0e5;
}
.schedule-table tbody td {
  border-bottom: 1px solid #ffe7cf;
}
.schedule-table tbody tr:last-child td {
  border-bottom: none;
}
@media (max-width: 600px) {
  .schedule-table th, .schedule-table td {
    padding: 10px 4px;
    font-size: 0.93rem;
  }
}

/* =======================
   CONTACT & FOOTER
   ======================= */
.contact-details ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-details img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  vertical-align: middle;
}
.contact-details li {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #11314d;
  background: #fdf7ed;
  border-radius: 10px;
  padding: 8px 12px;
}
footer {
  background: #fff;
  box-shadow: 0 -1px 8px 0 rgba(34,24,8,0.03);
  padding: 30px 0 0 0;
  margin-top: 54px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
.brand-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: 220px;
}
.brand-info img {
  width: 80px;
  height: auto;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1rem;
  color: #162346;
}
.footer-nav span {
  color: #868686;
  font-size: 0.97rem;
  margin-top: 4px;
}
.footer-nav a {
  color: #24180d;
  transition: color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #FF7B4A;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
  .brand-info {
    max-width: 100%;
    align-items: flex-start;
  }
}

/* =======================
   COOKIE CONSENT BANNER
   ======================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fff9f7;
  box-shadow: 0 -2px 18px 0 rgba(252,204,122,0.15);
  z-index: 9999;
  padding: 22px 16px 18px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  border-top-left-radius: 22px;
  border-top-right-radius: 22px;
  transition: transform 0.4s cubic-bezier(0.65,0,.35,1), opacity 0.18s;
}
.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner .cookie-banner-message {
  color: #361f13;
  font-size: 1.02rem;
  margin-right: 12px;
  max-width: 450px;
}
.cookie-banner .btn-cookie {
  background: #FFB85C;
  color: #fff;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 23px;
  margin-right: 8px;
  border: none;
  box-shadow: 0 2px 8px rgba(255,148,52,0.07);
  transition: background 0.15s, color 0.16s;
}
.cookie-banner .btn-cookie:hover, .cookie-banner .btn-cookie:focus {
  background: #FF7B4A;
  color: #fff;
}
.cookie-banner .btn-cookie-settings {
  background: #fff;
  color: #FF7B4A;
  border: 2px solid #FF7B4A;
  border-radius: 18px;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 23px;
  margin-right: 0;
  transition: background 0.15s, color 0.16s;
}
.cookie-banner .btn-cookie-settings:hover, .cookie-banner .btn-cookie-settings:focus {
  background: #ffeee2;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 14px 8px 9px 8px;
  }
  .cookie-banner .cookie-banner-message {
    font-size: 0.97rem;
    margin-right: 0;
  }
}
/* Cookie settings modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(40,28,12,0.45);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff9f7;
  border-radius: 26px;
  box-shadow: 0 8px 54px 0 rgba(255,186,92,0.22);
  padding: 34px 32px 26px 32px;
  max-width: 450px;
  width: 96vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeIn .4s cubic-bezier(0.65,0,.35,1);
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 16px 7px 12px 14px;
  }
}
.cookie-modal h3 {
  font-family: 'Roboto Slab', serif;
  color: #C96A38;
  font-size: 1.4rem;
  margin-bottom: 3px;
}
.cookie-modal-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal-category {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
}
.cookie-modal-category input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #FF7B4A;
}
.cookie-modal-category label {
  font-size: 1rem;
  color: #24180d;
}
.cookie-modal-close {
  position: absolute;
  right: 16px;
  top: 16px;
  background: none;
  font-size: 1.5rem;
  color: #FF7B4A;
  border-radius: 50%;
  transition: background 0.16s;
  padding: 5px 9px;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #fff3e6;
}
.cookie-modal .btn-cookie {
  margin-top: 12px;
}
@keyframes fadeIn {
  from { opacity:0; transform: translateY(22px) scale(0.98); }
  to   { opacity:1; transform: none; }
}

/* ================
   THANK YOU SCREEN
   ================= */
.thank-you {
  background: linear-gradient(101deg, #fffbf6 55%, #ffe3cc 100%);
  border-radius: 32px;
  box-shadow: 0 2px 18px 0 rgba(239, 124, 70, 0.09);
  padding: 54px 18px;
  text-align: center;
  margin-bottom: 48px;
}
.thank-you h1 {
  color: #E56A30;
}
.thank-you a.btn-primary {
  margin-top: 18px;
}

/* ================
   MAP EMBED & LOCATION
   ================= */
.map-embed {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
}
.map-embed img {
  width: 90px;
  height: 90px;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(255, 176, 86, 0.09);
}
.map-embed p {
  font-size: 1rem;
  color: #774B13;
}
@media (max-width: 700px) {
  .map-embed {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  .map-embed img {
    width: 60px;height: 60px;
  }
}

/* =======================
   FORM ELEMENTS (if needed)
   ======================= */
input, textarea, select {
  font-family: inherit;
  border: 2px solid #ffe2af;
  border-radius: 12px;
  background: #fff;
  padding: 12px 14px;
  font-size: 1rem;
  margin-bottom: 16px;
  outline: none;
  transition: border 0.14s;
}
input:focus, textarea:focus, select:focus {
  border-color: #FF7B4A;
}

/* =======================
   VISUAL HIERARCHY & SPACING (unified)
   ======================= */
.section, .features, .about, .services, .cta, .testimonials, .about-office, .contact-section, .privacy-policy, .rodo-info, .cookie-policy, .terms-content, .thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .feature-grid, .content-grid {
  gap: 24px;
}
.card, .testimonial-card {
  margin-bottom: 20px;
}
.text-image-section {
  gap: 30px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .section, .features, .about, .services, .cta, .testimonials, .about-office, .contact-section, .privacy-policy, .rodo-info, .cookie-policy, .terms-content, .thank-you {
    margin-bottom: 34px;
    padding: 22px 8px;
  }
  .container {
    padding: 0 4px;
  }
}

/* =======================
   SMALL ANIMATIONS
   ======================= */
a, button, .btn-primary, .testimonial-card, .card, .feature-grid li, .mobile-menu, .cookie-banner, .cookie-modal, .cookie-banner .btn-cookie, .cookie-banner .btn-cookie-settings {
  transition: box-shadow 0.19s, background 0.18s, color 0.18s, transform 0.13s;
}

/* =======================
   CUSTOM SCROLLBAR
   ======================= */
::-webkit-scrollbar {
  width: 10px;
  background: #fff1e7;
}
::-webkit-scrollbar-thumb {
  background: #FFB85C;
  border-radius: 12px;
}

/* =======================
   MEDIA QUERIES (Breakpoints)
   ======================= */
@media (max-width: 1200px) {
  .container { max-width: 970px; }
}
@media (max-width: 992px) {
  .container { max-width: 720px; }
}
@media (max-width: 768px) {
  .container { max-width: 96vw; }
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.15rem; }
  .thank-you { padding: 18px 3px; }
}
@media (max-width: 480px) {
  .footer-nav, .contact-details, .brand-info { font-size: 0.93rem; }
}
/* =======================
   HELPER CLASSES
   ======================= */
.d-none { display: none !important; }
.d-flex { display: flex !important; }
.flex-col { flex-direction: column !important; }
.gap-20 { gap: 20px !important; }
.rounded-24 { border-radius: 24px !important; }
.white-bg { background: #fff !important; }

/* =======================
   PRINT SUPPORT
   ======================= */
@media print {
  header,footer,.cookie-banner,.mobile-menu { display: none !important; }
  .section,.features,.about,.services,.cta,.testimonials,.about-office,.contact-section,.privacy-policy,.rodo-info,.cookie-policy,.terms-content,.thank-you { box-shadow: none !important;background:#fff !important; }
}
