/* ========================
   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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
HTML {
  box-sizing: border-box;
}
*, *::before, *::after {
  box-sizing: inherit;
}
body {
  background: #F6F8FC;
  color: #232323;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  scroll-behavior: smooth;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #184568;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #d4af37;
  outline-offset: 2px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #102336;
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.6rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p {
  margin-bottom: 16px;
}
strong, b {
  font-weight: 700;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

/* =========================
   BRAND & LUXURY COLORS
========================= */
:root {
  --primary: #184568;
  --secondary: #1F7A8C;
  --accent: #F6F8FC;
  --gold: #d4af37;
  --gold-hover: #b99a2b;
  --premium-dark: #102336;
  --white: #ffffff;
  --offblack: #232323;
  --light-grey: #e8ecf2;
}

/* =========================
   HEADER & NAVIGATION
========================= */
header {
  background: var(--white);
  box-shadow: 0 4px 12px rgba(24, 69, 104, 0.02);
  z-index: 101;
  position: relative;
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px 16px 20px;
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(24,69,104,0.07));
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  padding: 5px 8px;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.main-nav a:not(.cta):hover,
.main-nav a:not(.cta):focus {
  color: var(--gold);
  background: var(--light-grey);
}
.main-nav .cta {
  background: var(--gold);
  color: var(--premium-dark);
  padding: 10px 24px;
  border-radius: 28px;
  font-weight: bold;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.12),0 1px 1px rgba(24,69,104,0.03);
  border: none;
  outline: none;
  transition: background 0.20s, color 0.18s, box-shadow 0.18s;
  cursor: pointer;
}
.main-nav .cta:hover,
.main-nav .cta:focus {
  background: var(--gold-hover);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.22),0 2px 4px rgba(24,69,104,0.09);
}
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.2rem;
  color: var(--primary);
  cursor: pointer;
  padding: 5px 8px;
  margin-left: 8px;
  z-index: 102;
  transition: color 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: var(--gold);
}
/* ============
   MOBILE NAV
============== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(24, 69, 104, 0.97);
  z-index: 1202;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  color: var(--gold);
  font-size: 2rem;
  border: none;
  background: transparent;
  padding: 15px 20px 10px 0;
  cursor: pointer;
  z-index: 1203;
  transition: color 0.16s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  padding: 40px 24px 0 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  color: var(--gold);
  padding: 8px 0;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(16,35,54,0.08);
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  color: var(--white);
}

@media (max-width: 1000px) {
  .main-nav {
    gap: 20px;
  }
}
@media (max-width: 800px) {
  .main-nav {
    gap: 12px;
  }
}
@media (max-width: 850px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
}

/* ===============
   HERO SECTIONS
================ */
.hero {
  background: linear-gradient(135deg, var(--primary) 70%, var(--gold) 200%);
  color: var(--white);
  padding-top: 48px;
  padding-bottom: 48px;
  margin-bottom: 44px;
  border-bottom-left-radius: 42px;
  border-bottom-right-radius: 42px;
  box-shadow: 0 10px 34px -12px rgba(24,69,104,0.09);
  position: relative;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  max-width: 600px;
}
.hero h1 {
  color: var(--gold);
  font-size: 2.4rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.15;
  text-shadow: 0 2px 14px rgba(16,35,54,0.08);
}
.hero p {
  color: var(--accent);
  font-size: 1.2rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 14px;
  opacity: 0.94;
}
.hero .cta {
  margin-top: 10px;
}

/* ====================
   CONTENT STRUCTURE
==================== */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-bottom: 28px;
}
.text-section {
  gap: 18px;
  color: var(--premium-dark);
}
/* Spacing Pattern */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--white);
  margin-bottom: 20px;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(16,35,54,0.05);
  padding: 28px 24px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 1px 8px rgba(24,69,104,0.05);
  padding: 26px 18px 26px 18px;
  max-width: 340px;
  min-width: 240px;
  border-left: 5px solid var(--gold);
  margin-bottom: 20px;
  transition: box-shadow 0.23s, transform 0.14s;
}
.feature-item img {
  width: 38px;
  height: 38px;
  margin-bottom: 5px;
  filter: drop-shadow(0 1px 5px rgba(212,175,55,0.07));
}
.feature-item h3 {
  color: var(--primary);
  font-weight: 700;
}
.feature-item:hover,
.feature-item:focus {
  box-shadow: 0 6px 24px rgba(212,175,55, 0.24),0 3px 8px rgba(24,69,104, 0.07);
  transform: translateY(-3px) scale(1.015);
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 22px;
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 7px 22px rgba(24,69,104,0.11); /* subtle, luxury style */
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  border-left: 5px solid var(--gold);
  transition: box-shadow 0.19s, border-color 0.19s;
}
.testimonial-card .star-rating {
  color: var(--gold);
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.12rem;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 9px;
}
.testimonial-card strong {
  color: var(--secondary);
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}
.testimonial-card:hover {
  box-shadow: 0 9px 28px rgba(212,175,55,0.13), 0 3px 8px rgba(24,69,104, 0.13);
  border-color: var(--gold-hover);
}

