/* === CSS RESET AND 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%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.6;
  background: #F3F5F9;
  color: #35495e;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #c1872f;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #425e70;
}
ul, ol {
  margin-left: 1.5em;
}
ul ul, ol ol, ul ol, ol ul {
  margin-top: 0;
  margin-bottom: 0;
}

/* === BRAND COLORS AND TYPOGRAPHY === */
:root {
  --color-primary: #35495e;
  --color-secondary: #ffffff;
  --color-bg: #F3F5F9;
  --color-accent: #c1872f;
  --color-accent-light: #e0a94f;
  --color-testimonial-bg: #fffbe6;
  --color-border: #e6e8ee;
  --shadow-card: 0 4px 16px 0 rgba(36,52,85,0.09);
  --font-display: 'Montserrat', 'Arial Rounded MT Bold', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-primary);
  word-break: break-word;
}
h1 {
  font-size: 2.4rem;
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
}
h2 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, ul, ol, li, span {
  font-family: var(--font-body);
  color: #35495e;
  font-size: 1rem;
}
p {
  margin-bottom: 24px;
}
strong {
  font-weight: bold;
  color: var(--color-accent);
}
em {
  font-style: italic;
}

/* === LAYOUT CONTAINERS === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 18px;
}
.content-wrapper {
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 20px;
  position: relative;
  /* For artistic bg later if needed */
}
.section:nth-child(odd) {
  background: var(--color-secondary);
}

/* === FLEXBOX PATTERNS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--color-secondary);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  padding: 28px 20px;
  min-width: 220px;
  flex: 1 1 260px;
  transition: box-shadow .25s, transform .23s;
}
.card:hover {
  box-shadow: 0 8px 24px 0 rgba(65,94,112,0.14);
  transform: translateY(-4px) scale(1.018);
  z-index: 1;
}
.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;
  background: var(--color-testimonial-bg);
  box-shadow: var(--shadow-card);
  border-radius: 18px;
  padding: 20px 30px;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: #2a2e3e;
  transition: box-shadow .23s, transform .15s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 32px rgba(224,169,79,0.17);
  transform: scale(1.012);
}
.testimonial-card p {
  flex: 1 1 0;
  font-size: 1.1rem;
  margin: 0 0 0 0;
}
.testimonial-card span {
  flex-shrink: 0;
  color: var(--color-accent);
  font-weight: bold;
  font-family: var(--font-display);
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === HEADERS & NAVIGATION === */
header {
  width: 100%;
  background: var(--color-secondary);
  box-shadow: 0 2px 10px 0 rgba(53,73,94,0.035);
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 20px;
}
header a img {
  max-height: 46px;
  width: auto;
  transition: filter .2s;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  position: relative;
  padding: 6px 5px;
  border-radius: 6px;
}
.main-nav a.button-primary {
  margin-left: 12px;
}
.main-nav a:not(.button-primary):hover, .main-nav a:not(.button-primary):focus {
  background: var(--color-accent);
  color: var(--color-secondary);
  transition: background .13s, color .13s;
}
.button-primary {
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--color-accent);
  color: var(--color-secondary)!important;
  padding: 11px 30px;
  border: none;
  border-radius: 18px;
  font-size: 1.04rem;
  cursor: pointer;
  transition: background .17s, box-shadow .17s, color .19s, transform .19s;
  box-shadow: 0 2px 12px 0 rgba(193,135,47,0.09);
  letter-spacing: 0.01em;
  display: inline-block;
}
.button-primary:hover, .button-primary:focus {
  background: #E0A94F;
  color: var(--color-primary)!important;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 24px 0 rgba(224,169,79,0.12);
}
/* Burger Button */
.mobile-menu-toggle {
  display: none;
  background: var(--color-accent);
  color: var(--color-secondary);
  font-size: 2.2rem;
  padding: 4px 16px 2px 16px;
  border: none;
  border-radius: 11px;
  cursor: pointer;
  transition: background .16s;
  z-index: 104;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: var(--color-primary);
  color: var(--color-accent);
}

/* MOBILE NAVIGATION (OFFCANVAS MENU) */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(53,73,94, 0.97);
  z-index: 99;
  transform: translateX(-105%);
  opacity: 0;
  transition: transform 0.37s cubic-bezier(0.47,0.14,0.36,1), opacity 0.29s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 70px;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 26px;
  background: var(--color-accent);
  color: var(--color-secondary);
  font-size: 2.1rem;
  border: none;
  border-radius: 8px;
  padding: 3px 13px;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 2px 10px 0 rgba(193,135,47,0.09);
  transition: background .15s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: var(--color-primary);
  color: var(--color-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 16px;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: var(--color-secondary);
  font-weight: 600;
  font-size: 1.24rem;
  letter-spacing: 0.025em;
  padding: 12px 32px;
  border-radius: 11px;
  transition: background .14s, color .14s;
  outline: none;
  width: 100%;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}

