/* ====================================
   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 { scroll-behavior: smooth; }
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.4;
  background: #F6F6F6;
  color: #293241;
}

a {
  color: #EE6C4D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #293241;
  text-decoration: underline;
}
ul, ol {
  list-style: none;
}
img, svg {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  outline: none;
  border: none;
  background: none;
}
/* ====================================
   VINTAGE RETRO BASE: COLORS & FONTS
   ==================================== */
:root {
  --color-primary: #293241;
  --color-secondary: #EE6C4D;
  --color-accent: #F6F6F6;
  --color-dark: #222c3a;
  --color-light: #FFF9F2;
  --color-vintage-blue: #7596B4;
  --color-vintage-yellow: #F2C94C;
  --color-vintage-cream: #F9EDD7;
  --color-vintage-brown: #8C6E5C;
  --color-vintage-olive: #AC925D;
}
/* Vintage Display Font (Montserrat for display, fallback for retro headings) */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Roboto:400,500,700&display=swap');
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: var(--color-accent);
  color: var(--color-primary);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  color: var(--color-primary);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-shadow: 1px 2px 0px var(--color-light), 0 2px 8px #beb28c3e;
  margin-bottom: 16px;
}
h1 { font-size: 2.8rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.21rem; font-weight: 700; }
h4, h5, h6 { font-size: 1.08rem; font-weight: 700; }
strong { color: var(--color-secondary); font-weight: 700; }
p, li, span, a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
small {
  font-size: 0.93rem;
  opacity: 0.83;
}

/* ====================================
   LAYOUT, SPACING, SECTIONS
   ==================================== */
.container {
  width: 100%;
  max-width: 1090px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-vintage-cream);
  border-radius: 18px;
  box-shadow: 0 2px 12px #8c6e5c18;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  margin-bottom: 24px;
  padding: 12px 0;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-light);
  margin-bottom: 20px;
  border-radius: 16px;
  box-shadow: 0 2px 12px #bdb28c33;
  padding: 24px 20px;
  position: relative;
  border: 2px solid var(--color-vintage-yellow);
  transition: box-shadow 0.22s;
}
.card:hover {
  box-shadow: 0 6px 32px #AC925D33, 0 1.5px 8px #8c6e5c14;
}

.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: var(--color-light);
  border-left: 7px solid var(--color-secondary);
  border-radius: 18px;
  box-shadow: 0 2px 16px #EE6C4D11;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.22s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px #7596B433, 0 5px 24px #29324108;
  transform: scale(1.019);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.section ul, .section ol {
  padding-left: 0px;
}
.section ul li, .section ol li {
  padding: 14px 0;
  line-height: 1.6;
  margin-bottom: 8px;
  position: relative;
}
.section ul li img, .section ol li img {
  margin-right: 9px;
  vertical-align: middle;
  width: 28px;
  height: auto;
  display: inline-block;
}

/* ====================================
   HERO / CALL TO ACTION STYLES
   ==================================== */
