/* -------------------- 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 {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #F4F6F8;
  color: #18282F;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
  padding-left: 0;
}
*, *:before, *:after {
  box-sizing: border-box;
}

/* -------------------- CUSTOM PROPERTIES -------------------- */
:root {
  --clr-primary: #244459;
  --clr-secondary: #73A577;
  --clr-accent: #F4F6F8;
  --clr-gold: #C4A054;
  --clr-black: #18282F;
  --clr-white: #fff;
  --clr-grey: #EAEAEA;
  --clr-grey-dark: #4A5866;
  --radius: 14px;
  --shadow-elevate: 0 8px 24px rgba(36, 68, 89, 0.09);
  --shadow-card: 0 4px 18px rgba(36, 68, 89, 0.07);
  --shadow-gold: 0 2px 16px rgba(196, 160, 84, 0.09);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Open Sans', Arial, Helvetica, sans-serif;
}

/* -------------------- TYPOGRAPHY -------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--clr-primary);
  font-weight: 700;
  letter-spacing: 0.005em;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.375rem;
  line-height: 1.2;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 20px;
  line-height: 1.25;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-size: 1.10rem;
}
p, ul li, ol li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--clr-black);
  margin-bottom: 16px;
  line-height: 1.7;
}
small {
  font-size: 0.925rem;
  color: var(--clr-grey-dark);
}
strong, b {
  font-weight: 700;
  color: var(--clr-black);
}
.text-section ul {
  padding-left: 1.5em;
  margin-bottom: 16px;
}
.text-section ul li {
  margin-bottom: 8px;
  position: relative;
  padding-left: 1em;
}
.text-section ul li::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--clr-gold);
  border-radius: 50%;
  margin-right: 10px;
  position: absolute;
  left: 0;
  top: 0.6em;
}

/* Hierarchy for price spans: */
.service-price {
  font-family: var(--font-display);
  color: var(--clr-gold);
  font-size: 1.05em;
  font-weight: 600;
  margin-left: 10px;
}

/* -------------------- LAYOUT HELPERS -------------------- */
.container {
  max-width: 1224px;
  margin: 0 auto;
  padding: 0 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
  background: var(--clr-white);
  box-shadow: var(--shadow-elevate);
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--clr-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s;
  padding: 32px 24px;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(36, 68, 89, 0.18);
}
.feature-grid, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 350px;
  background: var(--clr-accent);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 28px 18px 22px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  border-top: 4px solid var(--clr-gold);
}
.feature-grid img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  filter: grayscale(0) brightness(0.85) drop-shadow(0px 0px 7px #C4A05430);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.quick-statistics {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--clr-primary);
  background: var(--clr-accent);
  border-left: 5px solid var(--clr-gold);
  padding: 10px 18px;
  margin-top: 16px;
  border-radius: 0 var(--radius) var(--radius) 0;
}

/* -------------------- HEADER & NAVIGATION -------------------- */
header {
  background: var(--clr-white);
  border-bottom: 1px solid var(--clr-grey);
  padding: 0;
  box-shadow: 0 2px 20px rgba(36,68,89,0.03);
  z-index: 90;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
  justify-content: space-between;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 24px;
}
header nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 6px 4px;
  color: var(--clr-primary);
  font-weight: 500;
  border-radius: 4px;
  transition: color 0.19s, background 0.2s;
}
header nav a:hover,
header nav a:focus {
  color: var(--clr-gold);
  background: #f9f6f1;
}
header nav .btn-primary {
  margin-left: 18px;
}
header img {
  height: 48px;
  max-width: 220px;
  display: block;
}
.mobile-menu-toggle {
  display: none;
  background: var(--clr-white);
  border: 1px solid var(--clr-gold);
  color: var(--clr-gold);
  font-size: 2.1rem;
  border-radius: 7px;
  padding: 3px 14px 6px 14px;
  margin-left: auto;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--clr-gold);
  color: var(--clr-white);
  outline: none;
}

/* -------------------- MOBILE MENU -------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(36, 68, 89, 0.92);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.5,1.2,.5,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--clr-gold);
  font-size: 2.1rem;
  line-height: 1;
  margin: 18px 0 18px 22px;
  align-self: flex-start;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 2222;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: var(--clr-white);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding: 16px 38px 0 38px;
}
.mobile-nav a {
  font-family: var(--font-display);
  padding: 15px 0;
  font-size: 1.27rem;
  border-bottom: 1px solid rgba(244,246,248,0.13);
  color: var(--clr-white);
  letter-spacing: 0.02em;
  transition: color 0.15s, background 0.12s;
}
.mobile-nav a.btn-primary {
  margin-top: 14px;
  border: none;
  color: var(--clr-black);
  background: var(--clr-gold);
  font-weight: 700;
  border-radius: var(--radius);
  padding: 16px 0;
  text-align: center;
  box-shadow: var(--shadow-gold);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--clr-gold);
  background: rgba(255,255,255,0.05);
}

/* Hide menu on desktop, show on mobile */
@media (max-width: 1023px) {
  .mobile-menu-toggle {
    display: block;
  }
  header nav {
    display: none;
  }
}
@media (min-width: 1024px) {
  .mobile-menu, .mobile-menu.open {
    display: none;
  }
}

