/*---------------- 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, 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;
  box-sizing: border-box;
}
body {
  line-height: 1.55;
  background: #F9F5EC;
  color: #392916;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  outline: none;
  border: none;
  background: none;
  cursor: pointer;
}

/*---------------- VINTAGE RETRO PALETTE ----------------*/
:root {
  --vintage-green: #1A3A36;
  --vintage-offwhite: #F9F5EC;
  --vintage-teal: #E8F6F2;
  --vintage-accent: #FDBD3E;
  --vintage-brown: #6E5237;
  --vintage-red: #EA736D;
  --vintage-blue: #54718F;
  --vintage-subtle-shadow: rgba(34,29,10,0.08);
  --vintage-border: #E9DED6;
  --brand-primary: #1A3A36;
  --brand-secondary: #E8F6F2;
  --brand-accent: #FDBD3E;
}

/*---------------- TYPOGRAPHY (RETRO/VINTAGE) ----------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&family=Roboto:wght@400;500;700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #392916;
}
h1, .hero h1, h2, h3, h4 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 1.2px;
  color: var(--brand-primary);
}
h1, .hero h1 {
  font-size: 2.2rem;
  line-height: 1.16;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  line-height: 1.2;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 8px;
}
h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}
strong {
  font-weight: 700;
  color: var(--brand-primary);
}

/* Retro flavor headings */
h1, h2 {
  text-shadow: 1px 2px 0 #e3d3b3, 2px 4px 0 #e3d3b3;
}

p, .text-section, .footer-contact, td {
  font-size: 1rem;
}

.table td, .table th {
  padding: 12px 8px;
}

/*---------------- GENERAL LAYOUT CLASSES ----------------*/
.container {
  width: 100%;
  max-width: 1124px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--vintage-offwhite);
  border-radius: 26px;
  box-shadow: 0 8px 32px var(--vintage-subtle-shadow);
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 24px 10px;
    margin-bottom: 36px;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--vintage-teal);
  border: 2px solid var(--vintage-border);
  border-radius: 20px;
  box-shadow: 0 4px 18px var(--vintage-subtle-shadow);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.2s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(34,29,10,0.15);
  transform: translateY(-4px) scale(1.01);
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff9e9;
  border: 2px solid var(--vintage-border);
  border-radius: 18px;
  box-shadow: 0 6px 16px var(--vintage-subtle-shadow);
  margin-bottom: 24px;
  position: relative;
  color: #2C2521;
  font-style: italic;
  transition: box-shadow 0.18s, transform 0.1s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 32px rgba(54,48,35,0.12);
  transform: scale(1.025);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/*---------------- HEADER & NAVBAR ----------------*/
header {
  background: #fff6e1;
  border-bottom: 3px double var(--brand-accent);
  box-shadow: 0 10px 24px 0 rgba(16,9,0,0.08);
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
}
header .container {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
header img {
  max-height: 48px;
  width: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 1.06rem;
}
nav a {
  color: var(--vintage-green);
  padding: 6px 12px;
  border-radius: 10px;
  position: relative;
}
nav a:hover, nav a:focus {
  background: var(--brand-accent);
  color: var(--vintage-green);
  text-decoration: underline wavy var(--brand-primary) 2px;
  transition: all 0.14s;
}
/* CTA Button */
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  display: inline-block;
  background: var(--brand-accent);
  color: var(--vintage-green);
  padding: 14px 28px;
  font-size: 1.08rem;
  font-weight: bold;
  border-radius: 15px 15px 10px 15px;
  box-shadow: 0 3px 9px rgba(254,180,62, 0.12), 0 1px 0 #fff3c5 inset;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border: 2px solid var(--brand-accent);
  margin-left: 18px;
  transition: background 0.16s, box-shadow 0.18s, color 0.16s;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.cta-btn:hover,
.cta-btn:focus {
  background: var(--brand-primary);
  color: var(--brand-accent);
  border-color: var(--brand-primary);
  box-shadow: 0 6px 24px rgba(34,29,10,0.11);
  text-decoration: underline dashed var(--brand-accent) 2px;
}

/* Hamburger mobile menu button */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-primary);
  color: #fff;
  border-radius: 8px;
  padding: 10px 15px;
  font-size: 1.4rem;
  margin-left: 14px;
  position: relative;
  z-index: 130;
  box-shadow: 0 1px 4px rgba(34,29,10,0.11);
  border: 2px solid var(--brand-primary);
  transition: background 0.18s, color 0.16s;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}

