/* === 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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body, html {
  height: 100%;
  background: #F7F7F7;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #1A3664;
  background: #F7F7F7;
  line-height: 1.6;
  font-size: 16px;
}
a {
  color: #1A3664;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D8A017;
  outline: none;
}
ul, ol {
  padding-left: 1.5em;
}
img {
  max-width: 100%;
  display: inline-block;
}
button {
  font-family: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

/* === FONT IMPORTS === */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&family=Roboto:wght@400;500;700&display=swap');

/* === BRAND COLORS === */
:root {
  --brand-primary: #1A3664;
  --brand-secondary: #D8A017;
  --brand-accent: #F7F7F7;
  --brand-shadow: rgba(26,54,100,0.08);
  --input-bg: #fff;
  --input-border: #ced4da;
  --danger: #c0392b;
}

/* === TYPOGRAPHY === */
h1, .h1 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
h2, .h2 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  margin: 0 0 18px 0;
}
h3, .h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.375rem;
  font-weight: 500;
  margin: 0 0 14px 0;
}
h4, .h4 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  margin: 0 0 10px 0;
}
h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 400;
}
p, ul, ol, li, span, strong {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
.subheadline {
  font-size: 1.25rem;
  opacity: 0.7;
  margin-bottom: 24px;
  font-weight: 400;
}

/* === GENERAL SPACING === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-accent);
  border-radius: 20px;
  box-shadow: 0 10px 32px -8px var(--brand-shadow);
}

/* === HEADER NAVIGATION === */
header {
  width: 100%;
  background: linear-gradient(90deg, #1A3664 0%, #375885 100%);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 60;
  box-shadow: 0 2px 16px -6px rgba(26,54,100,0.11);
}
header .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 18px;
  gap: 20px;
  position: relative;
}
.main-nav {
  display: flex;
  gap: 26px;
  align-items: center;
}
.main-nav a {
  color: #fff;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.03em;
  padding: 6px 2px;
  border-radius: 4px;
  transition: background 0.19s, color 0.19s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--brand-secondary);
  background: rgba(216,160,23,0.13);
}
.cta-button {
  background: var(--brand-secondary);
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.125rem;
  font-weight: 500;
  padding: 12px 30px;
  border: none;
  border-radius: 24px;
  box-shadow: 0 2px 24px -4px var(--brand-shadow);
  margin-left: 18px;
  transition: background 0.25s, box-shadow 0.25s, color 0.2s;
  display: inline-block;
  position: relative;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: #bd870e;
  color: #fff;
  box-shadow: 0 6px 28px -6px rgba(216,160,23,0.3);
}

