/* RESET & NORMALIZATION */
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 {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  font-family: 'Open Sans', Arial, sans-serif;
  background-color: #FAFAFA;
  color: #2D3137;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
button {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 16px 12px;
  text-align: left;
}
th {
  background: #F7F7F8;
  font-weight: 700;
}

/* LUXURY PREMIUM VARIABLES */
:root {
  --primary: #005C75;
  --primary-rgb: 0,92,117;
  --secondary: #FFFFFF;
  --bg-light: #FCFCFC;
  --section-bg: #F1F4F5;
  --accent: #B32D3E;
  --accent-gold: #BFA066;
  --accent-pink: #EB7F8C;
  --text-color: #2D3137;
  --text-on-dark: #fff;
  --shadow: 0 4px 24px rgba(33, 25, 13, 0.06);
  --border-radius: 16px;
  --border-radius-sm: 8px;
  --easing: cubic-bezier(.46,.03,.52,.96);
}


/* FONT IMPORTS */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--primary);
  margin-bottom: 0.6em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 0.8em;
  line-height: 1.15;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 0.7em;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 0.6em;
}
p, ul, ol, address, blockquote {
  color: var(--text-color);
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 1.2em;
}
strong {
  font-weight: 600;
  color: var(--primary);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}


/* HEADER STYLES */
header {
  background: var(--secondary);
  box-shadow: 0 2px 12px rgba(0,34,51,0.05);
  position: relative;
  z-index: 101;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  gap: 24px;
}
header img {
  height: 48px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 5px 0;
  border-bottom: 2px solid transparent;
  transition: border 0.15s, color 0.2s;
  color: var(--primary);
}
.main-nav a:hover,
.main-nav a:focus {
  border-bottom: 2px solid var(--accent-gold);
  color: var(--accent-gold);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 32px;
  border-radius: var(--border-radius-sm);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  background: var(--accent-gold);
  color: #fff;
  box-shadow: 0 2px 8px rgba(191,160,102,0.07);
  border: none;
  cursor: pointer;
  transition: background 0.3s var(--easing), color 0.15s, box-shadow 0.2s;
  margin-left: 32px;
  position: relative;
  z-index: 1;
}
.cta.primary {
  background: var(--primary);
  color: #fff;
  border: 1.5px solid var(--accent-gold);
}
.cta:hover, .cta:focus {
  background: var(--accent-gold);
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(191,160,102,0.20);
}
.cta:active { background: #8F6B22; }

/* MOBILE MENU (BURGER) */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 19px;
  right: 24px;
  z-index: 201;
  width: 44px;
  height: 44px;
  background: var(--primary);
  color: #fff;
  font-size: 2rem;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--accent-gold);
}
.mobile-menu-toggle:hover {
  background: var(--accent-gold);
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(0,0,0,0.45);
  z-index: 300;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: flex-end;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s var(--easing);
}
.mobile-menu.open {
  pointer-events: all;
  opacity: 1;
}
.mobile-menu > nav,
.mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
  background: var(--secondary);
  min-width: 270px;
  max-width: 85vw;
  padding: 48px 32px 32px 32px;
  align-items: flex-start;
  gap: 16px;
  height: 100vh;
  box-shadow: -4px 0 20px rgba(33,25,13,0.06);
  transform: translateX(100%);
  transition: transform 0.28s var(--easing);
  z-index: 301;
}
.mobile-menu.open .mobile-nav {
  transform: translateX(0%);
}
.mobile-menu-close {
  position: absolute;
  top: 12px; right: 24px;
  font-size: 2rem;
  color: var(--primary);
  background: none;
  border: none;
  z-index: 305;
  transition: color 0.2s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--accent-gold);
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 600;
  color: var(--primary);
  padding: 10px 0;
  border-bottom: 1.5px solid transparent;
  border-radius: 3px;
  width: 100%;
  transition: color 0.18s, border 0.15s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--accent-gold);
  border-bottom: 1.5px solid var(--accent-gold);
  background: #FAF7EF;
}

