/* --- 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,main,menu,nav,output,ruby,section,summary,time,mark,audio,video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #173343;
  background: #FFFFFF;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  background-color: #F5F4F2;
}
img {
  max-width: 100%;
  height: auto;
}
ul,ol {
  margin-left: 24px;
}
table {
  border-collapse: collapse;
  width: 100%;
  margin-bottom: 32px;
}
th,td {
  padding: 12px 18px;
  border-bottom: 1px solid #e5e3dd;
}
th {
  background: #163D50;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

/* --- BRAND COLOR PALETTE / LUXURY PREMIUM ENHANCEMENT --- */
:root {
  --color-primary: #163D50;
  --color-secondary: #F5F4F2;
  --color-accent: #C75000;
  --color-gold: #CBA052;
  --color-dark: #10151a;
  --color-white: #fff;
  --color-gray: #eef1f4;
  --color-shadow: rgba(22,61,80,0.09);
  --color-shadow-elevated: rgba(22,61,80,0.14);
}

/* --- TYPOGRAPHY --- */
@import url('https://fonts.googleapis.com/css?family=Roboto:700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600&display=swap');

body {
  font-size: 16px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: var(--color-dark);
  background: var(--color-secondary);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--color-primary);
  margin-bottom: 20px;
  line-height: 1.2;
}
h1 { font-size: 2.4rem; margin-top: 0; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }
h4, h5, h6 { font-size: 1.1rem; }
p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--color-dark);
}
strong, b { font-weight: 700; }
a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.25s cubic-bezier(.33,1,.68,1);
}
a:hover, a:focus {
  color: var(--color-gold);
  text-decoration: underline;
}

/* --- LUXURY PREMIUM BUTTONS --- */
.cta-primary, .cta-secondary {
  display: inline-block;
  padding: 15px 36px;
  margin: 10px 0 0 0;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 32px;
  border: 2px solid var(--color-gold);
  cursor: pointer;
  box-shadow: 0 2px 12px var(--color-shadow);
  background: linear-gradient(90deg, #fff 85%, #fdeab4 100%);
  color: var(--color-primary);
  transition: all 0.22s cubic-bezier(.33,1,.68,1), box-shadow 0.18s cubic-bezier(.33,1,.68,1);
}
.cta-primary {
  background: linear-gradient(90deg, var(--color-gold) 0%, #fffbe6 100%);
  color: var(--color-primary);
  border: 2px solid var(--color-gold);
  text-shadow: 0 1px 1px #fff3c47f;
  box-shadow: 0 2px 16px var(--color-shadow-elevated);
}
.cta-primary:hover, .cta-primary:focus {
  background: linear-gradient(90deg, #fffbe6 10%, var(--color-gold) 90%);
  color: var(--color-dark);
  box-shadow: 0 0 0 4px #ecdbba44, 0 4px 24px var(--color-shadow);
  transform: translateY(-2px) scale(1.03);
  outline: none;
}
.cta-secondary {
  background: var(--color-secondary);
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
  box-shadow: 0 1px 4px var(--color-shadow);
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--color-gold);
  color: var(--color-dark);
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px #ecdbba33;
}
button, input[type="submit"], input[type="button"] {
  font: inherit;
  cursor: pointer;
}

/* --- CORE LAYOUT/PAGE STRUCTURE --- */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-white);
  border-radius: 24px;
  box-shadow: 0 4px 26px var(--color-shadow);
  transition: box-shadow 0.2s cubic-bezier(.33,1,.68,1);
}
.section:hover {
  box-shadow: 0 6px 36px 0 var(--color-shadow-elevated);
}

