/* ===================================================================
   LUXURY PREMIUM RESET & BASE STYLES
   =================================================================== */
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;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #f8f9fb;
  color: #2A3141;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}

*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
}
ul {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s;
}
button,input,textarea,select {
  font-family: inherit;
  font-size: 100%;
  background: none;
  border: none;
  outline: none;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #2A3141;
}

/* =====================
   BRAND VARIABLES
   ===================== */
:root {
  --color-primary: #2A3141;
  --color-secondary: #58828B;
  --color-accent: #F9D885;
  --color-bg-light: #f8f9fb;
  --color-bg-dark: #21242d;
  --color-text-main: #21242d;
  --color-text-dark: #15171f;
  --color-gold: #F9D885;
  --color-gold-dark: #E6C655;
  --color-gold-shadow: rgba(249, 216, 133, 0.4);
  --color-gold-hover: #fbe3a2;
  --color-grey: #a5b2bf;
  --color-muted: #F4F3EF;
  --color-border: #E9E7E1;
  --shadow-main: 0 6px 24px 0 rgba(42,49,65,0.08);
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* =============================
   TYPOGRAPHY HIERARCHY
   ============================= */
h1 {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.18;
  letter-spacing: 0.01em;
}
h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 18px;
  line-height: 1.2;
}
h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 14px;
}
h4, h5, h6 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 10px;
}
p, li, span, address {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-main);
}
p {
  margin-bottom: 1em;
}
strong, b {
  font-weight: bold;
  color: var(--color-primary);
}

/* =======================
   BASE SPACING & LAYOUTS
   ======================= */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px; 
  padding-right: 20px;
  box-sizing: border-box;
}
main {
  min-height: 70vh;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--shadow-main);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px 0 rgba(42,49,65,0.07);
  position: relative;
  padding: 32px 24px;
  flex: 1 1 320px;
  min-width: 300px;
  transition: box-shadow .2s, transform .2s;
  border: 1.5px solid var(--color-border);
}
.card:hover {
  box-shadow: 0 10px 32px rgba(42,49,65,.13);
  transform: translateY(-6px) scale(1.03);
  border-color: var(--color-gold);
}

.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;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 16px 0 rgba(42,49,65,0.08);
  border-left: 5px solid var(--color-gold);
  transition: box-shadow .2s;
  position: relative;
}
.testimonial-card p {
  flex: 1 1 0%;
  color: var(--color-text-dark);
  font-size: 1.07rem;
  line-height: 1.7;
  margin-right: 8px;
}
.testimonial-card span {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--color-secondary);
  opacity: 0.85;
  min-width: 120px;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px 0 rgba(88,130,139,0.12);
}

.service-price {
  color: var(--color-secondary);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 15px;
  display: inline-block;
}

/* ===================
   HEADER & NAVIGATION
   =================== */
header {
  background: #fff;
  box-shadow: 0 2px 18px rgba(42,49,65,0.07);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 110;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 20px;
}
header a img {
  height: 44px;
  width: auto;
  margin-right: 20px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: 10px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 500;
  color: var(--color-primary);
  opacity: .98;
  padding: 4px 2px;
  border-bottom: 2px solid transparent;
  transition: color .15s, border .15s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--color-secondary);
  border-bottom: 2px solid var(--color-gold);
}
.btn-primary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.09rem;
  background: var(--color-gold);
  color: #1d1d1f;
  border-radius: 30px;
  padding: 13px 38px;
  margin-left: 16px;
  box-shadow: 0 3px 18px 0 var(--color-gold-shadow);
  border: 1px solid var(--color-gold-dark);
  cursor: pointer;
  transition: background .18s, color .18s, box-shadow .18s, border .18s, transform .18s;
  text-shadow: 0 1px 4px #fff8;
  letter-spacing: .04em;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-gold-hover);
  color: var(--color-primary);
  border: 1px solid var(--color-gold);
  box-shadow: 0 6px 22px 0 var(--color-gold-shadow);
  transform: translateY(-2px) scale(1.025);
}
.btn-secondary {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.01rem;
  background: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
  border-radius: 30px;
  padding: 11px 34px;
  cursor: pointer;
  margin-top: 18px;
  margin-bottom: 4px;
  box-shadow: 0 2px 6px 0 #e2ecf5bb;
  transition: background .15s, color .15s, border .15s, box-shadow .15s, transform .13s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-secondary);
  color: #fff;
  border: 2px solid var(--color-secondary);
  box-shadow: 0 6px 22px 0 #6a8faabb;
  transform: translateY(-1.5px) scale(1.03);
}

