/* == 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 {
  height: 100%;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  background: #F8FAFB;
  color: #222;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
*, *:before, *:after {
  box-sizing: inherit;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  list-style: none;
}
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  border: 0;
}

/* == FONT IMPORTS == */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,500,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

:root {
  --lux-navy: #1C3A5E;
  --lux-gold: #B89E53;
  --lux-gold-hover: #DCC891;
  --lux-gold-translucent: rgba(184,158,83,0.12);
  --lux-dark: #131A23;
  --lux-gray: #F2F5F7;
  --lux-white: #fff;
  --lux-shadow: 0 2px 14px 0 rgba(28,58,94,0.08), 0 2px 2px 0 rgba(0,0,0,0.03);
}

body {
  background-color: var(--lux-gray);
  color: var(--lux-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--lux-navy);
  font-weight: 700;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.25rem; margin-bottom: 14px; }
h4, h5, h6 { margin-bottom: 12px; }
p, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--lux-dark);
  font-size: 1rem;
  margin-bottom: 16px;
}
strong, b {
  font-weight: 700;
  color: var(--lux-navy);
}

/* === LAYOUT & CONTAINER === */
.container {
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0; /* Fallback for flex container */
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--lux-white);
  border-radius: 18px;
  box-shadow: var(--lux-shadow);
  transition: box-shadow 0.3s;
}
@media (max-width: 768px) {
  .section { padding: 20px 8px; margin-bottom: 40px; border-radius: 12px; }
}

/* === FLEX LAYOUTS === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--lux-white);
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: var(--lux-shadow);
  padding: 32px 24px;
  position: relative;
  transition: box-shadow 0.2s;
  min-width: 270px;
  flex: 1 1 270px;
}
.card:hover, .service-card:hover {
  box-shadow: 0 6px 20px 0 rgba(28,58,94,0.12);
}
.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;
    gap: 16px;
    align-items: flex-start;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--lux-gray);
  border-radius: 18px;
  box-shadow: 0 2px 8px 0 rgba(28,58,94,0.06);
  margin-bottom: 20px;
  min-width: 240px;
}
@media (max-width: 768px) {
  .testimonial-card { padding: 14px; border-radius: 12px; }
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* NATIVE FLEX == .card-grid, .features (not present in html, fallback if needed) */
.card-grid, .features {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* == HEADER & NAVIGATION == */
header {
  width: 100%;
  background: var(--lux-white);
  box-shadow: 0 2px 10px 2px rgba(28,58,94,0.04);
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  height: 84px;
}
header img {
  height: 46px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--lux-navy);
  position: relative;
  padding: 6px 0;
}
header nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--lux-gold);
  position: absolute;
  left: 0; bottom: -2px;
  transition: width 0.2s;
}
header nav a:hover::after {
  width: 100%;
}
@media (max-width: 1024px) {
  header .container {
    padding: 0 10px;
    gap: 10px;
  }
  header nav { gap: 18px; }
}
@media (max-width: 768px) {
  header .container {
    height: 60px;
    padding: 0 4px;
  }
  header nav, header .button.primary {
    display: none !important;
  }
}

/* === BURGER MENU & MOBILE NAV === */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 150;
  background: var(--lux-navy);
  color: var(--lux-gold);
  border: none;
  font-size: 2.1rem;
  border-radius: 8px;
  padding: 5px 12px;
  cursor: pointer;
  box-shadow: 0 1px 5px rgba(28,58,94,0.09);
  transition: background 0.2s;
}
.mobile-menu-toggle:hover {
  background: var(--lux-gold);
  color: var(--lux-navy);
}
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--lux-navy);
  color: var(--lux-gold);
  z-index: 200;
  transform: translateX(100vw);
  transition: transform 0.38s cubic-bezier(.77,0,.18,1);
  box-shadow: 0 6px 20px 0 rgba(28,58,94,0.20);
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2.1rem;
  color: var(--lux-gold);
  background: transparent;
  border: none;
  align-self: flex-end;
  margin: 14px 16px 0 0;
  cursor: pointer;
  transition: color 0.2s;
}
.mobile-menu-close:hover {
  color: var(--lux-gold-hover);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 42px auto 0 auto;
  align-items: center;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--lux-gold);
  font-size: 1.17rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 10px 8px;
  border-radius: 7px;
  transition: background 0.15s, color 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--lux-gold);
  color: var(--lux-navy);
}
@media (min-width: 769px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* == BUTTONS == */
.button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 12px 32px;
  border-radius: 10px;
  border: none;
  box-shadow: 0 2px 8px 0 rgba(28,58,94, .08);
  cursor: pointer;
  display: inline-block;
  margin-top: 16px;
  margin-bottom: 16px;
  transition: background 0.2s, color 0.18s, box-shadow 0.2s;
}
.button.primary {
  background: var(--lux-gold);
  color: var(--lux-navy);
  border: 2px solid var(--lux-gold);
}
.button.primary:hover, .button.primary:focus  {
  background: var(--lux-navy);
  color: var(--lux-gold);
  border-color: var(--lux-navy);
}
.button.secondary {
  background: var(--lux-navy);
  color: var(--lux-gold);
  border: 2px solid var(--lux-navy);
}
.button.secondary:hover, .button.secondary:focus {
  background: var(--lux-gold);
  color: var(--lux-navy);
  border-color: var(--lux-gold);
}
.button:active { transform: scale(0.97); }

