/* 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,
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 {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #E9ECEF;
  color: #223040;
  font-size: 16px;
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

:root {
  --color-primary: #223040;
  --color-primary-dark: #17202A;
  --color-secondary: #E9ECEF;
  --color-bg-light: #FFFFFF;
  --color-accent: #F15623;
  --color-accent-dark: #c13e15;
  --color-highlight: #14D9EA;
  --color-energize: #FFD600;
  --font-display: 'Oswald', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --radius-large: 18px;
  --radius: 10px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display), Arial, sans-serif;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--color-primary-dark);
}

h1 {
  font-size: 2.5rem;
  line-height: 1.18;
  margin-bottom: 24px;
  text-transform: uppercase;
}

h2 {
  font-size: 2rem;
  margin-bottom: 22px;
  text-transform: uppercase;
}

h3 {
  font-size: 1.32rem;
  margin-bottom: 10px;
  color: var(--color-accent);
  text-transform: uppercase;
}

h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

p, ul, ol, li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-primary);
}

ul, ol {
  padding-left: 20px;
  margin-bottom: 18px;
}

strong {
  color: var(--color-accent);
  font-weight: 700;
}

a {
  color: var(--color-accent);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.23s cubic-bezier(.67,1.34,.73,.29);
}
a:hover,
a:focus {
  color: var(--color-highlight);
  outline: none;
}

/* LAYOUT CONTAINERS */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-wrapper {
  width: 100%;
  max-width: 950px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

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

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.card {
  background: var(--color-bg-light);
  border-radius: var(--radius);
  box-shadow: 0 2px 18px 0 rgba(34, 48, 64, 0.10);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.24s cubic-bezier(.67,1.34,.73,.29), transform 0.18s;
  padding: 24px;
  min-width: 240px;
  flex: 1 1 250px;
}
.card:hover {
  box-shadow: 0 6px 28px 0 rgba(34,48,64, 0.13);
  transform: translateY(-4px) scale(1.028);
  z-index: 2;
}

.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: var(--color-bg-light);
  border: 2px solid var(--color-highlight);
  border-radius: var(--radius-large);
  box-shadow: 0 1px 12px 0 rgba(34, 48, 64, 0.13);
  margin-bottom: 24px;
  max-width: 670px;
  transition: box-shadow .18s;
}
.testimonial-card p {
  color: var(--color-primary);
  font-size: 1.10rem;
  font-weight: 500;
}
.testimonial-author {
  font-size: 1rem;
  font-weight: bold;
  color: var(--color-accent);
  margin-top: 6px;
}

table {
  width: 100%;
  background: var(--color-bg-light);
  border-radius: var(--radius);
  border-collapse: collapse;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px 0 rgba(34, 48, 64, 0.08);
}
thead {
  background: var(--color-accent);
  color: #fff;
}
th, td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid #e5e5e5;
}
th {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 1px;
}
tr:last-child td {
  border-bottom: none;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pricing-notes, .service-categories {
  background: var(--color-secondary);
  border-radius: var(--radius);
  padding: 16px 22px;
}

/* FLEX LAYOUT FOR FEATURES */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--color-bg-light);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px 0 rgba(34, 48, 64, 0.08);
  padding: 20px 22px 18px 22px;
  min-width: 220px;
  max-width: 310px;
  flex: 1 1 220px;
  border-left: 4px solid var(--color-accent);
  transition: background 0.2s, box-shadow 0.16s;
}
.feature-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 4px;
}
.feature-item:hover {
  background: var(--color-secondary);
  box-shadow: 0 4px 22px 0 rgba(241,86,35,0.09);
}
.feature-item h3 {
  margin-top: 0;
  margin-bottom: 9px;
  color: var(--color-accent);
}

/* USP Highlights & Promise Boxes */
.customer-promise, .usp-highlights {
  background: var(--color-highlight);
  color: var(--color-primary-dark);
  border-radius: var(--radius-large);
  padding: 26px 26px 22px 26px;
  box-shadow: 0 3px 18px 0 rgba(34, 48, 64, 0.13);
  margin-top: 14px;
}
.customer-promise h3 {
  color: var(--color-primary-dark);
  margin-bottom: 7px;
}
.usp-highlights ul {
  list-style-type: disc;
  color: var(--color-primary-dark);
}