.mobile-menu-toggle {
  display: none;
  background: var(--color-gold);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  color: var(--color-primary);
  border: 1.5px solid var(--color-gold-dark);
  margin-left: 24px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: background .18s, color .18s, box-shadow .18s;
  z-index: 2002;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-gold-hover);
  color: var(--color-secondary);
  box-shadow: 0 0 0 3px var(--color-gold-shadow);
}

/* ================
   MOBILE MENU NAV
   ================ */
.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(42,49,65,.97);
  transform: translateX(-100vw);
  transition: transform .38s cubic-bezier(0.77,0,0.18,1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  color: var(--color-gold);
  background: transparent;
  font-size: 2.1rem;
  font-family: var(--font-body);
  padding: 12px 19px 10px 0;
  margin: 8px 18px 10px 0;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: color .22s;
  z-index: 2100;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  padding: 28px 26px 0 32px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.27rem;
  font-weight: 600;
  color: #fff;
  opacity: .98;
  border-left: 4px solid transparent;
  padding: 8px 0 8px 16px;
  margin-bottom: 2px;
  transition: color .18s, border-color .18s, background .11s;
  border-radius: 4px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-gold);
  background: rgba(249,216,133,.04);
  border-left: 4px solid var(--color-gold);
}

/* ===========================
   HERO / SECTION ELEMENTS
   =========================== */
.hero {
  background: linear-gradient(135deg, #fff 50%, var(--color-muted) 100%);
  border-radius: 0 0 26px 26px;
  box-shadow: 0 6px 36px -10px var(--color-gold-shadow);
  margin-bottom: 64px;
  padding: 58px 0 48px 0;
  position: relative;
}
.hero h1 {
  color: var(--color-primary);
  letter-spacing: .01em;
  font-size: 2.7rem;
}
.hero p {
  font-size: 1.15rem;
  color: var(--color-secondary);
  max-width: 600px;
  margin-bottom: 26px;
}
.hero .btn-primary {
  margin-left: 0;
  font-size: 1.15rem;
  padding: 15px 44px;
  margin-top: 6px;
}

.section ul,
.section ol {
  margin-bottom: 12px;
  padding-left: 25px;
}
.section ul li, .section ol li {
  position: relative;
  margin-bottom: 10px;
  padding-left: 21px;
  font-size: 1rem;
  color: #21242d;
}
.section ul li::before {
  content: '';
  display: inline-block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-gold);
  position: absolute;
  left: 0;
  top: 9px;
}

/* ===========================
   FEATURE & SERVICE AREAS
   =========================== */
ul li img {
  height: 23px;
  width: 23px;
  margin-right: 9px;
  vertical-align: middle;
  transform: translateY(-2px);
  display: inline;
}

/* ===========================
   FOOTER STYLES
   =========================== */
footer {
  background: #21242d;
  color: #F9D885;
  padding: 0;
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 90px;
  padding: 0 20px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  align-items: center;
  padding: 24px 0 22px 0;
  gap: 10px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  font-family: var(--font-body);
  font-size: .97rem;
  color: #F9D885;
  opacity: 0.85;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
  transition: color .17s, border-bottom .17s;
}
.footer-nav a:hover {
  color: #fff;
  border-bottom: 1px solid var(--color-gold);
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer-branding img {
  height: 33px;
  width: auto;
}
.footer-branding span {
  font-family: var(--font-display);
  font-size: .96rem;
  color: #e5cd7f;
  opacity: .84;
}

/* =====================
   COOKIE CONSENT BANNER
   ===================== */
.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #21242d;
  color: var(--color-gold);
  padding: 24px 18px 18px 28px;
  border-radius: 16px;
  box-shadow: 0 4px 30px 0 rgba(42,49,65,.33);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transform: translateY(120px);
  transition: opacity .33s, transform .33s;
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner p {
  color: #F9D885;
  font-size: 1rem;
  flex: 1 1 240px;
}
.cookie-banner .cookie-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: 24px;
  margin-right: 12px;
  padding: 8px 22px;
  border: 2px solid var(--color-gold);
  background: #f9d885;
  color: #15171f;
  cursor: pointer;
  transition: background .14s, color .14s, transform .14s, border .14s;
}
.cookie-banner .cookie-btn:focus,
.cookie-banner .cookie-btn:hover {
  background: var(--color-gold-dark);
  color: var(--color-primary);
  border: 2px solid var(--color-gold);
  transform: translateY(-1px) scale(1.045);
}
.cookie-banner .cookie-reject {
  background: #21242d;
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  margin-right: 0;
}
.cookie-banner .cookie-reject:focus,
.cookie-banner .cookie-reject:hover {
  background: #36260b;
  color: #fff;
  border: 2px solid var(--color-gold-dark);
}
.cookie-banner .cookie-settings {
  background: #fff;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}
.cookie-banner .cookie-settings:focus,
.cookie-banner .cookie-settings:hover {
  background: var(--color-secondary);
  color: #fff;
  border: 2px solid var(--color-secondary);
}

/* Cookie modal */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(42,49,65,.84);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3100;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  color: var(--color-primary);
  border-radius: 18px;
  box-shadow: 0 8px 44px 0 rgba(42,49,65,0.15);
  padding: 36px 28px 22px 28px;
  min-width: 330px;
  max-width: 90vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.cookie-modal-content h3 {
  font-family: var(--font-display);
  font-size: 1.34rem;
  color: var(--color-secondary);
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-family: var(--font-body);
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--color-secondary);
}
.cookie-category label {
  cursor: pointer;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
}
.cookie-modal-actions .cookie-btn {
  font-size: 1rem;
  padding: 8px 22px;
}