.button[disabled], .button:disabled {
  filter: grayscale(0.7);
  opacity: 0.65;
  pointer-events: none;
}

/* == SECTIONS & FEATURE GRIDS == */
.feature_grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 14px;
}
.feature_grid li {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: var(--lux-white);
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(28,58,94,0.07);
  padding: 22px 20px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.2s;
}
.feature_grid li img {
  min-width: 48px;
  height: 48px;
}
.feature_grid li:hover {
  box-shadow: 0 2px 16px 4px rgba(184,158,83,0.10);
}

.service_cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 32px 0;
}
.service-card {
  background: var(--lux-white);
  border-radius: 13px;
  box-shadow: 0 2px 8px 0 rgba(28,58,94,0.06);
  padding: 28px 18px 22px 18px;
  flex: 1 1 250px;
  min-width: 220px;
  border-left: 5px solid var(--lux-gold);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover {
  border-left: 5px solid var(--lux-navy);
}
.service-card h3 {
  color: var(--lux-navy);
  margin-bottom: 10px;
  font-weight: 600;
}
.service-card p {
  margin-bottom: 0;
  color: var(--lux-dark);
}

.service_list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.service_list li {
  flex: 1 1 230px;
  background: var(--lux-white);
  border-radius: 13px;
  box-shadow: 0 2px 8px 0 rgba(28,58,94,0.04);
  padding: 24px 16px 18px 16px;
  margin-bottom: 20px;
  border-left: 5px solid var(--lux-gold);
}
.service_list h3 { margin-bottom: 8px; }
.service-price {
  color: var(--lux-navy);
  font-weight: 600;
  margin-top: 10px;
  font-family: 'Montserrat', Arial, sans-serif;
}

.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.features-list li {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 18px;
  background: var(--lux-white);
  border-radius: 10px;
  margin-bottom: 20px;
  min-width: 200px;
  flex: 1 1 190px;
  box-shadow: 0 1px 7px 0 rgba(28,58,94,0.04);
}
.features-list img {
  height: 32px; width: 32px;
}

/* == TESTIMONIALS == */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 18px;
}
.testimonial-slider .testimonial-card,
.testimonial-list .testimonial-card {
  flex: 1 1 320px;
  min-width: 270px;
  background: var(--lux-gray);
  color: var(--lux-dark);
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(28,58,94,0.09);
  padding: 22px 18px 18px 18px;
  margin-bottom: 20px;
  font-size: 1rem;
  transition: box-shadow 0.2s;
}
.testimonial-card .star_ratings {
  color: var(--lux-gold);
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 10px;
  letter-spacing: 2px;
}
.testimonial-card strong {
  color: var(--lux-navy);
}

/* == CASE STUDIES == */
.case_list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 28px;
}
.case_list li {
  flex: 1 1 320px;
  min-width: 240px;
  background: var(--lux-white);
  border-radius: 15px;
  box-shadow: 0 2px 8px 0 rgba(28,58,94, .06);
  padding: 26px 16px 18px 18px;
  margin-bottom: 20px;
  border-left: 4px solid var(--lux-gold);
}