/* === HERO HEADINGS & SECTIONS === */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
  border-radius: 20px;
}
section:not(:first-child) {
  border-top: 1px solid #edeef3;
}

header + main section:first-child {
  margin-top: 10px;
  background: var(--color-secondary);
  box-shadow: 0 4px 24px 0 rgba(224,169,79,0.07);
}

/* === FEATURE GRID === */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 24px;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.feature {
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  padding: 24px 18px;
  flex: 1 1 225px;
  min-width: 200px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow .19s, transform .19s;
  margin-bottom: 20px;
}
.feature img {
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  filter: drop-shadow(0 4px 12px #e0a94f55);
}
.feature h3 {
  font-size: 1.13rem;
  color: var(--color-accent);
  margin-bottom: 8px;
  z-index: 1;
}
.feature p {
  margin: 0;
  font-size: 1rem;
}
.feature:hover {
  box-shadow: 0 8px 38px 0 rgba(224,169,79,0.16);
  transform: translateY(-2px) scale(1.045);
}

/* === LIST STYLE === */
ul, ol {
  margin-bottom: 17px;
  color: #495b78;
}
ul li, ol li {
  margin-bottom: 9px;
  padding-left: 0;
  font-size: 1rem;
  line-height: 1.67;
  font-family: var(--font-body);
}
ul li:before {
  content: '';
  margin-right: 7px;
}

/* --- Contact Details --- */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 34px;
  margin-bottom: 20px;
  border-radius: 14px;
  padding: 16px 5px;
  background: rgba(224,169,79,0.06);
}
.contact-details div {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 200px;
  font-family: var(--font-body);
  color: var(--color-primary);
  font-weight: 500;
}
.contact-details img {
  width: 26px;
  height: 26px;
  filter: drop-shadow(0 2px 5px #e0a94f77);
}
.contact-details a {
  color: var(--color-accent);
  transition: color .16s;
  font-size: 1rem;
}
.contact-details a:hover {
  color: var(--color-primary);
}

/* --- Footer --- */
footer {
  background: var(--color-primary);
  color: var(--color-secondary);
  padding: 32px 0 22px 0;
}
footer span {
color: white;}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  justify-content: center;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 8px;
}
.footer-nav a {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.02rem;
  font-weight: 500;
  opacity: 0.87;
  letter-spacing: 0.01em;
  transition: color .15s, opacity .14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fffbe6;
  text-decoration: underline;
  opacity: 1;
}
.footer-info {
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: #fbe7b7;
  opacity: 0.77;
  padding-left: 2px;
}

/* --- Cookie Consent Banner --- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 5050;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  background: #fffbe6;
  border-top: 2.5px solid var(--color-accent);
  box-shadow: 0 -2px 18px 0 rgba(193,135,47,0.14);
  padding: 24px 12px 24px 18px;
  font-size: 1rem;
  transition: transform 0.35s cubic-bezier(.42,0,.26,1), opacity .23s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
}
.cookie-banner .cookie-banner-text {
  flex: 1 1 200px;
  color: #2a2e3e;
  margin-right: 18px;
  font-family: var(--font-body);
  padding-bottom: 0;
}
.cookie-banner .cookie-btns {
  display: flex;
  align-items: center;
  gap: 11px;
}
button.cookie-accept, button.cookie-reject, button.cookie-settings {
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: 11px;
  border: none;
  padding: 9px 17px;
  margin: 0;
  cursor: pointer;
  box-shadow: 0 2px 12px 0 rgba(224,169,79,0.09);
  transition: background .14s, color .14s, transform .12s;
  margin-right: 4px;
}
button.cookie-accept {
  background: var(--color-accent);
  color: #fff;
}
button.cookie-accept:hover, button.cookie-accept:focus {
  background: var(--color-primary);
  color: var(--color-accent);
}
button.cookie-reject {
  background: #e0e3ef;
  color: var(--color-primary);
}
button.cookie-reject:hover, button.cookie-reject:focus {
  background: var(--color-primary);
  color: #fff;
}
button.cookie-settings {
  background: transparent;
  color: var(--color-accent);
  border: 1.8px solid var(--color-accent);
  font-weight: 600;
}
button.cookie-settings:hover, button.cookie-settings:focus {
  background: var(--color-accent);
  color: #fff;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: rgba(36,52,85,0.75);
  opacity: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .25s, visibility .25s;
  pointer-events: auto;
  visibility: visible;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.cookie-modal-content {
  background: #fffbe6;
  border-radius: 18px;
  box-shadow: 0 4px 36px rgba(193,135,47,0.22), 0 2px 6px #e0a94f33;
  padding: 35px 24px 30px 24px;
  min-width: 310px;
  max-width: 96vw;
  max-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  position: relative;
}
.cookie-modal-content h2 {
  font-size: 1.4rem;
  margin-bottom: 7px;
  color: var(--color-primary);
}
.cookie-modal-content .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 10px 0;
  font-size: 1rem;
}
.cookie-modal-content .cookie-toggle {
  margin-left: auto;
}
.cookie-modal-close {
  position: absolute;
  top: 12px; right: 22px;
  background: var(--color-accent);
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 1.7rem;
  padding: 2px 13px;
  cursor: pointer;
  transition: background .15s;
}
.cookie-modal-close:hover {
  background: var(--color-primary);
  color: var(--color-accent);
}

/* Toggle Switch for Cookies */
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 20px;
  background: #e0e3ef;
  border-radius: 11px;
  position: relative;
  outline: none;
  vertical-align: middle;
  transition: background .14s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--color-accent);
}
.cookie-toggle:after {
  content: '';
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  left: 1px;
  top: 1px;
  transition: left .15s;
  box-shadow: 0 1px 4px #c1872f44;
}
.cookie-toggle:checked:after {
  left: 17px;
}

