/* --- 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-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #f7f8fa;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #f7f8fa;
  color: #1D2837;
  min-height: 100vh;
  line-height: 1.6;
}
img, picture {
  max-width: 100%;
  display: block;
}
a {
  color: #F5A623;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #1D2837;
  text-decoration: underline;
}
ul, ol {
  list-style-position: inside;
  margin-left: 1em;
}

/* --- CSS Variables --- */
:root {
  --color-primary: #1D2837;
  --color-secondary: #F5A623;
  --color-accent: #FFFFFF;
  --color-bg-light: #f7f8fa;
  --color-neutral-100: #fffbe7;
  --color-neutral-200: #fff5ce;
  --color-dark: #1D2837;
  --color-card-bg: #FFFFFF;
  --color-card-shadow: rgba(31,41,55,0.12);
  --border-radius-lg: 28px;
  --border-radius-md: 16px;
  --border-radius-sm: 8px;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.15;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.9rem;
  margin-bottom: 16px;
  background: linear-gradient(90deg, #F5A623 0%, #ff7e5f 75%, #1D2837 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
h2 {
  font-size: 2.1rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--color-secondary);
}
h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}
p, ul, ol, li, div, span {
  font-family: var(--font-body);
  color: var(--color-dark);
}
p {
  margin-bottom: 1em;
  color: var(--color-primary);
}
ul, ol {
  margin-bottom: 0.8em;
}
strong {
  font-weight: bold;
}
em {
  font-style: italic;
}

/* --- Common Container/Section Styles --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.text-section {
  background: var(--color-neutral-100);
  border-radius: var(--border-radius-md);
  padding: 32px 24px;
  box-shadow: 0 2px 10px var(--color-card-shadow);
  margin-bottom: 16px;
}

/* --- Navbar/Header --- */
header {
  background: var(--color-accent);
  box-shadow: 0 4px 16px rgba(31,41,55,0.07);
  position: sticky;
  top: 0;
  z-index: 20;
}
nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 18px 0;
}
header nav a {
  font-family: var(--font-body);
  font-size: 1.08rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  color: var(--color-primary);
  border-bottom: 2.5px solid transparent;
  transition: border-color 0.22s, color 0.22s;
  margin-bottom: 0;
}
header nav a:hover, header nav a:focus {
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}
header nav a.cta {
  color: var(--color-accent);
  background: var(--color-secondary);
  padding: 10px 32px;
  border-radius: 32px;
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(245,166,35,0.12);
  transition: background 0.24s, box-shadow 0.26s, color 0.16s;
  border: none;
  margin-left: 6px;
}
header nav a.cta:hover, header nav a.cta:focus {
  background: #ff7e5f;
  color: #fff;
  box-shadow: 0 4px 16px rgba(245,166,35,0.23);
}
header nav img {
  height: 38px;
  margin-right: 12px;
  vertical-align: middle;
}

/* --- Mobile Menu --- */
.mobile-menu-toggle {
  display: none;
  background: var(--color-secondary);
  color: #fff;
  font-size: 1.7rem;
  border: none;
  outline: none;
  border-radius: 50%;
  padding: 8px 16px;
  margin-left: auto;
  margin-right: 0;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  box-shadow: 0 2px 14px 0 rgba(245,166,35,0.11);
  z-index: 51;
}
.mobile-menu-toggle:active {
  background: #1D2837;
  color: #F5A623;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24, 28, 39, 0.96);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.55,0,0.1,1);
  z-index: 1000;
  box-shadow: 0 0 32px 4px rgba(29,40,55,0.23);
  padding-top: 16px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #fff;
  font-size: 2.4rem;
  border: none;
  margin: 15px 0 20px 20px;
  align-self: flex-start;
  cursor: pointer;
  transition: color 0.15s;
}
.mobile-menu-close:hover {
  color: #F5A623;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: 100vw;
  padding-left: 32px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  font-weight: 600;
  padding: 8px 0;
  border-radius: 4px;
  margin-bottom: 0;
  transition: background 0.15s, color 0.18s;
}
.mobile-nav a.cta {
  background: var(--color-secondary);
  color: var(--color-accent);
  padding: 14px 30px;
  font-size: 1.3rem;
  border-radius: 28px;
  font-weight: 700;
  margin-top: 22px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(245,166,35,0.19);
  transition: background 0.18s;
}
.mobile-nav a.cta:hover, .mobile-nav a.cta:focus {
  background: #ff7e5f;
  color: #fff;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(245,166,35,0.14);
  color: #F5A623;
}

