/* ===== 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,
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;
}
html {
  scroll-behavior: smooth;
  background: #F8FAFB;
}
body {
  line-height: 1.5;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  color: #233544;
  min-height: 100vh;
  background: #F8FAFB;
}
* {
  box-sizing: border-box;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #1C3643;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #7EC8E3;
}
ul, ol {
  margin: 0 0 16px 25px;
  padding: 0;
}
strong, b {
  font-weight: 700;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: #1C3643;
  margin-bottom: 20px;
  line-height: 1.12;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-top: 0;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.3rem;
}
h4 {
  font-size: 1.1rem;
}
p {
  margin-bottom: 14px;
  color: #233544;
  font-size: 1rem;
}
hr {
  border: 0;
  border-bottom: 1px solid #E4E8EF;
}

/* ===== LAYOUT CLASSES ===== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
  border: none;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  padding: 32px 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(28,54,67,0.07);
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 260px;
  flex: 1 1 280px;
}

.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

/***** HERO ******/
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin-top: 24px;
}

/* Feature Grid */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.feature-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 3px 12px rgba(28,54,67,0.05);
  flex: 1 1 240px;
  min-width: 225px;
  padding: 32px 20px 28px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow .2s, transform .2s;
}
.feature-card img {
  width: 56px; height: 56px; margin-bottom: 10px;
}
.feature-card:hover {
  box-shadow: 0 6px 32px rgba(28,54,67,0.12);
  transform: translateY(-3px) scale(1.02);
}

/***** SERVICES ******/
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0 32px 0;
}
.service-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(28,54,67,0.07);
  flex: 1 1 270px;
  min-width: 220px;
  padding: 26px 20px;
  transition: box-shadow .19s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.service-card:hover {
  box-shadow: 0 8px 30px rgba(28,54,67,0.10);
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 30px;
}
.service-block {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(28,54,67,0.07);
  flex: 1 1 225px;
  min-width: 200px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px 16px;
  margin-bottom: 12px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.service-block img {
  width: 42px; height: 42px; margin-bottom: 8px; margin-top: 4px;
}
.service-block:hover {
  box-shadow: 0 8px 32px rgba(28,54,67,0.12);
  z-index: 2;
}
.service-price {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #1C3643;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 5px;
}

/***** ABOUT ******/
.about-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  margin: 18px 0;
}
.about-summary ul {
  margin-top: 2px;
  padding-left: 1.3em;
  font-size: 1rem;
}
.mission-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}
.team-member-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 16px;
  margin-bottom: 4px;
}
.team-member {
  padding: 12px 20px;
  background: #F2F7F9;
  border-radius: 7px;
  font-weight: 500;
  flex: none;
}
.awards-cert {
  margin-top: 18px;
  background: #E7F4FA;
  color: #1C3643;
  padding: 13px 20px;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.04em;
}

/***** CASE STUDY ******/
.case-study {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(28,54,67,0.07);
  padding: 24px 18px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.challenges-solutions {
  color: #536B82;
  font-size: 1rem;
}
.advantages-achieved {
  color: #1C3643;
  font-weight: 500;
  font-size: 1.08rem;
  margin-top: 6px;
}

/***** TESTIMONIALS ******/
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F7FBFD;
  border-radius: 12px;
  min-width: 230px;
  max-width: 420px;
  box-shadow: 0 2px 10px rgba(28,54,67,0.10);
  color: #1C3643;
  margin-bottom: 20px;
  position: relative;
}
.testimonial-card p {
  color: #1C3643;
  font-size: 1.08rem;
  background: none;
}
.testimonial-author {
  font-weight: 600;
  color: #222B36;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 0.98rem;
}
.star-rating {
  color: #F6C26B;
  letter-spacing: 0.12em;
  font-size: 1.2rem;
}

/***** TABLES & LISTS ******/
.feature-table {
  width: 100%;
  margin: 28px 0 0 0;
  border-collapse: collapse;
  font-size: 1rem;
}
.feature-table th {
  background: #E7F4FA;
  color: #1C3643;
  padding: 12px 10px;
  border-radius: 5px 5px 0 0;
  font-weight: 700;
}
.feature-table td {
  background: #fff;
  padding: 14px 10px;
  color: #233544;
  border-bottom: 1px solid #E4E8EF;
  font-weight: 400;
}

/***** BEFORE-AFTER LIST ******/
.before-after-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.before-after-list > div {
  padding: 18px 16px;
  flex: 1 0 220px;
  background: #f2f7fa;
  border-radius: 9px;
  color: #1C3643;
  font-size: 1rem;
}

/***** BLOG ******/
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 28px 0;
}
.blog-post {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 12px rgba(28,54,67,0.05);
  padding: 24px 18px;
  flex: 1 1 250px;
  min-width: 210px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .18s;
}
.blog-post h3 a {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #1C3643;
  font-size: 1.11rem;
  text-decoration: none;
  transition: color .13s;
}
.blog-post h3 a:hover {
  color: #7EC8E3;
  text-decoration: underline;
}
.blog-post:hover {
  box-shadow: 0 8px 22px rgba(28,54,67,0.09);
}
.categories-nav {
  margin: 20px 0 2px 0;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #536B82;
}

