/* =========================
    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 {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
}
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #f5f5f2;
  color: #284760;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
ol, ul { list-style: none; }
a { text-decoration: none; color: inherit; transition: color .25s; }
button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

/* =========================
    BRAND TYPOGRAPHY
============================ */
@import url('https://fonts.googleapis.com/css?family=Montserrat:600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #1e293b;
  letter-spacing: -0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 1.75rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 16px; }
h4 { font-size: 1.1rem; }

p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #284760;
  margin-bottom: 12px;
}
strong { font-family: 'Montserrat', Arial, sans-serif; font-weight: 600; color: #28323f; }

/* =========================
    LUXURY PREMIUM COLORS
============================ */
:root {
  --color-primary: #284760;
  --color-secondary: #669dab;
  --color-accent: #f5f5f2;
  --color-text-dark: #222;
  --color-text-light: #fff;
  --color-gold: #ceb043;
  --box-shadow: 0 8px 32px rgba(49, 56, 85, 0.08), 0 1.5px 6px rgba(63, 59, 33, 0.07);
  --radius-lg: 18px;
  --radius-sm: 10px;
  --radius-xs: 6px;
}

/* =========================
    CONTAINER & FLEX LAYOUT
============================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--box-shadow);
  position: relative;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  margin-bottom: 20px;
  border-radius: var(--radius-lg);
  box-shadow: 0 3px 18px rgba(40,71,96,0.07),0 1px 2px rgba(40,71,96,0.05);
  position: relative;
  min-width: 220px;
  flex: 1 1 220px;
  padding: 24px;
  transition: box-shadow .25s, transform .2s;
  border: 1.5px solid rgba(206,176,67,0.13);
}
.card:hover {
  box-shadow: 0 8px 24px rgba(40,71,96,0.10), 0 3px 9px rgba(40,71,96,0.09);
  transform: translateY(-3px) scale(1.02);
  border-color: var(--color-gold);
  z-index: 3;
}

.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #fffbe6;
  color: #192031;
  border-left: 6px solid var(--color-gold);
  border-radius: var(--radius-sm);
  box-shadow: 0 3px 12px rgba(206,176,67,0.09);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 600px;
  transition: box-shadow 0.2s, border 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 7px 28px rgba(206,176,67,0.16);
  border-left-color: #a18d1e;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

/* =========================
    HEADER & NAVIGATION
============================ */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(40,71,96,0.07);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  padding: 7px 8px 7px 0;
}
header nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-primary);
  padding: 7px 6px;
  border-bottom: 2.5px solid transparent;
  transition: color .2s, border .22s;
}
header nav a:hover, header nav a.active {
  color: var(--color-gold);
  border-bottom-color: var(--color-gold);
}
.btn-primary,
.btn-secondary {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 12px 32px;
  border-radius: 999px;
  transition: background .23s, color .22s, box-shadow .19s;
  background: var(--color-primary);
  color: #fffbe6;
  box-shadow: 0 4px 16px rgba(40,71,96,0.09);
  border: 2px solid var(--color-gold);
  letter-spacing: 0.01em;
  cursor: pointer;
  margin-top: 8px;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--color-gold);
  color: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 6px 20px rgba(206,176,67,0.18);
}
.btn-secondary {
  background: transparent;
  border: 2px solid var(--color-gold);
  color: var(--color-primary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--color-gold);
  color: #fff;
  box-shadow: 0 6px 20px rgba(206,176,67,0.16);
}