.hero {
  background: repeating-linear-gradient(135deg, #F2C94C22, #f9edd7a9 40px, #fff0c090 80px, #F6F6F6 120px) , var(--color-accent);
  min-height: 320px;
  display: flex;
  align-items: center;
  padding: 32px 0 42px 0;
  position: relative;
  border-bottom: 6px solid var(--color-secondary);
}
.hero .container {
  justify-content: center;
}
.hero h1 {
  font-size: 2.4rem;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.hero p {
  font-size: 1.12rem;
  margin-bottom: 24px;
}

.cta-main, .cta-btn, a.cta-btn {
  font-family: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
}
.cta-btn, a.cta-btn, button.cta-btn {
  display: inline-block;
  background: var(--color-secondary);
  color: #fff;
  border-radius: 28px;
  padding: 14px 36px;
  font-weight: bold;
  text-align: center;
  text-shadow: 0px 2px 9px #fff4e021;
  border: none;
  margin: 12px 0 0 0;
  box-shadow: 0 4px 16px #ee6c4d26;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s;
  outline: none;
  position: relative;
  z-index: 1;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--color-primary);
  color: var(--color-vintage-yellow);
  box-shadow: 0 6px 32px #EE6C4D88, 0 0px 1px #f2c94c13;
  transform: translateY(-1.5px) scale(1.037);
}

/* ====================================
   NAVBAR & HEADER
   ==================================== */
header {
  background: var(--color-primary);
  border-bottom: 4px solid var(--color-secondary);
  padding: 0 0 0 0;
  position: sticky;
  top: 0;
  z-index: 32;
}
.navbar {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: space-between;
  max-width: 1090px;
  margin: 0 auto;
  padding: 10px 20px 10px 20px;
}
.navbar img {
  height: 54px;
  width: auto;
  margin-right: 20px;
  filter: drop-shadow(0 2px 3px #F2C94C33);
}

.navbar nav {
  display: flex;
  align-items: center;
  gap: 20px;
}
.navbar nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-vintage-cream);
  font-size: 1.06rem;
  font-weight: 700;
  margin-right: 0px;
  padding: 4px 12px;
  border-radius: 12px;
  letter-spacing: 0.03em;
  transition: background 0.15s, color 0.15s;
  position: relative;
  z-index: 2;
}
.navbar nav a:hover, .navbar nav a:focus {
  color: var(--color-primary);
  background: var(--color-secondary);
  text-decoration: none;
}

.navbar .cta-btn {
  margin-left: 16px;
  background: var(--color-vintage-yellow);
  color: var(--color-primary);
  font-weight: bold;
  border: 2px solid var(--color-secondary);
  padding: 12px 26px;
}
.navbar .cta-btn:hover, .navbar .cta-btn:focus {
  background: var(--color-secondary);
  color: #fff;
  border-color: var(--color-vintage-yellow);
}

/* ====================================
   FOOTER
   ==================================== */
footer {
  background: var(--color-primary);
  color: var(--color-light);
  padding: 36px 0 8px 0;
  font-size: 1rem;
  margin-top: 64px;
  border-top: 6px solid var(--color-secondary);
  box-shadow: 0 -4px 38px #29324111;
}
.footer-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 22px;
  max-width: 1090px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.footer-nav img {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 2px 3px #F2C94C24);
}
.footer-nav nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
}
.footer-nav nav a {
  color: #fff9f2;
  font-weight: 600;
  font-size: 1rem;
  padding: 3px 11px;
  border-radius: 7px;
  transition: background 0.15s, color 0.14s;
  letter-spacing: 0.025em;
}
.footer-nav nav a:hover, .footer-nav nav a:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}

.contact-info {
  max-width: 1090px;
  margin: 0 auto 12px auto;
  padding-left: 20px;
  padding-right: 20px;
}
.contact-info a {
  color: var(--color-vintage-yellow);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.13s;
}
.contact-info a:hover, .contact-info a:focus {
  color: var(--color-secondary);
  text-decoration: underline;
}
.brand-note {
  text-align: center;
  opacity: 0.8;
  letter-spacing: 0.025em;
  font-size: 0.92rem;
  margin-top: 14px;
}

/* ====================================
   TESTIMONIALS
   ==================================== */
.testimonials .testimonial-card,
section .testimonial-card {
  background: var(--color-light);
  color: var(--color-primary);
  border-left: 7px solid var(--color-secondary);
  box-shadow: 0 2px 18px #29324113;
}
.testimonial-card p {
  font-size: 1.13rem;
  color: var(--color-dark);
  font-style: italic;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  color: var(--color-vintage-brown);
  font-weight: 700;
  margin-left: 6px;
}
.stars {
  color: var(--color-vintage-yellow);
  font-size: 1.17rem;
  margin-left: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-shadow: 1px 2px 3px #f2c94c32;
}

/* ====================================
   RETRO NOSTALGIC PATTERNS/EFFECTS
   ==================================== */
