/* ===============================================
   CSS RESET & NORMALIZATION
   =============================================== */
html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body, h1, h2, h3, h4, h5, h6, p, ul, ol, figure, blockquote {
  margin: 0;
}
ul, ol {
  list-style: none;
}
img, picture {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  outline: none;
}

/* ===============================================
   FONT IMPORTS (Luxury/Premium)
   =============================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Roboto:wght@400;500&display=swap');

:root {
  --primary:#0A3A5E;
  --secondary:#5EC6E7;
  --accent:#F3F6FA;
  --gold:#C4A649;
  --dark:#1A232F;
  --text-main:#1A232F;
  --text-light:#F3F6FA;
  --bg-main:#FFFFFF;
  --bg-section:#F3F6FA;
  --border-light: #E4E7EF;
}

body {
  background: var(--bg-main);
  color: var(--text-main);
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  /* Use white space for a premium feel */
  min-height: 100vh;
}

/* ===============================================
   TYPOGRAPHY (Luxury/Premium Scale)
   =============================================== */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.25rem;
  color: var(--primary);
  letter-spacing: 0.01em;
  margin-bottom: 16px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.75rem;
  color: var(--primary);
  margin-bottom: 14px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 10px;
}
h4, .h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--primary);
}
p, li, .text-section {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--text-main);
}
.subheadline {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
  color: var(--dark);
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 22px;
}

/* Gold Text Accent */
.gold-accent, a.gold-accent, .hero .button-primary {
  color: var(--gold);
}

/* ===============================================
   LAYOUT CONTAINERS & SECTIONS
   =============================================== */
.container {
  width: 100%;
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-section);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(10,58,94,0.04);
}

/* Spacings & grids (FLEX ONLY) */
.features,
.card-container,
.feature-grid,
.service-cards,
.card-grid,
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  width: 100%;
}
.content-grid {
  gap: 20px;
}
.card-container {
  gap: 24px;
}
.card {
  background: var(--bg-main);
  margin-bottom: 20px;
  position: relative;
  box-shadow: 0 2px 16px rgba(10,58,94,0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.15s;
}
.card:hover {
  box-shadow:0 6px 32px 0 rgba(196,166,73,0.13);
  transform: translateY(-3px) scale(1.015);
  z-index: 3;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--bg-main);
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(10,58,94,0.07);
  padding: 24px 20px;
  transition: box-shadow 0.2s, transform 0.15s;
  flex: 1 1 240px;
}
.feature-item:hover {
  box-shadow: 0 8px 32px rgba(196,166,73,0.14);
  transform: translateY(-2px) scale(1.01);
}

.feature-grid, .service-cards, .card-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}

/* ===============================================
   HERO/BANNER
   =============================================== */
.hero {
  background: var(--bg-section);
  padding: 64px 0 32px 0;
  border-radius: 0 0 32px 32px;
  margin-bottom: 40px;
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--primary);
}
@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
}

/* ===============================================
   HEADER/NAVIGATION
   =============================================== */
header {
  background: var(--bg-main);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 41;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 10px;
  padding-bottom: 10px;
}
header img {
  height: 48px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 600;
  padding: 6px 8px;
  border-radius: 8px;
  transition: color 0.16s, background 0.18s;
  position: relative;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--gold);
  background: rgba(196,166,73,0.06);
  outline: none;
}
.button-primary {
  background: var(--primary);
  color: var(--gold);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 22px;
  border: none;
  padding: 12px 38px;
  margin-left: 24px;
  box-shadow: 0 2px 8px rgba(10,58,94,0.10);
  transition: background 0.18s, color 0.14s, box-shadow 0.16s, transform 0.12s;
  cursor: pointer;
  position: relative;
  border: 2px solid var(--gold);
  outline: none;
  display: inline-block;
  text-align: center;
}
.button-primary:hover,
.button-primary:focus {
  color: var(--bg-main);
  background: var(--gold);
  transform: translateY(-2px) scale(1.022);
  box-shadow: 0 4px 20px 0 rgba(196,166,73,0.17);
  outline: none;
}