/* --- HEADER & NAV --- */
header {
  background: var(--color-white);
  box-shadow: 0 2px 20px -2px var(--color-shadow);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  position: relative;
}
header img {
  height: 48px;
  margin-right: 36px;
  display: block;
}
nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}
nav a {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1.08rem;
  color: var(--color-primary);
  padding: 8px 18px;
  border-radius: 20px;
  transition: background 0.18s, color .15s;
}
nav a:hover:not(.cta-primary), nav a:focus:not(.cta-primary) {
  background: var(--color-gold);
  color: var(--color-dark);
}
nav .cta-primary {
  margin-left: 12px;
  border-radius: 32px;
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.1rem;
  background: none;
  color: var(--color-primary);
  border: none;
  align-self: center;
  padding: 4px 12px;
  cursor: pointer;
  z-index: 107;
  transition: color .19s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--color-gold);
  outline: none;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21,21,29,0.88);
  opacity: 0;
  pointer-events: none;
  z-index: 1100;
  transform: translateX(100%);
  transition: opacity 0.28s cubic-bezier(.54,1.6,.4,1), transform 0.38s cubic-bezier(.56,1,.44,1);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: var(--color-gold);
  border: none;
  font-size: 2.3rem;
  margin: 22px 24px 8px 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color .16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fffbe6;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100vw;
  align-items: flex-end;
  margin-right: 0;
  margin-top: 20px;
}
.mobile-nav a {
  font-size: 1.28rem;
  color: var(--color-white);
  background: none;
  padding: 20px 42px 20px 20px;
  text-align: right;
  border-radius: 0;
  border-left: 6px solid transparent;
  transition: background .13s, border-color .25s, color .16s;
  width: 100%;
  display: block;
  margin: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fffbe61c;
  color: var(--color-gold);
  border-left: 6px solid var(--color-gold);
}

/* --- HERO --- */
.hero {
  background: linear-gradient(102deg, var(--color-white) 60%, #fff7ea 100%);
  border-bottom: 2px solid var(--color-gold);
  box-shadow: 0 8px 40px -8px var(--color-shadow);
  padding: 58px 0 36px 0;
}
.hero .container {
  padding-top: 0;
  padding-bottom: 0;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.6rem;
  line-height: 1.14;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--color-dark);
}

/* --- FEATURE/ SERVICE CARD GRIDS --- */
.features, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-bottom: 18px;
}
.features li, .service-list li {
  background: var(--color-white);
  border-radius: 20px;
  padding: 30px 26px 24px 26px;
  box-shadow: 0 2px 18px var(--color-shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 210px;
  flex: 1 1 220px;
  gap: 15px;
  position: relative;
  transition: box-shadow 0.2s cubic-bezier(.33,1,.68,1), transform .17s;
  margin-bottom: 20px;
}
.features li:hover, .service-list li:hover {
  box-shadow: 0 4px 30px var(--color-shadow-elevated);
  transform: translateY(-4px) scale(1.02);
}
.features img, .service-list img {
  width: 38px;
  height: 38px;
  margin-bottom: 6px;
  filter: drop-shadow(0 2px 6px #ead7954a);
}
.features h3, .service-list h3 {
  color: var(--color-accent);
  font-size: 1.08rem;
  margin-bottom: 6px;
  margin-top: 0;
}
.features p, .service-list p {
  color: #284151;
  margin-bottom: 0;
  font-size: 1rem;
}

/* --- SECTION AND CARD CONTAINERS --- */
.card-container, .card-grid, .content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.card, .section-card {
  padding: 30px 26px 24px 26px;
  background: var(--color-white);
  border-radius: 18px;
  box-shadow: 0 2px 18px var(--color-shadow);
  margin-bottom: 20px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: linear-gradient(101deg, #fff 75%, #fffbe6 100%);
  border: 1.5px solid #e5e1d2;
  border-radius: 24px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.testimonials .content-wrapper {
  gap: 26px;
}
.testimonial-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 22px 28px;
  margin-bottom: 20px;
  background: #fffefc;
  border: 1px solid #e5e3dd;
  border-radius: 16px;
  box-shadow: 0 3px 13px #ead79525;
  position: relative;
  min-width: 0;
  max-width: 680px;
  color: #14181d;
  transition: box-shadow .16s;
}
.testimonial-card:hover {
  box-shadow: 0 5px 30px #e7c58c39;
}
.testimonial-card p {
  color: #1e2632;
  font-size: 1.12rem;
  flex: 1;
  margin: 0;
}
.testimonial-meta {
  min-width: 160px;
}
.testimonial-meta strong {
  color: var(--color-accent);
  font-size: 1.02rem;
  font-weight: bold;
}
.testimonial-meta span {
  color: var(--color-gold);
  letter-spacing: 2px;
  font-size: 1.16rem;
  display: block;
  margin-top: 2px;
}

/* --- CONTACT DETAILS --- */
.contact-details ul, .footer-contact ul, .contact-info-short ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-left: 0;
  margin-bottom: 24px;
  padding-left: 0;
}
.contact-details li, .footer-contact li, .contact-info-short li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  font-size: 1.03rem;
  background: none;
  color: var(--color-primary);
}
.contact-details img, .footer-contact img, .contact-info-short img {
  height: 24px;
  width: 24px;
  margin-right: 8px;
  filter: brightness(0.8) sepia(0.2) hue-rotate(-16deg) saturate(1.15);
  opacity: 0.90;
}

/* --- FOOTER --- */
footer {
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: 0 0 0 0;
}
footer .container {
  flex-direction: column;
  gap: 16px;
  max-width: 1080px;
  padding-top: 38px;
  padding-bottom: 28px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 10px;
}
.footer-nav a {
  color: var(--color-secondary);
  font-size: 1rem;
  opacity: 0.93;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  padding: 1px 10px;
  border-radius: 12px;
  transition: background .17s, color .18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-gold);
  background: #2e5270;
  outline: none;
}
.footer-contact ul {
  gap: 10px;
  margin-bottom: 8px;
}
.footer-contact li {
  color: #eee6ce;
  font-size: 0.97rem;
}
.footer-contact img {
  filter: brightness(1.25) sepia(0.18) saturate(1.1) hue-rotate(-15deg);
}
.footer-legal {
  margin-top: 12px;
  color: #fff5d9;
  font-size: 0.92rem;
  opacity: 0.8;
}

