/* =========================
   CSS RESET & BASE STYLES
   ========================= */
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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Montserrat', Georgia, 'Times New Roman', Times, serif;
  color: #21243D;
  background: #F8F6F1;
  line-height: 1.65;
  font-size: 16px;
  min-height: 100vh;
  position: relative;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #BDA87F;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #21243D;
  outline: none;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
strong, b {
  font-weight: 700;
}

/* ==============
   BRAND FONTS
   ============== */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&family=Montserrat:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Georgia, 'Times New Roman', Times, serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #21243D;
}
h1 { font-size: 2.75rem; line-height: 1.15; margin-bottom: 24px; }
h2 { font-size: 2rem; line-height: 1.25; margin-bottom: 20px; }
h3 { font-size: 1.4rem; line-height: 1.25; margin-bottom: 12px; font-weight: 500; }
h4 { font-size: 1.2rem; }

p, body, li, address, table, th, td {
  font-family: 'Montserrat', Georgia, 'Times New Roman', Times, serif;
  color: #21243D;
  font-size: 1rem;
  font-weight: 400;
}

blockquote {
  font-style: italic;
  color: #21243D;
  font-size: 1.05rem;
  line-height: 1.45;
  background: #F8F6F1;
  padding: 12px 22px;
  border-left: 4px solid #BDA87F;
  margin: 8px 0 12px 0;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  max-width: 1200px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.3rem; }
  h3 { font-size: 1.1rem; }
  .container, .section { padding-left: 10px; padding-right: 10px; }
  .section { padding: 32px 0 24px; margin-bottom: 36px; }
}

/* =======================
   HEADER & NAVIGATION
   ======================= */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(33,36,61,0.03), 0 0.5px 0 rgba(189,168,127,0.06);
  position: sticky;
  top: 0;
  width: 100%;
  min-height: 68px;
  z-index: 1020;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 68px;
  justify-content: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.desktop-nav .logo {
  height: 40px;
  margin-right: 30px;
}
.desktop-nav a {
  font-family: 'Montserrat', Georgia, serif;
  color: #21243D;
  font-weight: 500;
  font-size: 1.03rem;
  padding: 6px 10px 6px 10px;
  border-radius: 24px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
.desktop-nav a:not(.cta-primary):hover, .desktop-nav a:not(.cta-primary):focus {
  background: #F8F6F1;
  color: #BDA87F;
}
.cta-primary {
  background: #BDA87F;
  color: #fff !important;
  font-family: 'Oswald', serif;
  font-size: 1.1rem;
  padding: 8px 28px;
  border-radius: 23px;
  margin-left: 18px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 24px 0 rgba(33,36,61,0.04);
  transition: background 0.18s, transform 0.1s;
  outline: none;
  letter-spacing: .09em;
  text-transform: uppercase;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: #21243D;
  color: #BDA87F !important;
  transform: translateY(-2px) scale(1.04);
}

/* ================
  MOBILE NAV MENU
  ================ */
.mobile-menu-toggle {
  display: none;
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2.1rem;
    padding: 0 18px;
    color: #21243D;
    height: 48px;
    width: 60px;
    z-index: 1201;
    cursor: pointer;
    position: absolute;
    top: 13px;
    right: 12px;
    transition: color 0.19s;
  }
  .mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
    color: #BDA87F;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: #fff;
  z-index: 1300;
  transform: translateX(-100vw);
  transition: transform 0.32s cubic-bezier(.81,.05,.69,.99);
  box-shadow: 0 8px 24px 0 rgba(33,36,61,0.13),0 1px 0 #f3ecdb;
  display: flex;
  flex-direction: column;
  padding: 0 0 50px 0;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 2rem;
  background: none;
  border: none;
  color: #BDA87F;
  cursor: pointer;
  z-index: 1401;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #21243D;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 80px 0 0 0;
  padding: 0 34px;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: 'Oswald', serif;
  font-size: 1.15rem;
  color: #21243D;
  padding: 10px 0 10px 6px;
  border-radius: 10px;
  font-weight: 500;
  transition: color 0.18s, background 0.18s;
  width: 100%;
  display: block;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F8F6F1;
  color: #BDA87F;
}

@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* =====================
   HERO & LAYOUT SECTIONS
   ===================== */