/* ===================== MOBILE MENU ===================== */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: transparent;
  color: var(--gold);
  border: none;
  cursor: pointer;
  transition: color 0.17s;
  margin-left: 18px;
  z-index: 54;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--gold);
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0; left:0; right:0; bottom:0;
  background: var(--bg-main);
  z-index: 50;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.86,0,0.07,1);
  box-shadow: 0 0 12px rgba(10,58,94,0.09);
  padding: 32px 18px 18px 32px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 1.75rem;
  background: none;
  border: none;
  color: var(--gold);
  align-self: flex-end;
  margin-bottom: 12px;
  cursor: pointer;
  transition: color 0.18s;
  z-index: 52;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.13rem;
  color: var(--primary);
  font-weight: 600;
  padding: 14px 0 14px 14px;
  border-radius: 8px 0 0 8px;
  transition: color 0.16s, background 0.16s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--gold);
  background: rgba(196,166,73,0.10);
}

@media (max-width: 991px) {
  .main-nav {
    display: none;
  }
  .button-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ===============================================
   FOOTER AREA
   =============================================== */
footer {
  background: var(--bg-section);
  border-top: 1px solid var(--border-light);
  padding: 28px 0 12px 0;
  margin-top: 48px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 36px;
  justify-content: space-between;
  padding-bottom: 16px;
}
.footer-main-nav,
.footer-links,
.social-media-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 120px;
}
.footer-main-nav a,
.footer-links a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  opacity: .95;
  border-radius: 6px;
  padding: 5px 4px;
  transition: color 0.18s, background 0.16s;
}
.footer-main-nav a:hover,
.footer-links a:hover,
.footer-main-nav a:focus,
.footer-links a:focus {
  color: var(--gold);
  background: rgba(196,166,73,0.06);
  outline: none;
}
.footer-logo img {
  width: 56px;
  height: 56px;
}
.social-media-links {
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.social-media-links img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--gold);
  background: var(--bg-main);
  transition: box-shadow 0.16s;
}
.social-media-links a:hover img,
.social-media-links a:focus img {
  box-shadow:0 2px 8px 0 rgba(196,166,73,0.18);
}
.footer-copy {
  font-size: 0.98rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--primary);
  text-align: center;
  opacity: 0.85;
  margin-top: 15px;
  margin-bottom: 10px;
}

/* ===============================================
   SERVICE CARDS & PRICING TABLE
   =============================================== */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.service-card {
  flex: 1 1 260px;
  background: var(--bg-main);
  border: 1.5px solid var(--border-light);
  border-radius: 16px;
  box-shadow: 0 2px 13px rgba(10,58,94,.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding: 28px 22px 22px 22px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.service-card:hover {
  box-shadow: 0 8px 32px rgba(196,166,73,0.14);
  border-color: var(--gold);
  transform: translateY(-2px) scale(1.015);
  z-index: 4;
}
.service-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 4px;
}
.service-price {
  margin-top: 10px;
  font-weight: 700;
  color: var(--gold);
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  background: var(--bg-main);
}
.price-table th, .price-table td {
  text-align: left;
  padding: 14px 18px;
  font-size: 1.02rem;
  border-bottom: 1px solid var(--border-light);
}
.price-table th {
  background: var(--bg-section);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
}
.price-table tr:last-child td {
  border-bottom: none;
}
.price-table td {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--dark);
}

/* ===============================================
   TESTIMONIALS
   =============================================== */
.testimonials,
.testimonials .content-wrapper {
  width: 100%;
}
.testimonial-slider,
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 14px;
  width: 100%;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  min-width: 260px;
  background: var(--bg-main);
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(10,58,94,0.08);
  border: 1.5px solid var(--border-light);
  margin-bottom: 20px;
  transition: box-shadow 0.22s, border 0.17s;
  color: var(--text-main);
}
.testimonial-card:hover {
  box-shadow: 0 6px 24px rgba(196,166,73,0.13);
  border-color: var(--gold);
}
.testimonial-card p {
  font-size: 1.05rem;
  color: var(--dark);
  font-weight: 500;
}
.testimonial-name {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 0.97rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 6px;
}

.logo-bar {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 30px;
  margin-top: 22px;
}
.logo-bar img {
  width: 56px;
  mix-blend-mode: multiply;
  opacity: 0.8;
}

