/* RESET & FOUNDATION */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #20405a;
  background: #f8fafc;
  line-height: 1.6;
  font-size: 1rem;
}
img, svg {
  max-width: 100%;
  vertical-align: middle;
  display: block;
}
a {
  color: #20405a;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #d7a016;
  outline-offset: 2px;
}

/* TYPOGRAPHY - Soft Pastel & Brand Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #20405a;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h1 { font-size: 2.5rem; line-height: 1.1; margin-bottom: 20px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 16px; }
h3 { font-size: 1.1rem; margin-bottom: 12px; }
h4 { font-size: 1.25rem; }
p, ul, ol, blockquote {
  font-size: 1.0625rem;
  margin-bottom: 16px;
}
blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #f2f8fb;
  border-left: 4px solid #d7a016;
  color: #486683;
  margin: 24px 0 24px 0;
  padding: 16px 24px;
  border-radius: 12px;
  font-style: italic;
}
strong { font-weight: 700; }

/* BRAND COLORS & SOFT PASTEL PALETTE */
:root {
  --primary: #20405a;
  --secondary: #e2ecf3;
  --accent: #d7a016;
  --pastel-blue: #e2ecf3;
  --pastel-pink: #f8e2ec;
  --pastel-yellow: #fdf6e6;
  --pastel-green: #e8f9f2;
  --pastel-purple: #ede5fa;
  --pastel-gray: #f5f7fa;
  --white: #fff;
  --shadow: 0 2px 16px 0 rgba(32, 64, 90, 0.06);
  --blur-bg: rgba(255,255,255,0.95);
}

