/* ===== CSS RESET & NORMALIZATION ===== */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #F3F6F9;
  color: #3C2C1B;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  color: #C3912C;
  text-decoration: none;
  transition: color 0.15s;
}
a:hover, a:focus {
  text-decoration: underline;
}
img {
  border: 0;
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
}

/* ===== CUSTOM PROPERTIES (RETRO PALETTE) ===== */
:root {
  --color-primary: #1E2233;
  --color-secondary: #F3F6F9;
  --color-accent: #C3912C;
  --color-retro-blue: #76A6B0;
  --color-retro-red: #B24837;
  --color-retro-cream: #FFF9E7;
  --color-retro-green: #477D54;
  --color-retro-brown: #968768;
  --color-retro-gray: #7A7874;
  --font-display: 'Montserrat', 'Futura PT', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Open Sans', 'Century Gothic', Arial, sans-serif;
  --box-shadow-1: 0 2px 12px 0 rgba(60, 44, 27, 0.10);
  --radius-main: 12px;
  --radius-large: 24px;
}

/* ===== BASE TYPOGRAPHY (VINTAGE RETRO) ===== */
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: #3C2C1B;
  background: var(--color-retro-cream);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.5px;
  color: var(--color-primary);
}
h1 { font-size: 2.5rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1rem; margin-bottom: 8px; }
.subheadline {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--color-retro-gray);
  margin-bottom: 32px;
  letter-spacing: 0.08em;
}
p, li {
  font-size: 1rem;
  color: #4B3926;
  margin-bottom: 12px;
}

strong {
  color: var(--color-primary);
  font-weight: 600;
}

.text-section > h2,
.text-section > h3 {
  color: var(--color-retro-brown);
  margin-top: 28px;
}

/* ----- CARD & CONTAINER BASICS ----- */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-retro-cream);
  border-radius: var(--radius-main);
  box-shadow: var(--box-shadow-1);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fffbe2;
  border-radius: var(--radius-main);
  box-shadow: var(--box-shadow-1);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 28px;
}
.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;
  background: #fffbe2;
  border-left: 8px solid var(--color-accent);
  border-radius: var(--radius-main);
  padding: 20px 24px 20px 28px;
  box-shadow: 0 2px 12px 0 rgba(60,44,27,0.07);
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #ffffffcc;
  border-radius: var(--radius-main);
  box-shadow: 0 1px 8px 0 rgba(150,135,104,0.11);
  padding: 18px 16px;
  min-width: 220px;
  max-width: 265px;
}

/* ----- NAVBAR & HEADER (RETRO FLAVOR) ----- */
header {
  width: 100%;
  background: var(--color-retro-blue);
  border-bottom: 3px solid var(--color-accent);
  padding: 0 0 0 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  height: 70px;
  position: sticky;
  top: 0;
  z-index: 20;
}
.logo-container {
  display: flex;
  align-items: center;
  height: 70px;
  padding-left: 22px;
}
.logo-container img {
  height: 46px;
  width: auto;
  filter: drop-shadow(1px 2px 0 #4761733a);
}
.main-nav {
  display: flex;
  flex-direction: row;
  flex-grow: 1;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  margin-left: 42px;
}
.main-nav a {
  color: var(--color-retro-cream);
  font-family: var(--font-display);
  font-weight: 600;
  padding: 4px 12px;
  font-size: 1.1rem;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  background: var(--color-retro-green);
  color: #fffbe2;
}
.cta-btn {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-retro-cream);
  border-radius: var(--radius-main);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.08rem;
  padding: 10px 30px 10px 30px;
  outline: none;
  border: none;
  box-shadow: 0 2px 10px 0 rgba(60,44,27,0.09);
  letter-spacing: 0.04em;
  margin-left: 24px;
  text-shadow: 1px 1px 0 #9a7d2a38;
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .15s;
}
.cta-btn:hover,
.cta-btn:focus {
  background: #a0671b;
  color: var(--color-retro-cream);
  box-shadow: 0 4px 20px 0 rgba(194,145,44,0.14);
}
.cta-btn.secondary {
  background: var(--color-retro-blue);
  color: #fffbe2;
  margin-left: 0;
  margin-top: 18px;
  font-weight: 700;
}
.cta-btn.secondary:hover {
  background: var(--color-retro-green);
}

