/* ===== 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,
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 {
  height: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  min-height: 100vh;
  background: #F6F8FA;
  color: #253342;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}
img, svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
a {
  color: #234C7B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F1A135;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}
strong, b {
  font-weight: 700;
}

/* ====== Typography ====== */
h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: #234C7B;
  margin-bottom: 20px;
  line-height: 1.16;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #234C7B;
  margin-bottom: 16px;
  line-height: 1.22;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #253342;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  color: #234C7B;
}
p {
  font-size: 1rem;
  margin-bottom: 16px;
}
blockquote {
  font-style: italic;
  font-size: 1.05rem;
  color: #234C7B;
  margin-bottom: 10px;
  padding-left: 16px;
  border-left: 4px solid #234C7B;
}

/* ===== BRAND COLOR VARIABLES (with fallback) ===== */
:root {
  --primary: #234C7B;
  --secondary: #F1A135;
  --accent: #EDEDED;
  --text-dark: #253342;
  --text-light: #fff;
  --gray-bg: #F6F8FA;
  --card-bg: #fff;
  --border: #d2d7df;
  --shadow: 0 4px 18px 0 rgba(35,76,123,0.06);
  --shadow-hover: 0 2px 12px 0 rgba(35,76,123,0.14);
}

/* ==== Container ==== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ===== Header / Navigation ===== */
header {
  background: var(--primary);
  color: var(--text-light);
  box-shadow: 0 2px 10px rgba(35,76,123,0.03);
  position: relative;
  z-index: 1060;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 24px;
}
.logo img {
  max-height: 44px;
  height: 44px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.08));
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-light);
  position: relative;
  padding: 8px 0 8px 0;
  transition: color 0.2s;
}
.main-nav a::after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--secondary);
  transition: width 0.3s;
  margin-top: 2px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--secondary);
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 100%;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary);
  color: var(--text-dark);
  border: none;
  border-radius: 24px;
  padding: 0.7em 1.6em;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.2s, color 0.18s;
  box-shadow: 0 2px 8px 0 rgba(241,161,53,0.09);
  min-width: 120px;
  margin-left: 10px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #FFD183;
  color: var(--primary);
  box-shadow: 0 2px 14px 0 rgba(35,76,123,0.11);
  text-decoration: none;
}

/* ===== Mobile Burger Menu ===== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2rem;
  cursor: pointer;
  z-index: 1101;
  transition: color 0.15s;
  margin-left: 18px;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--secondary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #223859ef;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(.55,.15,.41,1), opacity 0.2s;
  opacity: 0.98;
  box-shadow: 0 4px 24px 0 rgba(35,76,123,0.21);
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 28px 10px 0;
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2.1rem;
  cursor: pointer;
  transition: color 0.16s;
  z-index: 1111;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: flex-start;
  padding: 48px 34px 0 34px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  padding: 10px 0;
  transition: color 0.18s;
}
.mobile-nav a:active, .mobile-nav a:focus, .mobile-nav a:hover {
  color: var(--secondary);
  text-decoration: none;
}
@media (max-width: 1024px) {
  .main-nav {
    gap: 16px;
  }
}
@media (max-width: 920px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 2px;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (max-width: 700px) {
  header .container {
    padding: 0 8px;
  }
}

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(100deg, #f6f8fa 70%, #e7eaf0 98%);
  padding: 40px 0 48px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
  min-height: 300px;
  display: flex;
  justify-content: center;
}
.hero .container {
  align-items: center;
  min-height: 280px;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 660px;
}
.hero h1 {
  font-size: 2.25rem;
  color: var(--primary);
}

/* ===== Features ===== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 22px 20px 22px 20px;
  background: var(--card-bg);
  border-radius: 14px;
  box-shadow: var(--shadow);
  min-width: 230px;
  flex: 1 1 240px;
  border: 1px solid #e7eaf0;
  transition: box-shadow 0.22s, border-color 0.18s;
}
.feature-item img {
  height: 38px;
  width: 38px;
  filter: drop-shadow(0 2px 4px rgba(35,76,123,0.09));
}
.feature-item:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-hover);
}

/* ===== Cards, Cards Container ===== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 24px;
  flex: 1 1 290px;
  transition: box-shadow 0.2s, border-color 0.18s;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}

/* ===== Service List / Offer List ===== */
.service-list, .offer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.service-item {
  background: var(--card-bg);
  border: 1px solid #e7eaf0;
  border-radius: 12px;
  padding: 22px 20px 20px 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  min-width: 220px;
  flex: 1 1 240px;
  position: relative;
  transition: box-shadow 0.2s, border-color 0.18s;
}
.service-item .price {
  color: var(--secondary);
  font-weight: bold;
  margin-left: 7px;
  font-size: 1rem;
}
.service-item:hover {
  border-color: var(--secondary);
  box-shadow: var(--shadow-hover);
}

