/* ===== 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,
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;
  vertical-align: baseline;
  box-sizing: border-box;
  font: inherit;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: rgba(0,0,0,0.05);
}
body {
  min-height: 100vh;
  background: #fff;
  color: #111;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #19458b;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #af9405;
  outline: none;
}
ul, ol {
  list-style: none;
}
button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  cursor: pointer;
  outline: none;
  appearance: none;
}

/* ====== Luxury Premium Variables ====== */
:root {
  --color-bg: #fff;
  --color-bg-alt: #f5f6fa;
  --color-text: #181f2a;
  --color-primary: #19458b;
  --color-primary-dark: #102c50;
  --color-accent: #af9405;
  --color-accent2: #ecd98f;
  --color-secondary: #ecebea;
  --color-success: #27ae60;
  --color-border: #e0e0e0;
  --color-shadow: rgba(25, 69, 139, 0.06);
  --color-section: #f9f9fa;
  --color-footer: #102c50;

  --font-display: 'Montserrat', Helvetica, Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;

  --radius-xs: 6px;
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --shadow-sm: 0 2px 8px rgba(25, 69, 139, 0.06);
  --shadow-md: 0 4px 20px rgba(25, 69, 139, 0.10);
  --gold-gradient: linear-gradient(90deg, #ecd98f 0%, #af9405 100%);
}

@media (prefers-color-scheme: dark) {
  :root {
    --color-bg: #181f2a;
    --color-bg-alt: #d6d7db;
    --color-text: #a39600;
    --color-secondary: #242c3a;
    --color-footer: #10131d;
    --color-section: #202432;
    --color-shadow: rgba(20,25,45,0.25);
  }
  body { background: var(--color-bg-alt); }
}

/* ====== Container & General Layout ====== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 992px) {
  .content-wrapper {
    gap: 24px;
  }
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-section);
  border-radius: var(--radius-md);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  position: relative;
  padding: 24px;
  min-width: 260px;
  transition: box-shadow 0.2s;
  border: 1px solid var(--color-border);
}
.card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}
.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) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .container, .section {
    padding-left: 8px;
    padding-right: 8px;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin: 14px 0 20px 0;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  font-size: 1.125rem;
  font-family: var(--font-body);
  color: #222;
}
.testimonial-card span {
  font-size: 1rem;
  font-family: var(--font-display);
  color: var(--color-primary);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* ======= HEADER & NAVIGATION ======= */
header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  z-index: 50;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-primary);
  letter-spacing: 0.02em;
  padding: 6px 14px;
  border-radius: var(--radius-xs);
  position: relative;
  transition: color .2s, background .2s;
}
.main-nav a.button-primary {
  margin-left: 8px;
  background: var(--gold-gradient);
  color: #222;
  border-radius: var(--radius-sm);
  font-weight: bold;
  box-shadow: 0 2px 10px rgba(175, 148, 5, 0.08);
  border: none;
  font-family: var(--font-display);
}
.main-nav a.button-primary:hover, .main-nav a.button-primary:focus {
  background: #af9405;
  color: #fff;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent2);
  color: var(--color-primary-dark);
}

/* ======= MOBILE NAVIGATION ======= */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--color-primary);
  margin-left: 12px;
  z-index: 1001;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  transition: background .2s;
}
.mobile-menu-toggle:active {
  background: var(--color-accent2);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  z-index: 1000;
  transform: translateX(-100%);
  transition: transform .35s cubic-bezier(.4,1,.4,1);
  box-shadow: 0 0 48px rgba(16, 44, 80, 0.2);
  display: flex;
  flex-direction: column;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  margin: 20px 24px 0 0;
  background: none;
  border: none;
  color: var(--color-primary);
  cursor: pointer;
  z-index: 1100;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  margin-top: 60px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.21rem;
  font-weight: 500;
  color: var(--color-primary-dark);
  padding: 10px 48px;
  border-radius: var(--radius-sm);
  transition: background .2s, color .2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent2);
  color: var(--color-accent);
}

@media (min-width: 992px) {
  .mobile-menu-toggle, .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 991px) {
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  .mobile-menu {
    display: flex;
  }
}

/* ======= HERO & PAGE SECTION STYLES ======= */
.hero {
  margin-bottom: 60px;
  padding: 48px 0 36px 0;
  background: var(--color-bg-alt);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.3rem;
  color: var(--color-primary-dark);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
}
.hero p {
  font-size: 1.22rem;
  margin-bottom: 24px;
  color: var(--color-text);
}
@media (max-width: 670px) {
  .hero h1 {
    font-size: 1.5rem;
  }
}

