/* ====================================================================
   CSS RESET & NORMALIZATION
==================================================================== */
html { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; margin: 0; padding: 0; border: 0; outline: none; }
html { scroll-behavior: smooth; }
body { min-height: 100vh; line-height: 1.6; background: #F6FAF9; color: #22303C; font-family: 'Open Sans', Arial, Helvetica, sans-serif; font-size: 16px; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', Arial, Helvetica, sans-serif; color: #22303C; font-weight: 700; letter-spacing: 0.01em; line-height: 1.2; margin-bottom: 18px; }
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.45rem; margin-bottom: 12px; }
h4, h5, h6 { font-size: 1.16rem; margin-bottom: 8px; }
p { font-size: 1rem; font-weight: 400; color: #2a3540; margin-bottom: 18px; }
a { color: #B6985A; text-decoration: none; transition: color 0.2s; }
a:hover, a:focus { color: #22303C; text-decoration: underline; }
ul, ol { padding-left: 24px; margin-bottom: 16px; }
li { margin-bottom: 8px; }
hr { border: 0; border-top: 1px solid #E5E5E5; margin: 18px 0; }
img { max-width: 100%; display: block; border: 0; }
strong, b { font-weight: 600; color: #22303C; }

/* ====================================================================
   PRIMARY LAYOUT CONTAINERS
==================================================================== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}
.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section { margin-bottom: 60px; padding: 40px 20px; background: #fff; border-radius: 20px; box-shadow: 0 2px 12px rgba(34,48,60,0.06); }
.card-container { display: flex; flex-wrap: wrap; gap: 24px; }
.card { margin-bottom: 20px; position: relative; background: #fff; border-radius: 18px; box-shadow: 0 2px 10px rgba(34,48,60,0.07); transition: box-shadow 0.2s, transform 0.2s; }
.card:hover { box-shadow: 0 6px 22px rgba(182,152,90,0.10); transform: translateY(-3px); }
.card-content { display: flex; flex-direction: column; justify-content: center; padding: 24px 18px; 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; flex-direction: column; align-items: flex-start; gap: 20px; padding: 28px 32px; margin-bottom: 20px; background: #F6FAF9; border-radius: 16px; box-shadow: 0 2px 12px rgba(34,48,60,0.06); border: 1px solid #E5E5E5; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ====================================================================
   HEADER, NAVIGATION, LOGO
==================================================================== */
header { background: #fff; box-shadow: 0 2px 8px rgba(34,48,60,0.03); position: sticky; top: 0; z-index: 1100; width: 100%; }
header .container { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo img { height: 44px; width: auto; display: block; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  color: #22303C;
  font-size: 1rem;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-bottom 0.18s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #B6985A;
  border-bottom: 2px solid #B6985A;
}
.main-nav .btn-primary {
  margin-left: 12px;
  padding: 10px 26px;
  background: #B6985A;
  color: #fff;
  border-radius: 30px;
  font-weight: 700;
  border: none;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(182,152,90,0.11);
  transition: background 0.2s, color 0.18s, box-shadow 0.2s;
}
.main-nav .btn-primary:hover,
.main-nav .btn-primary:focus {
  background: #22303C;
  color: #fff;
  box-shadow: 0 4px 12px rgba(34,48,60,0.09);
}

/* ====================================================================
   BURGER MENU (MOBILE NAVIGATION)
==================================================================== */
.mobile-menu-toggle {
  display: none;
  background: #fff;
  color: #22303C;
  border: 1px solid #B6985A;
  padding: 8px 15px;
  border-radius: 6px;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1201;
  transition: background 0.19s, color 0.19s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover { background: #B6985A; color: #fff; }

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(34,48,60,0.975);
  z-index: 1200;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.6,.14,.35,.98);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding-top: 24px;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 2.4rem;
  margin: 0 18px 24px 0;
  cursor: pointer;
  z-index: 1202;
  align-self: flex-end;
  transition: color 0.15s;
}
.mobile-menu-close:focus, .mobile-menu-close:hover { color: #B6985A; }
.mobile-nav {
  display: flex; flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  padding: 0 34px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 500;
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.17s, border-bottom 0.19s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #B6985A;
  border-bottom: 1px solid #B6985A;
}

@media (max-width: 1100px) {
  .main-nav { gap: 18px; }
}
@media (max-width: 900px) {
  .main-nav { gap: 12px; }
}
@media (max-width: 800px) {
  header .container { height: 65px; }
}

@media (max-width: 820px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
/* When mobile menu is open, prevent background scrolling */
body.menu-open { overflow: hidden; }

/* ====================================================================
   HERO SECTIONS
==================================================================== */
.hero { background: #22303C; color: #fff; padding: 64px 0 48px 0; }
.hero .container { display: flex; align-items: center; justify-content: center; }
.hero .content-wrapper { align-items: flex-start; gap: 20px; }
.hero h1 {
  color: #fff;
  font-size: 2.4rem;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}
.hero p { font-size: 1.15rem; color: #f0e9dc; margin-bottom: 24px; }
.hero .btn-primary { margin-top: 16px; }

/* ====================================================================
   BUTTONS & CTAs
==================================================================== */
.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 12px 36px; margin: 0;
  border-radius: 36px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.05rem; font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  box-shadow: 0 1.5px 8px rgba(34,48,60,0.08);
  transition: background 0.18s, color 0.18s, box-shadow 0.17s, border 0.2s;
  text-decoration: none;
  outline: none;
}
.btn-primary {
  background: #B6985A;
  color: #fff;
  border: 2px solid #B6985A;
  box-shadow: 0 3px 16px rgba(182,152,90,0.10);
}
.btn-primary:hover, .btn-primary:focus {
  background: #22303C;
  color: #fff;
  border: 2px solid #22303C;
}
.btn-secondary {
  background: #fff;
  color: #B6985A;
  border: 2px solid #B6985A;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #B6985A;
  color: #fff;
  border: 2px solid #B6985A;
}

/* ====================================================================
   FEATURE SECTIONS & ICONS
==================================================================== */
.features { background: #fff; }
.features h2 { color: #22303C; }
.features ul { margin-bottom: 18px; }
.feature-icons, .trust-signals {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 34px;
  margin: 26px 0 0 0;
}
.feature-icons div, .trust-signals div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #22303C;
  font-size: 1.08rem;
  background: #F6FAF9;
  padding: 14px 22px 14px 18px;
  border-radius: 14px;
  border: 1px solid #E8E6E2;
  font-weight: 500;
  box-shadow: 0 1.5px 8px rgba(34,48,60,0.05);
  transition: box-shadow 0.17s;
}
.feature-icons div img, .trust-signals div img {
  width: 32px;
  height: 32px;
  display: block;
}
.feature-icons div:hover, .trust-signals div:hover {
  box-shadow: 0 4px 14px rgba(182,152,90,0.13);
}

/* ====================================================================
   SERVICE LISTS
==================================================================== */
.service-list, .service-detailed-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 24px 0;
}
.service-item {
  background: #F6FAF9;
  border-radius: 16px;
  border: 1px solid #E5E5E5;
  padding: 24px 20px 20px 20px;
  flex: 1 1 250px;
  min-width: 220px;
  box-shadow: 0 1.5px 8px rgba(34,48,60,0.06);
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow 0.18s, transform 0.16s;
}
.service-item h3 {
  color: #B6985A;
  font-size: 1.18rem;
  margin-bottom: 10px;
}
.service-item p { font-size: 1rem; color: #2a3540; }
.service-item strong { color: #B6985A; font-weight: 600; }
.service-item:hover {
  box-shadow: 0 3px 18px rgba(182,152,90,0.14);
  transform: translateY(-2px) scale(1.025);
}

/* ====================================================================
   TESTIMONIALS & RATING
==================================================================== */
.testimonials {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 2px 12px rgba(34,48,60,0.07);
  padding: 40px 20px;
}
.testimonials h2 { color: #22303C; }
.testimonial-card {
  background: #F6FAF9;
  color: #22303C;
  border-radius: 16px;
  border: 1px solid #E5E5E5;
  box-shadow: 0 2px 12px rgba(34,48,60,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
  padding: 26px 28px 24px 28px;
  position: relative;
  font-size: 1.15rem;
  transition: box-shadow 0.2s, border 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 30px rgba(182,152,90,0.08);
  border: 1px solid #B6985A;
}
.testimonial-meta {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #7a715a;
  font-size: 1rem;
  margin-left: 3px;
  align-self: flex-end;
  letter-spacing: 0.01em;
  font-weight: 500;
}
.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.09rem;
  color: #B6985A;
  margin-top: 16px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
}
.rating img { width: 23px; height: 23px; display: block; }

/* ====================================================================
   CONTACT & FOOTER SECTIONS
==================================================================== */
.contact-info-snippet, .address-block, .email-block, .hours {
  font-size: 1.06rem;
  color: #22303C;
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.map-embed {
  background: #F6FAF9;
  border: 1px solid #E6E4E0;
  border-radius: 10px;
  padding: 18px;
  font-size: 1rem;
  margin-bottom: 18px;
}
footer {
  background: #22303C;
  color: #fff;
  padding: 44px 0 20px 0;
  margin-top: 64px;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
}
.logo-footer img { height: 44px; width: auto; display: block; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  opacity: 0.91;
  transition: color 0.18s, opacity 0.19s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #B6985A;
  opacity: 1;
  text-decoration: underline;
}
.footer-contact {
  color: #F3E9C8;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 7px;
  letter-spacing: 0.01em;
}
footer a {
  color: #B6985A;
  transition: color 0.2s;
}
footer a:hover, footer a:focus {
  color: #fff;
}

/* ====================================================================
   LEGAL PAGES & CONFIRMATION
==================================================================== */
.legal, .confirmation {
  background: #fff;
  padding: 48px 20px;
  border-radius: 18px;
  margin-bottom: 60px;
}
.legal h1, .confirmation h1 { color: #B6985A; }

/* ====================================================================
   TYPOGRAPHY ENHANCEMENTS & TABLES
==================================================================== */
::-webkit-input-placeholder { color: #A5A5A5; font-family: 'Open Sans', Arial, sans-serif; }
::-moz-placeholder { color: #A5A5A5; }
:-ms-input-placeholder { color: #A5A5A5; }
::placeholder { color: #A5A5A5; }

table { border-collapse: collapse; width: 100%; background: #fff; margin-bottom: 32px; }
th, td { border: 1px solid #C7B99A; padding: 10px 14px; text-align: left; }
th { background: #F6FAF9; font-family: 'Montserrat', Arial, Helvetica, sans-serif; font-weight: 600; }

/* ====================================================================
   RESPONSIVE DESIGN
==================================================================== */
@media (max-width: 1000px) {
  .container { padding-left: 14px; padding-right: 14px; }
}
@media (max-width: 900px) {
  .footer-contact, .footer-nav { font-size: 0.96rem; }
  .footer-nav { gap: 7px; }
  .logo img, .logo-footer img { height: 38px; }
}
@media (max-width: 820px) {
  .container, .section, .features, .services, .testimonials, .contact, .legal, .confirmation { padding-left: 10px; padding-right: 10px; }
}
@media (max-width: 690px) {
  .service-list, .service-detailed-list, .feature-icons, .trust-signals, .card-container, .content-grid, .footer .container {
    flex-direction: column;
    gap: 20px;
  }
  .main-nav { gap: 8px; }
}
@media (max-width: 700px) {
  .hero { padding: 38px 0 30px 0; }
  .hero h1 { font-size: 1.6rem; }
}
@media (max-width: 590px) {
  .footer .container { flex-direction: column; align-items: flex-start; gap: 22px; }
  .logo-footer { margin-bottom: 10px; }
}
@media (max-width: 540px) {
  .section, .features, .services, .testimonials, .contact, .legal, .confirmation { border-radius: 9px; padding: 26px 6px; }
  .testimonial-card { padding: 16px 8px; }
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: stretch; gap: 20px; }
}

/* ====================================================================
   MICRO-INTERACTIONS & TRANSITIONS
==================================================================== */
.section, .features, .services, .testimonials, .contact,
.legal, .confirmation, .testimonial-card, .service-item, .card {
  transition: box-shadow 0.17s, border 0.17s, background 0.16s, transform 0.12s;
}
.btn-primary, .btn-secondary, .main-nav a, .mobile-nav a {
  transition: background 0.18s, color 0.16s, border 0.18s, box-shadow 0.1s;
}

/* ====================================================================
   COOKIE CONSENT BANNER & MODAL
==================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #fff;
  border-top: 2px solid #B6985A;
  box-shadow: 0 -2px 16px rgba(34,48,60,0.12);
  z-index: 2100;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 28px 10px 18px 10px;
  font-size: 1.07rem;
  font-family: 'Open Sans', Arial, sans-serif;
  animation: slideUp 0.6s cubic-bezier(.6,.14,.35,.98);
  opacity: 0.96;
}
@keyframes slideUp {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: translateY(0); opacity: 0.96; }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 13px;
  margin-top: 8px;
}
.cookie-banner .cookie-btn {
  padding: 10px 28px;
  border-radius: 21px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.02rem;
  cursor: pointer;
  border: 2px solid #B6985A;
  background: #fff;
  color: #B6985A;
  margin: 0;
  transition: background 0.17s, color 0.14s, box-shadow 0.12s;
  font-weight: 600;
}
.cookie-banner .cookie-btn.accept {
  background: #B6985A; color: #fff; }
.cookie-banner .cookie-btn.accept:hover,
.cookie-banner .cookie-btn.accept:focus {
  background: #22303C; color: #fff; }
.cookie-banner .cookie-btn.reject { background: #fff; color: #22303C; }
.cookie-banner .cookie-btn.reject:hover,
.cookie-banner .cookie-btn.reject:focus {
  background: #B6985A; color: #fff; }
.cookie-banner .cookie-btn.settings {
  background: #fff; color: #B6985A;
  border: 2px solid #B6985A;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #B6985A; color: #fff;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top:0; left:0; width:100vw; height: 100vh;
  background: rgba(34,48,60,0.75);
  z-index: 2200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  animation: fadeIn 0.35s cubic-bezier(.7,.17,.33,1.02);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 21px;
  padding: 34px 24px 26px 24px;
  min-width: 310px;
  max-width: 97vw;
  box-shadow: 0 4px 24px rgba(34,48,60,0.23);
  animation: popIn 0.32s cubic-bezier(.67,.18,.26,.98);
}
@keyframes popIn {
  from { transform: scale(0.93);
         opacity:0.72; }
  to   { transform: scale(1); opacity:1; }
}
.cookie-modal-content h2 { color: #B6985A; margin-bottom: 18px; font-size: 1.28rem; }
.cookie-categories {
  margin: 20px 0 28px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.08rem;
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-category label {
  font-weight: 600;
  color: #22303C;
}
.cookie-category input[type='checkbox']:disabled + label {
  color: #B6985A;
  text-decoration: line-through;
  opacity: 0.95;
}
.cookie-modal-close {
  background: none;
  color: #B6985A;
  position: absolute;
  top: 21px; right: 30px;
  border: none;
  font-size: 2rem;
  cursor: pointer;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #22303C;
}
.cookie-modal-actions { display: flex; gap: 16px; justify-content: flex-end; }
.cookie-modal-actions button {
  padding: 10px 28px;
  border-radius: 21px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.03rem;
  border: 2px solid #B6985A;
  font-weight: 600;
  transition: background 0.15s, color 0.13s;
}
.cookie-modal-actions .accept {
  background: #B6985A;
  color: #fff;
}
.cookie-modal-actions .accept:hover, .cookie-modal-actions .accept:focus {
  background: #22303C;
  color: #fff;
}
.cookie-modal-actions .reject { background: #fff; color: #B6985A; }
.cookie-modal-actions .reject:hover, .cookie-modal-actions .reject:focus { background: #B6985A; color: #fff; }

/* ====================================================================
   UTILITIES, MISC, AND BRAND DETAILS
==================================================================== */
.gold {
  color: #B6985A;
}
.bg-primary { background: #22303C; color: #fff; }
.bg-accent { background: #B6985A; color: #fff; }
.rounded-lg { border-radius: 20px; }
.rounded-sm { border-radius: 8px; }
.center { text-align: center; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.gap-8 { gap: 8px; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-2 { margin-bottom: 8px; }
.mb-4 { margin-bottom: 16px; }
.mb-8 { margin-bottom: 32px; }

/* Premium gold divider */
.divider {
  width: 80px; height: 3px;
  background: #B6985A;
  border-radius: 2px;
  margin: 24px auto 32px auto;
}

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

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