/* ===== Testimonial Card ===== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f6f8fa;
  border-left: 5px solid var(--primary);
  border-radius: 12px;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px 0 rgba(35,76,123,0.06);
  max-width: 620px;
}
.testimonial-card blockquote {
  color: #234C7B;
  font-style: italic;
  font-size: 1.05rem;
}
.testimonial-card p {
  color: #253342;
  font-size: 0.99rem;
}
.rating-overview, .awards-highlights {
  margin-top: 18px;
  display: flex;
  align-items: center;
  color: #234C7B;
  font-weight: 600;
}

/* ====== Process Steps, Booking Steps, Map, FAQ ======* /
.process-steps, .booking-steps {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 24px 0 10px 0;
  font-size: 1rem;
  padding-left: 0;
}
.process-steps li, .booking-steps li {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--accent);
  border-radius: 12px;
  padding: 10px 16px;
  color: #253342;
  font-weight: 500;
}
.faq-list dt {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  font-weight: 600;
  margin-top: 16px;
}
.faq-list dd {
  margin-left: 0;
  margin-bottom: 12px;
  color: #253342;
  font-size: 1rem;
}

/* ===== Contact Styles ===== */
.contact-info-list, .contact-methods, .contact-info ul {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.contact-info-list li, .contact-info ul li, .contact-methods li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.map-embed, .contact-teaser, .contact-hint {
  margin: 18px 0 18px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #234C7B;
  background: #f6f8fa;
  border-radius: 10px;
  padding: 14px 18px;
}
.map-embed img {
  width: 32px;
  height: 32px;
}

/* ====== Content Grids, Text-Image Sections ===== */
.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;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* ===== Customer Logos or Awards ===== */
.customer-logos {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 18px;
  flex-wrap: wrap;
}
.customer-logos img {
  width: 56px;
  height: auto;
  filter: grayscale(0.2) brightness(0.95);
}

/* ===== Pricing Overview ===== */
.pricing-overview ul {
  list-style: disc;
  margin: 13px 0 0 23px;
  color: #253342;
  font-size: 1rem;
}
.pricing-overview li {
  margin-bottom: 6px;
}

/* ====== Legal Text ====== */
.legal-text {
  color: #253342;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 rgba(35,76,123,0.04);
  padding: 24px 18px;
  font-size: 1rem;
  line-height: 1.72;
}

/* ==== Footer ==== */
footer {
  background: #22436B;
  padding: 44px 0 30px 0;
  color: var(--text-light);
  box-shadow: 0 -2px 10px rgba(35,76,123,0.05);
}
footer .container {
  flex-direction: row;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-links {
  display: flex;
  gap: 23px;
  flex-direction: column;
  min-width: 160px;
  margin-bottom: 0;
}
.footer-links a {
  color: #ffd183;
  font-size: 0.99rem;
  margin-bottom: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  transition: color 0.18s;
}
.footer-links a:hover, .footer-links a:focus {
  color: #fff;
  text-decoration: underline;
}
.brand-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  max-width: 340px;
}
.brand-details img {
  width: 54px;
  height: auto;
}
.contact-info ul {
  margin-left: 0;
  gap: 8px;
}
.contact-info li {
  color: #f6f8fa;
  font-size: 0.97rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-info img {
  width: 19px;
  height: 19px;
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
    padding: 0 10px;
  }
  .footer-links {
    flex-direction: row;
    gap: 16px;
  }
}
@media (max-width: 700px) {
  .footer-links, .brand-details, .contact-info {
    margin-bottom: 12px;
    max-width: 100%;
    width: 100%;
  }
  .brand-details {
    align-items: center;
  }
}

/* ===== Responsive / Mobile-first ===== */
@media (max-width: 1024px) {
  .hero, .hero .container {
    min-height: 220px;
    padding: 14px 0 24px 0;
  }
  .section {
    padding: 30px 10px;
  }
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 1.6rem;
  }
  .hero, .hero .container {
    min-height: 130px;
    padding: 10px 0 15px 0;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  .container {
    padding: 0 9px;
  }
  .service-list, .offer-list, .feature-grid, .content-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    max-width: 100%;
    border-left-width: 3px;
    padding: 12px;
  }
  .section {
    padding: 22px 4px;
    margin-bottom: 34px;
  }
}
@media (max-width: 600px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .hero h1 {
    font-size: 1.1rem;
  }
  header .container {
    flex-direction: row;
    gap: 7px;
    padding: 0 3px;
  }
}
@media (max-width: 450px) {
  .btn-primary {
    min-width: unset;
    font-size: 0.95rem;
    padding: .6em 1em;
  }
  .brand-details img { width: 40px; }
}

