/* ======= CSS 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, 
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 {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.5;
  background: #f6f6f8;
  color: #212D3B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #212D3B;
  text-decoration: none;
  transition: color 0.2s;
}
strong {
  font-weight: 600;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
li {
  margin-bottom: 8px;
}

/* ======= BRAND FONTS ======= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  color: #212D3B;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
p, .text-section p {
  font-size: 1rem;
  color: #222;
  margin-bottom: 14px;
  line-height: 1.7;
}

/* ======= LUXURY PREMIUM COLOR PALETTE ======= */
:root {
  --pc-primary: #212D3B;
  --pc-secondary: #F2B705;
  --pc-accent: #F6F8FB;
  --pc-gold: #debd67;
  --pc-gold-dark: #b59746;
  --pc-offwhite: #f6f6f8;
  --pc-dark: #181e26;
  --pc-border: #e5e0d8;
  --pc-shadow: rgba(33,45,59,0.07);
}

/* ======= LAYOUT: CONTAINERS & FLEX UTILS ======= */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px var(--pc-shadow);
}

/* ======= HEADER ======= */
header {
  background: var(--pc-dark);
  box-shadow: 0 2px 16px 0 rgba(33, 45, 59, 0.10);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 999;
}
.logo img {
  height: 48px;
  padding: 8px 0;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #fff;
  opacity: 0.88;
  font-weight: 600;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-bottom 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--pc-secondary);
  border-bottom: 2px solid var(--pc-secondary);
  opacity: 1;
}
.btn {
  display: inline-flex;
  align-items: center;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 12px 32px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  text-align: center;
  transition: background 0.23s, color 0.23s, box-shadow 0.23s;
  box-shadow: 0 2px 6px 0 var(--pc-shadow);
}
.btn-primary {
  background: linear-gradient(90deg, var(--pc-secondary) 40%, var(--pc-gold) 100%);
  color: #212D3B;
  border: 2px solid var(--pc-gold-dark);
  box-shadow: 0 4px 16px 0 rgba(242,183,5,0.10);
  letter-spacing: 0.04em;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, var(--pc-gold) 0%, var(--pc-secondary) 60%);
  color: #1d260a;
  box-shadow: 0 8px 32px 0 rgba(222,189,103,0.23);
}
.btn-secondary {
  background: #fff;
  color: var(--pc-gold-dark);
  border: 2px solid var(--pc-gold);
  font-weight: 700;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--pc-gold);
  color: #fff;
  border-color: var(--pc-secondary);
}

/* ======= MOBILE MENU ======= */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: var(--pc-secondary);
  cursor: pointer;
  margin-left: 18px;
  padding: 8px 12px;
  border-radius: 50%;
  transition: background 0.18s;
  z-index: 1502;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: rgba(242, 183, 5, 0.11);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(24,30,38,0.98);
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px 24px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: var(--pc-secondary);
  font-size: 2.1rem;
  margin-bottom: 16px;
  cursor: pointer;
  padding: 6px 14px;
  border-radius: 50%;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: rgba(242, 183, 5, 0.14);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}
.mobile-nav a {
  font-size: 1.22rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  background: none;
  padding: 14px 0 8px 0;
  border-bottom: 1.5px solid transparent;
  transition: color 0.2s, border-bottom 0.18s;
  margin-bottom: 0;
  line-height: 1.2;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--pc-gold);
  border-bottom: 1.5px solid var(--pc-gold);
}