@media (max-width: 1024px) {
  header .container {
    height: auto;
    flex-wrap: wrap;
    gap: 12px;
  }
}
@media (max-width: 900px) {
  nav {
    gap: 12px;
    font-size: 1rem;
  }
  .cta-btn {
    margin-left: 8px;
    padding: 12px 18px;
    font-size: 0.92rem;
  }
}
@media (max-width: 768px) {
  nav {
    display: none;
  }
  .cta-btn {
    margin-left: 0;
    margin-right: 10px;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/*---------------- MOBILE MENU ----------------*/
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff5e3;
  box-shadow: 0 10px 80px 0 rgba(34,29,10,0.16);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.82,-0.01,.39,1.05);
  padding: 0 0 0 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 28px 4px 0;
  font-size: 2rem;
  background: var(--brand-primary);
  color: var(--vintage-accent);
  border-radius: 50%;
  padding: 8px 18px;
  box-shadow: 0 1px 7px rgba(34,29,10,0.07);
  border: 3px solid var(--brand-accent);
  transition: background 0.17s, color 0.15s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100vw;
  align-items: flex-start;
  padding: 18px 40px 30px 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.32rem;
  font-weight: 700;
}
.mobile-nav a {
  display: block;
  width: 100%;
  padding: 14px 0 4px 0;
  border-bottom: 2px dotted var(--brand-accent);
  background: transparent;
  color: var(--brand-primary);
  transition: color 0.12s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--vintage-red);
  background: var(--brand-accent);
  border-radius: 14px;
  padding-left: 10px;
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
}

/*---------------- HERO SECTION ----------------*/
.hero {
  min-height: 340px;
  display: flex;
  background: 
    repeating-linear-gradient(135deg, #F9F5EC 0 32px, #E8F6F2 32px 64px),
    var(--brand-accent);
  border-radius: 0 0 70px 0;
  box-shadow: 0 24px 56px -20px var(--vintage-subtle-shadow);
  align-items: center;
  margin-bottom: 0;
  padding: 40px 0 60px 0;
  position: relative;
}
.hero .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
}
.hero .content-wrapper {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  background: rgba(236,226,201,.93);
  padding: 36px 32px 28px 32px;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(195, 164, 99, 0.08);
  position: relative;
  margin-top: 0;
}
.hero p {
  font-size: 1.16rem;
  color: #5e4320;
}

