/* CSS Reset and 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, main, 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%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  background: linear-gradient(135deg, #f7fafe 0%, #e3eefa 100%);
  color: #154973;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #154973;
  text-decoration: none;
  transition: color .18s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #6BAE3B;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #154973;
  line-height: 1.2;
  margin-bottom: 12px;
}
h1 { font-size: 2.75rem; font-weight: 700; letter-spacing: -1px; margin-bottom: 24px;}
h2 { font-size: 2rem; font-weight: 600; margin-bottom: 18px;}
h3 { font-size: 1.4rem; font-weight: 500; margin-bottom: 10px;}
h4 { font-size: 1.25rem; }
h5, h6 { font-size: 1.1rem; }
p, li, span {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: #2a394d;
}
strong {
  font-weight: 700;
}

/* Containers & Layout */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  flex: 1 1 280px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 6px 18px 0 rgba(30,65,90,0.07);
  padding: 28px 24px;
  transition: transform .16s, box-shadow .16s;
}
.card:hover {
  transform: translateY(-3px) scale(1.018);
  box-shadow: 0 12px 24px 0 rgba(30,65,90,0.13);
}

.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;
  background: #FFECD1;
  color: #154973;
  padding: 28px 32px;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(30,65,90,0.06);
  margin-bottom: 20px;
  font-size: 1.09rem;
  min-width: 300px;
  max-width: 450px;
  transition: box-shadow .18s;
}
.testimonial-card .star-ratings {
  font-family: 'Montserrat', 'Segoe UI Symbol', Arial, sans-serif;
  color: #F5A623;
  letter-spacing: 2px;
  font-size: 1.5rem;
  margin-bottom: 2px;
}
.testimonial-card strong { color: #154973; }
.testimonial-card p { color: #1e3853; font-size: 1.02rem; }
.testimonial-card:hover {
  box-shadow: 0 6px 28px rgba(30,65,90,0.12);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* HEADER */
header {
  width: 100%;
  background: linear-gradient(90deg, #154973 0%, #2294e6 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(21, 73, 115, 0.07);
  position: relative;
  z-index: 30;
}
header .container {
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.logo img {
  height: 46px;
  transition: filter .15s;
}
.logo:hover img {
  filter: brightness(1.12);
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #fff;
  font-size: 1rem;
  padding: 7px 12px;
  border-radius: 8px;
  transition: background .17s, color .16s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #FFECD1;
  color: #154973;
}
.main-nav .cta-primary {
  background: linear-gradient(90deg, #6BAE3B 30%, #d6efc2 100%);
  color: #154973;
  font-weight: 600;
  border-radius: 16px;
  padding: 10px 20px;
  margin-left: 14px;
  box-shadow: 0 3px 8px 0 rgba(107,174,59,0.07);
  transition: background .14s, color .14s, box-shadow .16s;
}
.main-nav .cta-primary:hover, .main-nav .cta-primary:focus {
  background: linear-gradient(90deg, #154973 12%, #6BAE3B 85%);
  color: #fff;
  box-shadow: 0 8px 24px 0 rgba(107,174,59,0.13);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
  margin-left: auto;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background .15s;
  z-index: 140;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FFECD1;
  color: #154973;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(120deg, #154973 85%, #6BAE3B 210%);
  box-shadow: 0 2px 16px rgba(21,73,115,0.15);
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.87,0,.13,1);
  z-index: 200;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  align-self: flex-end;
  margin: 16px 20px 8px 0;
  padding: 6px 13px;
  border-radius: 8px;
  transition: background .14s, color .14s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: #FFECD1;
  color: #154973;
}
.mobile-nav {
  margin-left: 24px;
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 500;
  padding: 13px 12px 13px 4px;
  border-radius: 10px;
  transition: background .16s, color .14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFECD1;
  color: #154973;
}

/* HERO SECTION*/
.hero {
  background: linear-gradient(120deg, #175d9f 8%, #6BAE3B 100%);
  color: #fff;
  padding: 70px 0 60px 0;
}
.hero .container {
  min-height: 350px;
  display: flex;
  align-items: center;
}
.hero .content-wrapper {
  max-width: 680px;
}
.hero h1 {
  color: #fff;
}
.hero p {
  color: #f0fae9;
  font-size: 1.2rem;
  margin-bottom: 34px;
}

/* GENERAL CTA BUTTONS */
.cta-primary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  background: linear-gradient(90deg, #6BAE3B 80%, #2294e6 120%);
  color: #fff;
  font-weight: 700;
  font-size: 1.13rem;
  padding: 14px 32px;
  border-radius: 28px;
  border: none;
  outline: none;
  box-shadow: 0 2px 8px rgba(107,174,59,0.12);
  margin-top: 18px;
  transition: background .16s, color .13s, box-shadow .16s, transform .10s;
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #154973 22%, #6BAE3B 90%);
  color: #fff;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 6px 24px 0 rgba(107,174,59,0.22);
}
.cta-secondary {
  display: inline-block;
  background: #FFECD1;
  color: #154973;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 10px 28px;
  border-radius: 22px;
  margin-top: 22px;
  font-size: 1rem;
  border: none;
  box-shadow: 0 2px 8px rgba(255,236,209,0.09);
  transition: background .18s, color .12s, box-shadow .17s, transform .10s;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: #6BAE3B;
  color: #fff;
  transform: scale(1.035);
  box-shadow: 0 6px 18px rgba(107,174,59,0.18);
}

/* FEATURES */
.features {
  background: #f7fafe;
}
.features .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 15px;
}
.feature-card {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 10px 0 rgba(30,65,90,0.06);
  padding: 30px 24px 26px 24px;
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  margin-bottom: 20px;
  transition: box-shadow .16s, transform .15s;
}
.feature-card img {
  width: 38px; height: 38px;
}
.feature-card:hover {
  box-shadow: 0 8px 22px 0 rgba(30,65,90,0.16);
  transform: translateY(-2px) scale(1.012);
}

/* SERVICES OVERVIEW */
.services-overview .service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.service-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 7px 0 rgba(21,73,115,0.08);
  padding: 26px 20px 22px 20px;
  width: 280px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow .16s, transform .10s;
}
.service-card .service-price {
  margin-top: 8px;
  font-weight: 700;
  color: #6BAE3B;
  font-size: 1.08rem;
}
.service-card:hover {
  box-shadow: 0 6px 20px 0 rgba(21,73,115,0.20);
  transform: translateY(-3px);
}

/* TESTIMONIALS & REVIEWS */
.testimonials, .review-grid, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.testimonials {
  background: linear-gradient(120deg, #FFECD1 93%, #6BAE3B 170%);
  padding: 40px 0 56px 0;
}
.review-grid {
  gap: 26px;
  margin: 34px 0 22px 0;
}
.review-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  margin-top: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #154973;
  font-weight: 500;
  font-size: 1.12rem;
}
.featured-review {
  margin-top: 38px;
}
.featured-review h2 {
  font-size: 1.25rem;
  color: #154973;
  margin-bottom: 13px;
}

/* CTA */
.cta {
  background: linear-gradient(90deg, #154973 60%, #6BAE3B 170%);
  color: #fff;
  text-align: center;
  padding: 64px 0 70px 0;
}
.cta h2 { color: #fff; }
.cta p { color: #fff; font-size: 1.13rem; margin-bottom: 24px; }

/* ABOUT/TEAM/VALUES ICON ROW */
.expertise-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  justify-content: flex-start;
  margin: 30px 0 32px 0;
}
.expertise-icons img { width: 48px; height: 48px; }

.team-intro {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 3px 14px rgba(21,73,115,0.08);
  padding: 22px 24px;
  margin: 20px 0 0 0;
}

.brand-mission {
  background: #f7fff0;
  border-radius: 14px;
  padding: 18px 20px 14px 20px;
  margin: 16px 0 0 0;
  color: #175d9f;
  box-shadow: 0 1px 7px rgba(107,174,59,0.05);
}

/* VALUES */
.values .core-values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin: 18px 0 24px 0;
}
.value-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(21,73,115,0.09);
  padding: 28px 22px 20px 22px;
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
}
.quality-stamp {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
  margin-bottom: 18px;
}
.quality-stamp img {
  width: 38px; height: 38px;
}
.guarantees ul {
  margin-top: 15px;
}
.guarantees li {
  margin-bottom: 6px;
  padding-left: 23px;
  background: url('../assets/icons/checklist.svg') left 4px/18px 18px no-repeat;
  color: #175d9f;
}

/* SERVICES LIST */
.services-list .detailed-service-items {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.service-item {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 10px 0 rgba(30,65,90,0.07);
  padding: 28px 22px 22px 22px;
  width: 285px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow .16s, transform .14s;
}
.service-item:hover {
  box-shadow: 0 10px 28px rgba(21,73,115,0.14);
  transform: translateY(-2px) scale(1.02);
}
.service-item img {
  width: 40px; height: 40px;
}
.service-item .service-price {
  color: #6BAE3B;
  font-weight: 700;
  margin-top: 5px;
}

/* PROCESS STEPS */
.steps-visualization {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 32px 0 28px 0;
}
.step {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 8px 0 rgba(30,65,90,0.07);
  padding: 24px 16px 20px 16px;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  margin-bottom: 20px;
  transition: box-shadow .16s, transform .14s;
}
.step img { width: 36px; height: 36px; }
.step:hover {
  box-shadow: 0 7px 22px rgba(21,73,115,0.13);
  transform: scale(1.03);
}

/* PRICING TABLE */
.pricing-table .service-pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 35px 0 22px 0;
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(107,174,59,0.05);
}
.service-pricing-table th, .service-pricing-table td {
  padding: 18px 14px;
  text-align: left;
  border-bottom: 1px solid #ecf0f2;
  font-size: 1.03rem;
}
.service-pricing-table thead th {
  background: #FFECD1;
  color: #154973;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.service-pricing-table tr:last-child td {
  border-bottom: none;
}

.fee-descriptions ul,
.included-services-bullets ul {
  margin-top: 13px;
  margin-bottom: 16px;
  padding-left: 24px;
}
.fee-descriptions li,
.included-services-bullets li {
  margin-bottom: 7px;
  color: #175d9f;
}
.included-services-bullets h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}

/* FAQ SECTION */
.faq-list .expandable-faq-items {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(30,65,90,0.07);
  padding: 28px 16px 18px 20px;
  margin-bottom: 20px;
  transition: box-shadow .16s, transform .10s;
}
.faq-item h2 {
  font-size: 1.13rem;
  margin-bottom: 8px;
}
.faq-item p { color: #175d9f; }
.contact-us-prompt {
  background: linear-gradient(90deg, #FFECD1 70%, #6BAE3B 130%);
  border-radius: 16px;
  padding: 20px 16px 22px 22px;
  margin-top: 38px;
  box-shadow: 0 0.5px 7px rgba(107,174,59, 0.08);
}
.contact-us-prompt strong {
  color: #154973;
  font-weight: 700;
}
.contact-us-prompt a { color: #154973; font-weight: 700; text-underline-position: under; }

/* CONTACT PAGE */
.contact-form-section .contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 20px;
  margin-bottom: 18px;
}
.contact-info-block {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1px 8px rgba(30,65,90,0.06);
  padding: 18px 14px;
  flex: 1 1 210px;
  min-width: 130px;
}
.address-map {
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 16px 0 0 0;
  background: #EEF4F9;
  padding: 10px 16px;
  border-radius: 12px;
}
.address-map img { width: 24px; height: 24px; }

.hours-info ul {
  margin-top: 17px;
  margin-bottom: 21px;
  color: #175d9f;
}

/* THANK YOU PAGE */
.thank-you-section {
  text-align: center;
}
.next-steps-info ul {
  margin-top: 22px;
  margin-bottom: 16px;
  padding-left: 24px;
}
.next-steps-info li {
  margin-bottom: 7px;
  color: #154973;
}

/* LEGAL PAGES */
.legal-text {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(21,73,115,0.07);
  padding: 38px 22px;
  margin: 42px 0;
}
.legal-text h1, .legal-text h2, .legal-text h3 {
  margin-top: 28px;
  color: #154973;
}
.legal-text ul {
  margin-top: 10px;
  padding-left: 22px;
  margin-bottom: 14px;
}
.legal-text li {
  margin-bottom: 7px;
}

/* FOOTER */
footer {
  background: linear-gradient(90deg, #154973 70%, #6BAE3B 210%);
  color: #fff;
  padding: 32px 0 12px 0;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color .18s;
}
.footer-nav a:hover {
  color: #6BAE3B;
}
.footer-contact {
  text-align: center;
  color: #FFECD1;
  font-size: 1rem;
  margin-top: 8px;
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: linear-gradient(90deg, #154973 83%, #6BAE3B 180%);
  color: #fff;
  z-index: 3000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  font-size: 1.09rem;
  box-shadow: 0 -2px 12px rgba(21,73,115,0.16);
  opacity: 1;
  transform: translateY(0);
  transition: opacity .32s, transform .32s;
}
.cookie-banner.closed {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner-text {
  max-width: 350px;
}
.cookie-banner-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-banner-btns button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  padding: 8px 19px;
  border-radius: 18px;
  margin-top: 4px;
  border: none;
  outline: none;
  background: #FFECD1;
  color: #154973;
  font-size: 1rem;
  cursor: pointer;
  transition: box-shadow .14s, background .15s, color .15s;
  box-shadow: 0 1px 4px rgba(21,73,115,0.06);
}
.cookie-banner-btns .cookie-accept {
  background: linear-gradient(90deg, #6BAE3B 60%, #2294e6 120%);
  color: #fff;
}
.cookie-banner-btns button:hover, .cookie-banner-btns button:focus {
  background: #154973;
  color: #fff;
  box-shadow: 0 3px 11px rgba(21,73,115,0.11);
}
.cookie-banner-btns .cookie-settings-btn {
  background: #fff;
  color: #154973;
  border: 1.5px solid #154973;
}
.cookie-banner-btns .cookie-reject {
  background: #eee;
  color: #154973;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 3200;
  background: rgba(30,45,60,0.34);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity .18s;
}
.cookie-modal-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #154973;
  border-radius: 26px;
  padding: 38px 26px 22px 26px;
  max-width: 370px;
  width: 95vw;
  box-shadow: 0 8px 42px rgba(21,73,115,0.13);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 16px; right: 18px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: #154973;
  cursor: pointer;
  padding: 4px 11px;
  border-radius: 9px;
  transition: background .14s, color .13s;
}
.cookie-modal .cookie-modal-close:hover {
  background: #FFECD1;
  color: #6BAE3B;
}
.cookie-modal h2 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #6BAE3B;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 9px;
}
.cookie-category-row label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #154973;
}
.cookie-category-switch {
  appearance: none;
  outline: none;
  width: 34px; height: 18px;
  background: #d5eafc;
  border-radius: 9px;
  position: relative;
  transition: background .14s;
}
.cookie-category-switch:checked {
  background: linear-gradient(90deg, #6BAE3B 55%, #2294e6 120%);
}
.cookie-category-switch::after {
  content: '';
  display: block;
  position: absolute;
  left: 2px; top: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  transition: left .14s;
}
.cookie-category-switch:checked::after {
  left: 18px;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 9px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 8px 18px;
  border-radius: 16px;
  border: none;
  background: #154973;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  transition: background .14s;
  cursor: pointer;
}
.cookie-modal-actions button:hover {
  background: #6BAE3B;
}

/* ------ Responsive Design (Mobile-First, then Tablet/Desktop queries) ------ */
@media (max-width: 1200px) {
  .container {
    max-width: 97vw;
  }
}
@media (max-width: 1024px) {
  .feature-grid, .service-cards, .core-values-grid, .detailed-service-items, .review-grid, .steps-visualization {
    justify-content: flex-start;
    gap: 20px;
  }
  .featured-review, .review-highlights {
    gap: 22px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-cards, .core-values-grid, .detailed-service-items, .review-grid, .steps-visualization {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .service-card, .feature-card, .value-card, .service-item, .step {
    width: 100%;
  }
  .testimonial-card {
    min-width: 212px;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 8px;
  }
  header .container {
    height: 56px;
    gap: 10px;
    padding: 0 7px;
  }
  nav.main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding: 38px 0 32px 0;
  }
  .cta {
    padding: 40px 0 45px 0;
  }
  .hero .container {
    min-height: 170px;
  }
  .content-grid, .feature-grid, .service-cards, .core-values-grid, .detailed-service-items, .review-grid, .steps-visualization, .contact-details {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .testimonial-card, .service-card, .feature-card, .team-intro, .value-card, .service-item, .faq-item, .step, .address-map, .legal-text, .quality-stamp {
    padding: 19px 11px 15px 15px;
    font-size: 1rem;
  }
  .legal-text {
    padding: 25px 8px;
    margin: 20px 0;
  }
  .section {
    padding: 20px 7px;
  }
  .footer-nav {
    gap: 14px;
    font-size: .98rem;
  }
  .footer-contact {
    font-size: .98rem;
  }
  .thank-you-section, .cta {
    padding: 24px 0 !important;
  }
  .address-map {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 510px) {
  .testimonial-card {
    padding: 14px 8px 13px 8px;
    font-size: .97rem;
    min-width: unset;
    max-width: 99vw;
  }
  .hero h1 {
    font-size: 1.65rem;
  }
  .hero p { font-size: 1rem; }
  .cta h2, .thank-you-section h1 { font-size: 1.3rem !important; }
  .main-nav a, .mobile-nav a { font-size: 1rem !important; }
  .legal-text h1 { font-size: 1.4rem !important; }
  .legal-text h2, .legal-text h3 { font-size: 1.09rem !important; }
}

/* Focus styles for accessibility */
a:focus, button:focus, .cta-primary:focus {
  outline: 2px solid #6BAE3B;
  outline-offset: 2px;
}

/* Transition/Micro-interactions */
button, .cta-primary, .cta-secondary, a, .main-nav a, .mobile-nav a {
  transition: background .17s, color .17s, box-shadow .18s, transform .13s;
}

/* Visually distinct scrollbar */
::-webkit-scrollbar { width: 7px; background: #d9e7f4; }
::-webkit-scrollbar-thumb { background: #6BAE3B; border-radius: 5px; }

/* Hide mobile menu with no absolute positioning for content */
body.mobile-menu-open {
  overflow: hidden;
}

/* Hide elements utility */
.hidden, [hidden] { display: none !important; }