@media (max-width:1120px) {
  .container {
    max-width: 1000px;
  }
}
@media (max-width:900px) {
  .container {
    max-width: 97vw;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 18px;
  }
  .cta {
    margin-left: 12px;
  }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 10px;
    padding: 16px 12px;
  }
  .main-nav {
    display: none;
  }
  .cta {
    margin-left: 0;
    padding: 10px 18px;
    font-size: 0.97rem;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* SECTION SPACING & LAYOUTS */
.section,
.hero,
.features,
.services-preview,
.testimonials-preview,
.contact-cta,
.services,
.consultation,
.about,
.pricing,
.gallery,
.privacy-policy,
.gdpr,
.cookies,
.terms,
.testimonials,
.thank-you,
.contact {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--section-bg);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 14px rgba(191,160,102,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.content-grid, .card-container, .features ul, .services ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card {
  background: #fff;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  box-shadow: var(--shadow);
  position: relative;
  padding: 32px 28px;
  transition: box-shadow 0.22s var(--easing), transform .14s;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(191,160,102,0.22);
  transform: translateY(-2px) scale(1.012);
}

.text-image-section, .text-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.text-section {
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.feature-item, .features ul li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  font-size: 1.09rem;
  background: #fff;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 1px 8px rgba(191,160,102,0.07);
  padding: 20px 24px;
  margin-bottom: 20px;
  color: var(--primary);
  position: relative;
  border-left: 4px solid var(--accent-gold);
}
.features ul {
  width: 100%;
  gap: 24px;
  flex-direction: column;
}
.features ul li img {
  width: 32px;
  height: 32px;
  margin-right: 14px;
  vertical-align: middle;
  display: inline-block;
}

.services-preview ul, .services ul {
  flex-direction: column;
}
.services-preview ul li,
.services ul li {
  background: #fff;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 2px 11px rgba(191,160,102,0.07);
  padding: 22px 24px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 3px solid var(--primary);
  position: relative;
  transition: box-shadow 0.2s, border 0.2s;
}
.services ul li img {
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
}
.services ul li strong,
.services-preview ul li strong {
  color: var(--primary);
  font-size: 1.13rem;
}
.services ul li:hover,
.services-preview ul li:hover {
  box-shadow: 0 8px 24px rgba(191,160,102,0.13);
  border-left: 3px solid var(--accent-gold);
}

/* TESTIMONIAL CARD */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px ;
  background: #fff;
  border-radius: var(--border-radius-sm);
  box-shadow: 0 2px 18px rgba(0,92,117,0.07);
  margin-bottom: 24px;
  transition: box-shadow 0.18s;
  flex-wrap: wrap;
  max-width: 600px;
}
.testimonial-card blockquote {
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.14rem;
  font-style: italic;
  margin-bottom: 0;
  margin-right: 16px;
}
.testimonial-card div {
  color: #222;
  font-size: 1rem;
}
.testimonial-card strong {
  color: var(--accent-gold);
  font-weight: 700;
}
.testimonial-card:hover {
  box-shadow: 0 8px 26px rgba(191,160,102,0.16);
}

/* --- TABLES: Pricing ---*/
.price-table {
  width: 100%;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  margin: 0 0 32px 0;
}
.price-table th, .price-table td {
  border-bottom: 1px solid #E5EDF1;
  color: var(--text-color);
}
.price-table th {
  color: var(--primary);
  background: #F7F7F8;
}
.price-table tr:last-child td {
  border-bottom: none;
}
.price-table td:last-child {
  font-weight: 700;
  color: var(--accent-gold);
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- FOOTER --- */
footer {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 -2px 12px rgba(0,92,117,0.18);
  position: relative;
  margin-top: 44px;
}
footer .container {
  padding: 32px 24px 14px 24px;
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 26px;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border 0.15s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--accent-gold);
  border-bottom: 2px solid var(--accent-gold);
}
.footer-contact {
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}
.footer-copy {
  font-size: 0.93rem;
  opacity: 0.7;
  margin-top: 10px;
}

/* --- HERO SECTION (HOME) --- */
.hero {
  background: linear-gradient(88deg, #FAFAFA 85%, #fffacd 100%);
  min-height: 340px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 9px 42px rgba(191,160,102,0.09);
  margin-bottom: 60px;
}
.hero .container {
  align-items: flex-start;
}
.hero .content-wrapper {
  gap: 18px;
  padding: 24px 10px;
  align-items: flex-start;
}
.hero h1 {
  color: var(--primary);
  font-size: 2.4rem;
  line-height: 1.11;
}
.hero p {
  color: #555;
  font-size: 1.16rem;
}
.hero .cta {
  margin-left: 0;
  font-size: 1.04rem;
}

/* --- THANK-YOU --- */
.thank-you .text-section p {
  color: var(--primary);
  font-size: 1.13rem;
}

/* --- CONTACT --- */
address {
  font-style: normal;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 1em;
  font-size: 1.08rem;
}
.contact .text-section > a {
  color: var(--accent-gold);
  font-weight: 600;
}

/* --- MODALS --- */
.modal-overlay {
  position: fixed;
  top: 0; left:0;
  width: 100vw; height: 100vh;
  background: rgba(33,25,13,0.23);
  z-index: 800;
  display: none;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s;
}
.modal-overlay.active {
  display: flex;
  pointer-events: all;
  opacity: 1;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--border-radius);
  max-width: 420px;
  width: 92vw;
  padding: 32px 26px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 20px 80px rgba(191,160,102,0.21);
  position: relative;
  animation: fadeInModal 0.43s var(--easing);
}
@keyframes fadeInModal {
  from { transform: scale(.96) translateY(32px); opacity: 0; }
  to { transform: none; opacity: 1; }
}
.cookie-modal h2 {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 0.4em;
  font-family: 'Montserrat', Arial, sans-serif;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.03rem;
  margin-bottom: 17px;
}
.cookie-category label {
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  color: var(--primary);
}
.cookie-toggle {
  width: 46px;
  height: 26px;
  border-radius: 14px;
  background: #e8e8e8;
  position: relative;
  transition: background 0.22s;
  display: inline-flex;
  align-items: center;
}
.cookie-toggle input[type="checkbox"] {
  width: 0; height: 0; opacity: 0; position: absolute;
}
.cookie-toggle .slider {
  position: absolute;
  top: 3px; left: 4px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.19s, background 0.2s;
  box-shadow: 0 1px 4px rgba(0,20,38,0.09);
}
.cookie-toggle input:checked + .slider {
  left: 22px;
  background: var(--primary);
}
.cookie-toggle input:checked ~ .slider {
  background: var(--accent-gold);
}

.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 10px;
  justify-content: flex-end;
}
.cookie-modal button {
  background: var(--primary);
  color: #fff;
  border-radius: var(--border-radius-sm);
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 10px 22px;
  margin-left: 0px;
  transition: background 0.18s, color 0.13s;
}
.cookie-modal button.secondary {
  background: var(--accent-gold);
  color: #fff;
}
.cookie-modal button:focus {
  outline: 2px solid var(--accent-gold);
}
.cookie-modal button:hover {
  background: var(--accent-gold);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  background: #fff;
  border-top: 3px solid var(--accent-gold);
  box-shadow: 0 -4px 18px rgba(191,160,102,0.12);
  padding: 24px 12px 20px 12px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  opacity: 1;
  transition: transform 0.26s var(--easing), opacity 0.22s;
}
.cookie-banner.closed {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner p {
  color: var(--primary);
  font-size: 1.01rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: var(--border-radius-sm);
  border: none;
  background: var(--primary);
  color: #fff;
  margin-left: 0;
  transition: background 0.14s, color 0.12s;
}
.cookie-banner .settings {
  background: var(--accent-gold);
  color: #fff;
}
.cookie-banner button:hover,
.cookie-banner button:focus {
  background: var(--accent-gold);
  color: #fff;
}
.cookie-banner .settings:hover {
  background: #F1CA71;
  color: #2d2d2d;
}


/* --- RESPONSIVE & FLEX DIRECTION ---*/
@media (max-width:900px) {
  .section,
  .hero,
  .features,
  .services-preview,
  .testimonials-preview,
  .contact-cta,
  .services,
  .about,
  .pricing,
  .gallery,
  .privacy-policy,
  .gdpr,
  .cookies,
  .terms,
  .testimonials,
  .thank-you,
  .contact {
    padding: 30px 7px;
    margin-bottom: 36px;
    border-radius: 10px;
  }
  .card {
    padding: 18px 10px;
  }
}
@media (max-width: 768px) {
  .content-wrapper {
    gap: 16px;
    padding: 0;
  }
  .content-grid, .card-container, .features ul, .services ul {
    gap: 15px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 9px;
  }
  .footer-contact, .footer-copy {
    font-size: 0.92rem;
    text-align: center;
  }
  .testimonial-card {
    padding: 13px 9px;
    font-size: 0.97rem;
  }
  .card, .feature-item, .features ul li, .services ul li, .services-preview ul li {
    padding: 13px 8px;
    font-size: 0.99rem;
  }
  .section,
  .hero,
  .features,
  .services-preview,
  .testimonials-preview,
  .contact-cta,
  .services,
  .about,
  .pricing,
  .gallery,
  .privacy-policy,
  .gdpr,
  .cookies,
  .terms,
  .testimonials,
  .thank-you,
  .contact {
    padding: 19px 2vw;
    margin-bottom: 28px;
    border-radius: 7px;
  }
  .text-image-section, .text-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
  }
}