/* === ARTISTIC SPACING, EFFECTS, DECORATIVE === */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card, .feature {
  box-shadow: 0 4px 16px 0 rgba(65,94,112,0.08);
  border-radius: 20px;
  position: relative;
}
.card:before, .feature:before {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  left: 10%;
  top: -28px;
  width: 60px;
  height: 34px;
  background: var(--color-accent-light);
  border-radius: 95% 54% 62% 78%/94% 98% 60% 84%;
  opacity: 0.13;
  pointer-events: none;
}
.card:hover:before, .feature:hover:before {
  opacity: 0.22;
  filter: blur(2px);
}

/* === UTILITY CLASSES === */
.mt-32 { margin-top: 32px; }
.mt-24 { margin-top: 24px; }
.mb-24 { margin-bottom: 24px; }
.mb-18 { margin-bottom: 18px; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.align-center { align-items: center; }

/* === RESPONSIVE DESIGN === */
@media (max-width: 1100px) {
  .feature-grid, .content-grid, .card-container {
    gap: 16px;
  }
}
@media (max-width: 950px) {
  .feature-grid {
    gap: 25px 10px;
  }
}
@media (max-width: 820px) {
  .container {
    max-width: 98vw;
    padding: 0 8px;
  }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.4rem; }
  .card, .feature { min-width: 170px; padding: 18px 7px; }
  .testimonials { gap: 12px; }
}
@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 9px;
  }
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
  .feature-grid, .content-grid, .card-container {
    flex-direction: column;
    gap: 18px;
  }
  .section, section {
    padding: 31px 3vw;
    margin-bottom: 34px;
    border-radius: 11px;
  }
  .footer-nav {
    gap: 13px;
  }
  .footer-info {
    font-size: 0.93rem;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 13px;
    gap: 10px;
    font-size: 0.97rem;
  }
  .contact-details {
    flex-direction: column;
    gap: 11px 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
  }
}
@media (max-width: 560px) {
  h1 { font-size: 1.43rem; }
  h2 { font-size: 1.08rem; }
  .section, section {
    padding: 22px 2vw;
  }
  header a img {
    max-height: 34px;
  }
  .testimonial-card {
    font-size: 0.93rem;
  }
  .footer-nav {
    gap: 8px;
  }
  .footer-info{
    font-size: 0.89rem;
  }
  .cookie-banner {
    padding: 15px 8px 19px 8px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-banner-text { margin-right: 0; }
  .cookie-banner .cookie-btns { gap: 5px; }
  .cookie-modal-content { padding: 24px 4vw 18px 4vw; min-width: 94vw; }
}

/* === SELECTION & FOCUS === */
::selection { background: #e0a94f99; color: #35495e; }
a:focus, button:focus, input:focus, textarea:focus {
  outline: 2.5px solid var(--color-accent);
  outline-offset: 2px;
}

/* === ANIMATION UTILITY CLASSES === */
@keyframes slidein-menu {
  from { transform: translateX(-110%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes slideout-menu {
  from { transform: translateX(0); opacity: 1; }
  to   { transform: translateX(-110%); opacity: 0; }
}
@keyframes banner-slideup {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes banner-slidedown {
  from { transform: translateY(0); opacity: 1; }
  to { transform: translateY(120%); opacity: 0; }
}

/* === END OF CSS === */