.mobile-menu-toggle {
  display: none;
  margin-left: 28px;
  background: var(--color-retro-red);
  color: #fffbe2;
  font-size: 2.1rem;
  line-height: 1;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  transition: background .13s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-accent);
  color: #fffbe2;
}

/* ----- MOBILE MENU OVERLAY ----- */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: #1E2233ee;
  transform: translateX(-100vw);
  transition: transform 0.36s cubic-bezier(0.7,0,0.3,1);
  pointer-events: none;
  opacity: 0;
  display: flex;
  flex-direction: column;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 30px;
  right: 20px;
  background: var(--color-retro-red);
  color: #fffbe2;
  border: none;
  font-size: 2.5rem;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  transition: background .13s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--color-accent);
  color: #fffbe2;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  margin-top: 90px;
  gap: 14px;
  padding: 0 38px 0 38px;
}
.mobile-nav a {
  color: #fffbe2;
  font-family: var(--font-display);
  font-size: 1.34rem;
  font-weight: 700;
  padding: 16px 0;
  border-radius: 8px;
  transition: background 0.14s, color 0.14s;
  text-align: left;
  line-height: 1.3;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--color-retro-green);
  color: var(--color-retro-cream);
}

/* ===== HERO SECTION (RETRO PATTERNS & VIBES) ===== */
.hero {
  background: repeating-linear-gradient(135deg, #FFDDAA 0 16px, #FFF9E7 16px 32px);
  min-height: 340px;
  border-radius: var(--radius-large) var(--radius-large) 0 0;
  box-shadow: 0 8px 32px 0 rgba(30,34,51,0.10);
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-height: 340px;
  justify-content: center;
  gap: 0;
  padding-top: 40px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 8px;
}
.hero h1, .hero .subheadline {
  color: #423515;
}
.hero .cta-btn {
  margin-top: 16px;
  background: var(--color-retro-red);
  color: #fffbe2;
  box-shadow: 0 4px 18px 0 rgba(178,72,55,0.11);
}
.hero .cta-btn:hover { background: var(--color-retro-green); color: #fffbe2; }

/* ===== FEATURES & SERVICE HIGHLIGHTS ===== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0 0 0;
}
.feature-item img {
  width: 36px;
  height: 36px;
  margin-bottom: -10px;
  filter: drop-shadow(2px 2px 0 #96876822);
}
.feature-item h3 {
  font-size: 1.22rem;
  color: var(--color-retro-red);
}

/* ===== SERVICES LIST ===== */
.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-item {
  flex: 1 1 280px;
  background: #fffbe2;
  border-radius: var(--radius-main);
  box-shadow: 0 1px 8px 0 rgba(150,135,104,0.13);
  margin-bottom: 20px;
  padding: 22px 22px 22px 30px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-left: 8px solid var(--color-retro-blue);
}
.service-item h2 {
  font-size: 1.2rem;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
  font-family: var(--font-display);
}
.service-price {
  color: var(--color-retro-red);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.11rem;
}

/* ====== TESTIMONIALS ===== */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fffbe2;
  border-left: 8px solid var(--color-accent);
  color: #332418;
  min-width: 260px;
  max-width: 350px;
}
.testimonial-card p {
  color: #332418;
  font-family: var(--font-body);
  font-size: 1.04rem;
  margin-bottom: 8px;
}
.testimonial-meta {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--color-retro-gray);
  margin-top: 4px;
}
.testimonial-name {
  font-weight: bold;
  color: var(--color-primary);
}
.testimonial-location {
  color: var(--color-retro-gray);
}
.testimonial-rating {
  margin-left: 10px;
  color: var(--color-retro-green);
  font-weight: 700;
  letter-spacing: 0.06em;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--color-retro-blue);
  color: var(--color-retro-cream);
  border-radius: var(--radius-large);
  box-shadow: 0 2px 16px 0 rgba(30,34,51,0.12);
  margin-bottom: 60px;
}
.cta-banner h2 {
  color: #fffbe2;
}
.cta-banner .cta-btn {
  background: var(--color-accent);
  color: #fffbe2;
  box-shadow: none;
  margin-top: 18px;
  font-weight: 700;
}
.cta-banner .cta-btn:hover { background: var(--color-retro-red); color: #fffbe2; }

/* ====== TABLES ====== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0 28px 0;
  box-shadow: var(--box-shadow-1);
  border-radius: var(--radius-main);
  overflow: hidden;
}
.pricing-table thead {
  background: var(--color-retro-green);
  color: #fffbe2;
}
.pricing-table th, .pricing-table td {
  padding: 16px 14px;
  text-align: left;
  font-size: 1rem;
}
.pricing-table tbody tr {
  background: #fffbe2;
}
.pricing-table tbody tr:nth-child(even) {
  background: #fafafa;
}
.pricing-table th {
  font-family: var(--font-display);
  font-weight: 700;
}

/* ===== FAQ LISTS ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 14px;
}
.faq-list li {
  background: #fffbe2;
  border-radius: var(--radius-main);
  box-shadow: 0 0.5px 3px 0 rgba(194,145,44,0.07);
  padding: 18px 22px;
}
.faq-list strong {
  color: var(--color-primary);
  font-weight: 700;
}

/* ====== FOOTER ====== */
footer {
  background: var(--color-primary);
  color: var(--color-retro-cream);
  font-size: 1rem;
  padding: 40px 0 20px 0;
  border-top: 4px solid var(--color-retro-cream);
  margin-top: 60px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-bottom: 20px;
}
.footer-nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 6px;
  padding: 2px 10px;
  transition: background 0.15s, color 0.13s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  background: var(--color-retro-red);
  color: #fffbe2;
}
address {
  font-family: var(--font-body);
  font-size: 1.02rem;
  color: #fffbe2;
  text-align: center;
  margin-bottom: 16px;
}
.footer-meta {
  text-align: center;
  font-family: var(--font-body);
  color: #dfd8be;
  font-size: 0.98rem;
}

