/* CSS RESET & NORMALIZATION */
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 {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  font-size: 16px;
  background: #f5f7fa;
  color: #243238;
  font-family: 'Roboto', Arial, sans-serif;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  color: inherit;
}

/* LUXURY PREMIUM THEME VARIABLES */
:root {
  --primary: #204E65;
  --secondary: #ffffff;
  --accent: #26B689;
  --gold: #C7A055;
  --background: #f5f7fa;
  --border-card: #e8e6e1;
  --shadow: 0 4px 24px 0 rgba(32, 78, 101, 0.10);
  --radius: 16px;
  --elevate: 0 2px 10px 0 rgba(32, 78, 101, 0.07);
  --font-display: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --text-dark: #20262e;
  --text-medium: #455361;
  --text-light: #909db3;
}

/* CONTAINER/SECTION LAYOUTS */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  box-sizing: border-box;
}
.section,
main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--secondary);
  border-radius: var(--radius);
  box-shadow: var(--elevate);
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* FLEXBOX CARD PATTERNS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--secondary);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  margin-bottom: 20px;
  padding: 32px 28px;
  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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 28px 24px 28px;
  background: #fff;
  border-radius: var(--radius);
  margin-bottom: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--gold);
  position: relative;
  max-width: 390px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.testimonial-card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 6px 36px 0 rgba(199,160,85,0.12);
}
.testimonial-author {
  font-size: 15px;
  color: var(--primary);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-top: 10px;
  border-left: 3px solid var(--gold);
  padding-left: 13px;
  font-style: italic;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* TYPOGRAPHY & HEADINGS */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.6rem;
  line-height: 1.16;
  margin-bottom: 12px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 8px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 6px;
}
h4 {
  font-size: 1.14rem;
  margin-bottom: 2px;
}
p, li {
  font-size: 1rem;
  color: var(--text-medium);
  line-height: 1.7;
}
strong {
  color: var(--primary);
  font-weight: 600;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 48px;
  padding: 0 28px;
  font-size: 1.14rem;
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 32px;
  outline: none;
  border: none;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 14px 0 rgba(32,78,101,0.05);
  cursor: pointer;
  transition: background 0.15s, box-shadow 0.15s, color 0.15s, transform 0.18s;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}
.btn-primary:before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(199,160,85,0.11) 0%, rgba(199,160,85,0.085) 100%);
  pointer-events: none;
  z-index: 0;
  border-radius: inherit;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--gold);
  color: var(--primary);
  box-shadow: 0 4px 20px 0 rgba(199,160,85,0.14);
  transform: translateY(-2px) scale(1.03);
}
.btn-primary:active {
  background: #b99648;
  color: var(--primary);
}
.btn-gold {
  background: var(--gold);
  color: var(--primary);
  border-radius: 32px;
  padding: 12px 32px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.18s, color 0.14s;
}
.btn-gold:hover, .btn-gold:focus {
  background: #b99648;
  color: #fff;
}

a.btn-primary {
  text-decoration: none;
}

/* MAIN NAVIGATION */
header {
  width: 100%;
  background: var(--secondary);
  box-shadow: 0 1px 12px 0 rgba(32,78,101,0.04);
  position: sticky;
  z-index: 130;
  top: 0;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 18px 20px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--primary);
  padding: 6px 0;
  position: relative;
  transition: color 0.14s;
}
.main-nav a:after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  opacity: 0;
  transition: opacity 0.13s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--gold);
}
.main-nav a:hover:after, .main-nav a:focus:after {
  opacity: 1;
}

header .btn-primary {
  margin-left: 18px;
  min-width: 140px;
}