/* === HERO SECTION === */
.hero {
  background: linear-gradient(108deg, #1A3664 0%, #375885 100%);
  color: #fff;
  padding: 56px 0 70px 0;
  text-align: left;
  border-radius: 0 0 40px 40px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
.hero h1 { color: #fff; }
.hero .cta-button {
  margin-top: 12px;
  background: #fff;
  color: var(--brand-primary);
  font-size: 1.15rem;
}
.hero .cta-button:hover { background: var(--brand-secondary); color: #fff; }

/* === SECTION GAPS (SPACING) === */
section {
  margin-bottom: 60px;
  padding: 40px 0;
  display: flex;
  align-items: center;
}

/* === FLEXBOX PATTERNS === */
.features-grid,
.service-grid,
.usp-list,
.city-highlights,
.brand-logos,
.brand-list,
.faq-accordion,
.testimonial-slider,
.testimonial-list,
.location-list,
.card-container,
.card-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  margin-bottom: 10px;
}
.features-grid > div, .service-grid > div, .usp-list > div, .city-highlights > div {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 16px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 2px 12px -6px var(--brand-shadow);
  min-width: 210px;
  margin-bottom: 20px;
  transition: transform 0.16s, box-shadow 0.21s;
}
.features-grid > div:hover, .service-grid > div:hover, .usp-list > div:hover, .city-highlights > div:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 12px 32px -10px var(--brand-shadow);
}
.brand-logos {
  justify-content: flex-start;
  gap: 32px;
  align-items: center;
  margin: 18px 0 14px 0;
}
.brand-logos img {
  width: 60px;
  height: auto;
  filter: grayscale(0.1) brightness(1.1);
  opacity: 0.9;
  transition: filter 0.23s;
}
.brand-logos img:hover { filter: grayscale(0) brightness(1.22); }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; border-radius: 18px; background: #fff; box-shadow: 0 4px 16px -8px var(--brand-shadow); }
.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; background: #fff; border-radius: 16px; box-shadow: 0 4px 24px -6px rgba(26,54,100,0.08); margin-bottom: 24px; min-width: 250px; }
.testimonial-card p {
  color: #1A3664;
  font-size: 1.08rem;
  margin-bottom: 8px;
}
.testimonial-card span {
  font-size: 1rem;
  font-weight: 500;
  color: #375885;
  margin-top: 7px;
}
.testimonial-card .star-ratings {
  font-size: 1.1rem;
  color: #D8A017;
  margin-bottom: 8px;
  letter-spacing: 1px;
}
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ---- LISTS & MISC ---- */
.city-list, .location-list, .brand-list {
  margin: 0 0 12px 0;
  padding-left: 22px;
  font-size: 1rem;
  color: #1A3664;
}
.city-list li, .location-list li, .brand-list li {
  margin-bottom: 6px;
}
.map-snippet, .map-preview {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 12px 0 16px 0;
  color: #375885;
  font-weight: 500;
  font-size: 1rem;
}

/* ---- FAQ ACCORDION ---- */
.faq-accordion > div {
  background: #fff;
  border-radius: 14px;
  padding: 22px 18px;
  margin-bottom: 20px;
  box-shadow: 0 2px 14px -8px var(--brand-shadow);
}
.faq-accordion h4 {
  margin-bottom: 10px;
  color: var(--brand-primary);
}

/* ---- CONTACT DETAILS ---- */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-details > div {
  background: #fff;
  border-radius: 10px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 2px 7px -4px var(--brand-shadow);
}
.contact-details strong {
  font-weight: 600;
}
.address-map {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  margin: 18px 0 0 0;
}
.social-links {
  display: flex;
  gap: 18px;
  margin: 20px 0 0 0;
  align-items: center;
}
.social-links a img { width: 30px; height: 30px; transition: filter 0.2s; }
.social-links a:hover img { filter: brightness(1.2) drop-shadow(0 2px 6px #D8A01744); }

/* === CTA SECTION === */
.cta {
  background: linear-gradient(90deg, #1A3664 0%, #375885 100%);
  color: #fff;
  text-align: center;
  border-radius: 30px;
  box-shadow: 0 2px 24px -8px var(--brand-shadow);
  margin-bottom: 32px;
}
.cta h2 {
  color: #fff;
  margin: 0 0 24px 0;
}
.cta .cta-button {
  background: #fff;
  color: var(--brand-primary);
}
.cta .cta-button:hover {
  background: var(--brand-secondary);
  color: #fff;
}

/* === FOOTER === */
footer {
  background: #1A3664;
  color: #fff;
  margin-top: 60px;
  border-radius: 38px 38px 0 0;
  font-size: 1rem;
  padding: 44px 0 26px 0;
}
footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.95;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05rem;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: var(--brand-secondary);
}
.footer-brand {
  display: flex;
  align-items: flex-start;
}
.footer-brand img { width: 60px; height: auto; }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #f5f5f5;
  font-size: 1rem;
}
.footer-contact img {
  width: 18px; height: 18px; margin-right: 6px; vertical-align: middle;
}
.footer-social { display: flex; gap: 18px; margin-top: 9px; }
.footer-social a img { width: 26px; filter: grayscale(0.3) opacity(0.86); transition: filter 0.21s; }
.footer-social a:hover img { filter: drop-shadow(0 2px 7px #D8A01790) grayscale(0); }

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  line-height: 1;
  background: #fff;
  color: var(--brand-primary);
  border-radius: 8px;
  padding: 6px 14px;
  margin-left: 12px;
  z-index: 100;
  border: 2px solid #eee;
  transition: background 0.16s;
  position: relative;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover { background: #e6eaf3; }
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  background: #fff;
  color: var(--brand-primary);
  position: fixed;
  top: 0;
  left: 0;
  width: 87vw;
  max-width: 380px;
  height: 100vh;
  z-index: 9999;
  box-shadow: 6px 0 32px -8px var(--brand-shadow);
  padding: 26px 22px 18px 22px;
  transform: translateX(-110%);
  transition: transform 0.32s cubic-bezier(.68,-0.55,.27,1.55);
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  color: var(--brand-primary);
  background: none;
  border: none;
  align-self: flex-end;
  margin-bottom: 22px;
  transition: color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--brand-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: var(--brand-primary);
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.15rem;
  font-weight: 500;
  border-radius: 7px;
  padding: 9px 4px;
  transition: background 0.17s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e6eaf3;
  color: var(--brand-secondary);
}

/* OVERLAY for mobile menu */
body.mobile-menu-open::after {
  content: '';
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 9998;
  background: rgba(26,54,100,0.23);
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  color: #1A3664;
  box-shadow: 0 -5px 24px -10px var(--brand-shadow);
  padding: 22px 12px 20px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  z-index: 10020;
  border-radius: 20px 20px 0 0;
  animation: cookie-slide-in 0.45s cubic-bezier(.68,-0.55,.27,1.55);
  font-size: 1rem;
}
@keyframes cookie-slide-in { 0% { transform: translateY(80px); opacity: 0.3; } 100% { transform: translateY(0); opacity: 1; } }
.cookie-consent-buttons {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
.cookie-btn {
  padding: 10px 22px;
  border-radius: 20px;
  font-size: 1rem;
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 500;
  border: none;
  transition: background 0.18s, color 0.17s, box-shadow 0.18s;
  background: var(--brand-accent);
  color: var(--brand-primary);
  box-shadow: 0 2px 12px -4px var(--brand-shadow);
  margin-right: 4px;
}
.cookie-btn.accept {
  background: var(--brand-secondary);
  color: #fff;
}
.cookie-btn.reject {
  background: #f44336;
  color: #fff;
}
.cookie-btn.settings {
  background: #fff;
  color: var(--brand-primary);
  border: 1.5px solid #e6eaf3;
}
.cookie-btn:hover, .cookie-btn:focus {
  filter: brightness(1.06);
  box-shadow: 0 6px 24px -6px #b6bed8;
}

/* === COOKIE PREFERENCES MODAL === */
.cookie-modal {
  display: none;
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  z-index: 10030;
  min-width: 320px;
  max-width: 94vw;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 34px -8px var(--brand-shadow);
  padding: 32px 22px 28px 22px;
  animation: cookie-modal-fadein 0.34s cubic-bezier(.68,-0.55,.27,1.55);
}
@keyframes cookie-modal-fadein { 0% { opacity: 0; transform: translate(-50%, -38%); } 100% { opacity: 1; transform: translate(-50%, -50%); } }
.cookie-modal.active { display: flex; flex-direction: column; gap: 24px; }
.cookie-modal h2 { margin-bottom: 10px; font-size: 1.38rem; font-weight: 600; }
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 1rem;
}
.cookie-modal-toggle {
  width: 40px;
  height: 22px;
  border-radius: 12px;
  background: #e6eaf3;
  position: relative;
  transition: background 0.19s;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.cookie-modal-toggle[data-checked="true"] {
  background: var(--brand-secondary);
}
.cookie-modal-toggle .toggle-knob {
  width: 19px; height: 19px;
  border-radius: 50%; background: #fff;
  position: absolute;
  left: 2px; top: 1.3px;
  transition: left 0.17s;
  box-shadow: 0 1px 4px -2px #aaa;
}
.cookie-modal-toggle[data-checked="true"] .toggle-knob {
  left: 19px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 8px;
}
.cookie-modal .cookie-btn { min-width: 104px; }
.cookie-modal .cookie-btn.close { background: #eee; color: var(--brand-primary); border-radius: 7px; }
.cookie-modal .cookie-btn.save { background: var(--brand-secondary); color: #fff; border-radius: 7px; }
.cookie-modal .cookie-btn.close:hover { background: #dedede; }
.cookie-modal .cookie-btn.save:hover { background: #bd870e; }

/* modal dark backdrop */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,40,69,0.22);
  z-index: 10029;
}
.cookie-modal-backdrop.active { display: block; }

/* === TEXT SECTIONS === */
.text-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 18px -8px var(--brand-shadow);
  padding: 38px 28px;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.text-section h1, .text-section h2, .text-section h3 {
  margin-top: 10px;
}
.text-section ul {
  padding-left: 20px;
  margin-bottom: 14px;
}
.text-section li { margin-bottom: 6px; }

/* === NEXT STEPS TEXT === */
.next-steps-text {
  margin: 16px 0 24px 0;
  background: #F7F7F7;
  border-left: 5px solid var(--brand-secondary);
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 1rem;
  color: #1A3664;
}

/* === MEDIA QUERIES / RESPONSIVE === */
@media (max-width: 1024px) {
  .container {
    max-width: 100vw;
    padding: 0 16px;
  }
  .main-nav { gap: 16px; }
  header .container { padding: 14px 12px; }
  .features-grid > div, .service-grid > div, .usp-list > div, .city-highlights > div {
    min-width: 180px;
    padding: 18px 12px;
  }
  .section, .text-section {
    padding: 32px 12px;
  }
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    padding: 12px 5px;
  }
  .main-nav,
  .cta-button {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding: 38px 0 46px 0;
    border-radius: 0 0 22px 22px;
    text-align: left;
  }
  .section, .text-section {
    padding: 20px 4px;
    border-radius: 12px;
  }
  .features-grid, .service-grid, .usp-list, .city-highlights, .brand-logos, .city-list, .testimonial-slider, .testimonial-list, .location-list, .brand-list, .faq-accordion, .contact-details {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper { gap: 18px; }
  .card { margin-bottom: 20px; }
  .footer-nav { margin-bottom: 14px; }
}
@media (max-width: 500px) {
  .container, .text-section, .section {
    padding-left: 3px;
    padding-right: 3px;
  }
  h1,.h1 { font-size: 1.55rem; }
  h2,.h2 { font-size: 1.22rem; }
  h3,.h3 { font-size: 1.04rem; }
}

/* === TRANSITIONS & MICRO-INTERACTIONS === */
section, .features-grid > div, .service-grid > div, .usp-list > div, .city-highlights > div, .card, .testimonial-card, .cta, .footer-brand img {
  transition: box-shadow 0.15s, transform 0.15s, background 0.16s;
}
.cta-button, .cookie-btn {
  transition: background 0.25s, box-shadow 0.25s, color 0.2s;
}

/* Remove outline on mouse but keep on keyboard navigation */
:focus:not(:focus-visible) { outline: none; }
:focus-visible { outline: 2px dashed var(--brand-secondary); outline-offset: 2px;; }

/* === ACCESSIBILITY === */
[tabindex]:focus { outline: 2px solid var(--brand-secondary); }

/* === END === */