/* ===============================
   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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #f7f8fa;
  color: #202220;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  appearance: none;
  border-radius: 0;
}
button {
  cursor: pointer;
}

/* ===============
   BRAND VARIABLES
================== */
:root {
  --brand-primary: #155B4B;
  --brand-primary-darker: #10463a;
  --brand-secondary: #FFD93B;
  --brand-secondary-dark: #d4b800;
  --brand-accent: #fff;
  --brand-pale: #f7f8fa;
  --brand-gold: #C9A94B;
  --border-radius: 16px;
  --shadow-card: 0 4px 18px 0 rgba(32,32,32,0.10), 0 1.5px 12px 0 rgba(200,180,120,0.11);
  --shadow-header: 0 2px 8px 0 rgba(21,91,75,0.07);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
}

/* =============================
   TYPOGRAPHY — LUXURY PREMIUM
============================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--brand-primary);
  font-weight: 700;
  line-height: 1.12;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p, li, strong, span, label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #262626;
}
p {
  margin-bottom: 16px;
}
strong {
  font-weight: 600;
}

/* =============================
   CONTAINER & LAYOUT UTILITY
============================= */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-accent);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
}
@media (max-width: 768px) {
  .section {
    padding: 24px 12px;
    margin-bottom: 36px;
    border-radius: 10px;
  }
}

/* FLEX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  border-radius: var(--border-radius);
  background: var(--brand-accent);
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  position: relative;
  display: flex;
  flex-direction: column;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.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;
}
@media (max-width: 768px) {
  .content-grid, .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  border-radius: var(--border-radius);
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(21,91,75,0.08);
  border-left: 4px solid var(--brand-gold);
  color: #232323;
  min-width: 0;
  max-width: 650px;
}
.testimonial-card strong {
  color: var(--brand-primary);
  font-size: 1rem;
  font-family: var(--font-display);
}
.stars {
  color: var(--brand-gold);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  font-family: var(--font-display);
}

/* FEATURE LISTS */
.features, .service-list, .process-steps, .faq-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 8px;
  margin-bottom: 12px;
}
.features li, .service-list li, .process-steps li, .faq-list li {
  background: #faf8f2;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 10px rgba(201,169,75,0.06);
  padding: 24px 20px;
  min-width: 260px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
  position: relative;
}
.features li img, .process-steps li img {
  width: 40px;
  height: 40px;
}
@media (max-width: 768px) {
  .features, .service-list, .process-steps, .faq-list {
    flex-direction: column;
    gap: 14px;
  }
  .features li, .service-list li, .process-steps li, .faq-list li {
    min-width: 0;
    width: 100%;
    padding: 18px 12px;
  }
}

