/* CSS RESET & NORMALIZATION */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  background: #f7f9fb;
  color: #193B52;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-text-size-adjust: 100%;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #193B52;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #d4af37;
}

/* LUXURY PREMIUM BRAND COLORS */
:root {
  --color-primary: #193B52;
  --color-secondary: #41A2C0;
  --color-accent: #F7F9FB;
  --color-gold: #d4af37;
  --color-dark: #101924;
  --color-heading: #172836;
  --color-body: #25385B;
  --color-muted: #aab6c8;
  --color-white: #fff;
  --color-shadow: rgba(25,59,82,0.07);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--color-heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.015em;
}
h1 {
  font-size: 2.3rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* HEADER */
header {
  background: var(--color-white);
  box-shadow: 0 2px 12px var(--color-shadow);
  padding: 0 0;
  border-bottom: 2px solid #e5e8ee;
  z-index: 22;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px 14px 20px;
}
header img {
  max-height: 46px;
}
nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-body);
  position: relative;
  padding: 2px 4px;
  transition: color .2s;
}
nav a.cta {
  background: var(--color-gold);
  color: var(--color-primary);
  border-radius: 28px;
  padding: 10px 26px;
  font-size: 1rem;
  font-weight: 700;
  margin-left: 16px;
  box-shadow: 0 2px 14px 0 rgba(212,175,55,.07);
  transition: background .2s, color .2s, box-shadow .2s;
  border: none;
}
nav a.cta:hover, nav a.cta:focus {
  background: #191919;
  color: var(--color-gold);
  box-shadow: 0 5px 20px 0 rgba(212,175,55,.12);
}
nav a.active {
  color: var(--color-gold);
  font-weight: 700;
}
nav a:not(.cta):after {
  content: '';
  display: block;
  height: 2px;
  width: 0%;
  background: var(--color-gold);
  margin-top: 3px;
  border-radius: 1.5px;
  transition: width .2s;
}
nav a:not(.cta):hover:after, nav a:not(.cta):focus:after {
  width: 80%;
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(25,59,82,0.95);
  z-index: 999;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  transform: translateX(-100%);
  transition: transform .38s cubic-bezier(.76,.03,.18,.86);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}

.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  margin: 18px 18px 0 0;
  background: none;
  border: none;
  color: var(--color-gold);
  cursor: pointer;
  transition: color .18s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #fff;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 36px 26px;
  margin-top: 16px;
}
.mobile-nav a {
  color: var(--color-white);
  font-size: 1.2rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.09);
  transition: color .18s;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-gold);
}

@media (max-width: 1024px) {
  nav {
    gap: 18px;
  }
}
@media (max-width: 880px) {
  nav {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
    background: transparent;
    border: none;
    font-size: 2.2rem;
    color: var(--color-gold);
    cursor: pointer;
    margin-left: 24px;
    transition: color .17s;
    z-index: 2000;
  }
  .mobile-menu {
    display: flex;
  }
  .container {
    padding: 0 10px;
  }
}

