/* =================== 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;
}
footer p {
  color: white;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #F3F6F9;
  color: #1A3550;
  font-family: 'Open Sans', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a {
  color: #1A3550;
  text-decoration: none;
  transition: color 0.2s;
}
img, svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
ul, ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  outline: none;
  border: none;
  background: none;
}

/* =================== BRAND VARIABLES & GLOBALS =================== */
:root {
  --primary: #1A3550;
  --secondary: #F3F6F9;
  --accent: #F59B23;
  --gold: #C9A14B; /* For subtle gold accents */
  --backdrop: rgba(35, 45, 65, 0.96);
  --white: #fff;
  --dark: #111;
}

body {
  background: var(--secondary);
  color: var(--primary);
  letter-spacing: 0.02em;
}

/* =================== TYPOGRAPHY =================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.22;
}
h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  letter-spacing: .01em;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.17rem;
  margin-bottom: 12px;
}
h4, h5, h6 {
  font-size: 1rem;
  margin-bottom: 8px;
}
p, ul, ol {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--primary);
}
strong {
  font-weight: 700;
  color: var(--primary);
}
blockquote {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--primary);
  border-left: 4px solid var(--gold);
  margin: 24px 0;
  padding: 8px 16px;
  background: var(--secondary);
  border-radius: 5px;
  box-shadow: 0 2px 10px rgba(202,161,75,0.04);
}
cite {
  display: block;
  font-size: 0.95rem;
  color: var(--accent);
  margin-top: 8px;
  font-style: normal;
  letter-spacing: 0.02em;
}
.author {
  color: var(--gold);
  font-size: 0.97rem;
  margin-top: 2px;
}

/* TYPOGRAPHY SCALE (mobile-first) */
@media (min-width: 600px) {
  h1 { font-size: 2.9rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.3rem; }
  p, ul, ol { font-size: 1.08rem; }
}
@media (min-width: 900px) {
  h1 { font-size: 3.2rem; }
  h2 { font-size: 2.3rem; }
}

/* =================== HEADER & NAVIGATION =================== */
header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(26, 53, 80, 0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 20px 24px 20px;
  position: relative;
  z-index: 30;
}
header img {
  height: 48px;
  width: auto;
}
header nav {
  display: flex;
  gap: 30px;
  margin-left: 30px;
  flex-wrap: wrap;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--primary);
  font-size: 1rem;
  padding: 5px 0;
  position: relative;
  transition: color 0.2s;
}
header nav a:hover,
header nav a:focus {
  color: var(--accent);
}
.cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  background: var(--gold);
  color: var(--primary);
  padding: 13px 32px;
  font-size: 1.05rem;
  border-radius: 30px;
  margin-left: 40px;
  box-shadow: 0 2px 14px rgba(201,161,75,0.10);
  letter-spacing: 0.07em;
  transition: background 0.12s, color 0.12s, box-shadow 0.22s;
  border: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 6px 32px rgba(201,161,75,0.18);
}

/* MOBILE BURGER MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 18px;
  top: 16px;
  z-index: 101;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--gold);
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: 0 2px 10px rgba(26,53,80,.12);
  transition: background 0.15s, color 0.22s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--gold);
  color: var(--primary);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--backdrop);
  z-index: 200;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.27,.98,.35,1);
  display: flex; flex-direction: column;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  position: absolute;
  top: 25px; right: 24px;
  font-size: 2.1rem;
  color: var(--gold);
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 11;
  width: 44px; height: 44px;
  border-radius: 50%;
  transition: background .13s, color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--gold);
  color: var(--primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: 92px;
  padding: 0 30px;
  gap: 22px;
  width: 100vw;
}
.mobile-nav a {
  color: var(--white);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.18rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(245,155,35,0.07);
  transition: color .15s;
  padding: 9px 0 9px 2px;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--accent);
}

@media (max-width: 1024px) {
  header nav {
    gap: 18px;
    margin-left: 12px;
  }
  .cta-btn {
    margin-left: 18px;
  }
}
@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  header {
    min-height: 60px;
    padding: 16px 9px 16px 14px;
  }
}

/* ============== MAIN LAYOUT CONTAINER ============== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  padding-left: 18px;
  padding-right: 18px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.content-wrapper {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

@media (max-width: 700px) {
  .container {
    padding-left: 6px;
    padding-right: 6px;
  }
  .section {
    padding: 24px 4px;
    margin-bottom: 36px;
  }
  .content-wrapper {
    gap: 18px;
  }
}

/* =================== HERO / CTA SECTION =================== */
.hero {
  background: var(--primary);
  color: var(--white);
  border-radius: 0 0 48px 48px;
  box-shadow: 0 10px 36px 0 rgba(26,53,80,0.06);
  min-height: 360px;
  display: flex;
  align-items: center;
}
.hero .container { align-items: flex-start; }
.hero .content-wrapper {
  gap: 20px;
  max-width: 650px;
  color: var(--white);
  padding: 8vh 0;
}
.hero h1, .hero h2, .hero p {
  color: var(--white);
}
.hero .cta-btn {
  background: var(--accent);
  color: var(--primary);
}
.hero .cta-btn:hover {
  background: var(--gold);
  color: var(--primary);
}