.section, .about-highlight, .card {
  background: repeating-linear-gradient(135deg, #faedcd18 0px, #faedcd14 28px, #fffbe0 64px);
}
.features ul li, .services-preview ul li, .faq ul li, section ul li, .feature-item {
  border-bottom: 1px dashed var(--color-vintage-olive);
}
.features ul li:last-child, .services-preview ul li:last-child, 
.faq ul li:last-child, section ul li:last-child, .feature-item:last-child {
  border-bottom: none;
}

/* ====================================
   MOBILE MENU (BURGER NAV)
   ==================================== */
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: #fff;
  padding: 9px 17px;
  border-radius: 16px;
  font-size: 2rem;
  cursor: pointer;
  border: 2px solid var(--color-vintage-yellow);
  position: absolute;
  right: 16px;
  top: 12px;
  z-index: 1002;
  box-shadow: 0 3px 16px #ee6c4d33;
  transition: background 0.20s, box-shadow 0.18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-primary);
  color: var(--color-vintage-yellow);
  box-shadow: 0 7px 28px #EE6C4D33;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: var(--color-primary);
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.44,0.12,0.34,0.93);
  z-index: 2202;
  box-shadow: 0 1.5px 14px #29324144;
  /* hidden by default */
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  margin-left: auto;
  margin-top: 23px;
  margin-right: 23px;
  font-size: 2.3rem;
  background: none;
  color: var(--color-vintage-yellow);
  padding: 6px 15px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: background 0.17s, color 0.13s;
  z-index: 2204;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-secondary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 10px 40px 0 44px;
  width: 100%;
  gap: 18px;
  margin-top: 8px;
}
.mobile-nav a {
  color: #fff9f2;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.29rem;
  padding: 13px 2px 13px 0;
  font-weight: 700;
  border-bottom: 1px dashed #f2c94c94;
  transition: color 0.15s, background 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-vintage-yellow);
  background: #EE6C4D20;
}

@media (max-width: 1023px) {
  .navbar nav {
    display: none;
  }
  .navbar .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* ====================================
   COOKIE CONSENT BANNER & MODAL
   ==================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: var(--color-vintage-yellow);
  color: var(--color-primary);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 24px 20px 18px;
  box-shadow: 0 -4px 20px #29324118;
  z-index: 3000;
  gap: 9px;
  animation: banner-slideup 0.6s cubic-bezier(0.5,0.24,0.32,1);
}
@keyframes banner-slideup {
  from {transform: translateY(120px); opacity: 0;}
  to {transform: none; opacity: 1;}
}
.cookie-banner p {
  margin-bottom: 0;
  font-size: 1rem;
}
.cookie-btns {
  display: flex;
  gap: 13px;
  margin-top: 10px;
}
.cookie-btn, .cookie-accept, .cookie-reject, .cookie-settings {
  background: var(--color-secondary);
  color: #fff9f2;
  border-radius: 18px;
  padding: 8px 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  margin-right: 0px;
  transition: background 0.17s, color 0.15s, box-shadow 0.18s;
  box-shadow: 0 2px 8px #ee6c4d1e;
}
.cookie-accept:hover, .cookie-accept:focus {
  background: var(--color-primary);
  color: var(--color-vintage-yellow);
}
.cookie-reject {
  background: var(--color-primary);
  color: var(--color-vintage-yellow);
  border: 2px solid var(--color-secondary);
}
.cookie-reject:hover, .cookie-reject:focus {
  background: var(--color-secondary);
  color: #fff9f2;
}
.cookie-settings {
  background: var(--color-vintage-cream);
  color: var(--color-primary);
  border: 2px dashed var(--color-secondary);
}
.cookie-settings:hover, .cookie-settings:focus {
  background: var(--color-secondary);
  color: #fff;
}