/* ===== Button Styles: General ===== */
button, .btn-primary {
  transition: background 0.21s, box-shadow 0.17s, color 0.18s, border 0.13s;
}
button:focus, .btn-primary:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* ===== Micro-interactions ===== */
.card, .feature-item, .service-item, .testimonial-card {
  transition: box-shadow 0.23s, border-color 0.19s, background 0.18s;
}
.card:hover, .feature-item:hover, .service-item:hover {
  box-shadow: 0 4px 20px 0 rgba(35,76,123,0.13);
  border-color: var(--secondary);
}
.btn-primary:active {
  box-shadow: 0 1px 4px 0 rgba(35,76,123,0.12);
  background: #ffedcb;
}

/* ======= Cookie Consent Banner ======= */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 20px;
  background: #253342;
  color: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 18px 0 rgba(35,76,123,0.14);
  padding: 22px 28px 22px 28px;
  z-index: 1900;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: space-between;
  font-size: 1rem;
  opacity: 0.97;
  animation: fadeInBottom 0.55s cubic-bezier(.43,1.37,.33,1) both;
}
@keyframes fadeInBottom {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 0.97; transform: translateY(0);}
}
.cookie-banner p {
  margin: 0;
  color: #fff;
}
.cookie-actions {
  display: flex;
  gap: 17px;
  align-items: center;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 20px;
  padding: 7px 19px;
  margin: 0 3px;
  cursor: pointer;
  transition: background 0.21s, color 0.16s, box-shadow 0.14s;
  box-shadow: 0 1px 8px 0 rgba(35,76,123,0.09);
}
.cookie-btn.accept {
  background: var(--secondary);
  color: #253342;
}
.cookie-btn.accept:hover {
  background: #FFD183;
}
.cookie-btn.reject {
  background: #e7eaf0;
  color: #253342;
}
.cookie-btn.reject:hover {
  background: #f1a13511;
}
.cookie-btn.settings {
  background: none;
  color: #fff;
  border: 1px solid #fff;
}
.cookie-btn.settings:hover {
  background: #f1a13511;
  color: var(--secondary);
  border-color: var(--secondary);
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 15px 10px;
    left: 6px;
    right: 6px;
  }
}

/* === Cookie Modal === */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35,76,123,0.28);
  z-index: 2200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  animation: fadeInModalBg 0.33s cubic-bezier(.43,1.37,.33,1) both;
}
@keyframes fadeInModalBg {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  color: #253342;
  border-radius: 16px;
  box-shadow: 0 8px 40px 0 rgba(35,76,123,0.18);
  padding: 38px 32px 26px 32px;
  min-width: 300px;
  max-width: 95vw;
  position: relative;
  animation: fadeInModalPanel 0.33s cubic-bezier(.43,1.37,.33,1) both;
}
@keyframes fadeInModalPanel {
  from { opacity: 0; transform: translateY(40px);}
  to { opacity: 1; transform: translateY(0);}
}
.cookie-modal-content h2 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 14px;
}
.cookie-category label {
  font-weight: 500;
  color: #234C7B;
}
.cookie-category input[type=checkbox]:disabled + span {
  color: #afbac2;
}
.cookie-close {
  position: absolute;
  top: 14px;
  right: 20px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #999;
  cursor: pointer;
  transition: color 0.17s;
}
.cookie-close:hover { color: #234c7b; }
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 22px;
}
@media (max-width: 480px) {
  .cookie-modal-content {
    padding: 20px 8px 16px 8px;
    min-width: 0;
    max-width: 99vw;
  }
}

/* ===== Accessibility Focus State ===== */
a:focus, button:focus, input:focus, .btn-primary:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* ===== Miscellaneous Utility Classes ===== */
.hide { display: none !important; }
.visible { display: block !important; }

/* Animation for micro-interactions */
@media (prefers-reduced-motion: no-preference) {
  .btn-primary, .card, .feature-item, .service-item, .testimonial-card, .cookie-btn {
    transition: background 0.2s, color 0.16s, box-shadow 0.14s, border-color 0.13s;
  }
}
