/* === 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;
  -webkit-text-size-adjust: 100%;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: #F6F2E3;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #193157;
}
* {
  box-sizing: border-box;
}
img, picture, video, canvas, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #193157;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #DFB667;
  outline: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cinzel', Georgia, serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  color: #193157;
}
h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  line-height: 1.15;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  line-height: 1.18;
}
.section h2 {
  margin-top: 0;
}
p, li {
  font-size: 1.08rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #252F3A;
}
.subheadline {
  font-weight: 500;
  font-size: 1.1rem;
  color: #193157;
}
strong {
  font-weight: bold;
}

/* === BRAND COLORS AS CSS VARIABLES === */
:root {
  --primary: #193157;
  --secondary: #DFB667;
  --accent: #F6F2E3;
  --body: #FFFFFF;
  --shadow: rgba(25,49,87,0.10);
}

/* === LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  max-width: 800px;
  margin: 0 auto;
}

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

/* === HERO SECTION === */
.hero {
  background: var(--primary);
  color: var(--accent);
  min-height: 320px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  padding: 48px 0 40px 0;
}
.hero h1,
.hero h2,
.hero .subheadline {
  color: var(--accent);
}
.hero .btn-primary {
  background: var(--secondary);
  color: var(--primary);
  margin-top: 28px;
}

/* === NAVIGATION (DESKTOP + MOBILE) === */
header {
  width: 100%;
  background: var(--body);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px var(--shadow);
}
.main-nav {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
}
.logo {
  margin-right: 32px;
  display: flex;
  align-items: center;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.07rem;
  letter-spacing: 0.01em;
  padding: 8px 0px;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, border-bottom 0.2s;
}
.nav-links a:hover, .nav-links a:focus {
  color: var(--secondary);
  border-bottom: 3px solid var(--secondary);
}
.btn-primary {
  background: var(--secondary);
  color: var(--primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  border: none;
  outline: none;
  border-radius: 24px;
  font-size: 1.1rem;
  padding: 10px 28px;
  margin-left: 32px;
  letter-spacing: 0.03em;
  cursor: pointer;
  box-shadow: 0 2px 8px var(--shadow);
  transition: background 0.18s, color 0.18s, box-shadow 0.20s;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--primary);
  color: var(--secondary);
  box-shadow: 0 4px 24px var(--shadow);
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2.2rem;
  display: none;
  margin-left: 20px;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 130;
}
.mobile-menu-toggle:focus {
  color: var(--secondary);
  outline: 2px solid var(--secondary);
}

/* === MOBILE NAVIGATION === */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary);
  color: var(--accent);
  z-index: 150;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(.85,.03,.23,1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 32px 0 28px;
  overflow-y: auto;
  box-shadow: 6px 0 36px var(--shadow);
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--secondary);
  font-size: 2.2rem;
  align-self: flex-end;
  margin: 24px 0 12px 0;
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--accent);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 16px;
}
.mobile-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1.27rem;
  letter-spacing: 0.01em;
  padding: 10px 0;
  transition: background 0.20s, color 0.20s;
  border-radius: 6px;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* === MAKE NAV RESPONSIVE === */
@media (max-width: 1024px) {
  .main-nav {
    padding: 16px 12px;
    gap: 10px;
  }
  .btn-primary {
    margin-left: 12px;
  }
  .logo {
    margin-right: 22px;
  }
  .nav-links {
    gap: 16px;
  }
}
@media (max-width: 900px) {
  .main-nav .nav-links {
    display: none;
  }
  .main-nav .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 901px) {
  .mobile-menu {
    display: none !important;
  }
}