/* ===============================================
   CONFIRMATION/CTA SECTION
   =============================================== */
.confirmation, .cta {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--bg-main);
  border-radius: 32px;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 22px;
  box-shadow: 0 8px 36px 0 rgba(196,166,73,0.025);
}
.confirmation h1, .cta h1 {
  color: var(--gold);
}

/* ===============================================
   LEGAL & TEXT SECTIONS
   =============================================== */
.legal {
  background: var(--bg-section);
  border-radius: 22px;
  margin-bottom: 60px;
  padding: 40px 20px;
  font-size: 1.06rem;
}
.legal ul {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
}
.legal ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 1rem;
}
.legal ul li:before {
  content: '•';
  color: var(--gold);
  font-weight: bold;
  position: absolute;
  left: 0;
}
.text-section {
  margin: 10px 0 30px 0;
  color: var(--dark);
}

/* ===============================================
   ABOUT PAGE - VALUES-LIST
   =============================================== */
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
  margin-bottom: 10px;
}
.values-list li {
  background: var(--gold);
  color: var(--bg-main);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 14px;
  padding: 8px 18px;
  font-size: 1rem;
  letter-spacing: 0.03em;
  box-shadow: 0 2px 8px rgba(10,58,94,0.05);
}

/* ===============================================
   CONTACT INFO & DETAILS
   =============================================== */
.contact-info, .contact-details {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 12px 0 18px 0;
}
.contact-info strong,
.contact-details strong {
  color: var(--primary);
  font-weight: 700;
}
.contact-info a,
.contact-details a {
  color: var(--secondary);
  border-bottom: 1.5px solid var(--secondary);
  transition: color 0.13s, border 0.12s;
}
.contact-info a:hover, .contact-details a:hover {
  color: var(--gold);
  border-bottom: 1.5px solid var(--gold);
}

/* ===============================================
   COOKIES - FIXED BOTTOM BANNER & MODAL
   =============================================== */
#cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 101;
  background: var(--bg-main);
  box-shadow: 0 -2px 16px rgba(10,58,94,0.08);
  padding: 24px 20px;
  transition: transform 0.33s cubic-bezier(0.68, -0.33, 0.32, 1.34), opacity 0.22s;
  opacity: 1;
}
#cookie-banner.hide {
  opacity: 0;
  transform: translateY(100%);
  pointer-events: none;
}
#cookie-banner .cookie-text {
  font-size: 1rem;
  color: var(--dark);
  margin-right: 22px;
  max-width: 50vw;
}
#cookie-banner .cookie-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-btn {
  padding: 7px 23px;
  border-radius: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--gold);
  background: var(--bg-main);
  color: var(--gold);
  cursor: pointer;
  transition: background 0.17s, color 0.14s, transform 0.12s, box-shadow 0.16s;
}
.cookie-btn.accept {
  background: var(--gold);
  color: var(--bg-main);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--gold);
  color: var(--bg-main);
  transform: translateY(-1px) scale(1.01);
}
.cookie-btn.settings {
  background: var(--bg-section);
  color: var(--gold);
  border: 2px solid var(--gold);
}
#cookie-banner .cookie-btn.reject {
  background: var(--bg-main);
  border: 2px solid #d1b257;
  color: #d1b257;
  margin-right: 0;
}
#cookie-banner .cookie-btn.reject:hover {
  background: #e7ddb2;
  color: var(--primary);
}

/* Cookie Settings Modal */
#cookie-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26,35,47,0.68);
  z-index: 200;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  animation: fadeInModal 0.28s cubic-bezier(0.43, 0.1, 0.28, 0.98);
}
#cookie-modal.open {
  display: flex;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: var(--bg-main);
  border-radius: 22px;
  box-shadow: 0 6px 36px rgba(10,58,94,0.18);
  padding: 34px 30px 18px 30px;
  min-width: 320px;
  max-width: 90vw;
  min-height: 230px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.25rem;
  color: var(--gold);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 14px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
  font-size: 0.98rem;
  color: var(--dark);
}
.cookie-category input[type='checkbox'] {
  width: 18px; height: 18px;
  accent-color: var(--gold);
}
.cookie-category.essential label {
  font-weight: 700;
  color: var(--gold);
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 17px;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 4;
}
.cookie-actionbar {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}