/* =============================
   RESPONSIVE - MOBILE FIRST LAYOUT
   ============================= */
@media (max-width: 1024px) {
  .container {
    max-width: 930px;
  }
  .section {
    padding: 30px 10px;
    margin-bottom: 40px;
  }
  .footer-branding img {
    height: 29px;
  }
  .main-nav {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
  }
  .footer-nav {
    gap: 12px;
  }
  .content-grid, .card-container {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }

  header .container {
    flex-direction: row;
    min-height: 62px;
    gap: 8px;
  }
  .main-nav {
    display: none !important;
  }
  .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .section {
    margin-bottom: 28px;
    padding: 23px 4vw;
    border-radius: 11px;
  }
  .content-wrapper, .card-content, .feature-item {
    gap: 12px;
  }
  .hero {
    padding: 32px 0 28px 0;
    border-radius: 0 0 17px 17px;
    margin-bottom: 36px;
  }
  .hero h1 {
    font-size: 2.1rem;
    margin-bottom: 14px;
  }
  .hero p {
    font-size: 1.03rem;
    margin-bottom: 16px;
  }
  .testimonial-card {
    padding: 11px 12px;
    font-size: 1.03rem;
    flex-direction: column;
    gap: 12px;
    border-radius: 8px;
  }
  .card {
    padding: 18px 8px;
    min-width: 215px;
    border-radius: 11px;
  }
  .card-container, .card-grid, .content-grid {
    gap: 10px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 6px;
  }
  .footer-branding {
    gap: 6px;
  }
  .content-grid, .card-container {
    flex-direction: column;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .cookie-modal-content {
    min-width: 94vw;
    padding: 17px 7vw 16px 7vw;
    border-radius: 13px;
    font-size: .97rem;
  }
  .cookie-banner {
    left: 6px;
    right: 6px;
    bottom: 6px;
    padding: 16px 7px 13px 12px;
    border-radius: 8px;
    font-size: .98rem;
  }
}
@media (max-width: 500px) {
  html { font-size: 13.5px; }
  .footer-branding img {
    height: 21px;
  }
  .section ul li img {
    height: 18px;
    width: 18px;
  }
}

/* ==========================
   INTERACTIVE MICRO-EFFECTS
   ========================== */
a, .btn-primary, .btn-secondary, .cookie-btn {
  transition: color .16s, background .18s, border .16s, box-shadow .16s, transform .17s;
}
.card, .testimonial-card {
  transition: box-shadow .2s, border .2s, transform .18s;
}

/* Subtle underline on hover for links */
a:not(.btn-primary):not(.btn-secondary):hover, .footer-nav a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==========================
   FORM STYLES (if any forms)
   ========================== */
input, textarea, select {
  width: 100%;
  padding: 12px 13px;
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  font-size: 1rem;
  margin-bottom: 18px;
  transition: border .14s, box-shadow .14s;
  background: #fff;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 2px 12px 0 #779da521;
}

/* ================================
   GENERAL UTILITY CLASSES
   ================================ */
.mt-2 { margin-top: 16px; }
.mb-2 { margin-bottom: 16px; }
.mt-3 { margin-top: 24px; }
.mb-3 { margin-bottom: 24px; }

.text-center { text-align: center; }

/* =========================
   OVERRIDES & ACCESSIBILITY
   ========================= */
:focus {
  outline: 2px solid var(--color-gold);
  outline-offset: 2px;
}

[tabindex="0"]:focus {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}

/* =============================
   PRINT OVERRIDE
   ============================= */
@media print {
  * { color: #21242d !important; background: #fff !important; }
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal { display: none !important; }
  .section { box-shadow: none !important; border: 0 !important; padding: 0.2em !important; }
}

/* =============================
   END OF STYLE FILE
   ============================= */