/* HAMBURGER */
.mobile-menu-toggle {
  display: none;
  background: var(--gold);
  color: var(--primary);
  font-size: 2.2rem;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 1px 5px 0 rgba(32,78,101,.08);
  transition: background 0.13s, color 0.13s;
}
.mobile-menu-toggle:active {
  background: #b99648;
  color: #fff;
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32, 78, 101, 0.92);
  z-index: 2100;
  transform: translateX(-105%);
  transition: transform 0.42s cubic-bezier(.77,.22,.33,1);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 32px 24px 24px 0;
  background: var(--gold);
  color: var(--primary);
  font-size: 2.3rem;
  border-radius: 12px;
  width: 48px;
  height: 48px;
  border: none;
  box-shadow: 0 2px 12px 0 rgba(32,78,101,0.11);
  transition: background 0.13s;
  z-index: 2110;
}
.mobile-menu-close:active { background: #b99648; color: #fff; }
.mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 32px;
  margin-top: 12px;
}
.mobile-menu .mobile-nav a {
  padding: 13px 0;
  font-size: 1.28rem;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,0.14);
  width: 100%;
  transition: color 0.16s;
}
.mobile-menu .mobile-nav a:hover, .mobile-menu .mobile-nav a:focus {
  color: var(--gold);
}

/* HERO & CTA */
.hero {
  background: var(--primary);
  color: #fff;
  padding: 2.8rem 0;
  border-radius: var(--radius);
  margin-bottom: 48px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.hero h1,
.hero h2,
.hero h3 {
  color: #fff;
}
.hero p {
  color: #f1eee7;
}
.cta {
  background: var(--gold);
  color: var(--primary);
  box-shadow: 0 4px 16px 0 rgba(199,160,85,0.11);
  margin-bottom: 0;
}
.cta h2, .cta h3 {
  color: var(--primary);
}
.cta .btn-primary {
  background: var(--primary);
  color: #fff;
}
.cta .btn-primary:hover {
  background: #fff;
  color: var(--primary);
  border: 2px solid var(--primary);
}

/* FEATURE GRID & TILES */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 16px 0 0 0;
  justify-content: flex-start;
}
.feature-tile {
  background: #fff;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px 22px 24px;
  flex: 1 1 278px;
  min-width: 250px;
  max-width: 355px;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
  gap: 13px;
}
.feature-tile img {
  width: 44px;
  height: 44px;
  margin-bottom: 7px;
}
.feature-tile h3 {
  color: var(--primary);
  font-size: 1.24rem;
  margin-bottom: 3px;
}
.feature-tile:hover {
  box-shadow: 0 7px 28px 0 rgba(199,160,85,0.11);
  transform: translateY(-3px) scale(1.025);
}

/* FAQ ACCORDION */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 19px 26px;
  border-left: 5px solid var(--gold);
  box-shadow: 0 1px 7px 0 rgba(32,78,101,0.06);
  margin-bottom: 3px;
}
.faq-item h3 {
  color: var(--primary);
  font-size: 1.08rem;
  margin-bottom: 4px;
}
.faq-item p {
  color: var(--text-medium);
}

/* PRICING TABLE */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: center;
  margin: 28px 0 20px 0;
}
.pricing-plan {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 2px solid var(--gold);
  min-width: 258px;
  flex: 1 1 280px;
  max-width: 320px;
  padding: 32px 25px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
  transition: box-shadow 0.17s, transform 0.13s;
}
.pricing-plan strong {
  color: var(--gold);
}
.pricing-plan:hover {
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 6px 32px 0 rgba(199,160,85,0.13);
}
.pricing-plan h3 {
  color: var(--primary);
  font-size: 1.3rem;
}
.pricing-plan ul {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing-plan .btn-primary {
  margin-top: 16px;
}

.feature-comparisons {
  margin-top: 16px;
  background: #f6f5f1;
  border-radius: var(--radius);
  padding: 22px 28px;
  color: var(--text-medium);
  font-size: 1rem;
}
.feature-comparisons h4 {
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 1.13rem;
}

/* BLOG TEASERS */
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.blog-teaser {
  flex: 1 1 300px;
  max-width: 350px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px 22px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  transition: transform 0.18s, box-shadow 0.18s;
}
.blog-teaser:hover {
  box-shadow: 0 7px 28px 0 rgba(199,160,85,0.11);
  transform: scale(1.03) translateY(-3px);
}
.blog-teaser h3 {
  font-size: 1.17rem;
  color: var(--primary);
  margin-bottom: 2px;
}
.blog-teaser span {
  color: var(--gold);
  font-size: 0.96rem;
  margin-bottom: 7px;
}
.blog-teaser a {
  color: var(--primary);
  font-weight: bold;
  margin-top: auto;
  font-size: 1.01rem;
  transition: color 0.14s;
}
.blog-teaser a:hover {
  color: var(--gold);
}

.categories {
  margin-top: 9px;
}
.categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
}
.categories a {
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  border-bottom: 1.5px solid var(--gold);
  transition: color 0.13s;
}
.categories a:hover { color: var(--gold); }