/* --- Main Section & Artistic Layout --- */
main {
  padding-bottom: 60px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: flex-start;
  margin-bottom: 16px;
}
.feature-grid > div {
  background: var(--color-card-bg);
  box-shadow: 0 2px 10px var(--color-card-shadow);
  border-radius: var(--border-radius-md);
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 340px;
  padding: 32px 20px 24px 20px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border: 2.3px dashed #ffe4b0;
  transition: box-shadow 0.23s, transform 0.17s, border-color 0.22s;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 24px rgba(245,145,45,0.19), 0 1px 0 #fcf0dd inset;
  transform: translateY(-6px) scale(1.037);
  border-color: #F5A623;
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 11px;
  opacity: 0.96;
}

/* --- Card / Card Container --- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 40px;
}
.card {
  background: var(--color-accent);
  box-shadow: 0 4px 18px var(--color-card-shadow);
  border-radius: var(--border-radius-lg);
  padding: 36px 28px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.23s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 8px 36px 2px rgba(31,41,55,0.18);
  transform: scale(1.02) translateY(-4px);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

/* --- Testimonials --- */
.testimonial-card {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 20px;
  padding: 20px 26px;
  background: #fff;
  box-shadow: 0 4px 21px 0 rgba(37,52,91,0.11);
  border-radius: var(--border-radius-lg);
  margin-bottom: 20px;
  border-left: 6px solid var(--color-secondary);
  transition: box-shadow 0.21s, border-left-color 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 28px 0 rgba(245,166,35,0.16);
  border-left-color: #ff7e5f;
}
.testimonial-card p {
  color: #181a1f;
  font-size: 1.15rem;
  margin: 0 0 0.1em 0;
}
.testimonial-card span {
  color: #F5A623;
  font-size: 0.98rem;
  font-style: italic;
}

/* --- Spacing & Alignment --- */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  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;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* --- CTA Buttons --- */
.cta, .cta:visited, .cta:focus {
  display: inline-block;
  padding: 13px 36px;
  border-radius: 40px;
  background: var(--color-secondary);
  color: var(--color-accent) !important;
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.012em;
  box-shadow: 0 2px 18px 0 rgba(245,166,35,0.17);
  border: none;
  cursor: pointer;
  margin: 10px 0 0 0;
  transition: background 0.21s, color 0.16s, transform 0.17s, box-shadow 0.18s;
  text-decoration: none;
  outline: none;
}
.cta:hover, .cta:active {
  background: #ff7e5f;
  color: #FFF !important;
  transform: scale(1.03) translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,166,35,0.24);
}

/* --- Social Media in Footer --- */
.social-media {
  display: flex;
  gap: 12px;
  padding: 12px 0 0 0;
}
.social-media a img {
  width: 29px !important;
  height: 29px !important;
  filter: grayscale(0.18) brightness(1.14);
  transition: filter 0.18s, transform 0.17s;
}
.social-media a:hover img,
.social-media a:focus img {
  filter: none;
  transform: scale(1.13) rotate(-3deg);
}

/* --- Footer --- */
footer {
  background: #1D2837;
  color: #fff;
  padding: 42px 0 10px 0;
  margin-top: 48px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 8px;
  border-bottom: 1.5px dashed #ffc769;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
}
footer nav a {
  color: #ffc769;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 500;
  margin: 0;
  border-bottom: none;
  transition: color 0.15s;
}
footer nav a:hover, footer nav a:focus {
  color: #fff9ef;
}
footer .text-section p, footer .text-section a {
  color: #fff;
  font-size: 0.97rem;
}
footer .text-section a:hover {
  text-decoration: underline;
}
footer img {
  height: 46px;
  margin-bottom: 10px;
}
footer .social-media {
  margin-top: 10px;
}

/* --- Artistic Flourishes / Unique Elements --- */
h1, h2, h3, h4 {
  text-shadow: 1px 2px 0 rgba(245,166,35,0.08), 0 2px 10px rgba(245,166,35,0.07);
  letter-spacing: 0.025em;
}
.text-section {
  border-left: 6px solid #F5A623;
  box-shadow: 0 2px 10px var(--color-card-shadow);
}
.text-section ul li::marker {
  color: #F5A623;
}
.text-section ol li::marker {
  color: #F5A623;
}

/* --- Decorative Dashes for Artistic/Creative Flair --- */
.feature-grid > div {
  border: 2.3px dashed #ffe4b0;
}

/* --- Lists Artistic Style --- */
ul li, ol li {
  margin-bottom: 6px;
  font-size: 1.08rem;
}

/* --- Map Placeholder --- */
.map-placeholder {
  border-radius: var(--border-radius-md);
  background: #eeeeee;
  font-size: 1.16rem;
  color: #cccccc;
  font-family: var(--font-body);
}

