/* RESET & BASE STYLES */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  min-height: 100vh;
  background: #FFFDF9;
  color: #2d2b22;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.66;
  letter-spacing: 0.01em;
  transition: background 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}
ul, ol {
  margin-left: 1.3em;
  margin-bottom: 1.1em;
  padding-left: 1em;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1A5091;
  margin-bottom: 16px;
  font-weight: 700;
}
h1 {
  font-size: 2.25rem;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 10px;
}
p, li {
  font-size: 1rem;
  color: #44392A;
}
a {
  color: #1A5091;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F7C331;
  outline: none;
}

/* SPACING & LAYOUT (Mandatory Flex patterns) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.section, .hero, .about, .why-us, .services, .special-services, .cta-banner, .services-overview, .callout-testimonials, .how-it-works-hero, .process-steps, .faq, .pricing-table, .pricing-details, .contact-form-section, .contact-details, .location-map, .privacy-policy, .gdpr-section, .cookie-policy, .terms-section, .thank-you-msg {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 18px;
}
.content-wrapper, .footer-wrapper {
  display: flex;
  flex-direction: column;
  gap: 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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF9ED;
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(250, 176, 60,0.14);
  margin-bottom: 20px;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 16px 0 rgba(26,80,145,0.11);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-radius: 16px;
  background: #FAF5E5;
  box-shadow: 0 2px 8px 0 rgba(34, 26, 20, 0.05);
  padding: 24px 20px 20px 20px;
  min-width: 220px;
  flex: 1 1 240px;
}

/* FLEX-ONLY GRIDS FOR FEATURES AND CARDS */
.features .feature-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 900px) {
  .features .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item {
    min-width: unset;
    width: 100%;
  }
}

/* SERVICES PAGE */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
.service-item {
  background: #FFF9ED;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(247,195,49,0.04);
  padding: 26px 18px 20px 18px;
  margin-bottom: 20px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.2s;
}
.service-item:hover {
  box-shadow: 0 8px 24px 0 rgba(26,80,145,0.11);
}
@media (max-width: 900px) {
  .service-list {
    flex-direction: column;
    gap: 18px;
  }
  .service-item {
    width: 100%;
  }
}

/* PRICING TABLE/GRID SECTION */
.price-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: space-between;
}
.price-item {
  background: #FFF9ED;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(34, 26, 20, 0.06);
  padding: 30px 20px 24px 20px;
  margin-bottom: 20px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 2px solid #F7C331;
}
@media (max-width: 900px) {
  .price-grid {
    flex-direction: column;
    gap: 16px;
  }
  .price-item {
    width: 100%;
    min-width: unset;
  }
}
.transparent-pricing-note {
  margin: 18px 0 0 0;
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: #665627;
  gap: 8px;
  background: #FFFBF3;
  padding: 10px 16px;
  border-radius: 12px;
}

/* FAQ SECTION */
.faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex-direction: column;
}
.faq-item {
  background: #FAF5E5;
  border-radius: 14px;
  box-shadow: 0 2px 6px 0 rgba(247,195,49, 0.08);
  padding: 18px 16px;
  margin-bottom: 8px;
  transition: box-shadow 0.17s;
}
.faq-item h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: #1A5091;
}

/* HERO & CTA SECTIONS */
.hero {
  background: linear-gradient(90deg, #ffe9b6 0%, #fff6df 100%);
  padding: 52px 20px 48px 20px;
  border-radius: 24px;
  min-height: 320px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px 0 rgba(26,80,145,0.05);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 24px;
}
.hero h1 {
  color: #1A5091;
  font-size: 2.325rem;
}
.hero .subheadline {
  font-size: 1.18rem;
  color: #6C560C;
  margin-bottom: 12px;
}
.cta {
  display: inline-block;
  background: #F7C331;
  color: #1A5091;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.09rem;
  padding: 15px 32px;
  border-radius: 24px;
  box-shadow: 0 2px 8px 0 rgba(247,195,49,0.07);
  transition: background 0.19s, color 0.19s, box-shadow 0.17s;
  border: none;
  cursor: pointer;
  margin-top: 12px;
  letter-spacing: 0.01em;
}
.cta:hover, .cta:focus {
  background: #1A5091;
  color: #fff;
  box-shadow: 0 6px 24px 0 rgba(26,80,145,0.15);
  outline: none;
}

/* NAVIGATION */
header {
  background: #fff;
  box-shadow: 0 2px 10px 0 rgba(26,80,145,0.1);
  position: sticky;
  top: 0;
  z-index: 2100;
}
header .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo img {
  height: 38px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A5091;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 18px;
  padding: 8px 17px;
  transition: background 0.17s, color 0.17s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #F7C331;
  color: #1A5091;
  outline: none;
}
.main-nav .cta {
  margin-left: 26px;
  background: #F7C331;
  color: #1A5091;
}
.main-nav .cta:hover, .main-nav .cta:focus {
  background: #1A5091;
  color: #fff;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: none;
  border: none;
  color: #1A5091;
  border-radius: 8px;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.14s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #F7C331;
}
/* MOBILE NAVIGATION MENU */
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 2222;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(26,80,145, 0.97);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transition: transform 0.38s cubic-bezier(0.77,0,0.18,1);
  transform: translateX(100%);
  padding: 0 32px;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2.1rem;
  margin-top: 22px;
  background: none;
  border: none;
  color: #F7C331;
  cursor: pointer;
  border-radius: 10px;
  padding: 6px 16px;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #fff2bc;
  color: #1A5091;
}
.mobile-nav {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.21rem;
  text-align: left;
  padding: 12px 12px;
  border-radius: 12px;
  transition: background 0.13s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F7C331;
  color: #1A5091;
  outline: none;
}
@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}
@media (min-width: 981px) {
  .mobile-menu {
    display: none !important;
  }
}