/* SUPPORT/INFO */
.contact-details,
.location-map {
  margin-bottom: 22px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-details img {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
}
.location-map {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.location-map img {
  width: 66px;
  height: 66px;
  margin-bottom: 6px;
}

.services-list, .benefits-list {
  margin: 13px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.services-list li strong, .benefits-list li strong {
  color: var(--gold);
}

/* FOOTER */
footer {
  background: var(--primary);
  color: #fff;
  width: 100%;
  font-size: 1rem;
  margin-top: 56px;
  padding: 0;
}
footer .container {
  padding: 42px 20px 22px 20px;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 12px;
}
.footer-nav a {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.15s;
}
.footer-nav a:hover { color: #fff; }
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #ffeecd;
  font-size: 0.98rem;
}
.contact-info img {
  width: 18px;
  margin-right: 8px;
  vertical-align: bottom;
}
.social-links {
  display: flex;
  gap: 16px;
  margin: 8px 0 13px 0;
}
.social-links a img {
  width: 32px;
  height: 32px;
  filter: grayscale(0.45) brightness(0.96) drop-shadow(0 1px 3px #fff2);
  transition: filter 0.16s;
}
.social-links a:hover img {
  filter: drop-shadow(0 0 8px var(--gold)) saturate(1.1) brightness(1.14);
}
footer p {
  color: #ffeecd;
  font-size: 0.97rem;
  margin-top: 8px;
}

/* UTILITY */
.bg-gold {
  background: var(--gold)!important;
  color: var(--primary)!important;
}
.bg-primary { background: var(--primary)!important; color: #fff!important; }
.gradient-gold {
  background: linear-gradient(98deg,#fffbe7 64%,#C7A055 100%);
}
.rounded {
  border-radius: var(--radius)!important;
}
.shadow {
  box-shadow: var(--shadow)!important;
}

/* -------------------------
   RESPONSIVENESS: MOBILE FIRST
-------------------------- */
@media (max-width: 900px) {
  .container { padding: 0 10px; }
  .feature-grid, .blog-list, .pricing-table { gap: 16px; }
  .pricing-plan, .feature-tile, .blog-teaser { min-width: 210px; padding-left: 17px; padding-right: 17px; }
}
@media (max-width: 768px) {
  .container { padding: 0 2vw; }
  header .container {
    flex-wrap: wrap;
    gap: 10px;
    padding: 13px 10px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero,
  .section,
  main > section {
    padding: 30px 5vw 30px 5vw;
    border-radius: 13px;
  }
  .feature-grid,
  .blog-list,
  .pricing-table {
    flex-direction: column;
    gap: 18px;
  }
  .feature-tile, .pricing-plan, .blog-teaser {
    min-width: 0;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
  }
  .testimonial-card {
    max-width: 98vw;
    min-width: 0;
  }
  .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 22px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 6px;
  }
}
@media (max-width: 600px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.22rem; }
  h3 { font-size: 1.01rem; }
  .btn-primary { font-size: 0.97rem; padding: 0 20px; min-width: 110px; min-height: 40px; }
  footer .container { padding: 30px 6px 15px 6px; }
}

/* ---------------------------
   LUXURY MICRO-ANIMATION
--------------------------- */
.btn-primary, .pricing-plan, .feature-tile, .blog-teaser, .testimonial-card {
  transition: box-shadow 0.18s, background 0.16s, color 0.15s, transform 0.18s;
}

/* ---------------------------
   COOKIE CONSENT BANNER & MODAL
--------------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--secondary);
  border-top: 3px solid var(--gold);
  box-shadow: 0 -2px 16px 0 rgba(32,78,101,0.10);
  padding: 20px 10px 20px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 21000;
  transition: transform 0.32s cubic-bezier(.77,.22,.33,1);
  gap: 24px;
}
.cookie-banner.hide {
  transform: translateY(150%);
  pointer-events: none;
  opacity: 0.2;
}
.cookie-banner__text {
  color: var(--primary);
  font-size: 1rem;
  margin-right: 18px;
  max-width: 540px;
}
.cookie-banner__actions {
  display: flex;
  gap: 13px;
}
.cookie-banner__btn,
.cookie-banner__btn-settings {
  font-family: var(--font-display);
  font-weight: 600;
  border-radius: 30px;
  padding: 10px 24px;
  font-size: 1rem;
  cursor: pointer;
  outline: none;
  border: none;
  transition: background 0.12s, color 0.12s;
}
.cookie-banner__btn { background: var(--gold); color: var(--primary); }
.cookie-banner__btn:hover { background: var(--primary); color: #fff; }
.cookie-banner__btn.reject { background: #e4cfa1; color: var(--primary); }
.cookie-banner__btn.reject:hover { background: var(--primary); color: #fff; }
.cookie-banner__btn-settings { background: #fff; color: var(--primary); border: 1px solid var(--gold); }
.cookie-banner__btn-settings:hover { background: var(--gold); color: var(--primary); }

/* COOKIE MODAL */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(32,78,101, 0.45);
  z-index: 21200;
  align-items: center;
  justify-content: center;
}
.cookie-modal.open {
  display: flex;
  animation: fadeInCookieModal 0.35s cubic-bezier(.35,.35,.17,1.11);
}
@keyframes fadeInCookieModal {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal__box {
  background: #fff;
  border-radius: 22px;
  max-width: 95vw;
  width: 420px;
  padding: 28px 30px 24px 30px;
  box-shadow: 0 4px 30px 0 rgba(32,78,101,0.13);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  font-size: 1rem;
  color: var(--primary);
}
.cookie-modal__close {
  position: absolute;
  top: 16px; right: 15px;
  background: var(--gold);
  color: var(--primary);
  width: 38px; height: 38px;
  border-radius: 9px;
  border: none;
  font-size: 1.45rem;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}
.cookie-modal__close:hover { background: var(--primary); color: #fff; }
.cookie-modal__title {
  font-family: var(--font-display);
  font-size: 1.13rem;
  color: var(--primary);
  font-weight: bold;
  margin-bottom: 4px;
}
.cookie-modal__categories {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #f5f5ee;
  border-radius: 12px;
  padding: 9px 13px;
  font-size: 1rem;
}
.cookie-modal__category strong {
  margin-right: 16px;
}
.cookie-modal__switch {
  display: flex;
  align-items: center;
  gap: 5px;
}
.cookie-modal__switch input[type='checkbox'] {
  appearance: none;
  width: 34px;
  height: 19px;
  background: #e3e2e0;
  border-radius: 9px;
  position: relative;
  transition: background 0.12s;
  outline: none;
  cursor: pointer;
}
.cookie-modal__switch input[type='checkbox']:checked {
  background: var(--gold);
}
.cookie-modal__switch input[type='checkbox']::before {
  content: '';
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  top: 1px;
  left: 2px;
  transition: left 0.14s cubic-bezier(.7,0,.4,1.21);
}
.cookie-modal__switch input[type='checkbox']:checked::before {
  left: 15px;
}

.cookie-modal__actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
}
.cookie-modal__actions .btn-primary,
.cookie-modal__actions .btn-gold {
  min-width: 110px;
  padding: 9px 18px;
  font-size: 1rem;
  border-radius: 20px;
}
@media (max-width: 450px) {
  .cookie-modal__box { width: 99vw; padding: 22px 4vw 14px 4vw; }
  .cookie-modal__title { font-size: 1rem; }
}

/* END OF CSS */
