/* =====================
   CSS Reset & Base Setup
   ===================== */
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,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;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; }
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #222D40;
  background: #F6F8F9;
  font-size: 16px;
  line-height: 1.7;
}
*, *:before, *:after { box-sizing: inherit; }
img, video { max-width: 100%; height: auto; }

/* =====================
   Typography
   ===================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #222D40;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h1 { font-size: 2.75rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.375rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 8px; }

p,li,blockquote,em,small,span,a,ol,ul, address {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
.subheadline { font-size: 1.25rem; font-family: 'Montserrat', Arial, sans-serif; color: #444E63; margin-bottom: 18px; }
strong { font-weight: 700; color: #222D40; }
em { color: #D59A23; font-style: normal; }
small { font-size: 0.95em; color: #666; }
a { color: #222D40; text-decoration: none; transition: color 0.18s; }
a:hover, a:focus { color: #D59A23; }

blockquote {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.12rem;
  color: #222D40;
  background: #F2F2F6;
  border-left: 3px solid #D59A23;
  padding: 14px 24px;
  margin: 0 0 12px 0;
}

/* =====================
   Layout Containers
   ===================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
}
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  max-width: 720px;
}

/* Section spacing */
.section,
.hero,
.features,
.about-short,
.services-overview,
.services,
.process,
.cta,
.testimonials,
.testimonials-preview,
.team,
.why-choose-us,
.tip-categories,
.how-to-guides,
.contact-info,
.privacy-policy,
.gdpr-policy,
.cookie-policy,
.terms,
.thank-you {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 24px rgba(34,45,64,0.05),0 1px 2px rgba(213,154,35,0.05);
}

/* =====================
   Utilities & Patterns
   ===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(34,45,64,0.10);
  margin-bottom: 20px;
  padding: 26px;
  position: relative;
  flex: 1 1 280px;
  min-width: 240px;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(213,154,35,0.11), 0 2px 8px rgba(34,45,64,0.05);
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.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: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 14px;
  background: #FAFAFB;
  border: 1.5px solid #EFE6D2;
  box-shadow: 0 4px 14px rgba(222,189,111,0.06);
  margin-bottom: 24px;
  max-width: 520px;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(222,189,111,0.13), 0 2px 8px rgba(34,45,64,0.06);
  border-color: #D59A23;
}
.testimonial-card p {
  color: #444E63;
  font-weight: 500;
  font-size: 1.08rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =====================
   Navigation (Desktop / Mobile)
   ===================== */
header {
  background: #fff;
  border-bottom: 2px solid #EFE6D2;
  box-shadow: 0 1px 9px rgba(34,45,64,0.025);
  position: relative;
  z-index: 1002;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  justify-content: flex-start;
  padding: 16px 0;
}
.main-nav img {
  height: 32px; width: auto; margin-right: 14px;
}
.main-nav a {
  padding: 7px 10px;
  border-radius: 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
}
.main-nav a.cta-btn {
  margin-left: 12px;
  color: #fff;
  background: #D59A23;
  font-weight: 700;
  font-size: 1.07rem;
  letter-spacing: 0.02em;
  border: none;
  box-shadow: 0 2px 10px rgba(213,154,35,0.07);
  transition: background 0.18s, box-shadow 0.2s;
}
.main-nav a.cta-btn:hover, .main-nav a.cta-btn:focus {
  background: #B7871D;
  color: #fff;
  box-shadow: 0 4px 20px rgba(213,154,35,0.16);
}