@media (max-width: 900px) {
  .hero {
    padding: 34px 0 44px 0;
  }
  .hero .content-wrapper {
    padding: 21px 16px;
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .hero {
    border-radius: 0 0 44px 0;
    min-height: unset;
  }
  .hero .container {
    flex-direction: column;
    gap: 8px;
  }
  .hero .content-wrapper {
    gap: 12px;
    padding: 16px 8px;
    margin-top: 0;
  }
}

/*---------------- FEATURES, SERVICES, CTA, PRICING, ETC ----------------*/
.features, .services-preview, .testimonials-preview, .cta {
  background: #f2ede5;
  border: 1.5px dashed var(--brand-primary);
  margin-bottom: 60px;
  border-radius: 30px;
  box-shadow: 0 6px 18px var(--vintage-subtle-shadow);
}
.features .content-wrapper, .services-preview .content-wrapper {
  gap: 22px;
}
.features ul, .services-preview ul, .text-section ul {
  margin-left: 16px;
  margin-bottom: 2px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 1.06rem;
}
.features li:before, .services-preview li:before, .service-list li:before, .text-section li:before {
  content: '✦';
  color: var(--brand-accent);
  font-size: 1em;
  margin-right: 8px;
  vertical-align: middle;
  font-family: 'Montserrat', cursive, sans-serif;
}
.services-preview strong {
  color: var(--brand-primary);
  font-weight: 700;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-detail-card {
  background: #fcfaf6;
  border: 2.2px solid var(--brand-accent);
  border-radius: 19px;
  box-shadow: 0 4px 18px var(--vintage-subtle-shadow);
  padding: 22px 22px 16px 22px;
  max-width: 335px;
  min-width: 250px;
  flex: 1 1 265px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.15s, transform 0.13s;
}
.service-detail-card:hover {
  box-shadow: 0 10px 35px rgba(80,54,11,0.10);
  transform: translateY(-4px) scale(1.025);
}

@media (max-width: 980px) {
  .service-list {
    gap: 16px;
  }
  .service-detail-card {
    min-width: 180px;
    padding: 13px 10px 11px 10px;
    font-size: 0.97rem;
  }
}
@media (max-width: 768px) {
  .service-list {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }
  .service-detail-card {
    max-width: 100%;
    min-width: unset;
    font-size: 0.97rem;
  }
}

.pricing-table {
  overflow-x: auto;
  margin-bottom: 28px;
}
.pricing-table table {
  width: 100%;
  border-collapse: separate;
  border-radius: 15px;
  overflow: hidden;
  background: #FEFAF2;
  box-shadow: 0 1px 9px var(--vintage-subtle-shadow);
  border: 1.5px solid var(--vintage-border);
  font-size: 1rem;
}
.pricing-table th, .pricing-table td {
  padding: 14px 18px;
  border-bottom: 1.5px solid var(--brand-accent);
}
.pricing-table th {
  background: var(--brand-accent);
  color: var(--brand-primary);
  font-family: 'Montserrat', 'Roboto',Arial,sans-serif;
  font-weight: 700;
  text-align: left;
  font-size: 1.12rem;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/*---------------- TESTIMONIALS & STARS ----------------*/
.star-rating {
  display: inline-block;
  font-size: 1.24rem;
  color: var(--brand-accent);
  letter-spacing: 1.8px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 800;
  background: #fdefc0;
  border-radius: 12px;
  padding: 6px 17px 6px 14px;
  margin-top: 12px;
  box-shadow: 0 1px 6px var(--vintage-subtle-shadow);
}

/* Testimonial card ensures dark text on light for contrast */
.testimonial-card p {
  color: #2C2521;
  font-size: 1.09rem;
  font-family: 'Roboto', Arial, sans-serif;
}

.testimonial-card strong {
  color: var(--vintage-brown);
  font-weight: bold;
}

/*---------------- TEXT SECTIONS & CONTACT DETAILS ----------------*/
.text-section {
  background: #fffefb;
  border-left: 6px solid var(--brand-accent);
  border-radius: 8px 16px 16px 8px;
  padding: 18px 16px 18px 22px;
  margin-bottom: 20px;
  box-shadow: 0 1px 9px var(--vintage-subtle-shadow);
  color: #392916;
}
.contact-details, .map-location, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 10px 0 18px 0;
  background: #F9F5EC;
  border-radius: 10px;
  padding: 13px 18px;
  font-size: 1rem;
  box-shadow: 0 1px 8px rgba(70,54,10,0.06);
}
.map-location strong {
  color: var(--brand-primary);
}

/*---------------- FOOTER ----------------*/
footer {
  background: #201e1b url('data:image/svg+xml,%3Csvg width="120" height="44" viewBox="0 0 120 44" xmlns="http://www.w3.org/2000/svg"%3E%3Crect x="0" y="20" width="120" height="24" fill="%23FDBD3E" fill-opacity="0.15"/%3E%3C/svg%3E') repeat-x 0 0;
  color: #FFE5B4;
  padding: 32px 0 16px 0;
  border-top: 4px double var(--brand-accent);
  position: relative;
  margin-top: 48px;
}
footer .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
footer img {
  max-height: 44px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 0.98rem;
  margin-top: 4px;
}
footer nav a {
  color: var(--brand-accent);
  font-weight: bold;
  transition: color 0.18s;
}
footer nav a:hover {
  color: #fff;
  text-decoration: underline dotted var(--brand-accent) 1.5px;
}
.footer-contact {
  color: #FFE5B4;
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
  font-size: 0.99rem;
  gap: 7px;
}
.footer-contact strong {
  color: #fffad9;
  font-weight: 700;
}
@media (max-width: 768px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
  }
}

/*---------------- FAQ / TABLE / MODALS / OTHERS ----------------*/
.text-section a {
  color: var(--brand-primary);
  font-weight: bold;
  border-bottom: 1.5px dashed var(--brand-primary);
  transition: color 0.13s;
}
.text-section a:hover {
  color: var(--vintage-red);
}

ol {
  list-style: decimal inside;
  margin-left: 18px;
  margin-bottom: 10px;
}
li {
  margin-bottom: 8px;
}

/*---------------- BUTTONS ----------------*/
button,
input[type="submit"],
input[type="button"] {
  font: inherit;
}
/* General non-CTA retro button style */
.btn, .cookie-btn, .cookie-modal-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--vintage-green);
  color: #fff9de;
  border-radius: 10px;
  border: 2px solid var(--brand-accent);
  padding: 11px 24px;
  font-weight: bold;
  font-size: 1.01rem;
  letter-spacing: 0.9px;
  margin-right: 10px;
  box-shadow: 0 2px 7px rgba(34,29,10,0.09);
  transition: background 0.19s, color 0.16s, box-shadow 0.14s;
}
.btn:hover, .cookie-btn:hover, .cookie-modal-btn:hover {
  background: var(--brand-accent);
  color: var(--brand-primary);
}