/* GENERAL CONTAINER & CONSISTENT LAYOUT */
.container {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* SECTION SPACING - MANDATORY */
.section, .service-list-section, .hero, .features, .about-snippet, .cta-block,
.about-us, .why-choose-us, .values, .testimonials, .service-detail, .faq, .contact-block, .thank-you-section, .legal-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hero {
  background: linear-gradient(135deg, #e2ecf3 40%, #f8e2ec 100%);
  padding-top: 60px;
  padding-bottom: 60px;
  box-shadow: none;
}

.cta-block {
  background: linear-gradient(120deg, #fdf6e6 10%, #e8f9f2 100%);
  text-align: center;
  align-items: center;
}

.about-snippet, .about-us, .why-choose-us, .values, .legal-section {
  background: var(--pastel-blue);
  box-shadow: var(--shadow);
}

.testimonials {
  background: var(--pastel-green);
  box-shadow: var(--shadow);
}

.thank-you-section {
  background: var(--pastel-purple);
}

/* FLEXBOX - LAYOUTS */
.feature-grid, .service-list, .card-container, .content-grid, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 12px;
  justify-content: flex-start;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 32px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover, .feature-card:hover, .testimonial-card:hover, .service-entry:hover {
  box-shadow: 0 8px 36px 0 rgba(32, 64, 90, 0.13);
  transform: translateY(-4px) scale(1.015);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 4px 24px 0 rgba(32,64,90,0.09);
  transition: box-shadow 0.18s, transform 0.18s;
  color: #1b2e3d;
  max-width: 560px;
}
.testimonial-meta {
  font-size: 1rem;
  color: #6c88a3;
  font-weight: 500;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.service-entry {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.service-entry img {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  margin-right: 10px;
}
.service-entry h2 {
  margin-bottom: 10px;
}
.service-price {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.05rem;
}

/* FEATURES GRID - index */
.feature-card {
  flex: 1 1 260px;
  max-width: 300px;
  background: var(--pastel-yellow);
  border-radius: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.feature-card img {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}

.icon-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.icon-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding: 14px 18px;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #34597c;
  margin-bottom: 5px;
}
.icon-list img {
  width: 30px;
  height: 30px;
}

/* FAQ SECTION */
.faq-item {
  padding: 18px 24px;
  margin-bottom: 20px;
  background: var(--pastel-gray);
  border-radius: 15px;
  box-shadow: var(--shadow);
}
.faq-item h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  color: #233c5b;
  margin-bottom: 10px;
}
.faq-item p {
  color: #34597c;
  font-size: 1.05rem;
}

/* MAP & CONTACT */
.contact-details {
  margin-bottom: 32px;
}
.contact-details h2 {
  font-size: 1.25rem;
  color: #20405a;
  margin-bottom: 3px;
}
.contact-details p {
  margin-bottom: 15px;
}
.map-snippet {
  background: var(--pastel-blue);
  padding: 20px 24px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

/* LEGAL */
.legal-section {
  background: var(--pastel-gray);
}

/* FOOTER */
footer {
  width: 100%;
  background: #f4f8fb;
  border-top: 1px solid #e3e9f0;
  padding-top: 18px;
  padding-bottom: 16px;
  margin-top: 36px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-nav a {
  color: #466a89;
  transition: color 0.16s;
  padding: 2px 4px;
}
.footer-nav a:hover {
  color: #d7a016;
  text-decoration: underline;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.02rem;
  color: #62799b;
}
.footer-branding img {
  width: 32px;
  height: 32px;
}

/* MAIN HEADER */
header {
  position: relative;
  z-index: 11;
  background: var(--white);
  box-shadow: 0 1px 12px 0 rgba(32, 64, 90, 0.05);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.logo img {
  height: 54px;
  width: auto;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1.09rem;
}
.main-nav a {
  color: #20405a;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--secondary);
  color: #d7a016;
}
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--accent);
  color: #20405a;
  border: none;
  border-radius: 22px;
  padding: 11px 30px;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px 0 rgba(215,160,22,0.10);
  cursor: pointer;
  transition: background 0.2s, color 0.15s, box-shadow 0.15s, transform 0.13s;
  margin-left: 12px;
  margin-right: 8px;
}
.btn-primary:hover, .btn-primary:focus {
  background: #e2c16c;
  color: #1f2a3d;
  box-shadow: 0 3px 16px 0 rgba(215,160,22,0.14);
  transform: translateY(-2px) scale(1.045);
}
.btn-link {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #20405a;
  background: transparent;
  border: none;
  padding: 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1.5px solid #d7a016;
  transition: color 0.17s, border-color 0.14s;
  cursor: pointer;
}
.btn-link:hover, .btn-link:focus {
  color: #d7a016;
  border-color: #20405a;
}

/* HAMBURGER & MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--accent);
  color: #20405a;
  border: none;
  border-radius: 12px;
  font-size: 2.1rem;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 14px;
  transition: background 0.16s;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #efd16d;
  color: #233c5b;
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--blur-bg);
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.77,0,.18,1);
  opacity: 0;
  visibility: hidden;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 26px;
  background: var(--accent);
  border: none;
  color: var(--primary);
  font-size: 2.1rem;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  box-shadow: 0 1px 6px 0 rgba(215,160,22,0.15);
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #efd16d;
  color: #1f2a3d;
}
.mobile-nav {
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  gap: 25px;
  padding: 20px 32px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #20405a;
  font-size: 1.26rem;
  font-weight: 600;
  padding: 10px 0;
  border-bottom: 1.5px dotted #e2ecf3;
  transition: color 0.16s, border-color 0.16s;
  border-radius: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #d7a016;
}

/* BUTTONS & FORM ELEMENTS */
button, .btn-primary, .btn-link {
  outline: none;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  z-index: 2200;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: var(--white);
  color: #20405a;
  padding: 24px 16px 22px 16px;
  box-shadow: 0 -4px 32px 0 rgba(32,64,90,0.13);
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
  transition: transform 0.35s, opacity 0.28s;
}
.cookie-banner.hide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(100%);
}
.cookie-banner .cookie-banner-text {
  flex: 3 1 400px;
  font-size: 1.02rem;
  margin-right: 18px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  background: var(--accent);
  color: #20405a;
  border: none;
  border-radius: 16px;
  padding: 9px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 1px 9px 0 rgba(215,160,22,0.09);
  transition: background 0.16s, color 0.16s;
}
.cookie-btn.settings {
  background: #e2ecf3;
  color: #20405a;
  border: 1px solid #d7a016;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #efd16d;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #f8e2ec;
  color: #1f2a3d;
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  position: fixed;
  z-index: 2300;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(32, 64, 90, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.29s;
}
.cookie-modal.hide {
  opacity: 0;
  visibility: hidden;
}
.cookie-modal .cookie-modal-content {
  background: var(--white);
  padding: 36px 32px 28px 32px;
  border-radius: 24px;
  width: 98%;
  max-width: 420px;
  box-shadow: 0 8px 48px 0 rgba(32,64,90,0.16);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  font-size: 1.32rem;
  margin-bottom: 4px;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--secondary);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 1.04rem;
}
.cookie-category-row label {
  font-size: 1.05rem;
  color: #20405a;
  cursor: pointer;
}
.cookie-category-row input[type="checkbox"] {
  accent-color: #d7a016;
  width: 20px; height: 20px; margin-left: 12px;
}
.cookie-modal-actions {
  margin-top: 14px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

/* UTILITY */
.mt-2 { margin-top: 20px; }
.mt-4 { margin-top: 40px; }
.mb-4 { margin-bottom: 40px; }
.pb-2 { padding-bottom: 20px; }

/* RESPONSIVENESS: MOBILE FIRST */
@media (max-width: 1100px) {
  .container {
    max-width: 92vw;
  }
  .feature-grid, .content-grid, .card-container, .service-list {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  .main-nav {
    gap: 14px;
    font-size: 1.01rem;
  }
  .footer-nav {
    gap: 12px;
    font-size: 0.98rem;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding-left: 4px;
    padding-right: 4px;
  }
  .main-nav, .footer-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  .btn-primary {
    margin-left: 0;
    margin-right: 0;
    font-size: 1rem;
    padding: 10px 22px;
  }
  .hero, .section, .about-snippet, .cta-block, .about-us, .why-choose-us, .values, .testimonials, .service-detail, .faq, .contact-block, .thank-you-section, .legal-section {
    padding: 28px 4vw;
    margin-bottom: 34px;
    border-radius: 14px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.385rem; }
  h3 { font-size: 1.12rem; }
  p, ul, ol, blockquote { font-size: 0.997rem; }
  .feature-grid, .service-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .feature-card, .service-entry, .testimonial-card, .card {
    max-width: 100%;
    padding: 18px 12px;
  }
  .footer-branding img {
    width: 28px;
    height: 28px;
  }
}
@media (max-width: 540px) {
  .container { padding-left: 0; padding-right: 0; }
  .hero, .section, .about-snippet, .cta-block, .about-us, .why-choose-us, .values, .testimonials, .service-detail, .faq, .contact-block, .thank-you-section, .legal-section {
    padding: 14px 0vw;
    border-radius: 8px;
  }
  .footer-branding span { font-size: 0.94rem; }
  .cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }
  .cookie-banner .cookie-banner-text {
    margin-right: 0;
    margin-bottom: 10px;
  }
  .cookie-btn {
    padding: 9px 13px;
    font-size: 0.97rem;
  }
}

/* ACCESSIBILITY HELPER */
:focus-visible {
  outline: 2px solid #d7a016;
  outline-offset: 2px;
}

/* MICROINTERACTIONS */
a, button, .btn-primary, .btn-link {
  transition: background 0.18s, color 0.16s, transform 0.12s, box-shadow 0.2s;
}
.card, .feature-card, .testimonial-card, .service-entry {
  transition: box-shadow 0.17s, transform 0.13s;
}
.card:hover, .feature-card:hover, .testimonial-card:hover, .service-entry:hover {
  box-shadow: 0 8px 36px 0 rgba(32, 64, 90, 0.13);
  transform: translateY(-3px) scale(1.017);
}

/* Z-INDEX LAYERING */
header {
  z-index: 10;
}
.mobile-menu {
  z-index: 1001;
}
.cookie-banner, .cookie-modal {
  z-index: 2200;
}

/* HELPER CLASSES */
.text-center { text-align: center; }
.d-flex { display: flex; }
.items-center { align-items: center; }
.flex-col { flex-direction: column; }
.gap-20 { gap: 20px; }

/* END CSS */