/* --- TABLES --- */
table {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px var(--color-shadow);
  overflow: hidden;
}
tr:nth-child(even) {
  background: #f9f7f2;
}
th, td {
  border-right: 1px solid #ece8dc;
}
th:last-child, td:last-child {
  border-right: none;
}

/* --- CUSTOM LISTS --- */
ul {
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}
.text-section ul {
  list-style: disc outside;
  padding-left: 22px;
}
.text-section li {
  margin-bottom: 7px;
}

/* --- MAP SECTION STYLE --- */
section.map {
  background: #f8f8f6;
  border-radius: 18px;
  box-shadow: 0 2px 12px var(--color-shadow);
  margin-bottom: 60px;
  padding: 36px 10px;
}
.route-short {
  background: #fbfaf5;
  border-left: 4px solid var(--color-gold);
  padding: 14px 22px;
  border-radius: 12px;
  margin-top: 10px;
  color: #30465a;
  font-size: 1.02rem;
}

/* --- UTILITY FLEXBOX ALIGNMENT --- */
.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;
}

/* --- SPACING --- */
.section:not(.hero):not(.testimonials) + .section {
  margin-top: 44px;
}

/* --- MODALS & OVERS --- */
.modal-overlay {
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  background: rgba(14,18,23,0.6);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s cubic-bezier(.45,1.2,.48,1);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fffbe6;
  border-radius: 14px;
  box-shadow: 0 8px 64px #ead79553;
  max-width: 370px;
  padding: 28px 28px 24px 28px;
  color: var(--color-dark);
  text-align: left;
  z-index: 2111;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-close {
  background: none;
  color: var(--color-accent);
  border: none;
  font-size: 2rem;
  position: absolute;
  top: 18px;
  right: 22px;
  cursor: pointer;
}

.cookie-options {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 12px;
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.04rem;
}
.cookie-option input[type="checkbox"] {
  accent-color: var(--color-gold);
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.cookie-option-label {
  flex: 1;
}
.cookie-option-essential {
  font-weight: 600;
  color: var(--color-gold);
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1099;
  width: 100%;
  background: #fffbe6;
  color: #201d12;
  border-top: 2px solid var(--color-gold);
  box-shadow: 0 -2px 32px #D7B66022;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  padding: 22px 10px 20px 10px;
  gap: 34px;
  transition: transform .34s cubic-bezier(.54,1.6,.4,1), opacity .30s;
  opacity: 1;
  transform: translateY(0%);
  font-size: 1.02rem;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(110%);
  pointer-events: none;
}
.cookie-banner-content {
  flex: 1 1 340px;
  max-width: 600px;
  margin-right: 12px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
.cookie-banner button {
  border-radius: 22px;
  font-size: 1.01rem;
  padding: 8px 23px;
  border: none;
  background: var(--color-gold);
  color: var(--color-primary);
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-weight: 600;
  border: 2px solid transparent;
  transition: background .18s, border .18s, color .17s;
  box-shadow: 0 2px 6px #dec37731;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--color-primary);
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  outline: none;
}
.cookie-banner .cookie-settings-btn {
  background: var(--color-white);
  color: var(--color-accent);
  border: 2px solid var(--color-accent);
}
.cookie-banner .cookie-settings-btn:hover {
  background: var(--color-gold);
  color: var(--color-primary);
  border: 2px solid var(--color-gold);
}

/* --- MEDIA QUERIES (RESPONSIVE) --- */
@media (max-width: 1072px) {
  .container {
    max-width: 99vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .hero h1 { font-size: 2.1rem; }
}
@media (max-width: 900px) {
  .footer-nav {
    gap: 16px;
    flex-wrap: wrap;
  }
  .footer-contact ul {
    flex-direction: column;
    gap: 10px;
  }
  .features, .service-list, .content-grid, .card-grid {
    flex-wrap: wrap;
    flex-direction: column;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 93%;
  }
  .container {
    max-width: 100vw;
    padding-left: 8px;
    padding-right: 8px;
  }
  header .container {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    min-height: 57px;
  }
  header img {
    height: 38px;
    margin-right: 16px;
  }
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .testimonials {
    padding: 24px 4px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: stretch;
    padding: 15px 11px;
    font-size: 0.99rem;
  }
  .testimonial-meta { min-width: 0; }
  .section, .card, .section-card, .map {
    padding: 24px 6px;
    border-radius: 12px;
  }
  .features li, .service-list li {
    padding: 18px 8px 14px 12px;
    border-radius: 10px;
  }
  .content-wrapper {
    gap: 13px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
    align-items: flex-start;
  }
  .card-container, .content-grid, .card-grid {
    flex-direction: column;
    gap: 13px;
  }
  .footer-contact ul {
    gap: 5px;
  }
  .route-short {
    padding: 10px 7px;
    font-size: 0.99rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 12px 5px;
  }
  .cookie-banner-content { margin-right: 0; }
  .cookie-banner-actions { gap: 9px; }
}
@media (max-width: 520px) {
  html { font-size: 85%; }
  .hero h1 { font-size: 1.28rem; }
  .cookie-banner, .cookie-modal {
    font-size: 0.99rem;
  }
  .cookie-modal {
    padding: 17px 2px 14px 7px;
    max-width: 92vw;
    border-radius: 8px;
  }
}

/* --- ANIMATIONS & MICROINTERACTIONS --- */
.cta-primary, .cta-secondary, .cookie-banner button { transition: background .16s, color .16s, box-shadow .17s, transform .11s; }
.cta-primary:active, .cta-secondary:active, .cookie-banner button:active { transform: scale(0.97); }
.card, .feature-item, .service-list li, .testimonial-card {
  transition: box-shadow 0.16s, transform .14s, border 0.16s;
}
.card:hover, .feature-item:hover, .service-list li:hover, .testimonial-card:hover {
  box-shadow: 0 6px 28px var(--color-shadow-elevated);
  transform: scale(1.012);
  border-color: var(--color-gold);
}

/* --- FOCUS & ACCESSIBILITY --- */
:focus { outline: 2px solid var(--color-gold); outline-offset: 2px; }
.mobile-menu-close:focus,.mobile-menu-toggle:focus { outline: 2px solid var(--color-gold); outline-offset: 3px; }

/* --- SCROLLBAR (PREMIUM) --- */
::-webkit-scrollbar { width: 10px; background: #e7dec7; }
::-webkit-scrollbar-thumb { background: var(--color-gold); border-radius: 12px; }
::-webkit-scrollbar-thumb:hover { background: #f2e295; }

/* --- END --- */