.hero {
  background: #F8F6F1 url('../assets/hero-bg.png') top right no-repeat;
  background-size: cover;
  min-height: 400px;
  display: flex;
  align-items: center;
  box-shadow: 0 6px 36px -6px rgba(33,36,61,.06);
  margin-bottom: 60px;
  padding: 0;
}
.hero .container {
  display: flex;
  align-items: center;
  min-height: 350px;
}
.hero .content-wrapper {
  max-width: 650px;
  background: rgba(255,255,255,.95);
  border-radius: 20px;
  box-shadow: 0 2px 28px 0 rgba(33,36,61,0.06);
  padding: 34px 34px 34px 32px;
  gap: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .hero, .hero .container {
    min-height: unset;
  }
  .hero .content-wrapper {
    padding: 20px 8px;
    border-radius: 0;
    box-shadow: none;
  }
}

/* =======================
   FLEXBOX UTILITY CLASSES
   (per le regole richieste)
   ======================= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 14px 0 rgba(33,36,61,0.04);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.21s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 3px 34px -2px rgba(189,168,127,0.14);
}
.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: center;
  gap: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 32px -5px rgba(33,36,61,0.11);
  padding: 20px 30px 24px 30px;
  min-width: 270px;
  max-width: 375px;
  margin: 16px 8px 20px 0;
  border: 1px solid #F8F6F1;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 768px) {
  .content-grid, .card-container, .feature-grid, .service-grid, .service-cards, .testimonial-slider {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
  .testimonials-preview {
    padding-top: 0px;
  }
}

/* ================
  Feature & Service Cards
  ================ */
.feature-grid, .service-grid, .service-cards, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.feature-grid>div, .service-grid>div, .service-cards>div {
  background: #fff;
  border: 1px solid #F8F6F1;
  border-radius: 14px;
  padding: 28px 22px 22px 22px;
  min-width: 220px;
  flex: 1 0 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0 3px 18px 0 rgba(33,36,61,0.07);
  transition: box-shadow 0.15s, border-color 0.15s;
}
.feature-grid>div:hover, .service-grid>div:hover, .service-cards>div:hover {
  border-color: #BDA87F;
  box-shadow: 0 6px 40px -8px rgba(33,36,61,.14);
}
.feature-grid img, .service-grid img, .service-cards img {
  height: 38px;
  margin-bottom: 6px;
  filter: grayscale(0.1) opacity(.88);
}

@media (max-width: 900px) {
  .feature-grid>div, .service-grid>div, .service-cards>div {
    min-width: 160px;
    padding: 18px 10px 14px 10px;
  }
}

.testimonials-preview .testimonial-slider {
  flex-direction: row;
  gap: 20px;
  margin-top: 18px;
}

@media (max-width: 850px) {
  .testimonials-preview .testimonial-slider {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}

.stars {
  display: flex;
  gap: 2px;
  align-items: center;
  margin-bottom: 3px;
}
.stars img {
  height: 18px;
  width: 18px;
  filter: none;
}
.testimonial-author {
  font-family: 'Montserrat', serif;
  color: #BDA87F;
  font-size: 0.99rem;
  margin-top: 6px;
  font-weight: 500;
}

/* ================
 PRICING TABLE
 ================= */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 28px 0 24px 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 18px 0 rgba(33,36,61,0.045);
  overflow: hidden;
  font-size: 1rem;
}
.pricing-table th, .pricing-table td {
  padding: 16px 14px;
  text-align: left;
  border-bottom: 1px solid #F8F6F1;
}
.pricing-table thead th {
  background: #BDA87F;
  color: #fff;
  font-family: 'Oswald', serif;
  font-weight: 700;
  font-size: 1.13rem;
}
.pricing-table tbody tr:last-child td {
  border-bottom: none;
}
.pricing-table tr:hover td {
  background: #F8F6F1;
  color: #21243D;
}
@media (max-width: 800px){
  .pricing-table thead {
    display: none;
  }
  .pricing-table, .pricing-table tbody, .pricing-table tr, .pricing-table td {
    display: block;
    width: 100%;
  }
  .pricing-table tr {
    margin-bottom: 24px;
    border-radius: 12px;
    box-shadow: 0 1px 6px 0 rgba(33,36,61,0.06);
    padding: 8px 0;
  }
  .pricing-table td {
    padding: 8px 14px;
    border-bottom: none;
    position: relative;
  }
  .pricing-table td:before {
    content: attr(data-label);
    font-family: 'Oswald', serif;
    color: #BDA87F;
    display: block;
    font-size: 0.93rem;
    font-weight: bold;
    margin-bottom: 5px;
  }
}

/* ===============
   ACCENT TYPOGRAPHY
 =============== */
.u-strong {
  color: #BDA87F;
  font-weight: 700;
}

hr {
  border: none;
  border-top: 1.5px solid #F8F6F1;
  margin: 36px 0;
}