/* ===== TEXT SECTIONS & LISTS ===== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.text-section ul {
  padding-left: 21px;
  margin-bottom: 13px;
}
.text-section ul li,
ul.contact-info li {
  list-style: disc inside;
  margin-bottom: 8px;
}
ul.contact-info li {
  margin-bottom: 7px;
  font-size: 1.04rem;
  color: #39302b;
}

/* ===== CONTACT PAGE ===== */
ul.contact-info strong {
  color: var(--color-retro-brown);
}

/* ===== TERMS AND POLICIES ===== */
.text-section h2, .text-section h3 {
  margin-top: 24px;
  color: var(--color-primary);
  font-family: var(--font-display);
}
.text-section a {
  color: var(--color-retro-green);
  text-decoration: underline;
}
.text-section a:hover {
  color: var(--color-retro-red);
}

/* ====== BUTTONS, FORMS, & STATES ====== */
button, .cta-btn {
  transition: background 0.17s, color 0.15s, box-shadow 0.15s, transform 0.12s;
}
button:active, .cta-btn:active {
  transform: scale(0.97);
}

/* ===== HOVER MICRO-INTERACTIONS & ANIMATIONS ===== */
.card, .feature-item, .testimonial-card, .service-item, .faq-list li {
  transition: box-shadow .19s, transform .19s;
}
.card:hover, .feature-item:hover, .testimonial-card:hover, .service-item:hover, .faq-list li:hover {
  box-shadow: 0 4px 20px 0 rgba(149, 127, 32, 0.08);
  transform: translateY(-2px) scale(1.015);
}