/* ======= HERO SECTIONS ======= */
.hero {
  background: linear-gradient(132deg, #fefcf8 55%, var(--pc-accent) 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 10px 32px 0 var(--pc-shadow);
  margin-bottom: 60px;
  padding-top: 60px;
  padding-bottom: 44px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 21px;
}
.hero h1 {
  color: var(--pc-dark);
  font-size: 2.7rem;
  font-weight: 900;
  background-image: linear-gradient(94deg, var(--pc-gold) 22%, var(--pc-secondary) 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.hero p {
  font-size: 1.17rem;
  color: var(--pc-dark);
}

/* ======= FEATURES / CARDS / FLEX ======= */
.feature-grid, .service-list, .service-grid, .team-grid, .blog-list, .testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.feature-item, .service-summary, .service-item, .team-member, .testimonial-card, .blog-preview {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 3px 12px var(--pc-shadow);
  padding: 28px 22px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border: 1.2px solid var(--pc-border);
  transition: box-shadow 0.19s, border-color 0.18s;
}
.feature-item img, .service-summary img, .service-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 6px;
}
.feature-item h3, .service-summary h3, .service-item h3, .team-member h3 {
  font-size: 1.11rem;
  color: var(--pc-dark);
  margin-bottom: 6px;
}
.feature-item:hover, .service-summary:hover, .service-item:hover, .team-member:hover,
.blog-preview:hover {
  border-color: var(--pc-gold-dark);
  box-shadow: 0 8px 24px 0 rgba(246,184,4,0.17);
  z-index: 2;
}
.team-member {
  min-width: 220px;
  flex: 1 1 260px;
}
.service-item {
  min-width: 220px;
  flex: 1 1 250px;
}

/* ======= TESTIMONIALS ======= */
.testimonials {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
  align-items: stretch;
}
.testimonial-card {
  background: #f8f5ef;
  border-left: 6px solid var(--pc-gold);
  border-radius: 16px;
  box-shadow: 0 2px 12px var(--pc-shadow);
  padding: 24px 24px 20px 32px;
  color: #222;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 380px;
  min-width: 250px;
  font-size: 1rem;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, border-color 0.18s;
}
.testimonial-card .stars {
  color: var(--pc-gold-dark);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1.1px;
  margin-bottom: 8px;
}
.testimonial-card span {
  color: #7d6242;
  font-size: 0.96rem;
  font-style: italic;
  margin-top: 8px;
}
.testimonial-card:hover {
  border-color: var(--pc-secondary);
  box-shadow: 0 8px 36px 0 rgba(242,183,5,0.13);
}

/* ======= BLOG ======= */
.blog-list {
  gap: 24px;
  margin-bottom: 20px;
}
.blog-preview {
  background: #f8f5ef;
  border: 1.2px solid var(--pc-border);
  border-radius: 16px;
  box-shadow: 0 2px 10px var(--pc-shadow);
  padding: 26px 21px 22px 21px;
  min-width: 250px;
  flex: 1 1 290px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.blog-preview h3 {
  font-size: 1.17rem;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}
.blog-categories {
  margin-top: 12px;
  font-size: 1.01rem;
  color: #836F44;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.blog-categories a {
  color: var(--pc-gold-dark);
  text-decoration: underline;
  margin-right: 7px;
  font-weight: 500;
  font-family: 'Montserrat', sans-serif;
  transition: color 0.2s;
}
.blog-categories a:hover {
  color: var(--pc-secondary);
}

/* ======= CTA SECTION ======= */
.section .btn,
.content-wrapper .btn {
  margin-top: 10px;
}

/* ======= FOOTER ======= */
footer {
  background: var(--pc-primary);
  color: #fff;
  padding-top: 32px;
  padding-bottom: 16px;
  border-radius: 32px 32px 0 0;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}
.footer-logo img {
  height: 44px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  opacity: 0.79;
  transition: color 0.15s, opacity 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--pc-gold);
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
}
.footer-contact img {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  margin-right: 7px;
}
.footer-bottom {
  width: 100%;
  border-top: 1px solid rgba(246, 184, 4, 0.13);
  text-align: center;
  padding: 12px 0 4px 0;
  font-size: 0.94rem;
  letter-spacing: 0.01em;
  color: #ccc6bb;
  margin-top: 8px;
}

/* ======= CONTACT & MAP ======= */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 18px;
  font-size: 1.05rem;
}
.contact-details img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 8px;
}
.map-location {
  background: #fffdec;
  border-radius: 12px;
  padding: 20px 18px;
  margin-top: 12px;
  font-size: 1.01rem;
  color: #5C4D2A;
  border: 1px solid #f2e2a8;
}

/* ======= LISTS ======= */
.value-list, .feature-list, .benefit-highlights, .hours-list {
  list-style: none;
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 8px;
}
.value-list img, .feature-list img {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin-right: 8px;
}
.value-list li, .feature-list li, .benefit-highlights li {
  background: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  color: #292311;
  border-left: 3px solid var(--pc-gold);
  font-size: 1rem;
  margin-bottom: 0px;
}
.hours-list li {
  padding: 8px 2px;
  font-size: 1rem;
  color: #434;
}

/* ======= SECTION SPACING & ALIGNMENT ======= */
.section {
  margin-bottom: 60px !important;
  padding: 40px 20px !important;
}
.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;
}