/* == POSTS, CATEGORIES, FAQ == */
.post_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 18px;
}
.post_list article, .featured_post {
  flex: 1 1 320px;
  background: var(--lux-white);
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(28,58,94,.08);
  padding: 24px 16px 18px 16px;
  margin-bottom: 18px;
  border-left: 5px solid var(--lux-gold-translucent);
  transition: box-shadow 0.2s;
}
.featured_post {
  border-left: 5px solid var(--lux-gold);
  background: #fffbe5;
}
.post_list article a, .featured_post a  {
  color: var(--lux-navy);
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.16s;
}
.post_list article a:hover, .featured_post a:hover  {
  color: var(--lux-gold);
}
.categories {
  margin-top: 10px;
  font-size: 0.97rem;
  color: var(--lux-navy);
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.categories a {
  color: var(--lux-gold);
  font-weight: 500;
  margin-right: 8px;
  transition: color 0.18s;
}
.categories a:hover { color: var(--lux-navy); text-decoration: underline; }

.faq_accordion {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 14px;
}
.faq_accordion > div {
  background: var(--lux-white);
  border-radius: 11px;
  padding: 17px 14px 12px 14px;
  box-shadow: 0 2px 8px 0 rgba(28,58,94,.03);
  margin-bottom: 8px;
}
.faq_accordion h3 {
  font-size: 1.13rem;
  color: var(--lux-navy);
  font-weight: 500;
  margin-bottom: 7px;
}
.faq_accordion p {
  margin: 0;
  font-size: 0.99rem;
}

/* == FOOTER == */
footer {
  background: var(--lux-navy);
  color: var(--lux-white);
  padding: 36px 0 32px 0;
  border-radius: 18px 18px 0 0;
  margin-top: 40px;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 34px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
footer nav a {
  color: var(--lux-gold);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 3px 4px;
  border-radius: 5px;
  transition: background 0.14s, color 0.14s;
}
footer nav a:hover {
  background: var(--lux-gold);
  color: var(--lux-navy);
}
footer .address p {
  color: var(--lux-white);
  opacity: 0.93;
  margin-bottom: 7px;
  font-size: 0.99rem;
}
footer .address strong {
  color: var(--lux-gold);
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  footer nav {gap: 14px;}
}

/* === TEXT SECTIONS & TYPOGRAPHY === */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 8px;
}
.text-section ul, .text-section ol {
  padding-left: 22px;
  margin-bottom: 14px;
  list-style: disc inside;
}
.text-section li {
  margin-bottom: 6px;
}
h1 + .text-section, h2 + .text-section {
  margin-top: 10px;
}

/* == MISC == */
::-webkit-input-placeholder { color: #B8B8B8; }
::-moz-placeholder { color: #B8B8B8; }
:-ms-input-placeholder { color: #B8B8B8; }
::placeholder { color: #B8B8B8; }

.hr,
hr {
  border: 0;
  border-top: 1.5px solid var(--lux-gold-translucent);
  margin: 32px 0 20px 0;
}

/* == COOKIE CONSENT BANNER == */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: var(--lux-navy);
  color: var(--lux-gold);
  box-shadow: 0 -2px 18px 2px rgba(28,58,94,0.16);
  padding: 22px 16px 22px 16px;
  z-index: 300;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1rem;
  animation: slideInUp 0.5s;
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
  }
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
}
.cookie-banner .button {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1rem;
  padding: 8px 24px;
}
.cookie-banner .button {
  background: var(--lux-gold);
  color: var(--lux-navy);
  border: 2px solid var(--lux-gold);
}
.cookie-banner .button:hover {
  background: var(--lux-navy);
  color: var(--lux-gold);
  border-color: var(--lux-gold);
}
.cookie-banner .button.secondary {
  background: transparent;
  color: var(--lux-gold);
  border: 2px solid var(--lux-gold);
}
.cookie-banner .button.secondary:hover {
  background: var(--lux-gold);
  color: var(--lux-navy);
}

/* == COOKIE MODAL == */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: rgba(28,58,94,0.77);
  z-index: 310;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn .4s;
}
.cookie-modal {
  background: var(--lux-white);
  color: var(--lux-dark);
  max-width: 400px;
  width: 92vw;
  border-radius: 16px;
  box-shadow: 0 8px 36px 4px rgba(28,58,94,0.06);
  padding: 32px 24px 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: slideInDown 0.6s cubic-bezier(.82,-0.2,.18,1.2);
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: var(--lux-navy);
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  padding: 7px 0 7px 0;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  font-size: 1rem;
  color: var(--lux-dark);
}
.cookie-modal .switch {
  position: relative;
  width: 37px;
  height: 20px;
  display: inline-block;
  margin-right: 10px;
}
.cookie-modal .switch input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-modal .slider {
  position: absolute; cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--lux-gold-translucent);
  border-radius: 20px;
  transition: background 0.2s;
}
.cookie-modal .switch input:checked + .slider {
  background: var(--lux-gold);
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  background: var(--lux-navy);
  border-radius: 50%;
  transition: transform 0.18s;
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(17px);
  background: var(--lux-gold);
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.cookie-modal .button {
  padding: 7px 20px;
  font-size: 1rem;
}
.cookie-modal .button.secondary {
  background: transparent;
  color: var(--lux-gold);
  border: 2px solid var(--lux-gold);
}
.cookie-modal .button.secondary:hover, .cookie-modal .button.secondary:focus {
  background: var(--lux-gold);
  color: var(--lux-navy);
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 18px; right: 23px;
  background: transparent;
  border: none;
  font-size: 1.3rem;
  color: var(--lux-gold);
  cursor: pointer;
  transition: color 0.16s;
}
.cookie-modal .cookie-modal-close:hover { color: var(--lux-navy); }

/* == ANIMATIONS == */
@keyframes slideInUp {
  from { transform: translateY(80px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes slideInDown {
  from { transform: translateY(-200px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}

/* == MEDIA QUERIES & RESPONSIVENESS == */
@media (max-width: 1300px) {
  .container { max-width: 98vw; }
}
@media (max-width: 1024px) {
  .feature_grid, .service_cards, .service_list, .features-list, .card-container, .testimonial-slider, .testimonial-list, .post_list, .case_list {
    gap: 14px;
  }
}
@media (max-width: 900px) {
  .feature_grid, .service_cards, .service_list, .features-list, .card-container, .testimonial-slider, .testimonial-list, .post_list, .case_list {
    flex-direction: column;
    align-items: stretch;
  }
  .container { padding: 0 8px; }
}
@media (max-width: 768px) {
  .container { max-width: 100vw; padding: 0 4px; }
  h1 { font-size: 1.6rem; }
  h2 { font-size: 1.25rem; }
  .section { padding: 12px 2.5vw; }
}

/* == MOBILE SPACING == */
@media (max-width: 600px) {
  .testimonial-card, .service-card, .card, .case_list li, .featured_post, .post_list article, .faq_accordion > div, .features-list li { padding: 14px 8px 13px 8px; }
  .section { margin-bottom: 24px; border-radius: 8px; }
}

/* == VISUAL DETAILS: LUXURY PREMIUM TOUCH == */
.section, .card, .feature_grid li, .service-card, .service_list li, .features-list li, .case_list li, .post_list article, .featured_post, .testimonial-card, .faq_accordion > div {
  border: 1.5px solid var(--lux-gold-translucent);
  box-shadow: 0 2px 14px 0 rgba(184,158,83,0.03), 0 2px 2px 0 rgba(0,0,0,0.02);
}

/* GOLD ACCENT LINES for h2 */
h2 {
  position: relative;
  padding-left: 0.12em;
}
h2:before {
  content: '';
  display: inline-block;
  width: 32px; height: 3px;
  background: var(--lux-gold);
  border-radius: 2px;
  position: absolute;
  left: 0; top: -12px;
}
@media (max-width:600px) { h2:before { width: 18px; height: 2px; top: -7px; } }

/* == FOCUS STATES FOR ACCESSIBILITY == */
a:focus, .button:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus, .cookie-modal-close:focus {
  outline: 2.5px solid var(--lux-gold);
  outline-offset: 2.2px;
}

/* == HIGHLIGHT PREMIUM FIELDS == */
input, textarea, select {
  border: 1.5px solid var(--lux-gold-translucent);
  border-radius: 7px;
  padding: 9px 13px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 18px;
  background: #fff;
  color: var(--lux-dark);
  transition: border-color 0.19s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--lux-gold);
}

/* == REMOVE ABSOLUTE FOR CARDS, only for decoration == */
/* Already ensured: only .mobile-menu, .cookie-modal, .cookie-modal-overlay use fixed or absolute as needed */

/* == ADDITIONAL MICRO-INTERACTIONS == */
.button, .mobile-menu-toggle, .mobile-menu-close, .cookie-modal-close {
  transition: background 0.14s, color 0.14s, box-shadow .18s, border .15s;
}
.card, .service-card, .feature_grid li, .case_list li, .testimonial-card {
  transition: box-shadow 0.18s, border-color 0.18s;
}
.card:hover, .service-card:hover, .feature_grid li:hover, .case_list li:hover {
  box-shadow: 0 7px 28px 0 rgba(184,158,83,0.13);
  border-color: var(--lux-gold);
}

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