/* --- Mobile Menu --- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-gold);
  color: var(--color-primary);
  border: none;
  font-size: 2rem;
  padding: 8px 16px;
  border-radius: var(--radius-xs);
  cursor: pointer;
  margin-left: 14px;
  transition: background .18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--color-primary);
  color: #fffbe6;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #222e40ee;
  z-index: 100;
  transform: translateX(-100%);
  transition: transform .34s cubic-bezier(.7,0,.3,1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  box-shadow: 0 6px 60px 0 rgba(40,71,96,0.17);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 26px;
  right: 34px;
  font-size: 2.2rem;
  color: var(--color-gold);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: inherit;
  padding: 4px 12px;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fffbe6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 110px;
  margin-left: 35px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fffbe6;
  font-size: 1.25rem;
  padding: 14px 12px;
  border-radius: 6px;
  transition: background .19s, color .18s;
  min-width: 220px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-gold);
  color: var(--color-primary);
}

/* Hide desktop nav & show burger on small screens */
@media (max-width: 1024px) {
  header nav { display: none; }
  .mobile-menu-toggle { display: block; }
}

/* =========================
    MAIN CONTENT
============================ */
main {
  flex: 1 1 auto;
  min-height: 380px;
  background: var(--color-accent);
}
section {
  width: 100%;
}

/* =========================
    FOOTER
============================ */
footer {
  background: #222e40;
  color: #e7e6db;
  font-size: 1rem;
  margin-top: 60px;
  letter-spacing: 0.01em;
  font-family: 'Roboto', Arial, sans-serif;
}
.footer-top {
  border-bottom: 1.5px solid #2d3d56;
  padding: 38px 0 28px 0;
}
.footer-top .container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 32px;
}
.footer-top .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 34px;
  width: 100%;
  justify-content: space-between;
  padding: 0;
}
.footer-logo img {
  width: 120px;
  margin-bottom: 20px;
}
.footer-nav, .footer-legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-nav a, .footer-legal a {
  color: #e7e6db;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  transition: color .21s;
  border-bottom: 1.5px solid transparent;
}
.footer-nav a:hover, .footer-legal a:hover {
  color: var(--color-gold);
  border-bottom: 1.5px solid var(--color-gold);
}
.footer-bottom {
  padding: 20px 0 14px 0;
  background: #1a2130;
}
.footer-bottom .container {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footer-bottom .content-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 18px;
}
.company-address, .company-contact, .copyright { font-size: 0.98rem; }
.company-address { color: #d2c977; }
.company-contact a {
  color: #e0be57;
  border-bottom: 1px solid var(--color-gold);
}
.company-contact a:hover { color: #fffbe6; border-color: #fffbe6; }

/* =========================
    CARDS, TESTIMONIALS, FAQ
============================ */
li {
  margin-bottom: 6px;
  padding-left: 0;
  position: relative;
}
ul {
  margin-bottom: 16px;
}
.content-wrapper ul {
  padding-inline-start: 0px;
}

.testimonial-card p {
  font-size: 1.08rem;
  font-style: italic;
  color: #222;
  margin-bottom: 4px;
}
.testimonial-card span {
  font-size: 1rem;
  color: var(--color-primary);
  font-weight: 500;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 0;
}

.pricing-overview {
  margin-top: 20px;
  padding: 24px 30px;
  border-radius: var(--radius-sm);
  background: #faf9f4;
  border: 1.5px solid var(--color-gold);
  box-shadow: 0 2px 10px rgba(206,176,67,0.09);
}

.faq-list h3 {
  font-size: 1.08rem;
  color: var(--color-gold);
  margin-bottom: 6px;
}
.faq-list p {
  color: #222E40;
}

.text-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* =========================
    COOKIE CONSENT BANNER
============================ */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  z-index: 300;
  background: #222e40;
  color: #fffbe6;
  padding: 22px 24px;
  box-shadow: 0 -2px 20px #0002;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  font-size: 1rem;
  flex-wrap: wrap;
  animation: cookie-fade-in 0.7s cubic-bezier(.55,.09,.68,.53);
}
@keyframes cookie-fade-in {
  from { opacity: 0; transform: translateY(60px); } to { opacity: 1; transform: translateY(0); }
}
.cookie-banner .cookie-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 9px 22px;
  border-radius: 999px;
  border: 2px solid var(--color-gold);
  background: var(--color-primary);
  color: #fffbe6;
  cursor: pointer;
  margin: 0 4px 0 0;
  transition: background .2s, color .15s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-gold);
  color: var(--color-primary);
}
.cookie-banner .btn-secondary {
  background: transparent;
  color: var(--color-gold);
  border-color: var(--color-gold);
}
.cookie-banner .btn-secondary:hover, .cookie-banner .btn-secondary:focus {
  background: var(--color-gold);
  color: #222e40;
}
/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top:0; bottom:0;
  background: rgba(36,48,68,0.68);
  z-index: 301;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: cookie-fade-in 0.5s cubic-bezier(.42,.1,.53,.77);
}
.cookie-modal-content {
  background: #fffbe6;
  color: #222e40;
  min-width: 320px;
  max-width: 420px;
  padding: 32px 38px;
  border-radius: var(--radius-lg);
  box-shadow: 0 9px 36px #222e40aa;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.cookie-modal-content h4 {
  color: var(--color-gold);
  font-size: 1.21rem;
  margin-bottom: 4px;
}
.cookie-modal-content label {
  font-size: 1rem;
  color: #222e40;
  margin-right: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-modal-content .close-btn {
  position: absolute;
  top: 20px;
  right: 26px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--color-gold);
  cursor: pointer;
  transition: color .16s;
}
.cookie-modal-content .close-btn:hover { color: var(--color-primary); }