/* FOOTER */
footer {
  background: #f9f4e9;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -2px 10px 0 rgba(26,80,145,0.07);
  margin-top: 40px;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 0 20px 0;
}
.brand-footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  max-width: 340px;
}
.brand-footer img {
  background: #FFF9ED;
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0 1px 4px 0 rgba(247,195,49,0.15);
}
.brand-footer span {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A5091;
  font-weight: 600;
  margin-bottom: 3px;
}
.footer-contact {
  font-size: .98rem;
  list-style: none;
  margin: 0;
  padding: 0;
  color: #44392A;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-contact img {
  height: 16px;
  margin-right: 6px;
  vertical-align: middle;
}
.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-menu a {
  color: #1A5091;
  font-size: 1rem;
  padding: 4px 0;
  border-radius: 7px;
  transition: color 0.14s, background 0.14s;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #F7C331;
  background: #FFF6DF;
  outline: none;
}
.social-icons {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 10px;
}
.social-icons span {
  color: #887312;
  font-size: .98rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.social-icons img {
  background: #FFF9ED;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  transition: box-shadow 0.16s;
  box-shadow: 0 1px 2px 0 rgba(247,195,49,0.09);
  cursor: pointer;
}
.social-icons img:hover {
  box-shadow: 0 2px 10px 0 rgba(26,80,145,0.14);
}
@media (max-width: 850px) {
  .footer-wrapper {
    flex-direction: column;
    gap: 22px;
    align-items: stretch;
    padding-bottom: 24px;
  }
  .footer-menu {
    flex-direction: row;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 8px;
  }
}

/* CARDS FOR TESTIMONIALS AND OTHERS */
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
}
@media (max-width: 900px) {
  .testimonials-list {
    flex-direction: column;
    gap: 16px;
  }
}
.testimonial-meta {
  color: #1A5091;
  font-weight: 600;
  font-size: .98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-top: 8px;
}

/* RESPONSIVE TEXT-IMAGE ALIGNMENT */
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* CONTACT PAGE */
.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
  color: #222;
}
.contact-list li {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 1rem;
}
.contact-list img {
  width: 20px;
  height: 20px;
  margin-right: 7px;
}
.info-box {
  background: #FFE9B6;
  border-radius: 14px;
  padding: 20px 18px;
  margin: 12px 0 16px 0;
  box-shadow: 0 1px 8px 0 rgba(247,195,49,0.09);
  font-weight: 500;
  color: #1A5091;
  font-size: 1rem;
}
.text-section {
  max-width: 600px;
}

/* THANK YOU PAGE */
.thank-you-msg {
  background: #FFF9ED;
  border-radius: 24px;
  text-align: center;
  align-items: center;
  min-height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 80px;
  box-shadow: 0 2px 12px 0 rgba(250,176,60,0.06);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  display: flex;
  align-items: center;
  gap: 18px;
  justify-content: space-between;
  position: fixed;
  z-index: 3500;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #FFE9B6;
  color: #2d2b22;
  font-size: 1.05rem;
  padding: 20px 28px;
  box-shadow: 0 -2px 14px rgba(34,26,20,0.09);
  border-radius: 23px 23px 0 0;
  animation: slideUp 0.7s cubic-bezier(0.39,0.575,0.565,1.000);
}
.cookie-banner .cookie-banner-btns {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-banner button {
  appearance: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  border: none;
  border-radius: 15px;
  padding: 8px 18px;
  cursor: pointer;
  background: #F7C331;
  color: #1A5091;
  font-weight: 600;
  transition: background 0.16s, color 0.14s;
  box-shadow: 0 1px 5px 0 rgba(247,195,49,0.07);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #fff;
  color: #1A5091;
}
.cookie-banner .cookie-settings-btn {
  background: #1A5091;
  color: #fff;
}
.cookie-banner .cookie-settings-btn:hover, .cookie-banner .cookie-settings-btn:focus {
  background: #F7C331;
  color: #1A5091;
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: .99rem;
    padding: 16px 10px 16px 10px;
  }
  .cookie-banner .cookie-banner-btns {
    width: 100%;
    gap: 8px;
  }
}