/* HERO & CTA BANNER */
.hero-section, .thank-you-hero {
  width: 100%;
  background: linear-gradient(140deg, var(--color-accent) 0%, var(--color-highlight) 100%);
  color: var(--color-bg-light);
  padding: 60px 0 64px 0;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.hero-section .content-wrapper, .thank-you-hero .content-wrapper {
  gap: 24px;
  align-items: flex-start;
}
.hero-section h1, .thank-you-hero h1 {
  color: #fff;
  margin-bottom: 18px;
}
.hero-section p, .thank-you-hero p {
  color: #fff;
  max-width: 680px;
}

.cta-banner, .cta-section {
  background: var(--color-accent);
  color: #fff;
  border-radius: var(--radius-large);
  box-shadow: 0 3px 20px 0 rgba(21, 217, 234, 0.09);
  padding: 34px 20px 36px 20px;
  margin-bottom: 48px;
  text-align: center;
}
.cta-banner .content-wrapper, .cta-section .content-wrapper {
  gap: 18px;
  align-items: center;
  justify-content: center;
}
.cta-banner p, .cta-section p {
  color: #fff;
  font-size: 1.15rem;
}

/* BUTTONS & CTA */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  border-radius: 40px;
  font-family: var(--font-display);
  font-size: 1.18rem;
  letter-spacing: 1px;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  border: none;
  box-shadow: 0 5px 25px 0 rgba(241,86,35,0.13);
  cursor: pointer;
  transition: background 0.2s cubic-bezier(.67,1.34,.73,.29), transform 0.13s;
  margin-top: 4px;
  margin-bottom: 4px;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-primary-dark);
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0px 10px 28px 0px rgba(34, 48, 64, 0.14);
}
.main-nav .cta-btn {
  margin-left: 30px;
}

/* HEADER & NAVIGATION */
header {
  width: 100%;
  padding: 0;
  background: var(--color-bg-light);
  border-bottom: 3px solid var(--color-accent);
  box-shadow: 0 2px 10px 0 rgba(34, 48, 64, 0.05);
  z-index: 10;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  padding-top: 8px;
  padding-bottom: 8px;
}
.logo img {
  height: 44px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.main-nav a {
  font-size: 1.08rem;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  padding: 6px 11px;
  border-radius: 9px;
  transition: color 0.22s, background 0.14s;
}
.main-nav a:not(.cta-btn):hover, .main-nav a:not(.cta-btn):focus {
  background: var(--color-accent);
  color: #fff;
}

.mobile-menu-toggle {
  display: none;
  background: none;
  color: var(--color-accent);
  font-size: 2.4rem;
  padding: 6px 16px;
  border: none;
  cursor: pointer;
  line-height: 1;
  border-radius: 10px;
  transition: background 0.16s;
  z-index: 102;
}
.mobile-menu-toggle:focus { background: var(--color-highlight); color: #fff; outline: none; }

/* MOBILE NAVIGATION */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 320px;
  height: 100vh;
  background: var(--color-primary-dark);
  box-shadow: -6px 0 26px 0 rgba(34,48,64,.14);
  transform: translateX(110%);
  opacity: 0;
  transition: transform 0.33s cubic-bezier(.25,.7,.34,1.14), opacity 0.18s;
  z-index: 400;
  display: flex;
  flex-direction: column;
  padding: 0 0 24px 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.2rem;
  padding: 15px 22px 10px 16px;
  border: none;
  align-self: flex-end;
  cursor: pointer;
  transition: color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--color-highlight);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 18px 36px;
}
.mobile-nav a {
  font-size: 1.18rem;
  color: #fff;
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 600;
  padding: 12px 0 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  transition: color 0.2s, background 0.08s;
  border-radius: 8px;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-accent);
  background: #fff1ec;
}

/* Footer styles */
footer {
  background: var(--color-primary-dark);
  color: #fff;
  width: 100%;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-top: 40px;
  padding-bottom: 12px;
  justify-content: space-between;
  align-items: flex-start;
}
footer p {
  color: white;
}
.footer-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.footer-left img {
  height: 36px;
  width: auto;
}
.contact-info p {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-info img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 6px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.footer-nav a {
  color: #fff;
  font-size: 1rem;
  transition: color 0.14s, text-decoration 0.1s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--color-accent);
  text-decoration: underline;
}
.footer-bottom {
  width: 100%;
  background: #19222F;
  text-align: center;
  padding: 12px 0 14px 0;
  font-size: .97rem;
  letter-spacing: .5px;
}

/* MISCELLANEOUS / UTILITY CLASSES */
.address-block, .contact-details, .opening-hours {
  background: var(--color-secondary);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-bottom: 18px;
  box-shadow: 0 1px 16px 0 rgba(34, 48, 64, 0.05);
}
.address-block h2, .contact-details h2, .opening-hours h2 {
  margin-bottom: 10px;
}