/* ============
   City Cards
============== */
.city-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.city-item {
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(24,69,104,0.07);
  padding: 26px 18px;
  min-width: 220px;
  flex: 1 1 280px;
  border-left: 5px solid var(--gold);
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.13s;
}
.city-item h3 {
  color: var(--primary);
}
.city-item:hover,
.city-item:focus {
  box-shadow: 0 6px 24px rgba(212,175,55, 0.14), 0 3px 8px rgba(24,69,104, 0.12);
  transform: translateY(-2px) scale(1.01);
}
.city-search {
  margin-top: 10px;
  background: var(--accent);
  border-radius: 10px;
  padding: 22px 18px;
}

/* ===========
   Cards & Grids (General for Policy/FAQ)
============ */
dt {
  font-weight: bold;
  color: var(--primary);
  margin-top: 18px;
  margin-bottom: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
}
dd {
  margin-left: 0;
  margin-bottom: 14px;
  line-height: 1.6;
  color: var(--premium-dark);
  font-size: 1rem;
}
/* Policy sections */
.text-section {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(24,69,104,0.06);
  padding: 30px 26px;
}

/* ===============
   CTA BUTTONS
================ */
.cta {
  background: var(--gold);
  color: var(--premium-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 28px;
  padding: 12px 32px;
  font-size: 1.1rem;
  letter-spacing: 0.012em;
  box-shadow: 0 2px 12px rgba(212,175,55,0.13), 0 1px 1px rgba(24,69,104,0.04);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.19s, transform 0.13s;
  display: inline-block;
  outline: none;
}
.cta:hover, .cta:focus {
  background: var(--gold-hover);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(212,175,55,0.22), 0 3px 8px rgba(24,69,104, 0.10);
  transform: translateY(-2px) scale(1.03);
}

/* ===============
   FOOTER
================ */
footer {
  background: var(--primary);
  color: var(--white);
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -6px 24px rgba(24,69,104, 0.10);
  margin-top: 50px;
  padding-top: 32px;
  padding-bottom: 22px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 10px;
  align-items: center;
}
.footer-nav a {
  color: var(--gold);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  opacity: 0.92;
  transition: color 0.15s, opacity 0.13s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--white);
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  font-size: 1rem;
  opacity: 0.97;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.footer-brand {
  margin-top: 14px;
  font-size: 0.98rem;
  color: var(--gold);
  opacity: 0.85;
  letter-spacing: 0.03em;
}

/* ================
   COOKIE CONSENT
================= */
.cookie-banner {
  position: fixed;
  left: 0; bottom: 0;
  width: 100vw;
  background: var(--white);
  color: var(--premium-dark);
  box-shadow: 0 -2px 16px rgba(24,69,104,0.14);
  z-index: 1205;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 22px 16px 22px 40px;
  gap: 24px;
  font-size: 1rem;
  animation: slideInUp 0.7s cubic-bezier(.61,.09,.24,.91);
}
@keyframes slideInUp {
  from { transform: translateY(90px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-banner .cookie-text {
  max-width: 650px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 22px;
  padding: 9px 24px;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.15s, border 0.16s;
  box-shadow: 0 1px 4px rgba(24,69,104,0.10);
}
.cookie-banner .accept-btn {
  background: var(--gold);
  color: var(--premium-dark);
}
.cookie-banner .accept-btn:hover,
.cookie-banner .accept-btn:focus {
  background: var(--gold-hover);
  color: var(--white);
}
.cookie-banner .reject-btn {
  background: var(--light-grey);
  color: var(--premium-dark);
  border: 2px solid var(--gold);
}
.cookie-banner .reject-btn:hover,
.cookie-banner .reject-btn:focus {
  background: var(--white);
  color: var(--gold-hover);
  border-color: var(--gold-hover);
}
.cookie-banner .settings-btn {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}
.cookie-banner .settings-btn:hover,
.cookie-banner .settings-btn:focus {
  background: var(--secondary);
  color: var(--white);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(24,69,104,0.20);
  z-index: 1500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  animation: fadeIn 0.3s cubic-bezier(.52,.4,.37,.99);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--white);
  color: var(--premium-dark);
  border-radius: 20px;
  box-shadow: 0 7px 32px rgba(24,69,104,0.22);
  padding: 36px 30px 28px 34px;
  min-width: 320px;
  max-width: 95vw;
  animation: scaleFade 0.42s cubic-bezier(.77,0,.18,1);
}
@keyframes scaleFade {
  from { transform: scale(0.79); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 14px;
}
.cookie-modal .cookie-category {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-modal .category-label {
  font-weight: 600;
  color: var(--secondary);
  flex: 1 1 auto;
}
.cookie-modal .cookie-toggle {
  position: relative;
  width: 44px; height: 24px;
  background: var(--accent);
  border-radius: 12px;
  cursor: pointer;
  border: 2px solid #d4af37;
  outline: none;
  transition: background 0.2s, border-color 0.18s;
}
.cookie-modal .cookie-toggle input[type="checkbox"] {
  display:none;
}
.cookie-modal .toggle-slider {
  position: absolute;
  top: 2px; left: 2px;
  width: 20px; height: 18px;
  border-radius: 18px;
  background: var(--gold);
  transition: left 0.23s, background 0.23s;
}
.cookie-modal .cookie-toggle input:checked + .toggle-slider {
  left: 20px;
  background: var(--secondary);
}
.cookie-modal .cookie-actions {
  margin-top: 23px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-modal .cookie-actions button {
  font-size: 1rem;
  padding: 9px 24px;
  border-radius: 22px;
  background: var(--gold);
  color: var(--premium-dark);
  font-weight: bold;
  border: none;
  transition: background 0.14s, color 0.14s;
}
.cookie-modal .cookie-actions button:hover,
.cookie-modal .cookie-actions button:focus {
  background: var(--gold-hover);
  color: var(--white);
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 22px;
  color: var(--secondary);
  font-size: 1.4rem;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  color: var(--gold);
}

/* ===================
   CONTACT DETAILS
==================== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 14px;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-size: 1.1rem;
}
.contact-details img {
  width: 20px;
  height: 20px;
}


/* ==================
   LISTS, UL, OL
================== */
ul, ol {
  margin-bottom: 16px;
  margin-left: 20px;
  color: var(--premium-dark);
}
ul li, ol li {
  margin-bottom: 10px;
  font-size: 1rem;
  padding-left: 6px;
}
ul li::marker, ol li::marker {
  color: var(--gold);
}
.text-section ul, .text-section ol {
  margin-bottom: 12px;
  margin-top: 8px;
}

/********************************************************
 * RESPONSIVE DESIGN  (MOBILE FIRST)
 ********************************************************/
 */
@media (max-width: 1150px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 740px;
    padding: 0 12px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.23rem;
  }
  .hero {
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    padding-top: 28px;
    padding-bottom: 26px;
  }
  .hero h1 {
    font-size: 1.45rem;
  }
  section, .section {
    padding: 22px 6px;
    margin-bottom: 36px;
    border-radius: 10px;
  }
  .content-wrapper, .feature-grid, .city-grid, .footer-contact {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .feature-item, .city-item, .card {
    min-width: 0;
    width: 100%;
    padding: 18px 12px;
  }
  .testimonial-card {
    padding: 13px 11px;
    border-radius: 14px;
    gap: 10px;
  }
  .content-grid {
    gap: 10px;
    flex-direction: column;
  }
  .footer-nav {
    gap: 18px;
  }
  .footer-contact {
    gap: 13px;
  }
  .text-section {
    padding: 15px 9px;
    border-radius: 12px;
  }
  .section, section {
    margin-bottom: 30px;
  }
  .city-item {
    padding: 13px 8px;
    border-radius: 7px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 8px 20px 14px;
    gap: 12px;
    font-size: 0.97rem;
  }
  .cookie-modal {
    padding: 16px 10px 13px 13px;
    border-radius: 12px;
    min-width: 0;
  }
}

@media (max-width: 425px) {
  html {
    font-size: 14px;
  }
  .logo img {
    height: 28px;
  }
  .cookie-banner {
    font-size: 0.9rem;
    padding: 13px 4px 13px 6px;
  }
  .cookie-modal h2 {
    font-size: 1.1rem;
  }
}

/* ================
   ANIMATIONS
================ */
.cta, .feature-item, .testimonial-card, .city-item, .cookie-banner button, .main-nav .cta, .mobile-nav a {
  transition: background 0.16s, color 0.16s, box-shadow 0.17s, transform 0.13s;
}
.cta:focus-visible, .main-nav .cta:focus-visible, .cookie-banner button:focus-visible, .mobile-menu-toggle:focus-visible {
  outline: 2.5px solid var(--gold);
  outline-offset: 2px;
}

/* Hide focus outline except for keyboard nav */
:focus:not(:focus-visible) {
  outline: none;
}

/* =========================
   SCROLLBAR (Luxurious)
========================= */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--accent);
}
::-webkit-scrollbar {
  width: 10px;
  background: var(--accent);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 8px;
}

/* Misc. utility spacing (for safe flex layouts) */
.mb-16 { margin-bottom: 16px !important; }
.mt-32 { margin-top: 32px !important; }
.gap-20 { gap: 20px !important; }
.gap-32 { gap: 32px !important; }

/* ================
   Z-INDEX STACKS
================ */
header, .mobile-menu, .cookie-banner, .cookie-modal-overlay { z-index: 1000; }
.mobile-menu.open { z-index: 1202; }
.cookie-banner { z-index: 1205; }
.cookie-modal-overlay { z-index: 1500; }

/* No absolute content, only for close buttons and decor */
/* Layout containers: flex only! */