@media (max-width: 768px) {
  #cookie-banner .cookie-text {
    max-width: 70vw;
    margin-right: 0;
    margin-bottom: 16px;
  }
  #cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 10px;
  }
  .cookie-modal-content {
    padding: 18px 8vw 14px 8vw;
    min-width: 0;
    max-width: 96vw;
  }
}

/* ===============================================
   RESPONSIVE DESIGN (Mobile-First)
   =============================================== */
@media (max-width: 991px) {
  .footer-nav {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .footer-logo {
    margin-bottom: 13px;
  }
  .footer-main-nav,
  .footer-links,
  .social-media-links {
    flex-direction: row;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .section,
  .confirmation, .cta, .legal {
    padding: 24px 8px;
    border-radius: 18px;
  }
  .feature-grid,
  .service-cards,
  .testimonial-slider,
  .testimonial-list,
  .logo-bar {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .features,
  .card-container,
  .card-grid,
  .content-grid {
    gap: 18px;
    flex-direction: column;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .hero {
    padding: 38px 0 16px 0;
    border-radius: 0 0 22px 22px;
    margin-bottom: 24px;
  }
}
@media (max-width: 568px) {
  .card,
  .service-card,
  .feature-item,
  .testimonial-card {
    padding: 16px 7px !important;
  }
}

/* ===============================================
   INTERACTIVE EFFECTS & BUTTONS
   =============================================== */
a, button, .button-primary, .cookie-btn {
  transition: color 0.14s, background 0.16s, border 0.16s, box-shadow 0.13s, transform 0.12s;
}
.card, .service-card, .feature-item {
  transition: box-shadow 0.2s, border 0.11s, transform 0.15s;
}
.button-primary:active, .cookie-btn:active {
  transform: scale(0.98);
}

/* Make sure focus is clearly visible for accessibility */
a:focus, button:focus, .button-primary:focus, .cookie-btn:focus {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* ===============================================
   VISUAL MICRO-DETAILS (Luxury/Premium)
   =============================================== */
.card, .service-card, .feature-item, .testimonial-card {
  border: 1.5px solid var(--border-light);
  box-shadow: 0 2px 14px rgba(10,58,94,0.06);
  border-radius: 16px;
  background: var(--bg-main);
}
.card:before, .service-card:before, .feature-item:before, .testimonial-card:before {
  content: '';
  display: block;
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 5px;
  background: linear-gradient(to right,var(--gold),rgba(255,255,255,0) 80%);
  border-radius: 16px 16px 0 0;
  opacity: 0.14;
  pointer-events: none;
}

/* ===============================================
   ENSURE NO ELEMENTS OVERLAP, CRITICAL SPACING
   =============================================== */
.card:not(:last-child), .service-card:not(:last-child), .feature-item:not(:last-child), .testimonial-card:not(:last-child) {
  margin-bottom: 20px;
}
.section:not(:last-child), .legal:not(:last-child), .confirmation:not(:last-child), .cta:not(:last-child) {
  margin-bottom: 60px;
}

/* ===============================================
   FLEXBOX PADDING, ALIGNMENT & HIERARCHY
   =============================================== */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
@media (min-width: 769px) {
  .text-image-section {
    flex-direction: row;
    gap: 30px;
  }
  .feature-grid, .service-cards, .testimonial-slider, .card-container, .content-grid {
    flex-direction: row;
  }
}

/* ==============================================
   SCROLL-LOCK FOR MOBILE MODALS
   ============================================= */
body.modal-open {
  overflow: hidden;
}

/* ==============================================
   HIDE VISUALLY BUT ACCESSIBLE FOR SCREENREADERS
   ============================================= */
.sr-only {
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}

/* ===============================================
   PRINT STYLES (MINIMAL)
   =============================================== */
@media print {
  header, footer, #cookie-banner, #cookie-modal, .mobile-menu { display: none !important; }
  body { color: #000; background: #fff; }
  * { background: none !important; color: #000 !important; box-shadow: none !important; }
}

/* ===============================================
   END OF LUXURY PREMIUM CSS
   =============================================== */