.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  color: #222D40;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 16px;
  z-index: 1101;
  transition: color 0.15s;
}
.mobile-menu-toggle:focus { outline: 2px solid #D59A23; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(34,45,64,0.93);
  z-index: 1200;
  transition: transform 0.32s cubic-bezier(.56,.05,.11,1.12);
  transform: translateX(100%);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.mobile-menu.open {
  display: flex; /* necessary for flex context ! */
  transform: translateX(0);
  animation: menu-slide-in 0.35s cubic-bezier(.47,.01,.37,1.17);
}
@keyframes menu-slide-in {
  from { transform: translateX(100%); } to { transform: translateX(0); }
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  padding: 18px 18px 0 0;
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 14px;
  transition: color 0.14s;
}
.mobile-menu-close:focus { outline: 2px solid #D59A23; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 34px 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 14px 12px;
  border-radius: 8px;
  transition: background 0.14s, color 0.14s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #D59A23;
  color: #fff;
}
.mobile-nav a.cta-btn {
  background: #D59A23 !important;
  color: #fff;
  font-weight: 700;
}

/* =============
   Hero Section
   ============= */
.hero {
  background: #222D40;
  color: #fff;
  margin-bottom: 60px;
  padding: 60px 20px 60px 20px;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 6px 40px rgba(34,45,64,0.11),0 1px 2px rgba(213,154,35,0.04);
  position: relative;
}
.hero h1, .hero h2, .hero p, .hero a {
  color: #fff;
}
.hero .cta-btn {
  margin-top: 20px;
  background: #D59A23;
  color: #fff;
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 12px;
  padding: 14px 36px;
  border: none;
  box-shadow: 0 4px 24px rgba(213,154,35,0.14),0 1px 2px rgba(34,45,64,0.04);
  transition: background 0.2s, box-shadow 0.19s, transform 0.16s;
  display: inline-block;
}
.hero .cta-btn:hover, .hero .cta-btn:focus {
  background: #B7871D;
  box-shadow: 0 8px 32px rgba(213,154,35,0.22);
  transform: translateY(-2px) scale(1.03);
}
.hero::before {
  content: '';
  position: absolute;
  width: 100px; height: 100px;
  top: 16px; right: 4%;
  background: rgba(213,154,35,0.10);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

/* =============
   Features, Team, Services
   ============= */
.features ul, .services ul, .services-overview ul, .about-short ul, .team ul, .why-choose-us ul,
.tip-categories ul, .how-to-guides ol,
.privacy-policy ul, .gdpr-policy ul, .terms ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 0 15px 0;
  padding-left: 22px;
  list-style: none;
}
.features ul li, .services ul li, .services-overview ul li, .about-short ul li, .team ul li, .why-choose-us ul li,
.tip-categories ul li, .how-to-guides ol li,
.privacy-policy ul li, .gdpr-policy ul li, .terms ul li {
  position: relative;
  padding-left: 32px;
  font-size: 1.09rem;
  line-height: 1.65;
}
.features ul li img, .about-short ul li img, .services-overview ul li img, .services ul li img {
  position: absolute;
  left: 0; top: 4px;
  width: 22px; height: 22px;
}
.why-choose-us ul li::before {
  content: '\2714';
  color: #D59A23;
  font-size: 1.08rem;
  margin-right: 5px;
  position: absolute;
  left: 0; top: 2px;
}
.services-overview a.cta-btn,
.section .cta-btn,
.cta a.cta-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 13px 32px;
  font-size: 1.07rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  background: #D59A23;
  border: none;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(213,154,35,0.09);
  letter-spacing: 0.01em;
  transition: background 0.18s, box-shadow 0.17s, transform 0.12s;
}
.services-overview a.cta-btn:hover, .cta-btn:hover, .cta-btn:focus, .cta a.cta-btn:focus {
  background: #B7871D;
  color: #fff;
  box-shadow: 0 6px 22px rgba(213,154,35,0.16);
  transform: translateY(-1.5px) scale(1.03);
}

/* =============
   CTA Section
   ============= */
.cta {
  background: #FFF9EC;
  border: 1.5px solid #EFE6D2;
  text-align: left;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 18px;
}
.cta h2 {
  color: #222D40;
}
.cta p {
  color: #444E63;
}

/* =============
   Footer
   ============= */
