/* ==========================================================
   BIRATNAFIX MINIMALIST CSS (Mobile-first, Flexbox-only)
   Brand colors: #23516B (primary), #E7B405 (secondary), #FFFFFF (accent)
   Fonts: Montserrat (Display), Roboto (Body)
   Minimalist, lots of whitespace, only Flexbox for layout
========================================================== */

/* RESET & BASELINE STYLES */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #222;
  min-height: 100vh;
  line-height: 1.6;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0;
}
svg {
  display: inline-block;
  vertical-align: middle;
}
a {
  color: #23516B;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #E7B405;
  outline: none;
}
strong { font-weight: bold; }

/* FONT SCALING */
h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #113049;
}
h1 { font-size: 2.25rem; margin-bottom: 24px; }
h2 { font-size: 1.5rem; margin-bottom: 20px; }
h3 { font-size: 1.15rem; margin-bottom: 12px; }
h4 { font-size: 1rem; margin-bottom: 10px; }
p, ul, ol {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #222;
}
ul, ol { padding-left: 20px; }
li { margin-bottom: 8px; }
table { border-collapse: collapse; width: 100%; margin: 24px 0; }
th, td { border-bottom: 1px solid #ececec; padding: 12px 6px; text-align: left; }
th { font-family: 'Montserrat', 'Roboto', Arial, sans-serif; font-weight: 600; background: #FAFAFA; color: #23516B; }
td { color: #333; background: #fff; }

/* LAYOUT CONTAINERS */
.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1136px;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(35,81,107,0.04);
}

/* NAVIGATION HEADER */
header {
  background: #fff;
  box-shadow: 0 1px 8px rgba(35,81,107,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 24px;
}
header a img {
  max-height: 34px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
header nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  padding: 4px 0;
  font-size: 1rem;
  color: #23516B;
  border-radius: 4px;
  transition: background .18s, color .18s;
}
header nav a:hover, header nav a:focus {
  background: #f4f7fa;
  color: #E7B405;
}

.btn-primary {
  background: #23516B;
  color: #fff !important;
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.02em;
  font-size: 1rem;
  line-height: 1.1;
  margin-left: 8px;
  transition: background .18s, box-shadow .18s;
  box-shadow: 0 2px 12px rgba(35,81,107,0.06);
  cursor: pointer;
  outline: none;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #1d3b50;
  box-shadow: 0 4px 16px rgba(35,81,107,0.12);
}
.btn-link {
  color: #23516B;
  font-weight: 600;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  padding: 0 6px;
  background: none;
  border: none;
  font-size: 1rem;
  text-decoration: underline;
  transition: color .18s;
  cursor: pointer;
}
.btn-link:hover, .btn-link:focus {
  color: #E7B405;
  background: #f8f6ed;
}

/* FLEXBOX LAYOUTS MANDATORY CLASSES */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(35,81,107,0.06);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  flex: 1 1 280px;
  transition: box-shadow .18s, transform .18s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(35,81,107,0.10);
  transform: translateY(-3px) 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;
  width: 100%;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(35,81,107,0.06);
  margin-bottom: 24px;
  transition: box-shadow .22s, transform .13s;
  border: 1px solid #f4f6f8;
}
.testimonial-card:hover {
  box-shadow: 0 4px 24px rgba(35,81,107,0.14);
  transform: scale(1.015);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HERO SECTION */
.hero {
  background: #f9fbfd;
  padding: 56px 0 48px 0;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 2px 15px rgba(35,81,107,0.04);
  margin-bottom: 40px;
}
.hero .container {
  min-height: 260px;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  max-width: 600px;
  align-items: flex-start;
  gap: 28px;
}
.hero h1 {
  color: #23516B;
  font-size: 2.4rem;
}
.hero p {
  font-size: 1.2rem;
  color: #43687f;
  margin-bottom: 22px;
}

/* FEATURE-GRID (Cards within Sections) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 7px rgba(44,82,111,0.03);
  padding: 24px 18px;
  flex: 1 1 235px;
  min-width: 210px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow .17s, transform .13s;
  margin-bottom: 0;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 18px rgba(35,81,107,0.10);
  transform: translateY(-2px) scale(1.01);
}
.feature-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}

/* PROCESS STEPS */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 20px;
}
.process-steps > div {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 7px rgba(44,82,111,0.04);
  padding: 24px 18px;
  flex: 1 1 190px;
  min-width: 160px;
  max-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.process-steps img {
  width: 32px;
  height: 32px;
  margin-bottom: 9px;
}

/* PROJECT & TESTIMONIAL LISTS */
.project-list, .testimonial-list, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.project-list > div, .faq-list > div {
  background: #fafbfc;
  border-radius: 12px;
  box-shadow: 0 1px 7px rgba(44,82,111,0.03);
  padding: 20px 16px;
  flex: 1 1 270px;
  min-width: 220px;
  transition: box-shadow .14s, transform .11s;
}
.project-list > div:hover, .faq-list > div:hover {
  box-shadow: 0 4px 18px rgba(35,81,107,0.08);
  transform: scale(1.01);
}

.testimonial-list {
  flex-direction: column;
  gap: 28px;
}
.testimonial-card blockquote {
  font-size: 1.05rem;
  color: #113049;
  margin-bottom: 12px;
  font-style: italic;
  line-height: 1.6;
  letter-spacing: .01em;
  border-left: 3px solid #E7B405;
  padding-left: 14px;
}
.testimonial-card p {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #23516B;
  font-size: 0.97rem;
  margin-bottom: 0;
}
.testimonial-card > div {
  display: flex;
  align-items: center;
  gap: 4px;
}
.testimonial-card img {
  width: 22px;
  height: 22px;
  filter: drop-shadow(0 0 1px #e7b40566);
}

/* MAP SNIPPET & ICON TEXT */
.map-snippet {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  color: #23516B;
  background: #f5f8fd;
  border-radius: 8px;
  padding: 10px 16px;
  margin: 15px 0;
}
.text-section img {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 6px;
}

/* TABLE STYLE FOR PRICING */
table {
  background: #fff;
  box-shadow: 0 2px 10px rgba(35,81,107,0.03);
  border-radius: 11px;
  overflow: hidden;
}
th, td {
  font-size: 0.98rem;
}
tbody tr:hover {
  background: #fffaef;
}

/* FOOTER */
footer {
  background: #fafdff;
  padding: 40px 0 24px 0;
  box-shadow: 0 -1px 6px rgba(35,81,107,0.04);
  border-top: 1px solid #f0f3f5;
  margin-top: 60px;
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 1136px;
}
footer nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}
footer nav a {
  color: #23516B;
  font-size: 0.98rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  transition: color .18s;
}
footer nav a:hover, footer nav a:focus {
  color: #E7B405;
}
footer p {
  font-size: 0.96rem;
  color: #43687f;
  margin-bottom: 0;
}
footer img {
  height: 38px;
  margin-bottom: 14px;
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #23516B;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 12px;
  display: none;
  line-height: 1.1;
  z-index: 400;
  transition: color .18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #E7B405;
}
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 260px;
  background: #fff;
  box-shadow: -2px 0 18px rgba(35,81,107,0.15);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  padding: 32px 24px 24px 24px;
  transform: translateX(100%);
  transition: transform .31s cubic-bezier(.73,.09,.36,.89);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #23516B;
  position: absolute;
  top: 20px; right: 20px;
  z-index: 10001;
  cursor: pointer;
  transition: color .17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #E7B405;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  color: #23516B;
  padding: 10px 0;
  border-radius: 4px;
  transition: background .15s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f5f8fd;
  color: #E7B405;
}

/* HIDE DESKTOP NAV ON MOBILE */
@media (max-width: 900px) {
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* FORM ELEMENTS (REQUEST CALLBACK, CONTACT) */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #e4eaf1;
  background: #fcfcfd;
  color: #1b2634;
  margin-bottom: 20px;
  width: 100%;
  transition: border .16s;
}
input:focus, textarea:focus, select:focus {
  border-color: #23516B;
  outline: none;
}
label {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: .97em;
  font-weight: 500;
  margin-bottom: 6px;
  color: #23516B;
  display: block;
}

/* SPACING UTILITIES */
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mt-4 { margin-top: 32px; }
.mb-4 { margin-bottom: 32px; }
.py-2 { padding-top: 16px; padding-bottom: 16px; }
.px-2 { padding-left: 16px; padding-right: 16px; }

/* MICROINTERACTIONS & FOCUS STATES */
button, .btn-primary, .btn-link, .btn-secondary {
  transition: background .17s, box-shadow .14s, color .17s, transform .18s;
  outline: none;
}
button:active, .btn-primary:active {
  transform: scale(.975);
}
*:focus-visible {
  outline: 2px solid #E7B405;
  outline-offset: 1.5px;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #f6fafb;
  color: #23516B;
  box-shadow: 0 -2px 14px rgba(35,81,107,0.08);
  padding: 24px 16px 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  z-index: 99999;
  transition: transform .36s cubic-bezier(.39, .575, .565, 1), opacity .22s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(120%);
}
.cookie-banner h4 {
  margin-bottom: 6px;
  font-size: 1.06rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 6px;
}
.btn-secondary {
  background: #fff;
  color: #23516B;
  border: 1px solid #23516B;
  border-radius: 5px;
  padding: 7px 18px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: background .16s, color .16s, border .17s;
  outline: none;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #23516B;
  color: #fff;
}
.btn-tertiary {
  background: none;
  color: #23516B;
  border: none;
  text-decoration: underline;
  padding: 7px 12px;
  border-radius: 4px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
}
.btn-tertiary:hover, .btn-tertiary:focus {
  background: #f5f8fd;
  color: #E7B405;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(35,81,107,0.14);
  z-index: 100001;
  justify-content: center;
  align-items: center;
  display: none;
  transition: opacity .26s;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 6px 32px rgba(35,81,107,0.18);
  padding: 38px 30px 30px 30px;
  min-width: 320px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 17px;
  position: relative;
  animation: slideUpModal .4s cubic-bezier(.18, .72, .33, 1);
}
@keyframes slideUpModal {
  0% { opacity: 0; transform: translateY(60px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-modal h3 {
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: #113049;
}
.cookie-modal label {
  margin-bottom: 3px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 1rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: #E7B405;
  width: 17px;
  height: 17px;
  margin-bottom: 0;
}
.cookie-modal .btn-secondary, .cookie-modal .btn-primary {
  margin-top: 5px;
}

.cookie-modal-close {
  position: absolute;
  top: 17px; right: 26px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #23516B;
  cursor: pointer;
  transition: color .17s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #E7B405;
}

/* FLEX COLUMN ON MOBILE & RESPONSIVENESS */
@media (max-width: 768px) {
  .container, .footer .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  .section {
    margin-bottom: 44px;
    padding: 27px 7px;
    border-radius: 0 0 20px 20px;
  }
  .content-grid, .feature-grid, .project-list, .testimonial-list, .faq-list {
    flex-direction: column;
    gap: 16px;
  }
  .process-steps {
    flex-direction: column;
    gap: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  header .container {
    padding: 14px 8px;
    flex-direction: row;
  }
  .hero {
    padding: 38px 0 24px 0;
    border-radius: 0 0 20px 20px;
  }
  .hero h1 {
    font-size: 1.45rem;
  }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.08rem; }
  .card {
    padding: 20px 12px;
    min-width: 90vw;
  }
  .feature-grid > div, .project-list > div, .faq-list > div, .process-steps > div {
    padding: 16px 10px;
    min-width: 85vw;
    max-width: 98vw;
  }
  footer {
    padding-top: 24px;
  }
  .cookie-modal {
    min-width: unset;
    max-width: 99vw;
    padding: 20px 7px 14px 7px;
  }
}

/* EXTRAS & OVERRIDES FOR CLASSES SPECIFIED */
.text-section {
  margin-bottom: 9px;
}
.text-section ul {
  margin-bottom: 7px;
}
.text-section li {
  margin-bottom: 5px;
}

/* Z-INDEX NORMALIZATION */
.mobile-menu, .cookie-banner, .cookie-modal-overlay { z-index: 10001; }
header { z-index: 10002; }

/* Prevent overlap of cards/sections */
.card, .feature-grid > div, .testimonial-card, .project-list > div, .faq-list > div, .process-steps > div {
  margin-bottom: 20px;
}
.section:last-child, .container:last-child, footer {
  margin-bottom: 0 !important;
}

/* Hide mobile menu overlay on desktop */
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* Accessibility: high-contrast for testimonials/reviews */
.testimonial-card, .testimonial-list, .testimonial-card blockquote {
  background: #fff;
  color: #113049;
}

/* Hide .cookie-banner if .hidden is on */
.cookie-banner[aria-hidden="true"] {
  display: none;
}

/* END OF CSS */
