/* CSS RESET & BASELINE NORMALIZATION */
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;
}

html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }

body {
  background: #FCFCFC;
  color: #1B242C;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  padding-bottom: 0; /* for cookie bar overlay */
}

img {
  max-width: 100%;
  display: block;
  border: none;
}
a {
  color: #274D61;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus { color: #EAD95F; }
strong { font-weight: 700; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Roboto', sans-serif;
  font-weight: 700;
  color: #274D61;
  letter-spacing: 1px;
  line-height: 1.15;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 14px; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 10px; }

p, ul, ol { margin-bottom: 16px; }

ul, ol { padding-left: 24px; }
ul li, ol li { margin-bottom: 8px; }

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 24px 0 rgba(39, 77, 97, 0.04);
}

/* HEADER */
header {
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(26,30,46,0.06);
  border-bottom: 2px solid #EAD95F11;
  position: sticky;
  top: 0;
  z-index: 103;
}
header .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  min-height: 80px;
  gap: 28px;
}
.logo img {
  height: 54px;
  width: auto;
}

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
}
.main-nav a {
  font-family: 'Oswald', 'Roboto', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 1px;
  color: #274D61;
  position: relative;
  transition: color .22s;
  padding: 6px 2px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #EAD95F;
}
.cta-button {
  background: #EAD95F;
  color: #274D61;
  border-radius: 26px;
  font-family: 'Oswald', 'Roboto', sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: .5px;
  padding: 11px 32px;
  border: none;
  box-shadow: 0 3px 24px 0 rgba(39,77,97,0.15);
  cursor: pointer;
  transition: background .22s, color .22s, box-shadow .18s;
  display: inline-block;
  outline: none;
  position: relative;
}
.cta-button:hover, .cta-button:focus {
  background: #274D61;
  color: #EAD95F;
  box-shadow: 0 5px 32px 0 rgba(39,77,97,0.25);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 23px;
  right: 20px;
  background: #fff;
  color: #274D61;
  border: none;
  font-size: 2rem;
  z-index: 1101;
  padding: 9px 16px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(39,77,97,0.12);
  cursor: pointer;
  transition: background .2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #EAD95F;
  color: #274D61;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(39,77,97,.93);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  z-index: 1102;
  transition: transform 0.36s cubic-bezier(.61,-0.23,.42,1.13), opacity .18s, visibility .1s;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}
.mobile-menu-close {
  color: #EAD95F;
  background: none;
  border: none;
  font-size: 2.1rem;
  padding: 23px 34px 12px 10px;
  align-self: flex-end;
  cursor: pointer;
  transition: color .18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0 44px 0 0;
  gap: 12px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  text-decoration: none;
  font-family: 'Oswald', 'Roboto', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 2px;
  transition: color .22s;
  display: block;
  padding: 12px 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #EAD95F;
}

/* Hide main-nav and show hamburger on mobile */
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .cta-button { display: none; }
}
@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #fff 84%, #EAD95F11 100%);
  border-bottom: 2px solid #EAD95F33;
  padding: 70px 0 60px 0;
}
.hero .container {
  align-items: stretch;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 26px;
  max-width: 700px;
}
.hero h1 {
  font-size: 2.2rem;
  color: #274D61;
  font-family: 'Oswald', 'Roboto', sans-serif;
  letter-spacing: 1.5px;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.23rem;
  margin-bottom: 12px;
  color: #222;
}

/* FEATURES */
.features {
  background: #fffdf8;
  border-radius: 22px;
  margin-bottom: 60px;
  padding: 40px 0 35px 0;
  box-shadow: 0 4px 24px 0 rgba(39, 77, 97, 0.08);
}
.features .container { }
.features .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
  list-style: none;
  margin: 0;
  padding: 0 0 0 0;
}
.feature-grid li {
  background: #fff;
  box-shadow: 0 1px 6px 0 rgba(39,77,97,0.08);
  border-radius: 16px;
  flex: 1 1 230px;
  min-width: 220px;
  max-width: 270px;
  padding: 28px 22px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  border: 1px solid #EAD95F11;
  transition: box-shadow .24s, border-color .2s;
}
.feature-grid li:hover, .feature-grid li:focus-within {
  border-color: #EAD95F;
  box-shadow: 0 2px 24px 0 rgba(234, 217, 95, 0.17);
}
.feature-grid img {
  width: 38px;
  height: 38px;
  margin-bottom: 7px;
}
.feature-grid h3 {
  font-size: 1.15rem;
  color: #274D61;
  margin-bottom: 6px;
}
.feature-grid p {
  color: #333;
  font-size: 1rem;
}

/* SERVICES OVERVIEW */
.services-overview {
  background: #fff;
  border-radius: 22px;
}
.services-overview .container {}
.services-overview .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
}
.service-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.service-list li {
  flex: 1 1 215px;
  min-width: 210px;
  max-width: 250px;
  background: #F6F8FB;
  border-radius: 14px;
  box-shadow: 0 1px 7px 0 rgba(39,77,97,0.06);
  border: 1px solid #EAD95F19;
  padding: 19px 16px 16px 16px;
}
.service-list h3 {
  color: #274D61;
  font-size: 1.11rem;
  margin-bottom: 8px;
}
.service-list p {
  font-size: .98rem;
}