.cta {
  background: var(--primary);
  border-radius: 28px;
  color: var(--white);
  margin-bottom: 40px;
  box-shadow: 0 0 25px 0 rgba(26,53,80,0.10);
}
.cta .content-wrapper,
.cta .container {
  align-items: center;
  justify-content: center;
  text-align: center;
}
.cta h2,
.cta p {
  color: var(--white);
  margin-bottom: 10px;
}
.cta-link {
  margin-top: 8px;
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  font-size: 1.04rem;
  transition: color 0.17s;
}
.cta-link:hover {
  color: var(--accent);
}

/* =================== FLEX layouts for SECTION GRIDS =================== */
.features,
.team,
.project-grid,
.features-grid,
.service-list,
.idea-list,
.trend-list,
.service-list-short {
  margin-bottom: 30px;
  width: 100%;
}
.features-grid,
.service-list,
.service-list-short,
.idea-list,
.trend-list,
.project-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.features-grid > div,
.service-list > div,
.service-list-short > div,
.project-grid > div,
.blog-post-preview,
.address-box {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 4px 22px 0 rgba(26,53,80,0.09);
  padding: 24px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 20px;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  transition: box-shadow 0.16s, border-color 0.13s;
  position: relative;
}
.features-grid > div:hover,
.service-list > div:hover,
.service-list-short > div:hover,
.project-grid > div:hover {
  box-shadow: 0 9px 36px 0 rgba(245,155,35,0.11);
  border-color: var(--gold);
}
.features-grid img,
.service-list img {
  height: 44px;
  width: 44px;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 6px rgba(245,155,35,0.04));
}

@media (max-width: 900px) {
  .features-grid,
  .service-list,
  .service-list-short,
  .project-grid {
    gap: 12px;
  }
  .features-grid > div,
  .service-list > div,
  .service-list-short > div,
  .project-grid > div {
    padding: 16px;
    min-width: 170px;
  }
}
@media (max-width: 700px) {
  .features-grid,
  .service-list,
  .service-list-short,
  .project-grid {
    flex-direction: column;
    gap: 0;
  }
  .features-grid > div,
  .service-list > div,
  .service-list-short > div,
  .project-grid > div {
    min-width: 98%;
    width: 100%;
  }
}