footer {
  background: #222D40;
  color: #EEE;
  padding: 46px 0 18px 0;
  font-size: 0.98rem;
  margin-top: 64px;
}
footer .container { max-width: 1220px; }
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-menu {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.footer-menu a {
  color: #F6F8F9;
  font-weight: 500;
  padding: 6px 10px;
  border-radius: 8px;
  transition: color 0.15s, background 0.16s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #D59A23;
  color: #fff;
}
footer address { font-style: normal; color: #DDD7CA; margin-bottom: 6px; }
footer .text-section {
  gap: 2px;
  background-color: #7d7d7d;
}
footer .social-links {
  display: flex;
  gap: 19px;
  align-items: center;
  margin-top: 8px;
}
footer .social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.13s;
}
footer .social-links a:hover { background: rgba(213,154,35,0.13); }
footer .social-links img {
  width: 28px; height: 28px;
  filter: grayscale(30%) brightness(98%) sepia(10%)
          drop-shadow(0 1px 1.5px rgba(34,45,64,0.14));
  opacity: 0.88;
}
footer p {
  margin: 18px 0 0 0;
  color: #C2B497;
  font-size: 0.94rem;
}

/* =============
   Cookie Consent Banner & Modal
   ============= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffcf7;
  color: #1B283C;
  border-top: 2px solid #EFE6D2;
  box-shadow: 0 -2px 20px rgba(213,154,35,0.11);
  z-index: 1400;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 24px 16px 20px 16px;
  font-size: 1.08rem;
  animation: fadein-bottom 0.45s;
}
@keyframes fadein-bottom {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner-btn {
  background: #D59A23;
  color: #fff;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 11px 24px;
  border-radius: 8px;
  margin: 0 6px;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(213,154,35,0.11);
  transition: background 0.16s, box-shadow 0.14s, transform 0.10s;
  cursor: pointer;
}
.cookie-banner-btn.cookie-settings {
  background: #fff;
  color: #222D40;
  border: 1.5px solid #D59A23;
  font-weight: 500;
}
.cookie-banner-btn:hover, .cookie-banner-btn:focus {
  background: #B7871D;
  color: #fff;
  box-shadow: 0 4px 18px rgba(213,154,35,0.18);
  transform: translateY(-1px) scale(1.03);
}
.cookie-banner-btn.cookie-settings:hover, .cookie-banner-btn.cookie-settings:focus {
  background: #F9F3E1;
  color: #D59A23;
  border-color: #B7871D;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  z-index: 1500;
  background: rgba(34,45,64,0.80);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadein-modal 0.34s cubic-bezier(.71,-0.11,.44,1.12);
}
@keyframes fadein-modal {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  padding: 38px 25px 29px 25px;
  border-radius: 17px;
  max-width: 420px;
  width: 96%;
  color: #222D40;
  box-shadow: 0 6px 36px rgba(213,154,35,0.14);
  display: flex;
  flex-direction: column;
  gap: 18px;
  font-size: 1.07rem;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #222D40;
  cursor: pointer;
}
.cookie-option-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-option {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  font-size: 1rem;
}
.cookie-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 25px;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #EFE6D2;
  border-radius: 100px;
  transition: background 0.3s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #D59A23;
}
.cookie-slider:before {
  content: '';
  position: absolute;
  left: 4px; top: 4px;
  width: 17px; height: 17px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(18px);
}
/* Essential always enabled */
.cookie-option.essential label {
  color: #9E8532;
  font-weight: 600;
  font-size: 1.04rem;
}
.cookie-option.essential .cookie-switch {
  pointer-events: none;
  opacity: 0.5;
}

/* =====================
   Responsive Design
   ===================== */
@media (max-width: 1160px) {
  .container {max-width: 98vw; padding-left: 4vw;padding-right: 4vw;}
}
@media (max-width: 900px) {
  .content-wrapper {gap: 12px;}
  .hero {padding: 44px 10px 44px 10px;}
}
@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; position: absolute; top: 14px; right: 16px; }
  .container { padding-left: 9px; padding-right: 9px; }
  .content-wrapper, .text-section { gap: 10px; }
  .footer-menu {
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  .footer .content-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .hero { padding: 32px 5px 36px 5px; border-radius: 0 0 18px 18px; }
  .hero h1 { font-size: 2.1rem; }
  .hero .cta-btn { padding: 11px 19px; font-size: 1rem; }
  .section, .about-short, .services-overview, .services, .process, .cta, .testimonials, .testimonials-preview, .team, .why-choose-us, .tip-categories, .how-to-guides, .contact-info, .privacy-policy, .gdpr-policy, .cookie-policy, .terms, .thank-you {
    padding: 22px 5px;
    margin-bottom: 36px;
    border-radius: 9px;
  }
  .card-container, .card-grid, .content-grid {
    flex-direction: column !important;
    gap: 16px;
  }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 16px; }
  .testimonial-card { max-width: 100%; padding: 17px; font-size: 1.01rem; }
  .footer .social-links { gap: 11px; }
  h1 { font-size: 1.7rem; }
  h2 { font-size: 1.2rem; }
  h3 { font-size: 1.05rem; }
  .card { padding: 16px; min-width: unset; }
}
@media (max-width: 520px) {
  .mobile-menu {padding-top: 0;}
  .mobile-nav { padding: 24px 10px; }
  footer { padding: 23px 0 10px 0; }
  .cookie-banner { padding: 15px 6px 13px 6px; font-size: 0.98rem; flex-direction: column; gap:12px;}
}

/* =====================
   Custom Micro Interactions
   ===================== */
.cta-btn, .cookie-banner-btn, .main-nav a.cta-btn, .services-overview a.cta-btn, .cta a.cta-btn {
  outline: none;
}
.cta-btn:focus-visible, .cookie-banner-btn:focus-visible {
  outline: 2px solid #D59A23;
  outline-offset: 2px;
}

/* =====================
   Gold Details & Refined Visuals
   ===================== */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 120px; height: 6px;
  background: #D59A23;
  border-radius: 3px;
  opacity: 0.17;
}
.section, .card, .testimonial-card, .footer, .cta {
  /* Micro gold border accent on left */
}
.section {
  border-left: 4px solid #EFE6D2;
  box-shadow: 0 2px 16px rgba(222,189,111,0.07);
}
.card {
  border-left: 3px solid #D59A23;
}
.testimonial-card {
  border-left: 3px solid #D59A23;
}

/* Micro gold separator for visual luxury accent */
h2::after, h1::after {
  content: '';
  display: block;
  width: 44px;
  height: 3px;
  border-radius: 2px;
  background: #D59A23;
  opacity: 0.60;
  margin: 7px 0 0 0;
}
h2 + h3::after { display: none; }


/* =====================
   Lists & Details
   ===================== */
ul, ol {
  margin-left: 0;
  margin-bottom: 10px;
}
ul li, ol li {
  margin-bottom: 3px;
}

/* =====================
   Misc
   ===================== */
::-webkit-scrollbar {
  width: 10px;
  background: #F6F8F9;
}
::-webkit-scrollbar-thumb {
  background: #EFE6D2;
  border-radius: 6px;
}

/* =====================
   Accessibility Color Fallbacks


/* =====================
   End CSS
   ===================== */