/* Checkbox toggle for cookies modal */
.cookie-toggle-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: 7px;
}
.cookie-toggle-switch {
  width: 34px;
  height: 22px;
  border-radius: 20px;
  background: #d6c098;
  border: 2px solid #ccb089;
  position: relative;
  transition: background 0.23s;
}
.cookie-toggle-switch input {
  display: none;
}
.cookie-toggle-switch span {
  display: block;
  width: 18px;
  height: 18px;
  background: #fffef7;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 1.5px;
  transition: left 0.23s;
}
.cookie-toggle-switch input:checked + span {
  left: 14px;
  background: var(--brand-accent);
}

/*---------------- COOKIE CONSENT BANNER & MODAL ----------------*/
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 4010;
  width: 100vw;
  max-width: 100vw;
  background: #fff9e4;
  border-top: 3.5px double var(--brand-accent);
  box-shadow: 0 -4px 42px rgba(141, 107, 44, 0.18);
  padding: 28px 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: #352417;
  animation: cookieBannerIn 0.34s ease-out;
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%) scale(0.98); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-consent-banner p {
  flex: 4 1 320px;
  padding-right: 20px;
  font-size: 1rem;
  color: #352417;
}
.cookie-consent-actions {
  flex: 1 1 180px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-btn {
  background: var(--vintage-brown);
  color: #fff4cf;
  border: 2px solid var(--brand-accent);
  border-radius: 12px;
  padding: 10px 16px;
  font-size: 1rem;
}
.cookie-btn.cookie-accept {
  background: var(--brand-accent);
  color: var(--brand-primary);
  border-color: var(--vintage-brown);
}
.cookie-btn.cookie-accept:hover {
  background: var(--brand-primary);
  color: var(--brand-accent);
}
.cookie-btn.cookie-reject {
  background: #fff;
  color: var(--vintage-red);
  border-color: var(--vintage-red);
}
.cookie-btn.cookie-reject:hover {
  background: var(--vintage-red);
  color: #fff;
}
.cookie-btn.cookie-settings {
  background: #fdecbe;
  color: var(--brand-primary);
  border-color: var(--brand-accent);
}
.cookie-btn.cookie-settings:hover {
  background: var(--brand-accent);
  color: var(--brand-primary);
}

@media (max-width: 650px) {
  .cookie-consent-banner {
    flex-direction: column;
    gap: 18px;
    padding: 18px 7px 24px 7px;
    font-size: 0.96rem;
  }
  .cookie-consent-actions {
    flex: none;
    gap: 10px;
  }
}

/* --- Modal for cookie settings --- */
.cookie-consent-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 4100;
  background: rgba(30,27,11,0.46);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.21s;
  animation: fadeInModal 0.4s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff9e4;
  border-radius: 20px;
  padding: 38px 34px 24px 34px;
  box-shadow: 0 10px 60px #d0ae6b44, 0 2px 12px #5c362722;
  min-width: 320px;
  max-width: 98vw;
  color: #352417;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal-content h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.36rem;
  margin-bottom: 12px;
  color: var(--brand-primary);
}
.cookie-modal-section {
  margin-bottom: 18px;
}
.cookie-modal-btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal-btn {
  background: var(--brand-primary);
  color: var(--brand-accent);
  border: 2px solid var(--brand-accent);
  border-radius: 12px;
  padding: 8px 20px;
  font-size: 1rem;
}
.cookie-modal-btn:hover, .cookie-modal-btn:focus {
  background: var(--brand-accent);
  color: var(--brand-primary);
}
@media (max-width: 510px) {
  .cookie-modal-content {
    padding: 15px 8px 8px 8px;
    min-width: unset;
    max-width: 98vw;
  }
}