/***** CTA BANNER *****/
.cta-banner {
  background: #1C3643;
  color: #fff;
  border-radius: 15px;
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 8px 38px rgba(28,54,67,.15);
  margin-top: 24px;
}
.cta-banner h2 {
  color: #fff;
  font-size: 2rem;
  margin-bottom: 3px;
}
.cta-banner p {
  color: #F6F8FB;
}

/***** FAQ ******/
.faq-list {
  background: #f7fbfd;
  border-radius: 10px;
  padding: 26px 24px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-list dt {
  font-weight: 600;
  color: #1C3643;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 12px;
  font-size: 1rem;
}
.faq-list dd {
  margin-left: 0;
  color: #233544;
  font-size: 0.97rem;
  margin-bottom: 8px;
}
.faq-contact-support {
  margin-top: 14px;
  font-size: 1rem;
  color: #1C3643;
}
.faq-contact-support a {
  color: #7EC8E3;
  font-weight: 600;
  text-decoration: underline;
}

/***** THANK YOU ******/
.thank-you-message, .next-steps-info {
  background: #E7F4FA;
  color: #1C3643;
  border-radius: 9px;
  padding: 18px 24px;
  margin: 16px 0;
  font-size: 1rem;
}

/***** CONTACT DETAILS ******/
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 16px 0;
}
.contact-details > div {
  background: #f2f7fa;
  color: #1C3643;
  border-radius: 7px;
  padding: 13px 16px;
  font-size: 1.02rem;
}
.quick-map {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  background: #F2F7F9;
  border-radius: 8px;
  padding: 13px 18px;
}
.quick-map img {
  width: 28px; height: 28px;
}

/***** TEXT SECTIONS ******/
.text-section {
  background: #F2F7F9;
  color: #233544;
  border-radius: 8px;
  padding: 23px 20px;
  margin-bottom: 18px;
  font-size: 1.02rem;
}
.brand-story-brief {
  margin-top: 13px;
  background: #E7F4FA;
  color: #1C3643;
  padding: 10px 17px;
  border-radius: 8px;
  font-size: 0.98rem;
}

/***** FOOTER *****/
footer {
  background: #1C3643;
  padding: 48px 0 32px 0;
  color: #fff;
}
.footer-brand img {
  width: 54px;
  height: auto;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  margin: 20px 0;
}
.footer-nav a {
  color: #7EC8E3;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  opacity: .97;
  transition: color .16s;
}
.footer-nav a:hover {
  color: #F6C26B;
}
.footer-info {
  font-size: 1rem;
  color: #c8dae3;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/***** HEADER *****/
header {
  background: #fff;
  border-bottom: 1px solid #E4E8EF;
  padding: 0;
  position: relative;
  z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 24px;
  min-height: 80px;
}
header a img {
  height: 38px;
}

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  margin-left: 40px;
  flex: 1 1 auto;
}
.main-nav a {
  color: #1C3643;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  opacity: 0.92;
  transition: color .15s, opacity .15s;
  padding: 0 0 4px 0;
}
.main-nav a:hover, .main-nav a:focus {
  color: #7EC8E3;
  opacity: 1;
}

.cta-btn {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 13px 32px;
  background: #7EC8E3;
  color: #1C3643;
  border-radius: 32px;
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: 0.04em;
  border: none;
  outline: none;
  box-shadow: 0 3px 12px rgba(52, 140, 193, 0.07);
  transition: background .16s, color .15s, transform .14s;
  position: relative;
  cursor: pointer;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: #1C3643;
  color: #fff;
  transform: translateY(-2px) scale(1.045);
}

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.3rem;
  color: #1C3643;
  cursor: pointer;
  padding: 8px 16px;
  z-index: 410;
  transition: color .17s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid #7EC8E3;
}
.mobile-menu {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(28,54,67,.98);
  z-index: 4000;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.71,.21,0,.98);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
  width: 100vw;
  height: 100vh;
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #fff;
  align-self: flex-end;
  margin: 26px 26px 18px 0;
  cursor: pointer;
  z-index: 4201;
  padding: 4px 12px;
  transition: color .17s;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 27px;
  margin: 38px 0 0 32px;
}
.mobile-nav a {
  color: #7EC8E3;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.17rem;
  padding: 6px 0;
  text-decoration: none;
  opacity: 0.92;
  transition: color .15s, opacity .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F6C26B;
  opacity: 1;
}