/* --- UTILITIES --- */
.bg-gold {
  background: var(--accent-gold) !important;
  color: #fff !important;
}
.bg-primary {
  background: var(--primary) !important;
  color: #fff;
}
.text-gold {
  color: var(--accent-gold)!important;
}
.text-primary {
  color: var(--primary)!important;
}


/* --- MICRO-INTERACTIONS & TRANSITIONS --- */
a, button, .cta, .main-nav a, .mobile-nav a, .footer-nav a, .testimonial-card {
  transition: color 0.18s, border 0.16s, background 0.16s, box-shadow 0.18s, transform 0.13s;
}

a:focus, button:focus, .cta:focus, .main-nav a:focus, .mobile-nav a:focus {
  outline: 2px solid var(--accent-gold);
  outline-offset: 2px;
}

::-webkit-scrollbar {
  width: 10px;
  background: #F1F4F5;
}
::-webkit-scrollbar-thumb {
  background: var(--accent-gold);
  border-radius: 8px;
}


/* --- SPECIAL LUXURY TOUCHES --- */
::selection {
  background: var(--accent-gold);
  color: #fff;
}

.card::before,
.services ul li::before,
.feature-item::before {
  content: "";
  display: none;
  position: absolute;
  left: -7px;
  top: 22px;
  width: 13px;
  height: 13px;
  background: var(--accent-gold);
  border-radius: 50%;
  box-shadow: 0 0 14px 3px rgba(191,160,102,0.14);
  z-index: 1;
}

.services ul li strong,
.services-preview ul li strong {
  font-family: 'Montserrat', Arial, sans-serif;
}

/* --- GENERAL ACCESSIBILITY STYLES --- */
[tabindex]:focus {
  outline: 2px solid var(--accent-gold) !important;
  outline-offset: 3px;
}

/* --- PRINT STYLES --- */
@media print {
  .mobile-menu,
  .cookie-banner,
  .modal-overlay,
  .cta,
  header,
  footer {
    display: none !important;
  }
  .container {
    max-width: none;
    width: 98vw;
    padding: 0 1vw !important;
  }
}