/*---------------- SPACING & GENERAL FLEX UTILITY ----------------*/
.flex-row {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.flex-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.mt-24 { margin-top: 24px; }
.mb-32 { margin-bottom: 32px; }
.mt-8 { margin-top: 8px; }

/*---------------- FORM FIELDS ----------------*/
input, textarea, select {
  background: #fffef7;
  border: 2px solid var(--brand-accent);
  border-radius: 8px;
  padding: 11px 11px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  box-shadow: 0 1px 6px #e5c9822b;
  color: var(--brand-primary);
}
input:focus, textarea:focus, select:focus {
  outline: 2px solid var(--brand-primary);
  border-color: var(--brand-primary);
}

/*---------------- MISC DECOR ----------------*/
::-webkit-scrollbar {
  width: 10px;
  background: #fdedc5;
}
::-webkit-scrollbar-thumb {
  background: #f9d487;
  border-radius: 15px;
}
::-webkit-scrollbar-thumb:hover {
  background: #d4b174;
}

/*---------------- RETRO PATTERN & NOSTALGIA ELEMENTS ----------------*/
.hero:before {
  content: '';
  position: absolute;
  top: -26px; left: -36px;
  width: 120px; height: 72px;
  background: url('data:image/svg+xml,%3Csvg width="120" height="72" viewBox="0 0 120 72" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cellipse cx="60" cy="36" rx="58" ry="32" fill="%23FDBD3E" fill-opacity="0.34"/%3E%3Cellipse cx="90" cy="15" rx="10" ry="6" fill="%23E8F6F2" fill-opacity="0.81"/%3E%3C/svg%3E') no-repeat center/contain;
  z-index: 0;
  opacity: 0.7;
  pointer-events: none;
}
.hero:after {
  content: '';
  position: absolute;
  bottom: -17px; right: 8vw;
  width: 70px; height: 30px;
  background: url('data:image/svg+xml,%3Csvg width="70" height="30" viewBox="0 0 70 30" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cellipse cx="32" cy="16" rx="23" ry="9" fill="%23FDBD3E" fill-opacity="0.28"/%3E%3Cellipse cx="60" cy="6" rx="7" ry="3" fill="%23E8F6F2" fill-opacity="0.77"/%3E%3C/svg%3E') no-repeat center/contain;
  z-index: 0;
  opacity: .68;
  pointer-events: none;
}
@media (max-width: 800px) {
  .hero:before, .hero:after {
    display: none;
  }
}

/*----------------- ANIMATIONS ------------------------*/
.cta-btn, .btn, .card, .service-detail-card, .testimonial-card {
  transition: box-shadow 0.17s, transform 0.15s;
}
.cta-btn:active, .btn:active {
  filter: brightness(0.94);
  transform: scale(.97);
}
input, textarea, .card, .testimonial-card, .service-detail-card {
  transition: box-shadow 0.17s, border-color 0.12s, background 0.15s, color .13s;
}

/*----------------- RESPONSIVENESS --------------------*/
@media (max-width: 680px) {
  h1, .hero h1 { font-size: 1.45rem; }
  h2 { font-size: 1.09rem; }
  .hero .container,
  .features .content-wrapper,
  .services-preview .content-wrapper,
  .cta .content-wrapper,
  .content-wrapper,
  .section {
    padding: 14px 4px;
    gap: 14px;
  }
  .service-detail-card { padding: 9px 6px; }
}

@media (max-width: 460px) {
  .cta-btn, .btn {
    font-size: .98rem;
    padding: 10px 8px;
  }
  .testimonial-card,
  .service-detail-card {
    padding: 10px 8px 10px 12px;
  }
  .pricing-table th, .pricing-table td {
    padding: 8px 5px;
  }
  .cookie-btn, .cookie-modal-btn {
    font-size: 0.95rem;
    padding: 8px 7px;
  }
}

/*---------------- END OF STYLE ----------------*/