/* ====== Cookie Consent Banner ====== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #1C3643;
  color: #fff;
  padding: 22px 16px 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  box-shadow: 0 -2px 28px rgba(28,54,67,0.16);
  z-index: 9000;
  animation: slideUpBanner .62s cubic-bezier(.59,.21,.29,.98);
}
@keyframes slideUpBanner {
 from { transform: translateY(100%); }
 to   { transform: translateY(0); }
}
.cookie-consent-banner .cookie-message {
  color: #F2F7F9;
  font-size: 1rem;
  text-align: center;
}
.cookie-consent-btns {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 5px;
}
.cookie-btn {
  padding: 9px 24px;
  border-radius: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  outline: none;
  margin: 0;
  cursor: pointer;
  background: #7EC8E3;
  color: #1C3643;
  transition: background 0.12s, color .12s, box-shadow .12s;
  box-shadow: 0 2px 8px rgba(28,54,67,.07);
}
.cookie-btn.accept {
  background: #7EC8E3;
  color: #1C3643;
}
.cookie-btn.reject {
  background: #F6C26B;
  color: #1C3643;
}
.cookie-btn.settings {
  background: #fff;
  color: #233544;
  border: 1px solid #B5D5E4;
}
.cookie-btn:hover, .cookie-btn:focus {
  filter: brightness(0.93);
  box-shadow: 0 4px 20px rgba(28,54,67,0.13);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(28,54,67,0.58);
  z-index: 9500;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeinModal .25s cubic-bezier(.42,.45,.55,.87);
}
@keyframes fadeinModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  color: #1C3643;
  padding: 44px 32px 32px 32px;
  border-radius: 18px;
  max-width: 420px;
  width: 94vw;
  box-shadow: 0 16px 48px rgba(28,54,67,0.21);
  display: flex;
  flex-direction: column;
  gap: 28px;
  animation: popup .33s cubic-bezier(.59,.21,.29,.98);
}
@keyframes popup {
  0% { transform: scale(.82); opacity: 0; }
  80% { transform: scale(1.05); }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.4rem;
  margin-bottom: 0;
  color: #1C3643;
}
.cookie-modal form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  background: #F2F7F9;
  border-radius: 8px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-category label {
  font-weight: 500;
  color: #1C3643;
}
.cookie-category input[type='checkbox'] {
  width: 18px; height: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: #1C3643;
  cursor: pointer;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 9px;
}

/* ===== RESPONSIVENESS ===== */
@media (max-width: 1140px) {
  .container {
    max-width: 98vw;
    padding: 0 12px;
  }
}
@media (max-width: 900px) {
  .container {
    padding: 0 6vw;
  }
  .footer-nav {
    flex-direction: column;
    gap: 8px;
    margin: 20px 0 6px 0;
  }
  .testimonial-cards,
  .blog-list,
  .service-cards,
  .feature-grid,
  .service-list,
  .card-container {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 14px;
    flex-direction: column;
    gap: 0;
  }
  header .container {
    flex-direction: row;
    gap: 0;
    min-height: 70px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    padding: 12px 23px;
    font-size: 1rem;
  }
  .mobile-menu-toggle {
    display: block;
    margin: 0 10px 0 auto;
  }
  .service-cards,
  .testimonial-cards,
  .feature-grid,
  .service-list,
  .blog-list,
  .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .about-summary {
    flex-direction: column;
    gap: 18px;
  }
  .team-member-list {
    flex-direction: column;
    gap: 14px;
  }
  .before-after-list {
    flex-direction: column;
    gap: 10px;
  }
  .contact-details {
    flex-direction: column;
    gap: 8px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
    margin-bottom: 8px;
    margin-top: 0;
  }
}
@media (max-width: 600px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 22px;
  }
  .testimonials-cards, .blog-list, .service-cards, .feature-grid, .service-list, .card-container {
    gap: 18px;
  }
  .cta-banner {
    padding: 22px 10px;
  }
  .cookie-modal {
    padding: 22px 7vw 22px 7vw;
    max-width: 94vw;
  }
}
@media (max-width: 460px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.19rem; }
  h3 { font-size: 1rem; }
  .cta-banner { padding: 16px 4px; }
  .container { padding: 0 2vw; }
  .cookie-modal { padding: 15px 4vw; }
}

/* ===== VISUAL ENHANCEMENTS & INTERACTIONS ===== */
.card, .feature-card, .service-card, .service-block, .blog-post, .testimonial-card {
  transition: box-shadow .18s, transform .15s;
}
.card:hover, .feature-card:hover, .service-card:hover, .service-block:hover, .blog-post:hover {
  box-shadow: 0 8px 32px rgba(28,54,67,0.14);
  transform: translateY(-2px) scale(1.018);
  z-index: 1;
}

.cta-btn:active {
  filter: brightness(.95);
  transform: scale(.98);
}

/* ===== FORMS AND INPUTS (for cookie modal) ===== */
input[type='checkbox'] {
  accent-color: #7EC8E3;
}

/* ===== UTILITY SPACING ===== */
.mb-0 { margin-bottom: 0 !important; }
.mb-8 { margin-bottom: 8px !important; }
.mb-14 { margin-bottom: 14px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.pt-10 { padding-top: 10px !important; }

/* Prevent content overlapping */
.card, .feature-card, .service-card, .service-block, .blog-post, .testimonial-card {
  min-width: 0;
  margin-bottom: 20px;
}

/* ===== CUSTOM FONT IMPORT (web safe with fallbacks) ===== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600;700&display=swap');

/* ===== END ===== */