/* =================== TESTIMONIALS & CARDS =================== */
.testimonials {
  margin-bottom: 60px;
  background: var(--white);
  padding: 30px 0;
  border-radius: 22px;
  box-shadow: 0 6px 34px 0 rgba(26, 53, 80, 0.10);
}
.testimonials .content-wrapper,
.testimonials .container {
  align-items: center;
  justify-content: center;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
  justify-content: center;
}
.testimonial-card {
  background: var(--secondary);
  border-radius: 16px;
  box-shadow: 0 2px 24px 0 rgba(26,53,80,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 26px 24px 20px 24px;
  min-width: 260px;
  max-width: 370px;
  margin-bottom: 20px;
  border-left: 6px solid var(--gold);
  color: var(--primary);
  font-family: 'Open Sans', Arial, sans-serif;
  transition: box-shadow 0.14s, transform 0.13s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 46px 0 rgba(245,155,35,0.10);
  transform: translateY(-4px) scale(1.01);
}
.testimonial-card p {
  color: var(--primary);
  font-size: 1.05rem;
  margin-bottom: 6px;
}
.testimonial-details {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.95rem;
  color: var(--gold);
}
.testimonial-details strong { color: var(--primary); font-weight: 700; }
.testimonial-details span {
  font-size:1.1rem; color: var(--accent); margin-left: 6px; letter-spacing:0.10em;
}

/* Ensure testimonial readability on all backgrounds */
.testimonial-card, .testimonials {
  background: var(--secondary);
  color: var(--primary);
}
.testimonial-card p, .testimonial-card strong {
  color: #202e41;
}

@media (max-width: 700px) {
  .testimonial-slider,
  .testimonials .content-wrapper {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .testimonial-card {
    max-width: 97vw;
    min-width: 0;
  }
}

/* =================== CARDS / GENERIC FLEX/SPACING =================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
.card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 2px 18px 0 rgba(26,53,80,0.08);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  flex: 1 1 260px;
  min-width: 210px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.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;
}
@media (max-width: 768px) {
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 20px; }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =================== LEGAL / POLICY CONTENT =================== */
.legal {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 1px 12px 0 rgba(26,53,80,0.06);
  margin-bottom: 34px;
}
.text-section {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.text-section ul, .text-section ol {
  padding-left: 16px;
  margin-top: 4px;
  margin-bottom: 4px;
}
.text-section li {
  padding-left: 8px;
  margin-bottom: 8px;
}

/* =================== BLOG =================== */
.blog-post-list {
  width: 100%;
  margin-bottom: 28px;
}
.blog-post-preview {
  border-left: 4px solid var(--gold);
  background: var(--white);
  margin-bottom: 20px;
  padding: 18px 20px 13px 24px;
  box-shadow: 0 1px 11px 0 rgba(26,53,80,0.05);
  border-radius: 10px;
  transition: box-shadow .17s, border-color .14s;
}
.blog-post-preview:hover {
  box-shadow: 0 7px 26px 0 rgba(245,155,35,0.11);
  border-color: var(--accent);
}

/* =================== NEWSLETTER =================== */
.newsletter-signup {
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 3px 18px 0 rgba(26,53,80,0.06);
  margin-bottom: 38px;
}

/* =================== COLOR PALETTE =================== */
.color-palette {
  display: flex;
  gap: 16px;
  margin: 14px 0 18px 0;
  flex-wrap: wrap;
}
.color-palette span {
  display: inline-block;
  min-width: 64px;
  padding: 10px 18px;
  color: var(--white);
  font-weight: 700;
  border-radius: 7px;
  font-family: 'Montserrat', Arial, sans-serif;
  box-shadow: 0 2px 8px 0 rgba(26,53,80,0.07);
  font-size: 1rem;
  text-shadow: 0 1px 10px rgba(26,53,80,0.14);
  border: 1px solid #eee;
}
.color-palette span[style*="#F3F6F9"] {
  color: #1A3550;
  border: 1px solid #d9dbe0;
  text-shadow: none;
}

/* =================== USP-LIST, IDEA LIST ETC =================== */
.usp-list, .idea-list, .trend-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.usp-list li,
.idea-list li,
.trend-list li {
  position: relative;
  padding-left: 26px;
  font-size: 1.06rem;
}
.usp-list li:before,
.idea-list li:before,
.trend-list li:before {
  content: "";
  display: inline-block;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  position: absolute;
  left: 0; top: 5px;
  box-shadow: 0 2px 7px 0 rgba(201,161,75,0.15);
}

/* =================== CONTACT BOX =============== */
.contact-information, .address-box {
  background: var(--secondary);
  border-radius: 9px;
  box-shadow: 0 1px 6px 0 rgba(26,53,80,0.04);
  padding: 14px 18px 10px 18px;
  margin-bottom: 14px;
}
.contact-information a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 600;
  transition: color .17s;
}
.contact-information a:hover,
.contact-information a:focus {
  color: var(--gold);
}

/* =================== FOOTER =================== */
footer {
  background: var(--primary);
  color: var(--secondary);
  padding: 48px 20px 26px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  border-radius: 32px 32px 0 0;
}
footer img {
  height: 44px; width: auto;
  margin-bottom: 10px;
}
footer nav {
  display: flex;
  gap: 24px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
footer nav a {
  color: var(--gold);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  transition: color .19s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--accent);
}
footer .contact-details {
  text-align: center;
  color: var(--secondary);
  font-size: 0.96rem;
  margin-top: 7px;
}
footer .contact-details a {
  color: var(--accent);
  text-decoration: underline;
  font-weight: 500;
  transition: color .17s;
}
footer .contact-details a:hover,
footer .contact-details a:focus {
  color: var(--gold);
}

@media (max-width: 700px) {
  footer {
    padding: 28px 8px 18px 8px;
    border-radius: 20px 20px 0 0;
    gap: 18px;
  }
  footer nav {
    gap: 14px;
  }
}

/* =================== MICRO-INTERACTIONS =================== */
button, .cta-btn, .cta-link, a {
  cursor: pointer;
  outline: none;
  transition: background 0.14s, color 0.14s, box-shadow .12s, border .13s;
}

/* Minimal gold accent underline on links (luxury detail) */
header nav a, .cta-link, footer nav a {
  position: relative;
}
header nav a::after, footer nav a::after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
  transition: width 0.18s cubic-bezier(.24,.9,.36,1);
  position: absolute;
  left: 0; bottom: -3px;
}
header nav a:hover::after,
footer nav a:hover::after {
  width: 90%;
}

/* =================== COOKIE CONSENT =================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  z-index: 800;
  background: var(--white);
  box-shadow: 0 -6px 38px 0 rgba(26,53,80,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 16px 18px 16px;
  border-radius: 22px 22px 0 0;
  border-top: 2px solid var(--gold);
  gap: 34px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s cubic-bezier(.2,.8,.42,1);
}
.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
}
.cookie-banner .cookie-message {
  color: var(--primary);
  font-size: 1.02rem;
  max-width: 590px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-btn {
  background: var(--gold);
  color: var(--primary);
  border-radius: 26px;
  padding: 10px 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 2px 12px 0 rgba(201,161,75,0.13);
  margin-left: 0;
  border: none;
  transition: background .13s, color .13s, box-shadow .2s;
  min-width: 110px;
}
.cookie-btn.accept {
  background: var(--accent);
  color: var(--primary);
}
.cookie-btn.reject {
  background: #ebebeb;
  color: #1A3550;
}
.cookie-btn.settings {
  background: var(--secondary);
  color: var(--primary);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: var(--gold);
  color: var(--primary);
  box-shadow: 0 6px 28px rgba(201,161,75,0.17);
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    top: unset; left: 0; right: 0;
    border-radius: 14px 14px 0 0;
    padding: 14px 4px 10px 4px;
  }
  .cookie-banner .cookie-message {
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-actions {
    flex-direction: column;
    gap: 7px;
  }
}

/* COOKIE SETTINGS MODAL */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: rgba(26,53,80,0.23);
  z-index: 902;
  transition: opacity .15s;
}
.cookie-modal-backdrop.visible {
  display: block;
}
.cookie-modal {
  display: none;
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%) scale(1.03);
  min-width: 330px;
  max-width: 97vw;
  background: var(--white);
  color: var(--primary);
  z-index: 9999;
  border-radius: 22px;
  box-shadow: 0 12px 60px 0 rgba(26,53,80,0.25);
  padding: 34px 32px 26px 32px;
  transition: transform .22s cubic-bezier(.23,.99,.24,1), opacity .14s;
  opacity: 0;
  pointer-events: none;
}
.cookie-modal.visible {
  display: block;
  opacity: 1;
  transform: translate(-50%,-50%) scale(1);
  pointer-events: all;
}
.cookie-modal h2 {
  margin-bottom: 16px;
  color: var(--primary);
  font-size: 1.34rem;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 18px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.05rem;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--gold);
  width: 19px; height: 19px;
}
.cookie-modal .cookie-actions {
  display: flex; gap: 12px; margin-top: 6px;
  justify-content: flex-end;
}
.cookie-modal .close-modal-btn {
  background: transparent;
  color: var(--primary);
  border-radius: 50%;
  font-size: 1.45rem;
  width: 36px;
  height: 36px;
  position: absolute;
  top: 11px; right: 14px;
  border: none;
  transition: background .13s, color .13s;
}
.cookie-modal .close-modal-btn:hover, .cookie-modal .close-modal-btn:focus {
  background: var(--accent);
  color: var(--white);
}
.cookie-category.essential input[type="checkbox"] {
  accent-color: #999;
}
.cookie-category.essential label {
  color: #bca76a;
}
.cookie-category.essential {
  opacity: 0.7;
  cursor: not-allowed;
}