/* ==================
   CUSTOM LISTS & DETAILS BLOCKS
   ================== */
.usp-list, .fleet-highlights, .features-list, .premium-brands, .benefits-list {
  font-size: 1rem;
  color: #21243D;
  list-style: disc inside;
  margin-bottom: 20px;
  margin-top: 4px;
}
.usp-list li, .fleet-highlights li, .features-list li, .premium-brands li, .benefits-list li {
  margin-bottom: 7px; 
}

.certifications-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  margin-bottom: 18px;
  color: #21243D;
}

.team-highlight, .media-highlights, .concierge-service-highlight {
  background: #F8F6F1;
  border-radius: 12px;
  padding: 20px 24px;
  margin: 18px 0 12px;
  box-shadow: 0 2px 15px 0 rgba(33,36,61,0.04);
}
.media-highlights strong {
  font-family: 'Oswald', serif;
  color: #BDA87F;
  font-size: 1.05rem;
}

.equipment-icons {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 20px 0 6px 0;
}
.equipment-icons img {
  height: 38px;
}

/* ===================
   CONTACT PAGE BLOCKS
 =================== */
.contact-details-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 22px 0;
  align-items: flex-start;
}
.contact-details-block > div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}
.map {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F8F6F1;
  border-radius: 14px;
  padding: 17px 20px;
  margin: 18px 0 10px 0;
}

/* ===============
   FOOTER
   =============== */
footer {
  background: #21243D;
  color: #fff;
  padding: 44px 0 18px 0;
  margin-top: 80px;
}
.footer-nav {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #BDA87F;
  font-family: 'Oswald', serif;
  font-size: 1rem;
  font-weight: 500;
  padding: 4px 10px;
  border-radius: 7px;
  transition: color .2s, background .2s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #fff2;
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: row;
  gap: 34px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.footer-contact img {
  height: 56px;
  border-radius: 12px;
  background: #fff;
  padding: 5px;
}
.footer-contact address {
  font-style: normal;
  font-size: 1rem;
  color: #fff;
}
.footer-contact span, .footer-contact img {
  vertical-align: middle;
}
.footer-copy {
  border-top: 1.5px solid rgba(189,168,127,0.22);
  margin-top: 18px;
  padding-top: 12px;
  font-size: .96rem;
  color: #BDA87F;
  letter-spacing: .015em;
}
@media (max-width: 900px){
  .footer-contact {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 650px){
  footer {
    padding: 26px 0 8px 0;
  }
  .footer-contact img {
    height: 38px;
  }
}

/* =====================
   BUTTONS & INTERACTIONS
   ===================== */
button, .cta-primary, .mobile-menu-close, .mobile-menu-toggle {
  transition: background .2s, color .2s, transform .13s, box-shadow .16s;
  cursor: pointer;
  outline: none;
}
button:focus, .cta-primary:focus, .mobile-menu-close:focus {
  box-shadow: 0 0 0 2px #BDA87F77;
}

/* ================
   HOVER/MICRO INTERACTIONS
 ================ */
.card:hover, .feature-grid>div:hover, .service-grid>div:hover, .service-cards>div:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 7px 50px -7px #BDA87F45;
}
.cta-primary:active {
  background: #AA925F;
}

/* ================
   COOKIE CONSENT BANNER
 ================= */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: 3000;
  background: #fff;
  border-top: 1.5px solid #BDA87F;
  box-shadow: 0 -2px 24px 0 rgba(33,36,61,0.09);
  padding: 15px 22px 15px 22px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 22px;
  justify-content: center;
  font-family: 'Montserrat', serif;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(50px);
  transition: opacity 0.32s, transform 0.32s;
}
#cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
#cookie-banner .banner-text {
  flex: 1 1 260px;
  color: #21243D;
}
#cookie-banner .cookie-btn {
  min-width: 128px;
  padding: 9px 20px;
  margin-left: 12px;
  margin-right: 8px;
  font-family: 'Oswald', serif;
  font-size: 1rem;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  transition: background .18s, color .18s;
  box-shadow: 0 1px 4px 0 rgba(33,36,61,.07);
}
#cookie-banner .accept {
  background: #BDA87F;
  color: #fff;
}
#cookie-banner .accept:hover, #cookie-banner .accept:focus {
  background: #21243D;
}
#cookie-banner .reject {
  background: #F8F6F1;
  color: #21243D;
  border: 1.2px solid #BDA87F;
}
#cookie-banner .reject:hover, #cookie-banner .reject:focus {
  background: #BDA87F;
  color: #fff;
}
#cookie-banner .settings {
  background: #fff;
  color: #BDA87F;
  border: 1.2px solid #BDA87F;
}
#cookie-banner .settings:hover, #cookie-banner .settings:focus {
  background: #BDA87F;
  color: #fff;
}
@media (max-width: 700px){
  #cookie-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    font-size: 0.97rem;
    padding: 12px 6px;
  }
  #cookie-banner .cookie-btn {
    min-width: 96px;
    margin: 4px 6px 0 0;
  }
}