.cta {
  background: var(--color-primary);
  color: #fff;
  margin-bottom: 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.cta h2, .cta h1 {
  color: #fff;
  font-family: var(--font-display);
}
.cta p {
  color: #f9f9f9;
}
.cta .button-primary {
  background: var(--gold-gradient);
  color: var(--color-primary);
  font-weight: bold;
  margin-top: 14px;
  border-color: #cfbb56;
}
.cta .button-primary:hover,
.cta .button-primary:focus {
  background: #af9405;
  color: #fff;
}

/* ======= TYPOGRAPHY ======= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary-dark);
  margin-bottom: 8px;
}
h1 { font-size: 2.4rem; }
h2 { font-size: 1.7rem; margin-top: 32px; margin-bottom: 12px; }
h3 { font-size: 1.27rem; }
@media (max-width:600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.16rem; }
  h3 { font-size: 1rem; }
}
p, ul, ol {
  margin-bottom: 8px;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1.04rem;
}
ul, ol {
  padding-left: 1.3em;
  margin-bottom: 18px;
}
ul li, ol li {
  margin-bottom: 8px;
  line-height: 1.7;
  position: relative;
  padding-left: 8px;
  color: #222;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 7px; height: 7px;
  background: var(--color-accent2);
  border-radius: 50%;
  position: absolute;
  left: 0; top: 11px;
}
ol li {
  counter-increment: step;
  padding-left: 0;
}
.privacy-notice {
  font-size: 0.95rem;
  color: #888;
  background: #fcfdec;
  padding: 8px 12px;
  border-radius: var(--radius-xs);
  margin: 8px 0 18px 0;
}

/* ======= BUTTONS ======= */
.button-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.14rem;
  font-weight: 600;
  border: none;
  outline: none;
  border-radius: var(--radius-sm);
  background: var(--gold-gradient);
  color: var(--color-primary-dark);
  padding: 11px 36px;
  margin-top: 6px;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(175, 148, 5, 0.09);
  transition: background .16s, color .16s, box-shadow .2s;
}
.button-primary:hover, .button-primary:focus {
  background: #af9405;
  color: #fff;
  box-shadow: 0 4px 18px 0 rgba(175, 148, 5, 0.13);
}
.button-secondary {
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  padding: 10px 26px;
  border-radius: var(--radius-xs);
  margin-left: 12px;
  transition: background .2s, color .2s;
}
.button-secondary:hover, .button-secondary:focus {
  background: var(--color-accent2);
  color: var(--color-primary-dark);
}

/* ======= CARDS & FAQ ======= */
.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-accent2);
  padding: 22px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.12s;
}
.faq-item h3 {
  color: var(--color-primary);
  font-size: 1.17rem;
  margin-bottom: 11px;
}
.faq-item p {
  color: #36373d;
  font-size: 1.03rem;
}
.faq-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-accent);
}

/* ====== CONTACT INFO SECTION ====== */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 8px 0 0 0;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.07rem;
  color: #222;
  margin-bottom: 6px;
}
.contact-info img {
  width: 20px;
  height: 20px;
}

