/* ---------------------------------------------
   Flexublung Elegant Classic CSS Reset & Base
-----------------------------------------------*/
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 {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100%;
  background: #FFF;
  color: #2A2C31;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 16px;
  line-height: 1.7;
  letter-spacing: .01em;
  -webkit-font-smoothing: antialiased;
  background-color: #F6F6F6;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #33415C;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
}
a:hover, a:focus {
  color: #FFD166;
  outline: none;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 16px;
}
li + li {
  margin-top: 8px;
}
hr {
  border: none;
  border-top: 1px solid #E0DFDF;
  margin: 32px 0;
}
::-webkit-input-placeholder { color: #A7A7A7; }
::-moz-placeholder { color: #A7A7A7; }
:-ms-input-placeholder { color: #A7A7A7; }
::placeholder { color: #A7A7A7; }

/* ----------------------------------------------
  Typography Hierarchy - Elegant Classic Style
-----------------------------------------------*/
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif !important;
  font-weight: 600;
  color: #33415C;
  line-height: 1.15;
  letter-spacing: 0.02em;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.35rem; margin-bottom: 12px; }
h4 { font-size: 1.18rem; margin-bottom: 8px; }
p, ul, ol, blockquote {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: #2A2C31;
  font-size: 1rem;
  margin-bottom: 16px;
}
blockquote {
  font-style: italic;
  padding-left: 20px;
  border-left: 3px solid #FFD166;
  color: #3d4350;
  background: #fffaf2;
}
cite {
  font-size: 0.95rem;
  color: #5A6376;
  margin-top: 8px;
  display: block;
  font-style: normal;
}
strong, b {
  font-weight: bold;
  color: #33415C;
}

/* ----------------------------------------------
  Container & Section Patterns
-----------------------------------------------*/
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ----------------------------------------------
  Header & Main Navigation
-----------------------------------------------*/
header {
  background: #FFF;
  box-shadow: 0 2px 16px rgba(51,65,92,.05);
  border-bottom: 1px solid #ECECEC;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 32px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1rem;
  color: #33415C;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: border 0.2s, color 0.2s;
}
.main-nav a:hover, .main-nav a:focus {
  color: #FFD166;
  border-bottom: 2px solid #FFD166;
}
.cta-btn {
  display: inline-block;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.08rem;
  font-weight: 600;
  background: #FFD166;
  color: #33415C;
  border: none;
  border-radius: 30px;
  padding: 10px 32px;
  margin-left: 24px;
  box-shadow: 0 2px 8px rgba(80, 70, 37, 0.07);
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  cursor: pointer;
  text-align: center;
  letter-spacing: .02em;
}
.cta-btn:hover, .cta-btn:focus {
  background: #33415C;
  color: #fff;
  box-shadow: 0 4px 20px rgba(51,65,92,.09);
  outline: none;
}
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: transparent;
  border: none;
  color: #33415C;
  cursor: pointer;
  margin-left: 16px;
  padding: 6px 14px;
  border-radius: 100%;
  transition: background 0.15s;
  z-index: 1900;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #FFD166;
  color: #33415C;
}

/* ----------------------------------------------
  Mobile Navigation Drawer
-----------------------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(51, 65, 92, 0.92);
  z-index: 2001;
  transform: translateX(-100%);
  transition: transform .32s cubic-bezier(.62,.28,.23,.99);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 20px 22px 8px 0;
  background: transparent;
  color: #fff;
  border: none;
  font-size: 2.2rem;
  cursor: pointer;
  z-index: 2100;
  transition: color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #FFD166;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
  margin-top: 36px;
  padding: 0 36px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.25rem;
  font-family: 'Playfair Display', Georgia, serif;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.11);
  transition: color .17s;
}
.mobile-nav a:focus, .mobile-nav a:hover {
  color: #FFD166;
  background: none;
}

/* ----------------------------------------------
  Hero Section
-----------------------------------------------*/
.hero {
  min-height: 300px;
  background: #FFF;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  padding-top: 28px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  max-width: 700px;
}
.hero h1 {
  margin-bottom: 10px;
}
.hero .cta-btn {
  margin-top: 8px;
}

/* ----------------------------------------------
  Features Grid
-----------------------------------------------*/
.features {
  background: #F6F6F6;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 18px;
}
.feature-grid > div {
  background: #fff;
  border-radius: 18px;
  padding: 26px 22px 22px 22px;
  min-width: 230px;
  flex: 1 1 220px;
  box-shadow: 0 2px 12px rgba(51,65,92,0.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.24s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 28px rgba(51,65,92,0.15);
  z-index: 2;
}
.feature-grid img {
  width: 36px;
  height: 36px;
  margin-bottom: 8px;
}

/* ----------------------------------------------
  Shared Section Patterns
-----------------------------------------------*/
.services ul {
  list-style-type: disc;
  padding-left: 24px;
  margin-bottom: 0;
}
.services ul li {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  margin-bottom: 10px;
  font-size: 1rem;
}
.services h2 {
  margin-bottom: 18px;
}

/* ----------------------------------------------
  Testimonials
-----------------------------------------------*/
.testimonials {
  background: #F6F6F6;
}
.testimonials .content-wrapper {
  gap: 26px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  background: #fff;
  box-shadow: 0 3px 20px rgba(51,65,92, 0.09);
  border-radius: 16px;
  padding: 26px 28px;
  margin-bottom: 20px;
  max-width: 600px;
  transition: box-shadow 0.18s, transform 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 32px rgba(51,65,92, 0.16);
  transform: translateY(-6px) scale(1.018);
}
.testimonial-card blockquote {
  color: #33415C;
  font-size: 1.08rem;
  line-height: 1.55;
  font-style: italic;
  background: none;
  margin-bottom: 0;
}
.testimonial-card cite {
  color: #5A6376;
  margin-top: 0;
  font-size: 1rem;
  letter-spacing: 0.015em;
}

/* ----------------------------------------------
  CTA Banner Section
-----------------------------------------------*/
.cta {
  background: #FFD166;
  color: #33415C;
  border-radius: 18px;
  box-shadow: 0 1px 19px rgba(51,65,92,0.07);
  margin-bottom: 60px;
  padding: 41px 20px;
}
.cta h2 {
  color: #2A2C31;
  margin-bottom: 16px;
}
.cta .cta-btn {
  margin-top: 6px;
  background: #33415C;
  color: #fff;
  border-radius: 23px;
}
.cta .cta-btn:hover {
  background: #253352;
  color: #FFD166;
}

/* ----------------------------------------------
  About / Legal Pages Section
-----------------------------------------------*/
.about {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(51,65,92,0.04);
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ----------------------------------------------
  Contact Page Special Styles
-----------------------------------------------*/
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-top: 16px;
}
.contact-info div {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: #33415C;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.opening-hours {
  margin-top: 30px;
}
.map-embed {
  margin-top: 30px;
  font-size: 0.99rem;
  color: #5A6376;
}
.social-links {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 22px;
}
.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  box-shadow: 0 1px 8px rgba(51,65,92,0.07);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.18s, background 0.18s;
}
.social-links a:hover {
  background: #FFD166;
  box-shadow: 0 6px 18px rgba(51,65,92,0.15);
}
@media (max-width: 480px) {
  .social-links a {
    width: 34px;
    height: 34px;
  }
}

/* ----------------------------------------------
  Footer Styles
-----------------------------------------------*/
footer {
  background: #33415C;
  color: #fff;
  font-size: 1rem;
  padding: 0;
}
footer .container {
  padding: 0 14px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 0;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 160px;
}
.footer-brand span {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1.06rem;
  line-height: 1.3;
  color: #FFD166;
}
.footer-contact-info, .footer-menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-info div, .footer-contact-info a {
  color: #F6F6F6;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: .97rem;
  display: flex;
  align-items: center;
  gap: 9px;
}
.footer-menu {
  gap: 8px;
  margin-top: 0;
}
.footer-menu a {
  color: #FFD166;
  font-size: .98rem;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
}
.footer-menu a:hover {
  text-decoration: underline;
  color: #fff;
}
.footer-social {
  display: flex; flex-direction: row; gap: 16px;
}
.footer-social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: #fff;
  border-radius: 50%;
  transition: background 0.16s;
}
.footer-social a:hover {
  background: #FFD166;
}

/* ----------------------------------------------
  Legal/Utility Pages Styles
-----------------------------------------------*/
.about ul, .about ol {
  list-style: disc;
  margin-bottom: 0;
  margin-left: 20px;
}
.about ul li {
  font-size: 1rem;
  margin-bottom: 8px;
}

/* ----------------------------------------------
  Utility and Patterns
-----------------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 9px rgba(51,65,92,0.06);
  padding: 28px 22px;
  transition: box-shadow 0.18s;
}
.card:hover {
  box-shadow: 0 6px 22px rgba(51,65,92,0.13);
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ----------------------------------------------
  Cookie Consent Banner & Modal
-----------------------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: #fffdf5;
  box-shadow: 0 -3px 20px rgba(51,65,92,0.11);
  border-top: 2px solid #FFD166;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  z-index: 3001;
  transition: transform 0.28s, opacity 0.28s;
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
}
.cookie-banner-text {
  color: #33415C;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1rem;
}
.cookie-banner-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}
.cookie-btn {
  font-family: 'Playfair Display', Georgia, serif;
  background: #FFD166;
  color: #33415C;
  border: none;
  border-radius: 22px;
  padding: 7px 18px;
  font-size: 1rem;
  font-weight: 600;
  margin-right: 8px;
  margin-bottom: 0;
  transition: background 0.19s, color 0.19s;
  cursor: pointer;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #33415C;
  color: #FFD166;
  outline: none;
}
.cookie-btn.secondary {
  background: transparent;
  color: #33415C;
  border: 2px solid #FFD166;
  margin-right: 0;
}
.cookie-btn.secondary:hover {
  background: #FFD166;
  color: #33415C;
}
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; bottom: 0; top: 0;
  background: rgba(51,65,92,0.7);
  z-index: 3100;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.27s;
}
.cookie-modal-overlay.open {
  pointer-events: auto;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 36px rgba(51,65,92,0.18);
  max-width: 420px;
  width: 100%;
  padding: 32px 24px 22px 24px;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  color: #33415C;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  z-index: 3200;
  opacity: 1;
  transform: translateY(0);
  transition: transform .29s cubic-bezier(.72,.32,.18,1.18);
}
.cookie-modal-header {
  font-size: 1.23rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #33415C;
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #FFD166;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
}
.cookie-toggle {
  width: 42px; height: 25px;
  border-radius: 16px;
  background: #E6E3D9;
  position: relative;
  transition: background 0.18s;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle-label {
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.cookie-toggle-slider {
  position: absolute;
  left: 3px; top: 3px;
  width: 19px; height: 19px;
  background: #FFD166;
  border-radius: 50%;
  transition: left 0.18s, background 0.15s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 20px;
  background: #33415C;
}
.cookie-category.disabled {
  opacity: 0.6;
}

/* ----------------------------------------------
  Responsive Styles (Mobile-First)
-----------------------------------------------*/
@media (max-width: 1200px) {
  .container { max-width: 930px; }
}
@media (max-width: 950px) {
  .container { max-width: 98vw; }
  .content-wrapper, .content-grid, .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer-social { margin-top: 14px; }
}
@media (max-width: 780px) {
  header .container { gap: 8px; }
  .main-nav { gap: 12px; }
  .footer-contact-info div { font-size: .90rem; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    align-items: center;
    gap: 7px;
  }
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-social, .footer-brand, .footer-contact-info, .footer-menu {
    align-items: flex-start;
  }
  .hero {
    padding: 24px 0 18px 0;
  }
  .container {
    padding: 0 9px;
  }
  .card {
    padding: 16px 9px;
  }
}
@media (max-width: 650px) {
  .feature-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div {
    min-width: 0;
    width: 100%;
  }
  .footer-brand span { font-size: .94rem; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.48rem; }
  h2 { font-size: 1.17rem; }
  h3 { font-size: .99rem; }
  .container { padding: 0 4px; }
  .section, .about, .cta {
    padding: 23px 7px;
  }
  .footer-social a { width: 32px; height: 32px; }
  .hero .content-wrapper {
    gap: 9px;
  }
  .feature-grid > div, .testimonial-card {
    padding: 18px 8px;
  }
}
@media (max-width: 360px) {
  .feature-grid { gap: 7px; }
}

/* -------------------------------
   Micro-interactions & Animation
---------------------------------*/
.cta-btn, .card, .feature-grid > div, .testimonial-card, .cookie-btn {
  transition: box-shadow 0.22s, background 0.22s, color 0.18s, transform 0.16s;
}
.cta-btn:active {
  transform: scale(0.97);
}
.cookie-btn:active {
  transform: scale(0.96);
}

/* For input, forms, etc - maintain classic elegance */
input, textarea, select {
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  font-size: 1rem;
  border-radius: 8px;
  border: 1px solid #C8C9CB;
  background: #fff;
  padding: 10px 12px;
  margin-bottom: 16px;
  color: #33415C;
  width: 100%;
  box-sizing: border-box;
  resize: vertical;
  outline: none;
  transition: border 0.17s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #FFD166;
}
button, input[type="submit"] {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem;
  border-radius: 25px;
}

/* Accessibility focus */
a:focus, button:focus, .cta-btn:focus, .mobile-menu-close:focus {
  outline: 2px solid #FFD166;
  outline-offset: 2px;
}

/* Hide visually but keep for sr */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}

/* Hide elements utility */
.hide {
  display: none !important;
}