/* =======================
   COOKIE PREFERENCES MODAL
  ======================= */
#cookie-modal-overlay {
  display: none;
  position: fixed;
  background: rgba(33,36,61,0.28);
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 3999;
  justify-content: center;
  align-items: center;
}
#cookie-modal-overlay.active {
  display: flex;
}
#cookie-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 414px;
  width: 90vw;
  box-shadow: 0 8px 40px 0 rgba(33,36,61,0.18),0 1px 0 #f3ecdb;
  padding: 28px 32px 22px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 21px;
  font-family: 'Montserrat', serif;
  color: #21243D;
  opacity: 0;
  transform: translateY(-32px);
  pointer-events: none;
  transition: opacity 0.33s, transform 0.33s;
}
#cookie-modal-overlay.active #cookie-modal {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
#cookie-modal h2 {
  font-family: 'Oswald', serif;
  font-size: 1.22rem;
  color: #BDA87F;
  margin-bottom: 6px;
}
#cookie-modal .category {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 9px;
  padding: 5px 0;
}
#cookie-modal label {
  font-size: 1rem;
  color: #21243D;
  font-weight: 500;
}
#cookie-modal input[type="checkbox"] {
  accent-color: #BDA87F;
  width: 18px;
  height: 18px;
}
#cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  align-items: center;
  margin-top: 18px;
}
#cookie-modal .close-modal {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  color: #AA925F;
  font-size: 1.6rem;
  cursor: pointer;
  transition: color .17s;
}
#cookie-modal .close-modal:hover, #cookie-modal .close-modal:focus {
  color: #21243D;
}

@media (max-width: 520px){
  #cookie-modal {
    padding: 13px 6px 12px 12px;
    font-size: 0.99rem;
    max-width: 98vw;
  }
}

/* ====================
   ELEGANT CLASSIC EFFECTS
   ==================== */
.card, .testimonial-card, .feature-grid>div, .service-grid>div, .service-cards>div {
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 1px 16px 0 rgba(189,168,127,0.06);
  border: 1.5px solid #F8F6F1;
}

/* ====================
   DETAILS POLICIES PAGE
   ==================== */
.policy-text, .text-section {
  margin-bottom: 22px;
}
.policy-text h2, .text-section h2 {
  font-size: 1.2rem;
  color: #BDA87F;
  margin-top: 19px;
}
.policy-text ul, .text-section ul {
  margin-bottom: 14px;
}
.policy-text a {
  color: #BDA87F;
}
.policy-text a:hover {
  text-decoration: underline;
}

/* =====================
   MISCELLANEOUS
   ===================== */
::-webkit-input-placeholder { color: #BDA87F; opacity:.95; }
::-moz-placeholder { color: #BDA87F; opacity:.95; }
:-ms-input-placeholder { color: #BDA87F; opacity:.95; }
::placeholder { color: #BDA87F; opacity:.95; }

::-webkit-scrollbar {
  width: 10px;
  background: #F8F6F1;
}
::-webkit-scrollbar-thumb {
  background: #E7E0CE;
  border-radius: 14px;
}

/* Focus states for accessibility */
a:focus, .cta-primary:focus, button:focus, input:focus {
  outline: 2px solid #BDA87F;
  outline-offset: 2px;
}

/* =======================
   Z-INDEX LAYERING
   ======================= */
.mobile-menu, #cookie-banner, #cookie-modal-overlay {
  z-index: 2000;
}
.mobile-menu.active, #cookie-modal-overlay.active {
  z-index: 3002;
}

/* ============
   PREVENT OVERLAPPING
 ============ */
main, section, .container, .content-wrapper {
  box-sizing: border-box;
}

/* =====================
   ENSURE NO OVERLAP
   (Maintain spacing everywhere)
   ===================== */
section + section, .section + .section, .content-wrapper + .content-wrapper,
.card + .card, .testimonial-card + .testimonial-card {
  margin-top: 40px;
}

/* ================
   PRINT STYLES (optional for classic feel)
 ================ */
@media print {
  * {
    color: #21243D !important;
    background: #fff !important;
    box-shadow: none !important;
  }
}