/* -------------------- BUTTONS & CTAs -------------------- */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.09rem;
  padding: 13px 30px;
  border-radius: var(--radius);
  border: none;
  background: var(--clr-gold);
  color: var(--clr-black);
  font-weight: 600;
  box-shadow: var(--shadow-gold);
  transition: background 0.19s, color 0.15s, box-shadow 0.22s, transform 0.15s;
  cursor: pointer;
  margin-top: 12px;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #b38c3a;
  color: var(--clr-white);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 36px rgba(196, 160, 84, 0.11);
}
.btn-secondary {
  background: var(--clr-secondary);
  color: var(--clr-white);
  font-weight: 700;
  box-shadow: 0 2px 14px rgba(115, 165, 119, 0.11);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #55785f;
  color: var(--clr-gold);
}

/* Links as CTAs for menu and pages */
a.btn-primary, a.btn-secondary {
  text-decoration: none;
}

/* -------------------- TESTIMONIALS -------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F8F6F2;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  border-left: 5px solid var(--clr-gold);
  color: var(--clr-black);
  font-size: 1.07rem;
  max-width: 720px;
}
.testimonial-card p {
  margin: 0;
  color: var(--clr-black);
  line-height: 1.6;
}
.testimonial-card strong {
  color: var(--clr-primary);
  font-family: var(--font-display);
  font-size: 1em;
  font-weight: 600;
}

/* -------------------- FOOTER -------------------- */
footer {
  background: var(--clr-primary);
  color: var(--clr-white);
  padding: 40px 0 18px 0;
  margin-top: 80px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  justify-content: flex-start;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
footer nav a {
  color: var(--clr-white);
  opacity: 0.89;
  font-family: var(--font-display);
  font-size: 1rem;
  transition: color 0.14s, opacity 0.2s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--clr-gold);
  opacity: 1;
}
footer small, footer .text-section {
  color: var(--clr-accent);
  font-size: 0.95rem;
  margin-top: 10px;
}

/* -------------------- CONTACT INFORMATION -------------------- */
.company-contact-info {
  background: #F4F4F4;
  border-radius: 9px;
  padding: 12px 20px;
  font-size: 1rem;
  margin: 10px 0 15px 0;
  color: var(--clr-black);
}
.operating-hours {
  padding: 9px 17px 9px 0;
  font-size: 1rem;
  color: var(--clr-grey-dark);
  border-left: 3px solid var(--clr-gold);
  margin: 0 0 12px 1px;
}

/* -------------------- CARDS & CONTENT -------------------- */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 0 2px;
}

/* Spacing to avoid overlap */
.card:not(:last-child), .section:not(:last-child) {
  margin-bottom: 60px;
}

/* -------------------- COOKIE CONSENT BANNER -------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--clr-black);
  color: var(--clr-white);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  justify-content: center;
  z-index: 3000;
  padding: 24px 14px 22px 14px;
  box-shadow: 0 -8px 32px rgba(24,40,47,0.18);
  font-size: 1.01rem;
  font-family: var(--font-body);
  animation: bannerIn 0.45s ease;
}
@keyframes bannerIn {
  from {transform: translateY(100%); opacity:0;}
  to {transform: translateY(0); opacity:1;}
}
.cookie-banner p {
  color: var(--clr-accent);
  margin: 0 0 0 0;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-left: 14px;
  align-items: center;
}
.cookie-banner .btn-cookies {
  font-family: var(--font-display);
  background: var(--clr-gold);
  color: var(--clr-black);
  border: none;
  border-radius: 8px;
  padding: 10px 22px;
  font-weight: 700;
  font-size: 1rem;
  margin: 0;
  cursor: pointer;
  transition: background 0.14s, color 0.14s, box-shadow 0.17s;
  box-shadow: 0 2px 8px rgba(196,160,84,0.08);
}
.btn-cookies.secondary {
  background: var(--clr-secondary);
  color: var(--clr-white);
}
.btn-cookies.settings {
  background: transparent;
  color: var(--clr-gold);
  border: 1.5px solid var(--clr-gold);
  font-weight: 600;
}
.btn-cookies:hover,
.btn-cookies:focus {
  background: var(--clr-primary);
  color: var(--clr-gold);
  outline: none;
}
.btn-cookies.secondary:hover,
.btn-cookies.secondary:focus {
  background: #4d6955;
  color: var(--clr-gold);
}
.btn-cookies.settings:hover,
.btn-cookies.settings:focus {
  background: var(--clr-gold);
  color: var(--clr-black);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  z-index: 4000;
  left: 50%; top: 50%;
  transform: translate(-50%, -55%) scale(0.96);
  background: var(--clr-white);
  color: var(--clr-black);
  box-shadow: 0 12px 64px 2px rgba(36,68,89,0.18), 0 2px 40px 2px rgba(196,160,84,0.13);
  border-radius: var(--radius);
  min-width: 320px;
  width: 95%;
  max-width: 420px;
  padding: 37px 24px 27px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  opacity: 1;
  animation: modalIn 0.35s cubic-bezier(.5,1.6,.5,1);
}
@keyframes modalIn {
  from {opacity:0; transform: translate(-50%, 5%) scale(0.9);}
  to {opacity:1; transform: translate(-50%, -55%) scale(0.96);}
}
.cookie-modal h2 {
  margin-top: 0;
  font-size: 1.33rem;
  color: var(--clr-primary);
  letter-spacing: 0.01em;
  margin-bottom: 10px;
  font-family: var(--font-display);
}
.cookie-modal .cookie-category {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--clr-accent);
  padding: 9px 0;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal .cookie-switch {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-modal .cookie-switch input[type="checkbox"] {
  accent-color: var(--clr-gold);
  width: 19px;
  height: 19px;
}
.cookie-modal .category-label {
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-body);
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  justify-content: flex-end;
}
.cookie-modal .btn-cookies {
  min-width: 100px;
}
.cookie-modal .modal-close {
  position: absolute;
  top: 11px;
  right: 13px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--clr-grey-dark);
  cursor: pointer;
  padding: 3px 11px 4px 11px;
  border-radius: 6px;
  transition: background 0.14s, color 0.15s;
}
.cookie-modal .modal-close:hover,
.cookie-modal .modal-close:focus {
  background: var(--clr-gold);
  color: var(--clr-black);
}

/* Overlay for modal */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(24, 40, 47, 0.52);
  z-index: 3999;
  animation: overlayIn 0.28s ease;
}
@keyframes overlayIn {
  from {opacity:0;} to {opacity:1;}
}