/* HERO SECTIONS */
.hero {
  display: flex;
  width: 100%;
  padding: 56px 0 32px 0;
  background: linear-gradient(90deg, var(--color-accent) 85%, #fff 100%);
  border-bottom: 2px solid #e7e9ee;
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  gap: 16px;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.6rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}
.hero p {
  color: var(--color-body);
  font-size: 1.17rem;
  margin-bottom: 14px;
}
.hero .cta {
  margin-top: 8px;
}

@media (max-width: 768px) {
  .hero {
    padding: 34px 0 18px 0;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/* CTA BUTTONS */
.cta, a.cta, button.cta {
  display: inline-block;
  background: var(--color-gold);
  color: var(--color-primary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  border-radius: 28px;
  border: none;
  box-shadow: 0 2px 16px 0 rgba(212,175,55,.06);
  outline: none;
  padding: 12px 34px;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s, transform .12s;
}
.cta:hover, .cta:focus {
  background: #191919;
  color: var(--color-gold);
  box-shadow: 0 7px 22px 0 rgba(212,175,55,.16);
  transform: translateY(-1px) scale(1.04);
  text-decoration: none;
}

/* Shaped sections and accent lines */
section {
  border-radius: 18px;
  box-shadow: 0 4px 38px 0 rgba(25,59,82,0.04);
  margin-bottom: 60px;
  background: var(--color-white);
}
section:last-child {
  margin-bottom: 0;
}

/* FLEXBOX MANDATORY SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-white);
  border-radius: 16px;
  box-shadow: 0 3px 24px 0 rgba(25,59,82,.07);
  padding: 30px 26px 22px 26px;
  transition: box-shadow .19s, transform .16s;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.card:hover, .card:focus {
  box-shadow: 0 9px 38px 0 rgba(25,59,82,.11);
  transform: translateY(-2px) scale(1.01);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-accent);
  color: var(--color-dark);
  border-radius: 16px;
  box-shadow: 0 1px 16px 0 rgba(25,59,82,0.05);
  margin-bottom: 24px;
  transition: box-shadow .15s;
}
.testimonial-card span {
  font-size: 1.2rem;
  color: var(--color-gold);
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 6px;
  display: block;
}
.testimonial-card p {
  margin-bottom: 10px;
}
.testimonial-card strong {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 1rem;
}

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

/* FEATURES, FAQ, SERVICES, PRICING, LEGAL */
.features, .faq, .services, .pricing, .about, .legal, .contact {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: 0 2px 20px 0 rgba(25,59,82,0.06);
}
.features h2, .services h2, .about h2, .faq h2, .pricing h2, .legal h1, .contact h2 {
  color: var(--color-gold);
  font-size: 1.6rem;
  margin-bottom: 14px;
  position: relative;
  letter-spacing: 0.01em;
}
.features .feature-grid, .about ul, .services ul, .faq ul, .pricing ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  margin-top: 12px;
}
.features .feature-grid li,
.about ul li,
.services ul li,
.faq ul li,
.pricing ul li {
  background: var(--color-accent);
  border-radius: 14px;
  box-shadow: 0 1px 10px 0 rgba(25,59,82,0.04);
  padding: 18px 18px 16px 18px;
  flex: 1 1 225px;
  font-size: 1rem;
  color: var(--color-body);
  min-width: 210px;
  max-width: 350px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  transition: box-shadow .15s;
}
.features .feature-grid li img {
  width: 40px; height: 40px;
  margin-bottom: 6px;
}
.features .feature-grid li h3 {
  color: var(--color-primary);
  font-size: 1.05rem;
  margin-bottom: 4px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.features .feature-grid li p {
  font-size: 0.96rem;
  color: var(--color-body);
}

@media (max-width: 1100px) {
  .features .feature-grid li, .about ul li, .services ul li, .faq ul li, .pricing ul li {
    min-width: 170px; max-width: 100%;
    flex: 1 1 180px;
  }
}
@media (max-width: 1024px) {
  .features .feature-grid, .about ul, .services ul, .faq ul, .pricing ul {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .features .feature-grid, .about ul, .services ul, .faq ul, .pricing ul {
    flex-direction: column;
    gap: 16px;
  }
  .features .feature-grid li, .about ul li, .services ul li, .faq ul li, .pricing ul li {
    max-width: 100%; min-width: 0;
    padding: 16px 13px 13px 13px;
  }
  .section, .features, .faq, .services, .pricing, .about, .legal, .contact {
    padding: 26px 8px;
    margin-bottom: 38px;
    border-radius: 12px;
  }
  .hero {
    border-radius: 0 0 12px 12px;
  }
}

/* TABLE STYLING (for .pricing) */
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 18px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-accent);
  box-shadow: 0 1px 12px 0 rgba(25,59,82,0.03);
}
thead th {
  background: var(--color-primary);
  color: var(--color-gold);
  font-size: 1.01rem;
  padding: 13px 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-bottom: 2px solid var(--color-gold);
}
tbody td {
  padding: 11px 8px;
  color: var(--color-body);
  font-size: 1rem;
  border-bottom: 1px solid #e3e7ee;
  font-family: 'Roboto', Arial, sans-serif;
}
tbody tr:last-child td {
  border-bottom: none;
}
tbody tr:hover {
  background: #fffde6;
}

/* CONTACT INFO STYLES */
.text-section {
  margin-top: 18px;
  color: var(--color-body);
  font-size: 1rem;
}
.text-section p {
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 11px;
}
.text-section img {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 5px;
}
.text-section a {
  color: var(--color-secondary);
  font-weight: 500;
  padding: 0 2px;
  transition: color .17s;
}
.text-section a:hover, .text-section a:focus {
  color: var(--color-gold);
}

/* FOOTER */
footer {
  background: var(--color-primary);
  color: var(--color-gold);
  padding: 38px 0 22px 0;
  border-radius: 18px 18px 0 0;
  box-shadow: 0 -2px 18px 0 rgba(25,59,82,0.07);
  margin-top: 48px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
}
footer a {
  color: var(--color-gold);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  margin-right: 18px;
  transition: color .16s;
}
footer nav a{
  color: var(--color-gold);
  margin-right: 16px;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}
footer nav a:last-child {
  margin-right: 0;
}
footer nav a:hover, footer nav a:focus {
  color: #fffbe0;
}
footer img {
  max-height: 42px;
  margin-bottom: 8px;
}
footer .text-section {
  color: #faf6e8;
  font-size: 0.96rem;
  margin-top: 0;
}
@media (max-width: 950px) {
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 0 10px;
  }
}

/* MODALS & OVERLAYS (COOKIES) */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-primary);
  color: var(--color-gold);
  padding: 22px 14px;
  width: 100%;
  z-index: 1999;
  box-shadow: 0 -2px 18px 0 rgba(25,59,82,0.17);
  font-size: 1.02rem;
  letter-spacing: 0.01em;
  animation: cookieSlideIn 0.55s cubic-bezier(.84,.03,.18,.86);
  font-family: 'Roboto', Arial, sans-serif;
}
@keyframes cookieSlideIn {
  from {transform: translateY(60px); opacity: 0;}
  to   {transform: translateY(0); opacity: 1;}
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 18px;
  margin-left: 18px;
  flex-wrap: wrap;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  padding: 9px 28px;
  margin: 0 4px;
  cursor: pointer;
  transition: background .15s, color .17s, box-shadow .12s;
  box-shadow: 0 2px 12px 0 rgba(212,175,55,.04);
}
.cookie-banner .accept {
  background: var(--color-gold);
  color: var(--color-primary);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #fffbe0;
}
.cookie-banner .reject {
  background: transparent;
  border: 1.6px solid var(--color-gold);
  color: var(--color-gold);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #fffbe0;
  color: var(--color-primary);
}
.cookie-banner .settings {
  background: transparent;
  border: 1.2px solid #fffbe0;
  color: #fffbe0;
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--color-gold);
  color: var(--color-primary);
}