.toggle-switch {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
}
.toggle-switch input[type="checkbox"] {
  display: none;
}
.toggle-slider {
  height: 22px;
  width: 42px;
  border-radius: 18px;
  background: #d7c657;
  position: relative;
  transition: background 0.2s;
  cursor: pointer;
}
.toggle-slider:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  height: 18px;
  width: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1.5px 8px #b89a2a29;
  transition: left 0.17s;
}
.toggle-switch input:checked + .toggle-slider {
  background: var(--color-gold);
}
.toggle-switch input:checked + .toggle-slider:before {
  left: 22px;
}

/* =========================
    RESPONSIVE DESIGN
============================ */
@media (max-width: 1100px) {
  .footer-top .container, .footer-top .content-wrapper {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
  }
  .footer-logo {
    margin-bottom: 12px;
  }
  .footer-bottom .container, .footer-bottom .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}

@media (max-width: 768px) {
  .container { padding-left: 10px; padding-right: 10px; }
  .section { padding: 22px 7px; margin-bottom: 38px; }
  .content-wrapper, .text-section {
    gap: 16px;
  }
  .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
  }
  .card {
    min-width: unset;
    width: 100%;
    padding: 14px;
  }
  .testimonial-card {
    max-width: unset;
    min-width: unset;
    padding: 14px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-bottom .content-wrapper,
  .footer-top .content-wrapper { flex-direction: column; gap: 18px; align-items: flex-start; }
}

@media (max-width: 600px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.21rem; }
  .footer-logo img { width: 98px; }
  .btn-primary, .btn-secondary, .cookie-banner button {
    padding: 10px 16px;
    font-size: 1rem;
  }
  .cookie-modal-content { padding: 20px 12px; min-width: 200px; }
  .mobile-nav a { font-size: 1.11rem; padding: 12px 8px; min-width:140px; }
}

/* =========================
    MODERN LUXURY DETAILS
============================ */
.section {
  border: 1.5px solid rgba(206,176,67,0.08);
  box-shadow: 0 7px 32px #ceb04311;
}
.section:after {
  content: '';
  display: block;
  position: absolute;
  top: 18px; left: 20px;
  width: 48px; height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-gold) 65%, transparent 98%);
  opacity: 0.15;
}
@media (max-width: 600px) {
  .section:after { left: 8px; top: 10px; width: 32px; }
}
.card {
  border: 1.5px solid rgba(206,176,67,0.13);
}

/* =========================
   UTILITY CLASSES
============================ */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }

/***** End of CSS file *****/