@media (max-width: 700px) {
  .cookie-modal {
    min-width: 96vw;
    margin: 0 1vw;
    padding: 18px 13px 15px 13px;
  }
}

/* =================== THANK YOU SECTION =================== */
.thank-you, .thank-you .container, .thank-you .content-wrapper {
  text-align: center;
  align-items: center;
  justify-content: center;
}
.thank-you h1 {
  color: var(--gold);
  font-size: 2.0rem;
}

/* =================== BUTTONS, MICRO-EFFECTS =================== */
button:focus, .cta-btn:focus, .cookie-btn:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Subtle Floating effect */
.card:hover, .features-grid > div:hover, .service-list > div:hover, .project-grid > div:hover {
  transform: translateY(-4px) scale(1.016);
  box-shadow: 0 14px 32px rgba(245,155,35,0.06);
}

/* =================== UTILITY CLASSES =================== */
.hidden {
  display: none !important;
}
.text-center { text-align: center !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-20 { margin-bottom: 20px !important; }

/* =================== RESPONSIVE FIXES =================== */
@media (max-width: 880px) {
  h1 { font-size: 2.0rem; }
  footer { font-size: 0.97rem; }
}
@media (max-width: 480px) {
  h1 { font-size: 1.32rem; }
  h2 { font-size: 1.1rem; }
  .card, .features-grid > div, .service-list > div {
    padding: 8vw 3vw;
  }
}

/* =================== SCROLLBARS (luxury branded) =================== */
::-webkit-scrollbar {
  width: 9px;
}
::-webkit-scrollbar-track {
  background: var(--secondary);
}
::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 6px;
  border: 2px solid #f3f6f9;
}

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