/* TESTIMONIALS */
.testimonials {
  background: #f6f6f6;
  border-radius: 22px;
  box-shadow: 0 2px 18px 0 rgba(39,77,97,0.08);
  margin-bottom: 60px;
  padding: 50px 0 50px 0;
}
.testimonials h2 {
  color: #274D61;
  text-align: left;
  margin-left: 4px;
  margin-bottom: 24px;
}
.testimonials .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-start;
  align-items: stretch;
}
.testimonial-card {
  background: #fff;
  color: #1A2025;
  border-radius: 15px;
  box-shadow: 0 3px 16px 0 rgba(39,77,97,0.10);
  border: 1.5px solid #EAD95F;
  flex: 1 1 280px;
  min-width: 240px;
  max-width: 350px;
  padding: 25px 24px 18px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 17px;
  margin-bottom: 20px;
  transition: box-shadow .22s, border-color .18s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 5px 24px 0 rgba(234, 217, 95, 0.10);
  border-color: #274D61;
}
.testimonial-card p {
  font-size: 1.01rem;
  line-height: 1.53;
  color: #19273B;
  margin-bottom: 2px;
  font-style: italic;
}
.testimonial-card strong {
  color: #274D61;
  font-size: 1.04rem;
  font-family: 'Oswald', 'Roboto', sans-serif;
  font-weight: 700;
}

/* CTA SECTION */
.cta {
  background: #274D61;
  border-radius: 18px;
  padding: 40px 20px;
  box-shadow: 0 3px 24px 0 rgba(39, 77, 97, 0.15);
  margin-bottom: 60px;
}
.cta .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.cta h2 {
  color: #EAD95F;
}
.cta p {
  color: #fff;
  font-size: 1.13rem;
}
.cta .cta-button {
  background: #EAD95F;
  color: #274D61;
  margin-top: 7px;
}

/* FOOTER */
footer {
  background: #1B242C;
  padding: 48px 0 20px 0;
  color: #fff;
  border-top: 2px solid #EAD95F23;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 22px;
}
.footer-logo img {
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: #EAD95F;
  font-family: 'Oswald', 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 1.01rem;
  transition: color .17s;
}
.footer-nav a:hover, .footer-nav a:focus { color: #fff; }
.footer-contact {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 34px;
  font-size: .97rem;
  margin: 12px 0 10px 0;
  color: #fff;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.footer-tagline {
  color: #EAD95F;
  font-size: .98rem;
  text-align: center;
  margin-top: 8px;
  font-family: 'Oswald', 'Roboto', sans-serif;
  font-weight: 400;
  letter-spacing: .4px;
}

/* CONTENT STRUCTURE & TEXT SECTIONS */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.map { background: #FBF8E7; border-left: 3px solid #EAD95F; padding: 12px 15px; border-radius: 10px; font-size: 1rem; }

/* MISC STYLES & DETAILS */
.section {
  margin-bottom: 60px !important;
  padding: 40px 20px;
  border-radius: 18px;
  background: #fff;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: 0 1px 8px 0 rgba(39,77,97,0.06);
  border-radius: 14px;
  transition: box-shadow .18s;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px 24px;
  gap: 10px;
}

.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .container { padding-left: 14px; padding-right: 14px; }
  .features, .services-overview, .testimonials, .cta, .section { padding-left: 4px; padding-right: 4px; }
}
@media (max-width: 768px) {
  h1 { font-size: 2.07rem; }
  h2 { font-size: 1.45rem; }
  .section, .features, .services-overview, .testimonials, .cta {
    padding: 26px 2px;
    border-radius: 10px;
    margin-bottom: 35px;
  }
  .content-wrapper { gap: 15px; }
  .feature-grid {
    flex-direction: column;
    gap: 17px;
  }
  .service-list { flex-direction: column; gap: 12px; }
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 13px;
  }
  .text-image-section { flex-direction: column; gap: 16px; }
  footer .container { gap: 13px; padding-bottom: 40px; }
  .footer-contact { gap: 11px; flex-direction: column; }
}
@media (max-width: 550px) {
  header .container { min-height: 62px !important; }
  .logo img { height: 38px; }
  .footer-logo img { width: 44px; height: 44px; }
  .hero { padding: 44px 0 26px 0; }
}

/* HOVER AND MICRO-INTERACTIONS */
.button, .cta-button {
  transition: background .2s, color .2s, box-shadow .16s, transform .12s;
}
.button:hover, .cta-button:hover, .button:focus, .cta-button:focus {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 5px 30px #EAD95F33;
}
.card, .card-container > * {
  transition: box-shadow .22s, border-color .18s;
}
.card:hover, .card-container > *:hover {
  box-shadow: 0 6px 24px 0 rgba(234, 217, 95, .16);
  border-color: #EAD95F;
}