/* ===================
   HEADER / NAVIGATION
==================== */
header {
  background: var(--brand-accent);
  box-shadow: var(--shadow-header);
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: 1180px;
  margin: 0 auto;
  font-family: var(--font-display);
}
.main-nav > a img {
  height: 38px;
  width: auto;
  display: block;
  margin-right: 36px;
}
.main-nav ul {
  display: flex;
  gap: 18px;
  align-items: center;
}
.main-nav ul li {
  margin-right: 0;
}
.main-nav ul li:last-child {
  margin-right: 0;
}
.main-nav ul li a {
  color: var(--brand-primary);
  font-size: 1.09rem;
  font-weight: 500;
  padding: 7px 18px;
  border-radius: 24px;
  transition: background 0.18s, color 0.18s;
  letter-spacing: 0.01em;
  position: relative;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus {
  background: #f3ecd8;
  color: var(--brand-primary-darker);
}
.main-nav ul li .cta {
  background: linear-gradient(90deg, var(--brand-secondary) 65%, #e7c86f 100%);
  color: var(--brand-primary);
  font-weight: 600;
  letter-spacing: 0.025em;
  box-shadow: 0 1px 9px rgba(201,169,75,0.16);
  border: none;
  outline: none;
  margin-left: 12px;
  transition: background 0.19s, color 0.2s, box-shadow 0.2s;
}
.main-nav ul li .cta:hover,
.main-nav ul li .cta:focus {
  background: linear-gradient(90deg, var(--brand-gold) 60%, var(--brand-secondary-dark));
  color: #fff;
  box-shadow: 0 2px 16px 0 rgba(201,169,75,0.21);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  background: var(--brand-primary);
  color: #fff;
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  position: absolute;
  right: 22px;
  top: 14px;
  z-index: 112;
  align-items: center;
  justify-content: center;
  transition: background 0.19s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--brand-gold);
  color: var(--brand-primary);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 120;
  transform: translateX(-110vw);
  transition: transform 0.31s cubic-bezier(.54,.02,.43,.92);
  display: flex;
  flex-direction: column;
  padding: 36px 0 0 0;
  box-shadow: 0 8px 36px rgba(21,91,75,0.15);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  right: 22px;
  top: 22px;
  background: var(--brand-primary);
  color: #fff;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 125;
  transition: background 0.18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  background: var(--brand-gold);
  color: var(--brand-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
  align-items: flex-start;
  padding: 12px 36px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--brand-primary);
  padding: 14px 12px 12px 0;
  border-radius: 0 24px 24px 0;
  width: 100%;
  transition: background 0.18s, color 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #f3ecd8;
  color: var(--brand-gold);
}
/* Hide normal nav, show burger on tablets and below */
@media (max-width: 980px) {
  .main-nav ul {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 981px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* ============================
   BUTTONS & CTA
============================= */
.cta {
  background: linear-gradient(90deg, var(--brand-secondary) 65%, #e7c86f 100%);
  color: var(--brand-primary);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 13px 34px;
  font-size: 1rem;
  border-radius: 30px;
  border: none;
  transition: background 0.2s, color 0.22s, box-shadow 0.21s, transform 0.17s;
  box-shadow: 0 2px 12px 0 rgba(201,169,75,0.14);
  margin-top: 10px;
  display: inline-block;
  outline: none;
  position: relative;
}
.cta:hover, .cta:focus {
  background: linear-gradient(90deg, var(--brand-gold) 55%, var(--brand-secondary-dark));
  color: #fff;
  box-shadow: 0 3px 20px 0 rgba(201,169,75,0.18);
  transform: translateY(-2px) scale(1.03);
}

/* ================================
   FOOTER
================================== */
footer {
  margin-top: 60px;
  background: var(--brand-primary);
  color: #fff;
  padding: 40px 0 0 0;
  width: 100%;
}
.footer-nav ul {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 16px;
  padding-left: 0;
}
.footer-nav ul li a {
  color: #f7f8fa;
  font-family: var(--font-display);
  font-size: 1rem;
  opacity: 0.87;
  transition: color 0.16s;
  padding: 7px 12px;
  border-radius: 18px;
}
.footer-nav ul li a:hover, .footer-nav ul li a:focus {
  background: var(--brand-gold);
  color: var(--brand-primary);
  opacity: 1;
}
.footer-contact {
  text-align: center;
  padding: 16px 16px 18px 16px;
  font-size: 1rem;
  font-family: var(--font-body);
  background: #10463a;
  border-top: 1px solid #268576;
  color: #ffe;
  margin-top: 16px;
  border-radius: 0 0 12px 12px;
}
.footer-contact a {
  color: var(--brand-secondary);
  text-decoration: underline;
}

/* ================================
   LUXURY DETAILS & EFFECTS
================================== */
.card, .testimonial-card, .features li, .service-list li, .faq-list li {
  border: 1px solid rgba(201,169,75,0.06);
  box-shadow: var(--shadow-card);
  border-left: 4px solid var(--brand-gold);
}
h1:before, h2:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 32px;
  height: 2.5px;
  background: var(--brand-gold);
  border-radius: 5px;
  margin-right: 16px;
  margin-bottom: 0.2em;
}

/* Visually hidden (accessibility, for banners/buttons) */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  border: 0 !important;
}

/* ----------------------------------
   COOKIE CONSENT BANNER & MODAL
---------------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff
    linear-gradient(93deg, var(--brand-gold) 0%, var(--brand-secondary) 100%);
  box-shadow: 0 -3px 24px 0 rgba(201,169,75,0.14);
  border-top: 3px solid var(--brand-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 24px 12px 18px 12px;
  z-index: 199;
  animation: banner-slide-in 0.48s cubic-bezier(.55,.2,.49,.92);
}
@keyframes banner-slide-in {
  from { transform: translateY(150%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 0;
  color: #232323;
  font-size: 1rem;
  max-width: 700px;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 24px;
  border: none;
  padding: 10px 26px;
  transition: background 0.18s, color 0.14s, box-shadow 0.18s;
  background: var(--brand-primary);
  color: #fff;
  font-weight: 600;
  margin-top: 0;
  box-shadow: 0 1px 9px rgba(201,169,75,0.10);
}
.cookie-banner button.accept {
  background: linear-gradient(90deg, var(--brand-secondary) 60%, var(--brand-gold) 100%);
  color: var(--brand-primary);
}
.cookie-banner button.accept:hover {
  background: linear-gradient(90deg, var(--brand-gold) 60%, var(--brand-secondary-dark) 100%);
  color: #fff;
}
.cookie-banner button.reject {
  background: #e1e1e1;
  color: var(--brand-primary);
}
.cookie-banner button.reject:hover {
  background: #c4b982;
  color: var(--brand-primary-darker);
}
.cookie-banner button.settings {
  background: var(--brand-primary);
  color: #fff;
  border: 1.5px solid var(--brand-gold);
}
.cookie-banner button.settings:hover {
  background: var(--brand-secondary);
  color: var(--brand-primary);
}

.cookie-modal {
  position: fixed;
  z-index: 210;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(32,34,32, 0.63);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  animation: fadeInBg 0.23s;
}
@keyframes fadeInBg {
  from { background: rgba(32,34,32,0); }
  to { background: rgba(32,34,32,0.63); }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 18px;
  padding: 42px 32px 30px 32px;
  min-width: 340px;
  max-width: 90vw;
  box-shadow: 0 6px 36px 0 rgba(201,169,75,0.18), 0 1px 28px rgba(21,91,75,0.10);
  animation: panel-scalein 0.28s cubic-bezier(.43,.07,.49,.93);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@keyframes panel-scalein {
  from { transform: scale(0.91); opacity: 0; }
  to { transform: scale(1.00); opacity: 1; }
}
.cookie-modal-content h3 {
  margin-bottom: 16px;
  color: var(--brand-primary);
  font-family: var(--font-display);
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
  width: 100%;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #f7f8fa;
  border-radius: 12px;
  padding: 12px 18px;
  font-size: 1rem;
  width: 100%;
  justify-content: space-between;
}
.cookie-category .toggle {
  width: 38px;
  height: 22px;
  background: #eaf1e9;
  border-radius: 14px;
  border: 1.5px solid #d4d4a8;
  position: relative;
  display: inline-block;
  cursor: pointer;
  margin-left: 10px;
}
.cookie-category .toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-category .toggle-slider {
  position: absolute;
  top: 2.5px;
  left: 2.5px;
  width: 17px;
  height: 17px;
  background: #ece7d6;
  border-radius: 50%;
  transition: 0.18s;
}
.cookie-category .toggle input:checked + .toggle-slider {
  background: var(--brand-gold);
  left: 16px;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  margin-top: 16px;
  width: 100%;
  justify-content: flex-end;
}
.cookie-modal button,
.cookie-modal-actions button {
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 10px 26px;
  border-radius: 24px;
  border: none;
  background: var(--brand-primary);
  color: #fff;
  font-weight: 600;
  transition: background 0.18s, color 0.14s;
  margin-left: 0;
}
.cookie-modal button.accept {
  background: linear-gradient(90deg, var(--brand-secondary) 60%, var(--brand-gold) 100%);
  color: var(--brand-primary);
}
.cookie-modal button.accept:hover {
  background: linear-gradient(90deg, var(--brand-gold) 52%, var(--brand-secondary-dark) 100%);
  color: #fff;
}
.cookie-modal button.reject {
  background: #e1e1e1;
  color: var(--brand-primary);
}
.cookie-modal button.reject:hover {
  background: #c9a94b;
  color: #fff;
}
.cookie-modal-close {
  position: absolute;
  right: 14px;
  top: 12px;
  background: transparent;
  color: var(--brand-primary);
  font-size: 1.85rem;
  border: none;
  cursor: pointer;
  transition: color 0.15s;
  z-index: 6;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: var(--brand-gold);
}

@media (max-width: 480px) {
  .cookie-modal-content {
    padding: 18px 6vw 14px 6vw;
    min-width: 0;
    max-width: 100vw;
  }
}

/* =============
   MICRO EFFECTS
============== */
a, button, .cta, .mobile-menu-toggle, .mobile-menu-close, .footer-nav ul li a, .cookie-banner button, .cookie-modal button {
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, transform 0.14s;
}
.card:hover, .testimonial-card:hover, .features li:hover, .service-list li:hover {
  box-shadow: 0 6px 28px 0 rgba(201,169,75,0.12);
  border-color: var(--brand-gold);
  transform: translateY(-2.5px) scale(1.012);
}

/* ==================
   RESPONSIVENESS
===================*/
@media (max-width: 1190px) {
  .container {
    max-width: 100vw;
  }
}
@media (max-width: 840px) {
  .main-nav {
    padding: 12px 10px;
  }
  .content-wrapper { gap: 18px; }
}
@media (max-width: 600px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.25rem; }
  .footer-contact, .footer-nav ul li a {
    font-size: 0.95rem;
  }
  .cta {
    font-size: 0.97rem;
    padding: 11px 20px;
  }
}

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

/* ================
   MISC
================= */
.section:last-child {
  margin-bottom: 0;
}
hr {
  border: none;
  border-bottom: 1.5px solid #e7eae5;
  margin: 24px 0;
}

::-webkit-scrollbar {
  width: 10px;
  background: #eee;
  border-radius: 6px;
}
::-webkit-scrollbar-thumb {
  background: var(--brand-gold);
  border-radius: 6px;
}

/* END */