/* ====== COOKIE CONSENT BANNER ====== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 9500;
  background: #fffbe2;
  color: #382c15;
  border-top: 3px solid var(--color-retro-red);
  box-shadow: 0 -2px 14px 0 rgba(30,34,51,0.10);
  padding: 22px 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  font-size: 1rem;
  font-family: var(--font-body);
  animation: cookieBannerIn 0.48s cubic-bezier(.7,0,.3,1);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .btn-group {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-banner button {
  background: var(--color-retro-blue);
  color: #fffbe2;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.03rem;
  border: none;
  border-radius: 8px;
  padding: 8px 22px;
  box-shadow: 0 1px 6px 0 rgba(118,166,176,0.11);
  cursor: pointer;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: var(--color-retro-red);
  color: #fffbe2;
}

/* ===== COOKIE MODAL ===== */
.cookie-modal {
  position: fixed;
  z-index: 9700;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(30,34,51,.63);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  animation: modalFadeIn 0.34s cubic-bezier(.6,0,.3,1);
}
@keyframes modalFadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal-content {
  background: #fffbe2;
  color: #38321b;
  border-radius: var(--radius-main);
  box-shadow: 0 8px 38px 0 rgba(30,34,51,0.17);
  min-width: 320px;
  max-width: 95vw;
  padding: 38px 32px 28px 32px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 18px;
  font-family: var(--font-body);
  position: relative;
  animation: modalPanelIn 0.36s cubic-bezier(.7,0,.2,1);
}
@keyframes modalPanelIn {
  from { transform: translateY(50px) scale(.98); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal-content h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.29rem;
  color: var(--color-retro-red);
}
.cookie-modal-close {
  position: absolute;
  top: 14px;
  right: 20px;
  background: var(--color-retro-red);
  color: #fffbe2;
  border: none;
  font-size: 2.1rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal-close:hover {
  background: var(--color-accent);
}
.cookie-toggle-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cookie-toggle-label {
  font-family: var(--font-body);
  font-size: 1.04rem;
  color: #463d2c;
  flex: 1 1 auto;
}
.toggle-switch {
  position: relative;
  width: 40px;
  height: 22px;
  display: inline-block;
}
.toggle-switch input[type="checkbox"] { display: none; }
.toggle-slider {
  position: absolute;
  cursor: pointer;
  border-radius: 22px;
  background: #C3912C44;
  top: 0; left: 0;
  right: 0; bottom: 0;
  transition: background 0.2s;
}
.toggle-switch input[type="checkbox"]:checked + .toggle-slider {
  background: var(--color-retro-green);
}
.toggle-slider:before {
  content: "";
  position: absolute;
  left: 3px; bottom: 3px;
  height: 16px; width: 16px;
  border-radius: 50%;
  background: var(--color-accent);
  transition: transform 0.2s, background 0.17s;
}
.toggle-switch input[type="checkbox"]:checked + .toggle-slider:before {
  transform: translateX(18px);
  background: var(--color-retro-blue);
}

/* ===== UTILITY CLASSES & RETRO TOUCHES ===== */
hr {
  border: 0;
  border-top: 2px dashed #dbb25a;
  margin: 42px 0;
}
::-webkit-scrollbar {
  width: 11px;
  background: #f1eac7;
}
::-webkit-scrollbar-thumb {
  background: #e2c37d;
  border-radius: 6px;
}

/* ===== MEDIA QUERIES (RESPONSIVE FLEXBOX DESIGN) ===== */
@media (max-width: 1200px) {
  .container {
    max-width: 93vw;
    padding: 0 12px;
  }
}
@media (max-width: 991px) {
  .main-nav {
    gap: 11px;
    margin-left: 18px;
  }
  .feature-grid,
  .testimonial-grid,
  .services-list {
    gap: 18px;
  }
}
@media (max-width: 860px) {
  header {
    flex-wrap: wrap;
    height: auto;
    padding-bottom: 0;
    flex-direction: row;
    gap: 0;
  }
  .logo-container {
    padding-left: 13px;
    height: 62px;
  }
  .main-nav {
    display: none;
  }
  .cta-btn {
    margin-left: auto;
    margin-right: 18px;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 768px) {
  .hero {
    min-height: 220px;
    border-radius: 0 0 28px 28px;
    margin-bottom: 36px;
  }
  .section {
    margin-bottom: 38px;
    padding: 28px 10px;
  }
  .container {
    max-width: 99vw;
    padding: 0 7px;
  }
  .content-grid, .feature-grid, .testimonial-grid, .services-list, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .feature-item, .testimonial-card, .card, .service-item {
    min-width: 0;
    max-width: 100%;
  }
  .cta-banner {
    margin-bottom: 30px;
    border-radius: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .logo-container img {
    height: 38px;
  }
  footer {
    padding: 26px 0 16px 0;
  }
}
@media (max-width: 590px) {
  .footer-nav {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .cta-btn {
    padding: 10px 18px 10px 18px;
    font-size: 1rem;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    font-size: 0.95rem;
    padding: 14px 3vw;
  }
  .cookie-modal-content {
    min-width: 97vw;
    padding: 26px 7vw 18px 7vw;
  }
}

/* ===== PRINT RETRO-STYLE CLASSIC PATTERNS / NOSTALGIC VISUALS ===== */
.section {
  background: repeating-linear-gradient(135deg, #FFF9E7 0 30px, #f3e8c6 30px 60px);
}
.feature-item, .card, .service-item, .faq-list li, .testimonial-card {
  background: repeating-linear-gradient(135deg, #FFFBE2 0 10px, #FAE8A8 10px 20px);
}

/* ====== END OF STYLE.CSS ====== */