/* FORMS (if present) */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border: 1.5px solid #DCDCDC;
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 18px;
  width: 100%;
  transition: border-color .18s;
  background: #fff;
  color: #323232;
}
input:focus, textarea:focus, select:focus {
  border-color: #EAD95F;
  outline: none;
}

label {
  font-family: 'Oswald', 'Roboto', sans-serif;
  color: #274D61;
  font-size: 1.08rem;
  margin-bottom: 4px;
  display: block;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 2.5px solid #EAD95F;
  box-shadow: 0 -3px 24px 0 rgba(39,77,97,0.09);
  z-index: 1201;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 26px 30px 22px 30px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #1B242C;
  opacity: 1;
  transition: transform .23s cubic-bezier(.6,-0.16,.59,1.25), opacity .12s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(90%);
}
.cookie-banner .cookie-text {
  max-width: 580px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
.cookie-banner button {
  background: #EAD95F;
  color: #274D61;
  border: none;
  padding: 9px 23px;
  border-radius: 20px;
  font-family: 'Oswald', 'Roboto', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: background .14s, color .14s;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #274D61;
  color: #EAD95F;
}
.cookie-banner .cookie-settings {
  background: transparent;
  color: #274D61;
  border: 2px solid #EAD95F;
  padding: 8px 21px;
  transition: background .14s, color .14s, border .14s;
}
.cookie-banner .cookie-settings:hover, .cookie-banner .cookie-settings:focus {
  background: #EAD95F;
  color: #274D61;
}
@media (max-width: 600px) {
  .cookie-banner { flex-direction: column; padding: 18px 12px 14px 12px; align-items: flex-start; gap: 10px; }
  .cookie-banner .cookie-actions { width: 100%; justify-content: flex-start; }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 1300;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(39,77,97,0.64);
  align-items: center;
  justify-content: center;
  transition: opacity .22s;
}
.cookie-modal-overlay.active {
  display: flex;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 7px 42px 0 rgba(39, 77, 97, 0.19);
  padding: 32px 34px;
  min-width: 320px;
  max-width: 94vw;
  color: #1B242C;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 22px;
  background: none;
  border: none;
  font-size: 1.7rem;
  color: #274D61;
  cursor: pointer;
  transition: color .14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #EAD95F;
}
.cookie-modal h2 {
  font-family: 'Oswald', 'Roboto', sans-serif;
  font-size: 1.2rem;
  color: #274D61;
  margin-bottom: 4px;
}
.cookie-modal form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 17px;
  padding: 10px 0;
  border-bottom: 1px solid #EAD95F22;
}
.cookie-modal .cookie-category-label {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #1B242C;
}
.cookie-modal .toggle-switch {
  position: relative;
  width: 41px;
  height: 22px;
  display: inline-block;
  margin-left: 5px;
}
.cookie-modal .toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #EAD95F88;
  border-radius: 14px;
  transition: background .2s;
}
.cookie-modal .toggle-switch input:checked + .slider {
  background: #274D61;
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  left: 3px;
  top: 3px;
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 5px #274D6133;
  transition: transform .19s;
}
.cookie-modal .toggle-switch input:checked + .slider:before {
  transform: translateX(19px);
}
.cookie-modal .cookie-category[data-essential="true"] .toggle-switch { pointer-events: none; filter: grayscale(1) opacity(.5); }
.cookie-modal .actions {
  display: flex;
  gap: 14px;
  margin-top: 16px;
  justify-content: flex-end;
}
.cookie-modal .actions button {
  font-family: 'Oswald', 'Roboto', sans-serif;
  font-size: 1rem;
  background: #EAD95F;
  color: #274D61;
  border: none;
  border-radius: 20px;
  padding: 8px 22px;
  cursor: pointer;
}
.cookie-modal .actions button:hover, .cookie-modal .actions button:focus {
  background: #274D61;
  color: #EAD95F;
}

@media (max-width: 465px) {
  .cookie-modal { padding: 16px 6px; min-width: unset; }
  .cookie-modal-close { top: 9px; right: 6px; font-size: 1.2rem; }
}

/* OVERRIDES FOR COMMON CARD & SECTION SPACING */
.section, .features, .cta, .testimonials, .services-overview {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container { gap: 24px; }
.card { margin-bottom: 20px; }
.content-grid { gap: 20px; }
.text-image-section { gap: 30px; }
.testimonial-card { gap: 20px; padding: 20px; }
.feature-item { gap: 15px; }

/* PRIMARY COLORS FOR LUXURY PREMIUM */
:root {
  --brand-primary: #274D61;
  --brand-secondary: #EAD95F;
  --brand-accent: #fff;
  --card-bg: #F6F8FB;
  --shadow: 0 1px 8px 0 rgba(39,77,97,0.12);
  --radius: 18px;
}

/* FONT IMPORTS (Use real fonts in deployment!) */
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@500;700&family=Roboto:wght@400;500;700&display=swap');