@keyframes slideUp {
  0% { transform: translateY(56px); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 3520;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(34,26,20,0.41);
  justify-content: center;
  align-items: center;
  animation: modalFadeIn 0.35s;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes modalFadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #FFF9ED;
  min-width: 308px;
  max-width: 98vw;
  box-shadow: 0 8px 32px 0 rgba(26,80,145,0.16);
  border-radius: 22px;
  padding: 38px 32px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  animation: modalPopIn 0.34s;
}
@media (max-width: 520px) {
  .cookie-modal {
    padding: 27px 6vw 18px 6vw;
    min-width: 0;
  }
}
@keyframes modalPopIn {
  0% { transform: scale(0.91); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: #1A5091;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.12s;
  padding: 4px 10px;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: #F7C331;
  color: #fff;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 16px 0 26px 0;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-category-label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1A5091;
  font-size: 1.05rem;
  font-weight: 500;
}
.cookie-category-toggle {
  width: 42px;
  height: 26px;
  background: #eaddb2;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: background 0.15s;
  margin-left: 5px;
}
.cookie-category-toggle[aria-checked="true"] {
  background: #F7C331;
}
.cookie-category-toggle .toggle-knob {
  position: absolute;
  top: 2px;
  left: 2px;
  background: #fff;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  transition: left 0.19s;
  box-shadow: 0 1px 4px 0 rgba(26,80,145,0.09);
}
.cookie-category-toggle[aria-checked="true"] .toggle-knob {
  left: 18px;
}
/* Essential cookies always enabled & grayed out */
.cookie-category-essential .cookie-category-toggle {
  background: #eaddb2;
  cursor: default;
}
.cookie-category-essential .cookie-category-toggle .toggle-knob {
  background: #fff;
}
.cookie-category-essential .cookie-category-toggle[aria-checked="true"] {
  background: #eaddb2;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.cookie-modal .modal-actions button {
  background: #F7C331;
  color: #1A5091;
  font-family: 'Montserrat', Arial, sans-serif;
  border-radius: 16px;
  font-size: 1rem;
  padding: 9px 18px;
  font-weight: 700;
  border: none;
  transition: background 0.15s, color 0.14s;
  cursor: pointer;
}
.cookie-modal .modal-actions button:hover, .cookie-modal .modal-actions button:focus {
  background: #1A5091;
  color: #fff;
}

/* OTHER UTILS */
::-webkit-input-placeholder { color: #B9A160; opacity: 1; }
::-moz-placeholder { color: #B9A160; opacity: 1; }
:-ms-input-placeholder { color: #B9A160; opacity: 1; }
::placeholder { color: #B9A160; opacity: 1; }

/* MICRO-INTERACTIONS */
button, [role="button"], .cta {
  transition: background 0.17s, color 0.17s, box-shadow 0.13s;
}

/* CARDS/GENERAL UI ELEMENTS */
.card, .service-item, .feature-item, .price-item, .faq-item {
  box-shadow: 0 2px 8px 0 rgba(250, 176, 60,0.10);
}

/* HIERARCHY, SPACING, VISUAL CLARITY */
.section, .hero, .about, .why-us, .services, .special-services, .cta-banner, .services-overview, .callout-testimonials, .how-it-works-hero, .process-steps, .faq, .pricing-table, .pricing-details, .contact-form-section, .contact-details, .location-map, .privacy-policy, .gdpr-section, .cookie-policy, .terms-section, .thank-you-msg {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 18px;
  box-sizing: border-box;
}

@media (max-width:780px) {
  .section, .hero, .about, .why-us, .services, .special-services, .cta-banner, .services-overview, .callout-testimonials, .how-it-works-hero, .process-steps, .faq, .pricing-table, .pricing-details, .contact-form-section, .contact-details, .location-map, .privacy-policy, .gdpr-section, .cookie-policy, .terms-section, .thank-you-msg {
    margin-bottom: 38px;
    padding: 25px 8.5vw;
  }
  h1 { font-size: 1.59rem; }
  h2 { font-size: 1.22rem; }
}

@media (max-width:440px) {
  .section, .hero, .about, .why-us, .services, .special-services, .cta-banner, .services-overview, .callout-testimonials, .how-it-works-hero, .process-steps, .faq, .pricing-table, .pricing-details, .contact-form-section, .contact-details, .location-map, .privacy-policy, .gdpr-section, .cookie-policy, .terms-section, .thank-you-msg {
    margin-bottom: 28px;
    padding: 13px 2vw !important;
    border-radius: 11px;
  }
}

/* END */