/* Hide Cookie Modal by default */
.cookie-modal, .cookie-modal-overlay {
  display: none;
}
.cookie-modal.open, .cookie-modal-overlay.open {
  display: block;
}

/* -------------------- RESPONSIVE DESIGN -------------------- */
@media (max-width: 1160px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 900px) {
  .feature-grid > div {
    min-width: 180px;
    max-width: 100%;
    flex-basis: 45%;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.45rem;
    margin-bottom: 16px;
  }
  h2 {
    font-size: 1.17rem;
    margin-bottom: 17px;
  }
  .section {
    padding: 28px 6px;
    margin-bottom: 35px;
  }
  .container {
    padding: 0 8px;
  }
  .feature-grid, .features {
    flex-direction: column;
    gap: 0;
  }
  .feature-grid > div {
    min-width: 0;
    width: 100%;
    margin-bottom: 16px;
    padding: 20px 10px 15px 10px;
  }
  .testimonial-card {
    padding: 13px 10px;
    font-size: 0.98rem;
    flex-direction: column;
    gap: 6px;
    max-width: 98vw;
  }
  .text-image-section,.content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .card-content {
    padding: 0;
    font-size: 1rem;
  }
  header .container {
    gap: 10px;
    flex-wrap: wrap;
    flex-direction: row;
  }
  .card-container {
    flex-direction: column;
    gap: 14px;
  }
  .section, .card {
    margin-bottom: 26px;
  }
  .btn-primary, .btn-secondary {
    font-size: 1rem;
    padding: 11px 18px;
  }
  .cookie-modal {
    min-width: 0;
    width: 98vw;
    max-width: 98vw;
    padding: 23px 8px 19px 8px;
  }
}
@media (max-width: 500px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    padding: 14px 4px 17px 4px;
    font-size: 0.99rem;
  }
  .cookie-banner .cookie-buttons {
    gap: 8px;
    margin-left: 4px;
  }
  .mobile-nav {
    padding: 12px 13px 0 17px;
  }
  .mobile-menu-close {
    margin: 10px 0 12px 9px;
  }
}

/* -------------------- ANIMATIONS & MICRO-INTERACTIONS -------------------- */
.card, .feature-grid > div, .testimonial-card, .btn-primary, .btn-secondary, .btn-cookies {
  transition: box-shadow 0.19s, background 0.15s, color 0.13s, transform 0.17s;
}
.card:hover, .feature-grid > div:hover {
  box-shadow: 0 10px 40px 0 rgba(196,160,84,0.13),0 8px 28px rgba(36,68,89,0.13);
  transform: translateY(-1px) scale(1.012);
  border-top: 4px solid #e7bd6b;
}

/* -------------------- ACCESSIBILITY -------------------- */
a:focus, .btn-primary:focus, .btn-secondary:focus,
.mobile-menu-toggle:focus, .mobile-menu-close:focus,
.btn-cookies:focus {
  outline: 2px solid var(--clr-gold);
  outline-offset: 1px;
}

/* -------------------- SPECIAL UTILITY CLASSES -------------------- */
.text-section {
  margin-bottom: 24px;
}
.text-section h3 {
  color: var(--clr-secondary);
  font-size: 1.22rem;
  margin-top: 13px;
}
.text-section p, .text-section ul, .text-section strong {
  color: var(--clr-black);
}
section {
  padding: 10px 0;
}
/* End of style.css for luxury_premium brand aesthetic with flexbox, responsive, and accessibility */