/* === MAIN PAGE LAYOUT/SECTIONS === */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 16px;
}
.feature-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 14px var(--shadow);
  padding: 28px 24px 22px 24px;
  flex: 1 1 265px;
  min-width: 240px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  transition: transform 0.14s, box-shadow 0.14s;
  position: relative;
  margin-bottom: 20px;
}
.feature-item:hover {
  transform: translateY(-3px) scale(1.025);
  box-shadow: 0 8px 32px var(--shadow);
  z-index: 2;
}
.feature-item img {
  width: 36px;
  height: 36px;
  margin-bottom: 0;
}
.price {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 900;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 5px 14px;
  border-radius: 12px;
  font-size: 1.05rem;
  margin-top: 12px;
  letter-spacing: 0.01em;
}
.schedule {
  margin-top: 6px;
  color: var(--primary);
  font-size: 1rem;
  font-weight: 600;
  background: var(--accent);
  padding: 3px 10px;
  border-radius: 10px;
}

/* === TESTIMONIALS === */
.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 14px var(--shadow);
  padding: 20px;
  min-width: 250px;
  max-width: 370px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
  position: relative;
  border-left: 7px solid var(--secondary);
  z-index: 1;
}
.testimonial-card p {
  color: #18304e;
  font-size: 1.05rem;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 0;
}
.testimonial-meta {
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-top: 0;
}
.testimonial-grid .testimonial-card {
  flex: 1 1 280px;
}

/* For single testimonial in content-wrapper */
.content-wrapper > .testimonial-card {
  margin-top: 20px;
}

/* === CARDS / FAQ / CONTENT BLOCKS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1px 10px var(--shadow);
  padding: 22px 18px;
  margin-bottom: 20px;
  position: relative;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 18px;
}
.faq-item {
  background: var(--accent);
  border-radius: 10px;
  padding: 16px 18px;
  box-shadow: 0 1px 8px var(--shadow);
}

/* === CONTACT INFO & STRUCTURED BLOCKS === */
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  align-items: flex-start;
}
.address-block, .phone-block, .email-block, .hours-block, .map-block {
  flex: 1 1 200px;
  min-width: 200px;
  max-width: 250px;
  background: #fff;
  padding: 18px 14px 18px 18px;
  border-radius: 12px;
  box-shadow: 0 1px 10px var(--shadow);
  margin-bottom: 20px;
}
.contact-info img {
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  height: 18px;
}

/* === FOOTER === */
footer {
  background: var(--primary);
  color: var(--accent);
  padding: 40px 20px 16px 20px;
  margin-top: 64px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 -2px 14px var(--shadow);
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
  color: var(--accent);
}
.footer-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  transition: color 0.2s;
  margin: 0 6px;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--secondary);
}
.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--accent);
}
.footer-contact img {
  width: 50px;
  height: 50px;
}
.footer-contact div {
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  margin-bottom: 2px;
  color: var(--accent);
}
.footer-contact a {
  color: var(--secondary);
  text-decoration: underline;
}
.footer-copy {
  text-align: center;
  font-size: .97rem;
  color: var(--accent);
  opacity: .85;
  margin-top: 10px;
}

/* === UTILITY SPACING === */
ul {
  margin-left: 22px;
  margin-bottom: 16px;
  padding-left: 18px;
}
ol {
  margin-left: 22px;
  margin-bottom: 16px;
  padding-left: 18px;
}
li {
  margin-bottom: 8px;
}
section + section {
  margin-top: 12px;
}

/* === ANIMATIONS / EFFECTS === */
section, .card, .feature-item, .testimonial-card {
  transition: box-shadow 0.19s, transform 0.13s;
}
.card:focus-within, .feature-item:focus-within, .testimonial-card:focus-within {
  box-shadow: 0 8px 24px var(--shadow);
}

/* === BUTTONS / LINKS === */
button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 18px;
  cursor: pointer;
}