/* --- Newsletter Section --- */
.newsletter-section {
  background: #fff5e1;
  border: 2px solid #ffe4b0;
  border-radius: var(--border-radius-md);
  box-shadow: 0 2px 10px rgba(245,166,35,0.12);
  padding: 32px 22px;
  margin-bottom: 0;
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fffbe7;
  color: #1D2837;
  box-shadow: 0 -2px 22px rgba(31, 41, 55, 0.13);
  padding: 28px 18px 26px 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  z-index: 9999;
  transition: transform 0.38s cubic-bezier(.91,.01,.04,.99);
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner.active {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 17px;
  flex-wrap: wrap;
  margin-top: 12px;
  justify-content: center;
}
.cookie-banner button,
.cookie-banner .cookie-btn {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  border-radius: 26px;
  border: none;
  padding: 10px 28px;
  margin: 0 0 6px 0;
  background: var(--color-secondary);
  color: #fff !important;
  cursor: pointer;
  transition: background 0.18s, color 0.11s, box-shadow 0.18s;
  box-shadow: 0 2px 7px rgba(245,166,35,0.13);
}
.cookie-banner button.reject, .cookie-banner .reject {
  background: #1D2837;
  color: #fff !important;
}
.cookie-banner button.reject:hover {
  background: #F5A623;
  color: #fff !important;
}
.cookie-banner .cookie-settings-btn {
  background: transparent;
  color: #F5A623 !important;
  border: 2px solid #F5A623;
  font-weight: 700;
  padding: 8px 22px;
  margin-left: 0;
}
.cookie-banner .cookie-settings-btn:hover {
  background: #ffeab3;
  color: #1D2837 !important;
}

/* Cookie Modal */
#cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 10001;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(28, 32, 47, 0.86);
  justify-content: center;
  align-items: center;
  animation: fadein 0.18s;
}
#cookie-modal-overlay.active {
  display: flex;
}
#cookie-modal {
  background: #fffef8;
  color: #1D2837;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 8px 44px 2px rgba(31,41,55,0.21);
  padding: 36px 28px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 370px;
  min-width: 275px;
  position: relative;
  z-index: 10002;
}
#cookie-modal h3 {
  font-size: 1.3rem;
  margin-bottom: 7px;
}
#cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  margin-bottom: 13px;
}
#cookie-modal .cookie-category input[type=checkbox] {
  accent-color: #F5A623;
  width: 20px;
  height: 20px;
  cursor: pointer;
}
#cookie-modal .cookie-category label {
  font-family: var(--font-body);
  font-size: 0.99rem;
}
#cookie-modal .essential {
  opacity: 0.62;
  pointer-events: none;
}
#cookie-modal .cookie-category strong {
  color: #F5A623;
  margin-right: 8px;
}
#cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 10px;
}
#cookie-modal .cookie-btn {
  padding: 8px 22px;
  border-radius: 24px;
  background: #1D2837;
  color: #fff;
  border: none;
  font-weight: 600;
}
#cookie-modal .cookie-btn.accept {
  background: #F5A623;
  color: #fff !important;
}
#cookie-modal .cookie-btn:hover {
  background: #ff7e5f;
  color: #fff !important;
}
#cookie-modal .modal-close {
  position: absolute;
  right: 28px;
  top: 13px;
  font-size: 1.6rem;
  background: none;
  color: #F5A623;
  border: none;
  cursor: pointer;
  transition: color 0.16s;
}
#cookie-modal .modal-close:hover { color: #1D2837; }
@keyframes fadein {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* --- Responsive --- */
@media (max-width: 1200px) {
  .container {
    max-width: 96vw;
    padding: 0 16px;
  }
}
@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
  }
  .feature-grid > div {
    min-width: 180px;
    max-width: 100%;
  }
  .testimonials-section {
    gap: 14px;
  }
  .newsletter-section {
    padding: 22px 7px;
  }
}
@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
  .section {
    padding: 26px 5vw;
    margin-bottom: 34px;
  }
  .container {
    padding: 0 5vw;
  }
  .feature-grid {
    flex-direction: column;
    gap: 19px;
  }
  .feature-grid > div {
    min-width: unset;
    max-width: 100%;
    width: 100%;
    padding: 22px 13px 17px 13px;
  }
  .content-wrapper {
    gap: 15px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 11px;
    gap: 10px;
    font-size: 1.03em;
  }
  .text-section {
    padding: 16px 10px;
  }
  .newsletter-section {
    padding: 13px 5px;
  }
  .card {
    padding: 18px 10px;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 17px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .content-grid {
    flex-direction: column;
    gap: 17px;
    justify-content: flex-start;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1rem; }
  .testimonial-card p {
    font-size: 1.02rem;
  }
}

/* Hide scroll behind modal/menu */
.mobile-menu.open, #cookie-modal-overlay.active {
  overflow-y: auto;
}

/* Utility */
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* --- End --- */