/* ======= FOOTER ======= */
footer {
  background: var(--color-footer);
  padding: 36px 0 16px 0;
  color: #fff;
}
footer .container { padding-bottom: 0; }
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px 24px;
  justify-content: space-between;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 12px;
  min-width: 160px;
}
footer nav a {
  color: #ecebea;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  opacity: .9;
  padding: 3.5px 0;
  border-radius: var(--radius-xs);
  transition: background 0.16s, color 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: #af9405;
  background: rgba(236, 217, 143, 0.08);
}
.footer-socials {
  display: flex;
  gap: 19px;
  align-items: center;
}
.footer-socials a img {
  width: 28px; height: 28px;
  filter: grayscale(70%) contrast(1.4);
  transition: filter .2s;
}
.footer-socials a:hover img, .footer-socials a:focus img {
  filter: none;
}
.copyright {
  font-size: 0.98rem;
  margin-top: 22px;
  opacity: 0.78;
  width: 100%;
}
footer a img {
  width: 50px;
  margin-bottom: 5px;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ======= COOKIE CONSENT BANNER ======= */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 12500;
  background: #fffdfa;
  color: #222;
  border-top: 1.5px solid #ecd98f;
  box-shadow: 0 -2px 20px 0 rgba(175,148,5,0.04);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 26px 12px 26px 12px;
  transition: transform .3s;
  font-family: var(--font-body);
}
.cookie-banner.hide {
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner p {
  max-width: 680px;
  text-align: center;
  color: #10131d;
  margin-bottom: 6px;
  font-size: 1.04rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 12px;
}
.button-cookie-accept {
  background: var(--gold-gradient);
  color: var(--color-primary);
  border-radius: var(--radius-xs);
  padding: 9px 28px;
  font-weight: 700;
  border: 1px solid #ecd98f;
  margin-right: 4px;
  box-shadow: var(--shadow-sm);
  transition: background .13s, color .13s;
}
.button-cookie-accept:hover,
.button-cookie-accept:focus { background: #af9405; color: #fff; }
.button-cookie-reject {
  background: #ecebea;
  color: #7d6700;
  border-radius: var(--radius-xs);
  padding: 8px 24px;
  font-weight: 500;
  border: 1px solid #ecebea;
  transition: background .12s, color .12s;
}
.button-cookie-reject:hover, .button-cookie-reject:focus {
  background: #fcfdec;
  color: #927624;
}
.button-cookie-settings {
  background: none;
  color: #af9405;
  text-decoration: underline;
  font-weight: 500;
  border: none;
  padding: 8px 14px;
  border-radius: var(--radius-xs);
  transition: background .12s;
}
.button-cookie-settings:hover, .button-cookie-settings:focus {
  background: #f7efd2;
}

/* ===== COOKIE SETTINGS MODAL ===== */
.cookie-modal-overlay {
  position: fixed; top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(24,31,42,0.56);
  z-index: 13000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .22s;
}
.cookie-modal {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  padding: 36px 28px 28px 28px;
  width: 96vw;
  max-width: 430px;
  font-family: var(--font-body);
  color: #10131d;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
  z-index: 13020;
  animation: fadeInModal .18s ease-in;
}
@keyframes fadeInModal {
  0% { transform: scale(0.88) translateY(60px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-title {
  font-size: 1.22rem;
  font-family: var(--font-display);
  font-weight: bold;
  margin-bottom: 12px;
  color: var(--color-primary);
}
.cookie-modal-section {
  margin-bottom: 12px;
}
.cookie-switch-row {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-bottom: 10px;
}
.cookie-switch-label {
  font-size: 1.03rem;
  flex: 1;
}
/* Toggle Switch */
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px; height: 26px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #ecebea;
  border-radius: 20px;
  transition: background .18s;
}
.cookie-switch input:checked + .cookie-slider {
  background: var(--gold-gradient);
}
.cookie-slider:before {
  content: '';
  position: absolute;
  height: 20px;
  width: 20px;
  left: 2.5px;
  bottom: 2.5px;
  border-radius: 50%;
  background: #fff;
  transition: transform .18s;
  box-shadow: 0 2px 6px rgba(24,31,42,0.04);
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
}

.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 10px;
}
.cookie-modal .button-primary {
  padding: 9px 22px;
  min-width: 112px;
  border: 1.4px solid var(--color-accent2);
  margin-top: 0;
}
.cookie-modal .button-secondary {
  padding: 9px 16px;
  margin-left: 0;
}
.cookie-modal .modal-close {
  position: absolute;
  right: 16px; top: 12px;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #af9405;
  cursor: pointer;
  padding: 3px 6px;
  z-index: 2;
}

/* ===== Spacing & Flex Utility Classes (for structure) ===== */
.gap-20 { gap:20px !important; }
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }

/* ===== Miscellaneous ===== */
::-webkit-scrollbar {
  width: 8px;
  background: #f0efeb;
}
::-webkit-scrollbar-thumb {
  background: #ecd98f;
  border-radius: 6px;
}

/* ===== Accessibility focus ===== */
:focus-visible {
  outline: 2px solid #af9405;
  outline-offset: 2px;
}

/* ====== Responsive Design ====== */
@media (max-width: 1170px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .footer-socials a img { width: 22px; height: 22px; }
}
@media (max-width: 730px) {
  .hero {
    padding: 26px 0 24px 0;
  }
  .section {
    padding: 24px 6px;
  }
}
@media (max-width: 420px) {
  .button-primary, .button-secondary, .button-cookie-accept, .button-cookie-reject, .cookie-modal .button-primary, .cookie-modal .button-secondary {
    width: 100%;
    justify-content: center;
  }
  .cookie-banner {
    padding: 16px 6px;
  }
  .cookie-modal {
    padding: 22px 6px 16px 8px;
  }
}

/* Extra Luxury Premium Polish */
.section, .card, .testimonial-card, .faq-item, .cta {
  border-radius: var(--radius-md);
  box-shadow: 0 4px 32px 0 var(--color-shadow);
}
.card, .testimonial-card, .faq-item {
  border: 1.2px solid #ecd98f;
}

.button-primary {
  box-shadow: 0 2px 16px 0 rgba(175,148,5,0.08);
}

/* Heading underline accent */
h2, h1 {
  position: relative;
}
h2:after, h1:after {
  content: '';
  display: block;
  width: 54px;
  height: 3px;
  background: var(--gold-gradient);
  border-radius: 3px;
  margin-top: 9px;
}
@media (max-width: 600px){
  h2:after, h1:after {
    width: 32px;
  }
}

/* ====== Ensure NO content overlap ====== */
main > section, .section, .testimonial-card, .faq-item, .card, .card-container, .content-wrapper {
  margin-bottom: 20px;
}

/* ======= END OF STYLE.CSS ======= */