.cookie-modal {
  display: none;
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(1.02);
  z-index: 4000;
  background: var(--color-light);
  color: var(--color-primary);
  width: 94vw;
  max-width: 440px;
  padding: 38px 30px 32px 28px;
  border-radius: 19px;
  box-shadow: 0 6px 32px #29324133;
  animation: modal-popup 0.36s;
}
.cookie-modal.active { display: block; }
@keyframes modal-popup {
  from { opacity: 0; transform: translate(-50%,-40%) scale(0.94);}
  to { opacity: 1; transform: translate(-50%,-50%) scale(1.02); }
}
.cookie-modal h2 { font-size: 1.22rem; margin-bottom: 18px; }
.cookie-modal label {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  font-size: 1.05rem;
  cursor: pointer;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--color-secondary);
  margin-right: 10px;
  width: 18px; height: 18px;
}
.cookie-modal .cookie-modal-btns {
  display: flex;
  justify-content: flex-end;
  gap: 13px;
  margin-top: 18px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none;
  color: var(--color-secondary);
  font-size: 1.7rem;
  border: none;
  cursor: pointer;
  padding: 7px;
  border-radius: 8px;
  transition: background 0.16s, color 0.13s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  background: var(--color-secondary);
  color: #fff;
}

/* ====================================
   INTERACTIVE EFFECTS & UTILITIES
   ==================================== */
::-webkit-selection { background: var(--color-secondary); color: #fff9f2; }
::selection { background: var(--color-secondary); color: #fff9f2; }

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  border: 1.4px solid var(--color-vintage-blue);
  border-radius: 8px;
  padding: 9px 14px;
  background: #f9edd7;
  color: var(--color-dark);
  margin-bottom: 17px;
  transition: border 0.14s, box-shadow 0.16s;
  box-shadow: 0 1.5px 8px #bdb28c17;
  width: 100%;
}
input:focus, textarea:focus {
  border: 2.2px solid var(--color-secondary);
  box-shadow: 0 7px 24px #ee6c4d20;
}

/* Icons inside input fields and retro icon background */
.text-section img, .feature-item img {
  background: var(--color-vintage-yellow);
  border-radius: 9px;
  padding: 2px 5px;
  margin-right: 7px;
  border: 1.5px solid var(--color-vintage-brown);
  box-shadow: 0 0.5px 5px #f2c94c14;
}

/* ====================================
   RESPONSIVE DESIGN
   ==================================== */
@media (max-width: 991px) {
  .section, .container, .footer-nav, .contact-info {
    padding-left: 12px;
    padding-right: 12px;
    max-width: 96vw;
  }
  .footer-nav, .contact-info {
    gap: 18px;
  }
  h1 { font-size: 2.1rem;}
  h2 { font-size: 1.31rem; }
  .navbar img, .footer-nav img { height: 38px; }
}

@media (max-width: 768px) {
  .container, .section, .footer-nav, .contact-info {
    max-width: 100vw;
    padding-left: 7px;
    padding-right: 7px;
  }
  .section, .about-highlight {
    padding: 27px 4px 30px 8px;
    margin-bottom: 38px;
  }
  .card, .testimonial-card {
    padding: 14px 8px 17px 12px;
    border-radius: 10px;
  }
  .content-wrapper, .card-container, .content-grid {
    gap: 12px;
  }
  .content-grid, .card-container, .features {
    flex-direction: column;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }
  .brand-note { margin-top: 6px; }
}

@media (max-width: 500px) {
  .section, .about-highlight, main > section {
    padding-left: 0;
    padding-right: 0;
  }
  header, .footer-nav, footer {
    padding-left: 0;
    padding-right: 0;
  }
  .navbar img, .footer-nav img { height: 30px; }
  .cta-btn, .cookie-btn, .cookie-accept, .cookie-reject, .cookie-settings {
    font-size: 0.98rem;
    padding: 9px 16px;
  }
  .cookie-modal {
    padding: 17px 8px 20px 11px;
    min-width: 80vw;
    font-size: 1rem;
  }
}

/* ====================================
   PRINT
   ==================================== */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { color: #111; }
}