/* ======= RESPONSIVE DESIGN ======= */
@media (max-width: 1100px) {
  .feature-grid, .service-list, .service-grid, .team-grid, .testimonials, .blog-list {
    gap: 18px;
  }
}
@media (max-width: 900px) {
  .feature-grid, .service-list, .service-grid, .team-grid, .testimonials, .blog-list {
    flex-wrap: wrap;
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-main {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .footer-contact {
    font-size: 0.99rem;
  }
  .section {
    margin-bottom: 36px;
    padding: 22px 4px;
  }
  .content-wrapper {
    gap: 13px;
  }
  .feature-grid, .service-list, .testimonials, .team-grid, .blog-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature-item, .service-summary, .service-item, .testimonial-card, .team-member, .blog-preview {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .contact-details, .map-location {
    font-size: 0.97rem;
  }
  .hero {
    padding-top: 34px;
    padding-bottom: 18px;
    border-radius: 0 0 16px 16px;
  }
  h1 {
    font-size: 1.75rem;
  }
  h2 {
    font-size: 1.25rem;
  }
}
@media (max-width: 420px) {
  .container {
    padding-left: 1.5vw;
    padding-right: 1.5vw;
  }
  .btn, .btn-primary, .btn-secondary {
    font-size: 0.99rem;
    padding: 9px 15px;
  }
  .hero h1 {
    font-size: 1.22rem;
  }
}

/* ======= MODALS & TRANSITIONS ======= */
/* Reusable transitions / mini fade or slide */
.fade-in {
  animation: fadein-anim 0.45s cubic-bezier(.36,.37,.57,1.11);
}
@keyframes fadein-anim {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

/* ======= COOKIE CONSENT BANNER ======= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fffbe9;
  box-shadow: 0 -2px 18px 0 rgba(33,45,59,0.11);
  padding: 28px 18px 20px 18px;
  border-top: 2.5px solid var(--pc-gold);
  z-index: 3000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 1rem;
  max-width: 100vw;
  transition: transform 0.35s cubic-bezier(.82,0,.36,1.15);
}
.cookie-banner.hide {
  transform: translateY(200px);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-message {
  color: #70540d;
  font-size: 1.01rem;
  margin-right: 10px;
  flex: 1;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-actions .btn {
  font-size: 0.97rem;
  padding: 8px 19px;
  border-radius: 24px;
}
.cookie-actions .btn-cookie-primary {
  background: var(--pc-gold);
  color: #211c0b;
  border: 2px solid var(--pc-gold-dark);
  font-weight: 700;
  letter-spacing: 0.03em;
}
.cookie-actions .btn-cookie-secondary {
  background: #fff;
  color: var(--pc-gold-dark);
  border: 2px solid var(--pc-gold-dark);
}
.cookie-actions .btn-cookie-settings {
  background: none;
  color: #634b12;
  border: none;
  text-decoration: underline;
  font-weight: 500;
  padding: 8px 10px;
}
.cookie-actions .btn-cookie-settings:hover {
  color: var(--pc-secondary);
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  z-index: 3010;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(33,45,59,0.44);
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookie-modal {
  background: #fff;
  border-radius: 18px;
  max-width: 390px;
  width: 95vw;
  padding: 32px 24px 24px 24px;
  box-shadow: 0 8px 48px 0 rgba(33,45,59,0.27);
  color: #2d2315;
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  animation: fadein-anim 0.5s cubic-bezier(.38,.1,.68,1.18);
}
.cookie-modal h3 {
  color: var(--pc-gold-dark);
  font-size: 1.22rem;
  margin-bottom: 6px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
  font-size: 1.02rem;
}
.cookie-modal input[type="checkbox"]:checked + span{
  font-weight: 600;
  color: var(--pc-secondary);
}
.cookie-options {
  margin-bottom: 8px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.cookie-modal .btn {
  margin-top: 12px;
}
.cookie-modal .cookie-close-modal {
  position: absolute;
  top: 7px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #886817;
  cursor: pointer;
  padding: 4px 10px;
  border-radius: 50%;
  transition: background 0.15s;
}
.cookie-modal .cookie-close-modal:hover {
  background: rgba(255, 222, 108, 0.12);
}

/* ======= MICRO-INTERACTIONS ======= */
.btn,
.btn-primary,
.btn-secondary,
.main-nav a,
.footer-nav a,
.card,
.feature-item,
.service-item,
.testimonial-card,
.blog-preview,
.mobile-menu-toggle,
.mobile-menu-close,
.cookie-banner .btn,
.cookie-banner .btn-cookie-settings,
.cookie-modal .btn,
.cookie-modal .cookie-close-modal {
  transition: 
    color 0.18s cubic-bezier(.39,.15,.46,.98),
    background 0.22s cubic-bezier(.36,.67,.83,.51),
    box-shadow 0.18s cubic-bezier(.38,.43,.74,1.23),
    border-color 0.18s cubic-bezier(.39,.21,.38,1.19),
    opacity 0.21s cubic-bezier(.41,.32,.41,1.12);
}
.card, .feature-item, .service-item, .testimonial-card, .blog-preview {
  will-change: box-shadow, border-color;
}
.card:hover, .feature-item:hover, .service-item:hover, .testimonial-card:hover, .blog-preview:hover {
  box-shadow: 0 12px 36px 0 var(--pc-shadow), 0 1.5px 8px 0 var(--pc-gold-dark);
  border-color: var(--pc-secondary);
  opacity: 0.97;
}

/* ======= SCROLLBAR FOR PREMIUM FEEL ======= */
::-webkit-scrollbar {
  width: 8px;
  background: #fffbe9;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg,var(--pc-gold),var(--pc-secondary));
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--pc-gold-dark);
}

/* ======= ACCESSIBILITY ======= */
:focus-visible {
  outline: 2px solid var(--pc-secondary);
  outline-offset: 2px;
}

/* ======= PRINT OVERRIDE ======= */
@media print {
  header, footer, .mobile-menu, .cookie-banner { display: none !important; }
  body { background: #fff !important; color: #000 !important; }
  .section, .card, .feature-item, .service-item, .testimonial-card { box-shadow: none !important; border: none !important; }
}