/* === COOKIE CONSENT BANNER === */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--primary);
  color: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 24px 20px 20px 20px;
  z-index: 2000;
  box-shadow: 0 -4px 24px var(--shadow);
  animation: fadeInCookie 0.8s;
}
@keyframes fadeInCookie {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: none; }
}
.cookie-consent-banner .cookie-text {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--accent);
}
.cookie-consent-banner .cookie-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.cookie-consent-banner button {
  padding: 8px 20px;
  font-size: 1.08rem;
  font-weight: 700;
  border: none;
  background: var(--secondary);
  color: var(--primary);
  border-radius: 12px;
  margin: 4px 0;
  transition: background 0.19s, color 0.18s, box-shadow 0.16s;
  box-shadow: 0 2px 8px var(--shadow);
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: var(--accent);
  color: var(--primary);
  outline: none;
}
.cookie-consent-banner .cookie-btns .cookie-settings-btn {
  background: var(--primary);
  color: var(--secondary);
  border: 2px solid var(--secondary);
  transition: background 0.16s, color 0.16s;
}
.cookie-consent-banner .cookie-btns .cookie-settings-btn:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* === COOKIE CONSENT MODAL === */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2020;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(25,49,87,0.46);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s;
}
.cookie-modal-overlay.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px 18px 0 0;
  max-width: 480px;
  min-width: 290px;
  width: 94vw;
  margin-bottom: 0;
  padding: 34px 28px 28px 28px;
  box-shadow: 0 -4px 24px var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: slideUpModal 0.38s;
}
@keyframes slideUpModal {
  from { transform: translateY(60px); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 8px;
}
.cookie-category {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
  gap: 14px;
}
.cookie-category label {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.06rem;
  margin-left: 6px;
}
.cookie-toggle {
  width: 44px;
  height: 24px;
  background: #e1e4e8;
  border-radius: 12px;
  position: relative;
  transition: background 0.22s;
  margin-right: 0;
  display: inline-block;
}
.cookie-toggle[aria-checked="true"] {
  background: var(--secondary);
}
.cookie-toggle .toggle-knob {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.22s;
  box-shadow: 0 1px 4px var(--shadow);
}
.cookie-toggle[aria-checked="true"] .toggle-knob {
  left: 22px;
}
.cookie-modal .modal-btns {
  margin-top: 14px;
  display: flex;
  gap: 18px;
}
.cookie-modal .modal-btns button {
  padding: 8px 20px;
  font-size: 1.06rem;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 2px 8px var(--shadow);
  border: none;
  background: var(--secondary);
  color: var(--primary);
  transition: background 0.15s, color 0.15s;
}
.cookie-modal .modal-btns .modal-cancel-btn {
  background: var(--primary);
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.cookie-modal .modal-btns .modal-cancel-btn:hover {
  background: var(--secondary);
  color: var(--primary);
}

/* === RESPONSIVENESS === */
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .main-nav {
    flex-direction: row;
    padding: 10px 4px;
    gap: 6px;
  }
  .logo img {
    width: 42px;
    height: 42px;
  }
  .hero {
    padding: 34px 0 26px 0;
    min-height: 220px;
  }
  .content-wrapper, .feature-grid, .testimonial-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .contact-info {
    flex-direction: column;
    gap: 16px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-top: 8px;
  }
  .feature-item, .faq-item, .card {
    min-width: 0;
    max-width: 100%;
    padding: 18px 14px;
    font-size: 0.99rem;
  }
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
    padding: 16px 10px;
  }
  h1 {
    font-size: 2.1rem;
    margin-bottom: 10px;
  }
  h2 {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
  h3 {
    font-size: 1.08rem;
    margin-bottom: 7px;
  }
  .section {
    margin-bottom: 30px;
    padding: 22px 7px;
  }
  .footer-nav {
    gap: 8px;
    flex-wrap: wrap;
    font-size: 0.98rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 3vw;
  }
  .cookie-modal {
    min-width: 0;
    max-width: 98vw;
    padding: 14px 3vw;
  }
  .cookie-consent-banner {
    padding: 14px 3vw 10px 3vw;
    font-size: 0.96rem;
  }
}

/* === MISCELLANEOUS === */
::-webkit-scrollbar {
  width: 9px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 8px;
}
::selection {
  background: var(--secondary);
  color: var(--primary);
}

/* === GEOMETRIC DECORATIVE ELEMENTS (OPTIONAL - CAN BE APPLIED WHERE NEEDED) === */
.geometric-shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  opacity: .10;
}

/* === ACCESSIBILITY === */
:focus {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
}

/* === PREVENT OVERLAPPING === */
section, .feature-grid, .testimonial-grid, .card-container, .content-grid {
  gap: 20px;
}

/* === END === */
