/* 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
    line-height: 1.5;
    min-height: 100vh;
    background: #FAF8F6;
    color: #282828;
    font-family: 'Roboto', Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
a {
  color: #1E90B7;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #117495;
}

/* BRANDING FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #282828;
  font-weight: 700;
  letter-spacing: -0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

p, li {
  font-size: 1rem;
  line-height: 1.6;
  color: #282828;
}
strong {
  font-weight: 700;
  color: #1E90B7;
}


/* SPACING SYSTEM & UTILITY CLASSES */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.gap-20 { gap: 20px; }

/* HEADER & NAVIGATION */
header {
  background: #FAF8F6;
  border-bottom: 1px solid #ececec;
  position: relative;
  z-index: 10;
}
header .container {
  padding-top: 16px;
  padding-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header img {
  max-height: 48px;
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #282828;
  font-weight: 500;
  padding: 8px 0;
  transition: color 0.2s;
  position: relative;
}
.main-nav a:after {
  content: '';
  display: block;
  margin: 0 auto;
  width: 0;
  height: 2px;
  background: #1E90B7;
  transition: width 0.24s cubic-bezier(0.4,0,0.2,1);
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 70%;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(90deg,#1E90B7 0%,#76dde8 100%);
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  border-radius: 36px;
  padding: 12px 32px;
  font-size: 1.1rem;
  box-shadow: 0 4px 18px rgba(30,144,183,0.10);
  margin-left: 24px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.18s;
}
.cta-button:hover, .cta-button:focus {
  background: linear-gradient(90deg,#117495 0%,#43b7e4 100%);
  box-shadow: 0 2px 14px rgba(30,144,183,0.16);
  transform: translateY(-2px) scale(1.04);
  color: #fff;
}

/* MOBILE MENU STYLES */
.mobile-menu-toggle {
  display: none;
  background: #282828;
  color: #FAF8F6;
  border: none;
  font-size: 2rem;
  border-radius: 8px;
  padding: 6px 14px;
  margin-left: 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  z-index: 80;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #1E90B7;
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 90vw;
  max-width: 360px;
  height: 100vh;
  background: #FAF8F6;
  box-shadow: -6px 0 16px rgba(0,0,0,0.05);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
  padding: 32px 28px 24px 28px;
  gap: 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #282828;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  align-self: flex-end;
  margin-bottom: 8px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #282828;
  padding: 12px 0;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #1E90B7;
  color: #fff;
}

@media (max-width: 1020px) {
  .main-nav,.cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1021px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #e3f8ff 0%, #FAF8F6 100%);
  padding: 64px 0 64px 0;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 20px;
}
.hero h1 {
  color: #1E90B7;
  font-size: 2.2rem;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.18rem;
  margin-bottom: 20px;
  color: #333;
}
.hero .cta-button {
  margin-left: 0;
}

/* FEATURES SECTION */
.features {
  background: #fff;
}
.features ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.05rem;
  background: #F6FCFF;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(30,144,183,0.03);
  padding: 12px 20px;
  font-family: 'Roboto', Arial, sans-serif;
  min-width: 240px;
  margin-bottom: 20px;
}
.features img {
  max-width: 32px;
  height: 32px;
}

/* SERVICES SUMMARY */
.services-summary, .services-block {
  background: #e3f8ff;
  border-radius: 0px 0px 36px 36px;
}
.service-cards, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.service-card, .service-detail {
  background: #fff;
  box-shadow: 0 2px 14px rgba(30,144,183,0.05);
  border-radius: 20px;
  padding: 24px 24px 18px 24px;
  transition: box-shadow 0.25s,transform 0.22s;
  flex: 1 1 280px;
  min-width: 260px;
  max-width: 330px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1.5px solid #eaf4fa;
}
.service-card:hover, .service-detail:hover {
  box-shadow: 0 6px 24px rgba(30,144,183,0.13);
  transform: translateY(-5px) scale(1.015);
}
.service-card h3, .service-detail h2 {
  color: #1E90B7;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 8px;
  font-size: 1.25rem;
}
.service-card strong, .service-detail strong {
  color: #282828;
  background: #e3f8ff;
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 1rem;
}

/* TESTIMONIALS */
.testimonials-preview, .testimonials {
  background: #F6FCFF;
}
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.testimonial-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(30,144,183,0.06);
  padding: 24px 30px 18px 30px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 240px;
  max-width: 450px;
  /* Ensure high contrast: */
  color: #282828;
  font-family: 'Roboto', Arial, sans-serif;
  border: 1.5px solid #eaf4fa;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 8px 24px rgba(30,144,183,0.14);
  transform: scale(1.018) translateY(-4px);
}
.testimonial-card p {
  color: #282828;
  font-style: italic;
  font-size: 1.08rem;
}
.testimonial-card strong {
  color: #1E90B7;
  font-size: 1rem;
  font-style: normal;
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 1px;
  margin-bottom: 6px;
}
.star-rating img {
  width: 20px;
  height: 20px;
  filter: drop-shadow(0px 3px 2px #e3f8ff);
}

/* CTA-BANNER */
.cta-banner {
  background: linear-gradient(90deg,#1E90B7 0%, #e3f8ff 100%);
  box-shadow: 0 2px 32px rgba(30,144,183,0.10);
  border-radius: 24px;
  margin: 40px 0 60px 0;
  padding: 40px 10px;
}
.cta-banner .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 16px;
}
.cta-banner h2 {
  color: #fff;
  font-size: 2rem;
}
.cta-banner p {
  color: #fff;
}
.cta-banner .cta-button {
  margin-top: 10px;
  background: #fff;
  color: #1E90B7;
  box-shadow: 0 2px 8px rgba(30,144,183,0.18);
}
.cta-banner .cta-button:hover, .cta-banner .cta-button:focus {
  background: #e3f8ff;
  color: #117495;
}

/* PAGES: ABOUT, TEAM, BENEFITS, VALUES, ETC */
.about-block, .values, .team-preview, .benefits, 
.privacy-policy, .gdpr, .cookie-policy, .terms-of-use,
.thank-you, .contact-block, .gallery-intro,
.pricing-table {
  background: #fff;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.values ul, .benefits ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}
.values li, .benefits li {
  background: #F6FCFF;
  border-radius: 10px;
  padding: 10px 16px;
  color: #282828;
}
.team-preview p, .about-block p {
  font-size: 1.08rem;
  color: #282828;
}

/* CONTACT INFORMATION SECTION */
.contact-information {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 1.07rem;
}
.contact-information img {
  vertical-align: middle;
  width: 19px;
  height: 19px;
  margin-right: 8px;
}
.contact-information a {
  color: #1E90B7;
  text-decoration: underline;
  transition: color 0.2s;
}
.map-location {
  background: #e3f8ff;
  border-radius: 10px;
  padding: 12px 18px;
  font-style: italic;
  color: #1E90B7;
}

/* GALLERY INTRO SECTION */
.gallery-intro p {
  font-size: 1.06rem;
  color: #282828;
}

/* PRICING TABLE */
.pricing-table table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: #F6FCFF;
  border-radius: 14px;
  overflow: hidden;
  font-size: 1.02rem;
}
.pricing-table th, .pricing-table td {
  text-align: left;
  padding: 14px 12px;
}
.pricing-table th {
  background: #1E90B7;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}
.pricing-table tr:nth-child(even) td {
  background: #e3f8ff;
}
.pricing-table tr td {
  border-bottom: 1px solid #e3f8ff;
}

/* FOOTER */
footer {
  background: linear-gradient(90deg,#FAF8F6 0%,#e3f8ff 100%);
  border-top: 1px solid #eaf4fa;
  padding-top: 32px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.footer-brand img {
  max-height: 44px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 180px;
}
.footer-nav a {
  color: #1E90B7;
  font-weight: 500;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #117495;
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #282828;
  font-size: 0.98rem;
  margin-bottom: 4px;
}
.footer-contact img {
  width: 17px;
  height: 17px;
}
.footer-legal {
  text-align: center;
  font-size: 0.95rem;
  color: #84919a;
  padding-bottom: 14px;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #282828;
  color: #faf8f6;
  z-index: 2000;
  box-shadow: 0 -6px 38px rgba(30,144,183,0.11);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 10px 16px 10px;
  font-size: 1rem;
  align-items: center;
  animation: slideBannerIn 0.58s cubic-bezier(0.4,0,0.2,1);
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
  margin-top: 4px;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 24px;
  padding: 9px 22px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.22s, color 0.18s;
}
.cookie-accept {
  background: #1E90B7;
  color: #fff;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #117495;
}
.cookie-reject {
  background: #fff;
  color: #282828;
  border: 1px solid #e3f8ff;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #e3f8ff;
  color: #117495;
}
.cookie-settings {
  background: #e3f8ff;
  color: #282828;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #1E90B7;
  color: #fff;
}

@keyframes slideBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.cookie-modal {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 3000;
  background: rgba(40,40,40,0.46);
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookie-modal-content {
  background: #fff;
  border-radius: 16px;
  padding: 40px 28px 28px 28px;
  min-width: 300px;
  max-width: 94vw;
  box-shadow: 0 8px 48px rgba(30,144,183,0.16);
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: fadeIn 0.28s ease;
}
@keyframes fadeIn {
  from {opacity: 0;transform: scale(0.96);}
  to {opacity: 1;transform: scale(1);}
}
.cookie-modal-content h2 {
  font-size: 1.4rem;
  color: #1E90B7;
  margin-bottom: 10px;
}
.cookie-modal-content label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  margin-bottom: 14px;
}
.cookie-modal-content input[type="checkbox"] {
  accent-color: #1E90B7;
  width: 19px;
  height: 19px;
}
.cookie-modal-content .modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}
.cookie-modal-close {
  background: none;
  border: none;
  color: #282828;
  position: absolute;
  right: 18px;
  top: 18px;
  font-size: 1.7rem;
  cursor: pointer;
}

/* --- RESPONSIVE QUERIES (MOBILE-FIRST) --- */
@media (max-width: 1020px) {
  .section, .about-block, .values, .team-preview, .benefits, .privacy-policy, .gdpr, .cookie-policy, .terms-of-use, .thank-you, .contact-block, .gallery-intro, .pricing-table {
    padding: 32px 8px;
    border-radius: 12px;
  }
  .footer-nav, .footer-contact {
    min-width: 0;
  }
  .footer-brand {
    margin-bottom: 18px;
  }
}
@media (max-width: 850px) {
  .service-cards, .service-list, .testimonial-cards {
    flex-direction: column;
    gap: 22px;
  }
  .hero {
    padding: 32px 0 32px 0;
  }
}
@media (max-width: 768px) {
  .content-wrapper, .footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .footer .content-wrapper {
    gap: 22px;
    align-items: flex-start;
  }
  .features ul {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .text-image-section, .service-cards, .service-list, .testimonial-cards, .content-grid {
    flex-direction: column !important;
    gap: 20px;
    align-items: stretch;
  }
  .footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
  }
  .footer-contact {
    margin-bottom: 8px;
  }
}
@media (max-width: 550px) {
  h1 {
    font-size: 1.5rem;
    margin-bottom: 14px;
  }
  h2 {
    font-size: 1.15rem;
    margin-bottom: 12px;
  }
  .cta-banner, .hero, .section, .about-block, .values, .team-preview, .benefits, .privacy-policy, .gdpr, .cookie-policy, .terms-of-use, .thank-you, .contact-block, .gallery-intro, .pricing-table {
    padding: 18px 5px;
  }
}

/* OVERRIDES for table on mobile */
@media (max-width: 700px) {
  .pricing-table table, .pricing-table tbody, .pricing-table tr, .pricing-table th, .pricing-table td {
    display: block;
    width: 100%;
  }
  .pricing-table thead {
    display: none;
  }
  .pricing-table td {
    padding: 10px 4px;
    border-bottom: 1px solid #e3f8ff;
  }
}

/* ANIMATIONS */
@media (prefers-reduced-motion: no-preference) {
  .cta-button, .main-nav a, .mobile-nav a, .service-card, .testimonial-card, .footer-nav a {
    transition: all 0.22s cubic-bezier(0.4,0,0.2,1);
  }
}

/* TRANSITIONS/MICRO-INTERACTIONS */
.service-card, .testimonial-card {
  transition: box-shadow 0.22s, transform 0.20s;
}
.service-card:hover, .testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(30,144,183,0.14);
  transform: scale(1.017) translateY(-3px);
}

/* --- GENERAL ACCESSIBILITY --- */
:focus {
  outline: 2px solid #1E90B7;
  outline-offset: 2px;
}

/* Utility to prevent overlapping */
* {
  box-sizing: border-box;
}

/* Hide visually (for ARIA assistive content if needed) */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Ensure no unwanted absolute positioning for content */
.card, .service-card, .service-detail, .testimonial-card {
  position: relative;
}