/* Cookie Preferences MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(25,59,82,0.87);
  z-index: 2999;
  justify-content: center;
  align-items: center;
  animation: modalFadeIn .39s cubic-bezier(.54,.03,.24,.86);
}
.cookie-modal-overlay.active {
  display: flex;
}
@keyframes modalFadeIn {
  from {opacity: 0;}
  to   {opacity: 1;}
}
.cookie-modal {
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: 18px;
  box-shadow: 0 8px 48px 0 rgba(25,59,82,0.22);
  padding: 36px 24px 26px 28px;
  max-width: 420px;
  width: 98%;
  font-size: 1.02rem;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modalPopIn .34s cubic-bezier(.54,.03,.24,.86);
}
@keyframes modalPopIn {
  from {transform: scale(.93); opacity: 0;}
  to   {transform: scale(1); opacity: 1;}
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: var(--color-gold);
  cursor: pointer;
  transition: color .12s;
}
.cookie-modal .cookie-modal-close:hover, .cookie-modal .cookie-modal-close:focus {
  color: var(--color-primary);
}
.cookie-modal h2 {
  color: var(--color-primary);
  margin-bottom: 6px;
  font-size: 1.16rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 7px;
}
.cookie-modal .cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--color-body);
  font-weight: 500;
  font-size: 1rem;
}
.cookie-modal .cookie-category input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-gold);
  cursor: pointer;
}
.cookie-modal .cookie-category .always-on {
  font-size: 0.97rem;
  color: var(--color-gold);
  font-weight: 600;
  padding-left: 6px;
}
.cookie-modal .modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 14px;
}
.cookie-modal .modal-actions button {
  padding: 9px 18px;
  border-radius: 26px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.02rem;
}
.cookie-modal .modal-actions .accept {
  background: var(--color-gold);
  color: var(--color-primary);
}
.cookie-modal .modal-actions .accept:hover,
.cookie-modal .modal-actions .accept:focus {
  background: #fffbe0;
}

.cookie-modal .modal-actions .close {
  background: transparent;
  border: 1.3px solid var(--color-gold);
  color: var(--color-gold);
}
.cookie-modal .modal-actions .close:hover, .cookie-modal .modal-actions .close:focus {
  background: var(--color-gold);
  color: var(--color-primary);
}

/* Responsive rules for banner & modal */
@media (max-width: 500px) {
  .cookie-banner {
    font-size: .93rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 6px;
  }
  .cookie-modal {
    padding: 22px 4px 17px 12px;
    border-radius: 11px;
  }
}

/* Animations & MICROINTERACTIONS */
a, button, .card, .testimonial-card, .cta {
  transition: box-shadow .14s, color .13s, background .17s, border .14s, transform .12s;
}
.card:focus-within, .card:focus {
  outline: 2px solid var(--color-gold);
}
input, select, textarea {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ced6e0;
  padding: 8px 12px;
  background: var(--color-accent);
  margin-bottom: 14px;
  transition: border .13s, box-shadow .13s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--color-gold);
  outline: none;
  box-shadow: 0 3px 17px -8px rgba(212,175,55,0.17);
}

/* MOBILE-FRIENDLY UTILITIES */
@media (max-width: 670px) {
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.15rem;
  }
  .container {
    padding: 0 5px;
  }
  .footer .container,
  footer .container {
    padding: 0 4px;
  }
}
@media (max-width: 480px) {
  body {
    font-size: 0.93rem;
  }
  .cta, a.cta, button.cta {
    padding: 10px 17px;
    font-size: 0.98rem;
  }
  .hero, .features, .faq, .services, .pricing, .about, .legal, .contact {
    padding: 16px 2px;
    border-radius: 8px;
  }
}

/* ENSURE NO CONTENT OVERLAP */
main {
  width: 100%;
  padding-bottom: 50px;
}

/* FLEXBOX CONSISTENCY */
.container {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 900px) {
  .footer .container,
  footer .container {
    flex-direction: row;
    align-items: flex-start;
  }
}

/* ENSURE NO CSS GRID USED - FLEXBOX-ONLY IMPLEMENTATION */
/* -- END OF luxury_premium STYLE CSS -- */