.ratings-overview {
  background: var(--color-highlight);
  color: var(--color-primary-dark);
  border-radius: 11px;
  padding: 12px 22px;
  margin-bottom: 16px;
  font-size: 1.18rem;
  font-family: var(--font-display);
  font-weight: bold;
}

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 22px;
}

.thank-you-hero {
  min-height: 60vh;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffbe7;
  color: var(--color-primary-dark);
  box-shadow: 0 -2px 18px 0 rgba(34, 48, 64, .19);
  padding: 22px 14px 28px 14px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9999;
  transition: transform 0.32s cubic-bezier(.47,.2,.17,.83), opacity 0.24s;
  opacity: 1;
  transform: translateY(0%);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner p {
  flex: 1 1 350px;
  color: var(--color-primary-dark);
  font-size: 1.03rem;
}
.cookie-btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 22px;
  border-radius: 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  background: var(--color-highlight);
  color: var(--color-primary-dark);
  transition: background 0.14s, color 0.13s, box-shadow 0.16s;
  box-shadow: 0 2px 16px 0 rgba(20, 217, 234, 0.09);
}
.cookie-btn:focus, .cookie-btn:hover { background: var(--color-accent); color: #fff; }
.cookie-btn.accept {
  background: var(--color-accent);
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus { background: var(--color-highlight); color: var(--color-primary-dark); }
.cookie-btn.reject {
  background: #dee2e6;
  color: var(--color-primary-dark);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus { background: var(--color-accent-dark); color: #fff; }

/* COOKIE MODAL OVERLAY POPUP */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(17, 32, 42, 0.59);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.21s;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px 0 rgba(34, 48, 64, 0.29);
  max-width: 420px;
  width: 95vw;
  padding: 32px 28px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-header {
  font-family: var(--font-display);
  color: var(--color-accent);
  font-size: 1.38rem;
  margin-bottom: 12px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 14px;
}
.cookie-modal .cookie-category label {
  font-weight: 500;
  color: var(--color-primary);
  font-size: 1.06rem;
}
.cookie-modal .cookie-toggle {
  width: 36px; height: 20px; position: relative; display: inline-block;
}
.cookie-modal .cookie-toggle input { display: none; }
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #b3bac5;
  border-radius: 12px;
  transition: background .13s;
}
.cookie-modal .slider:before {
  content: '';
  position: absolute;
  height: 16px; width: 16px;
  left: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 50%;
  transition: transform .13s;
}
.cookie-modal .cookie-toggle input:checked + .slider {
  background: var(--color-accent);
}
.cookie-modal .cookie-toggle input:checked + .slider:before {
  transform: translateX(16px);
}

.cookie-modal .cookie-modal-footer {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  min-width: 110px;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 12px;
  font-size: 1.7rem;
  background: none;
  border: none;
  color: var(--color-accent);
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--color-highlight);
}

/* RESPONSIVE DESIGN ---------------------------------- */
@media (max-width: 1200px) {
  .container {
    max-width: 98vw;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 1024px) {
  .feature-item {
    min-width: 180px;
    max-width: 94vw;
    padding: 13px 16px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 99vw;
    padding-left: 4vw;
    padding-right: 4vw;
  }
  .content-wrapper { max-width: 99vw; }
  .feature-grid, .card-container, .content-grid { gap: 14px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.35rem; }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .footer-nav { flex-direction: column; gap: 9px; }
  .feature-grid { flex-direction: column; gap: 16px; }
  .content-wrapper { gap: 12px; }
  .section { margin-bottom: 38px; padding: 26px 7px; }
  .card-container, .content-grid { gap: 11px; }
  .testimonial-card { gap: 10px; padding: 13px; }
  .address-block, .contact-details, .opening-hours { padding: 11px 8px; }
  .cookie-banner { flex-direction: column; align-items: flex-start; padding: 18px 7px 22px 7px; gap: 9px; }
  .cookie-modal { padding: 18px 6vw 18px 13vw; }
  .cookie-modal .cookie-modal-header { font-size: 1.09rem; }
}
@media (max-width: 540px) {
  .hero-section, .thank-you-hero { padding: 32px 0; }
  .cta-banner, .cta-section { padding: 19px 2vw 23px 2vw; }
  .team-grid, .feature-grid, .content-grid { gap: 6px; }
}
@media (max-width: 450px) {
  .footer-left img { height: 23px; }
}
/* END CSS */
