/* Mirage Leap – LUXURY PREMIUM STYLE – style.css */

/* 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;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  min-height: 100vh;
  background: #F7F7F7;
  color: #222222;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  color: #205C3B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ce9a1d;
  outline: none;
}
ul, ol {
  list-style: none;
}
hr {
  border: 0;
  height: 1px;
  background: #e5e5e5;
  margin: 24px 0;
}

/* LUXURY PREMIUM COLOR SYSTEM */
:root {
  --brand-primary: #205C3B;
  --brand-primary-dark: #163e29;
  --brand-secondary: #2B2D42;
  --brand-accent: #B4E197;
  --gold: #ce9a1d;
  --gold-dark: #b98c19;
  --offwhite: #F7F7F7;
  --card-bg: #fff;
  --card-shadow: 0 6px 18px rgba(34,36,42,0.07), 0 1.5px 6px rgba(34,36,42,0.07);
  --testi-bg: #fff;
  --testi-color: #272727;
  --footer-bg: #22242C;
  --footer-color: #e6e1d8;
  --footer-link: #B4E197;
  --footer-link-hover: #ce9a1d;
}

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

h1,h2,h3,h4,h5,h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: var(--brand-secondary);
  letter-spacing: 0.01em;
  line-height: 1.12;
}
h1 { font-size: 2.3rem; margin-bottom: 18px; }
h2 { font-size: 1.75rem; margin-bottom: 12px; }
h3 { font-size: 1.23rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; }
h5,h6 { font-size: 1rem; }

p, li, ul, ol, table, th, td, small {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #222;
  font-weight: 400;
  line-height: 1.6;
}
small { color: #888; font-size: 90%; }
strong { font-weight: 700; }

/* LUXURY DETAILS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.text-section {
  align-items: flex-start;
  gap: 14px;
}

/* HERO BUTTON PRIMARY */
.btn-primary {
  padding: 14px 32px;
  background: linear-gradient(90deg, var(--gold) 80%, var(--brand-accent) 100%);
  color: #fff;
  border: none;
  border-radius: 36px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: .04em;
  box-shadow: 0 6px 24px 0 rgba(206,154,29,0.10), 0 1.5px 6px rgba(32,92,59,.08);
  outline: none;
  cursor: pointer;
  transition: background 0.28s, box-shadow 0.28s, color 0.19s;
  margin-top: 16px;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, var(--gold-dark) 55%, var(--brand-primary) 100%);
  color: #fffbe7;
  box-shadow: 0 10px 40px 0 rgba(206,154,29,0.19);
}

/* IN-TEXT LINKS */
p a:not(.btn-primary),
ul a:not(.btn-primary),
div a:not(.btn-primary) {
  color: var(--brand-primary);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1.5px;
  transition: color .16s, border-color .16s;
}
p a:hover, ul a:hover, div a:hover {
  color: var(--gold-dark); border-color: var(--gold-dark);
}

/* MAIN NAVIGATION */
header {
  background: var(--offwhite);
  box-shadow: 0 2px 12px 0 rgba(44,32,10,0.07);
  position: sticky;
  top: 0;
  z-index: 100;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
  padding: 18px 0 15px 0;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--brand-secondary);
  font-weight: 600;
  font-size: 1rem;
  padding: 9px 12px;
  border-radius: 22px;
  transition: color .23s, background .21s;
  position: relative;
}
.main-nav img {
  height: 40px;
  margin-right: 14px;
}
.main-nav a:not(.btn-primary):hover, .main-nav a:not(.btn-primary):focus {
  background: var(--gold);
  color: #fff;
}
.main-nav a.btn-primary {
  margin-left: 16px;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--brand-primary);
  padding: 4px 10px;
  margin-left: auto;
  cursor: pointer;
  transition: color .20s;
  z-index: 400;
}
.mobile-menu-toggle:focus {
  color: var(--gold);
  outline: 2px solid var(--brand-accent);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,36,42,0.97);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  transform: translateX(100vw);
  transition: transform .38s cubic-bezier(.6,.5,.34,1);
  z-index: 500;
  padding-top: 32px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  position: absolute;
  top: 24px;
  right: 28px;
  cursor: pointer;
  z-index: 510;
  transition: color .16s;
}
.mobile-menu-close:focus {
  color: var(--gold);
  outline: 2px solid var(--brand-accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  width: 100%;
  margin-top: 42px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.2rem;
  padding: 16px 32px;
  border-radius: 30px;
  transition: background 0.18s, color 0.18s;
  width: 80%;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--gold);
  color: var(--brand-secondary);
}
@media (max-width: 1100px) {
  .container { max-width: 95vw; }
}
@media (max-width: 970px) {
  .main-nav {
    gap: 12px;
    font-size: 0.96rem;
  }
  .main-nav img {
    height: 34px;
  }
}
@media (max-width: 850px) {
  .main-nav a {
    padding: 7px 8px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu.active {
    display: flex;
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* HERO SECTION + GENERAL SECTION STYLES */
section {
  width: 100%;
  background: none;
  margin-bottom: 60px;
  padding: 40px 0px;
  display: flex;
  justify-content: center;
}
/* Responsive padding for sections */
@media (max-width: 600px) {
  section {
    padding: 28px 0 24px 0;
  }
  .container {
    padding: 0 7px;
  }
  .btn-primary {
    font-size: 0.96rem;
    padding: 12px 24px;
  }
}

/* Feature Grid (Index) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 18px 0 10px 0;
  justify-content: flex-start;
}
.feature-grid > div {
  background: var(--card-bg);
  border-radius: 26px;
  box-shadow: var(--card-shadow);
  border: 1px solid #eeddcc44;
  padding: 24px 20px;
  min-width: 220px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: box-shadow 0.24s, border-color .20s, background .18s;
  position: relative;
  margin-bottom: 20px;
}
.feature-grid > div h3 {
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 4px;
}
.feature-grid > div img {
  height: 44px;
  margin-bottom: 7px;
}
.feature-grid > div:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 32px rgba(206,154,29,0.13);
  background: #fffbe7;
  z-index: 2;
}

/* Service List (index overview) */
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  align-items: stretch;
}
.service-list li {
  flex: 1 1 265px;
  background: #fff;
  border: 1.5px solid #bdb09433;
  box-shadow: var(--card-shadow);
  border-radius: 21px;
  padding: 22px 20px 17px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  min-width: 230px;
  position: relative;
  transition: border-color .22s, box-shadow .22s;
}
.service-list li img {
  height: 32px;
  margin-bottom: 3px;
}
.service-list li strong {
  color: var(--brand-primary);
  font-size: 1.02rem;
}
.service-list li small {
  color: var(--gold);
  font-weight: 600;
}
.service-list li:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 36px rgba(206,154,29,0.14);
}

/* Card Containers */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: var(--card-bg);
  border-radius: 22px;
  box-shadow: var(--card-shadow);
  padding: 28px 20px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Content Grid */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

/* Text & Image Sections */
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 24px;
    align-items: stretch;
  }
  .feature-grid, .service-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer-nav {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
  }
}

/* Testimonial Card */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 28px;
  background: var(--testi-bg);
  color: var(--testi-color);
  box-shadow: 0 3px 18px rgba(37,37,37,0.10);
  border-radius: 24px;
  margin-bottom: 20px;
  border-left: 4px solid var(--gold);
  flex-direction: column;
  justify-content: flex-start;
  max-width: 700px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  transition: box-shadow .18s, border-left-color .18s;
}
.testimonial-card p {
  margin-bottom: 6px;
  font-weight: 500;
  color: #302b11;
  font-size: 1.06rem;
}
.testimonial-card div {
  color: var(--brand-primary);
  font-weight: 700;
  font-size: 0.97rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-left: auto;
}
.testimonial-card:hover {
  border-left-color: var(--brand-primary);
  box-shadow: 0 6px 28px rgba(32,92,59,0.13);
}

/* Feature Item Generic */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}

/* Services Portfolio Detailed List (services.html) */
.service-detailed-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 22px 0;
  justify-content: flex-start;
}
.service-detailed-list > div {
  background: var(--card-bg);
  border: 1.2px solid #eeddcc33;
  border-radius: 24px;
  box-shadow: var(--card-shadow);
  flex: 1 1 220px;
  min-width: 195px;
  max-width: 300px;
  padding: 26px 18px 19px 18px;
  display: flex;
  flex-direction: column;
  gap: 7px;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
  transition: border-color .19s, box-shadow .20s;
}
.service-detailed-list > div img {
  height: 40px;
  margin-bottom: 6px;
}
.service-detailed-list > div h3 {
  color: var(--brand-primary);
  font-size: 1.07rem;
}
.service-detailed-list .price {
  background: var(--gold);
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 0.96rem;
  padding: 6px 18px;
  border-radius: 18px;
  margin-top: 9px;
  align-self: flex-end;
  letter-spacing: .035em;
}
.service-detailed-list > div:hover {
  border-color: var(--gold);
  box-shadow: 0 10px 34px rgba(206,154,29,0.13);
  z-index: 3;
}

/* Pricing Table (services.html) */
.pricing-table {
  width: 100%;
  border-spacing: 0;
  margin: 40px 0 0 0;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 3px 16px rgba(44,44,44,0.09);
}
.pricing-table th, .pricing-table td {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  padding: 14px 18px;
  border-bottom: 1px solid #eee;
  text-align: left;
  color: #222;
}
.pricing-table th {
  background: var(--brand-primary);
  color: #fff;
  font-weight: 700;
}
.pricing-table tr:last-child td { border-bottom: none; }

/* Blog List Preview */
.blog-list-preview {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.blog-list-preview li {
  background: #fff;
  border-radius: 15px;
  padding: 22px 14px;
  box-shadow: 0 2px 12px rgba(44,36,18,0.04);
  margin-bottom: 20px;
  transition: box-shadow .16s;
}
.blog-list-preview li strong {
  color: var(--brand-primary);
  font-size: 1.05rem;
}
.blog-list-preview .tag {
  background: var(--brand-accent);
  color: var(--brand-secondary);
  font-family: 'Montserrat', Arial;
  border-radius: 10px;
  font-size: 0.87rem;
  padding: 2px 12px;
  margin-left: 12px;
  font-weight: 600;
}
.blog-list-preview li:hover {
  box-shadow: 0 4px 22px #ce9a1d18;
}

/* Impact summary on projects.html */
.impact-summary {
  background: var(--brand-accent);
  color: #173420;
  border-left: 5px solid var(--gold);
  border-radius: 0 16px 16px 0;
  padding: 22px 20px;
  margin: 18px 0 22px 0;
  font-weight: 500;
  font-size: 1.1rem;
  max-width: 730px;
}

/* Brand Logos (Contact Page) */
.trusted-brands {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 17px;
}
.trusted-brands img {
  height: 38px;
  filter: grayscale(0.2) contrast(1.2);
}

/* Thank You Steps (Thank You Page) */
.thank-you-next-steps {
  background: #fffbe7;
  border-radius: 18px;
  border-left: 4px solid var(--gold);
  padding: 20px 18px;
  margin: 18px 0 18px 0;
}

/* Footer */
footer {
  background: var(--footer-bg);
  color: var(--footer-color);
  padding: 48px 0 15px 0;
  width: 100%;
}
footer .container {
  align-items: stretch;
  padding-bottom: 0;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  color: var(--footer-color);
  width: 100%;
}
.footer-logo {
  flex: 0 0 55px;
  display: flex;
  align-items: flex-start;
}
.footer-logo img {
  height: 45px;
}
.footer-contact {
  flex: 1 1 270px;
  font-size: 0.98rem;
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--footer-color);
}
.footer-nav {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  flex-direction: column;
}
.footer-nav a {
  color: var(--footer-link);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.01rem;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: color .16s, border-color .12s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--footer-link-hover);
  border-bottom: 1px solid var(--footer-link-hover);
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 18px;
}
.footer-social a img {
  height: 30px;
  filter: grayscale(0.3) brightness(0.92);
  transition: filter .15s;
}
.footer-social a:hover img {
  filter: grayscale(0) brightness(1.15) drop-shadow(0 0 2px var(--gold));
}
.footer-copyright {
  width: 100%;
  text-align: center;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #b8b49a;
  margin-top: 26px;
  padding: 7px 0 0 0;
  font-size: 0.98rem;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .footer-nav {
    gap: 14px;
    flex-direction: column;
    align-items: flex-start;
    margin: 13px 0;
  }
  .footer-logo img {
    margin-bottom: 10px;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 28px 0 7px 0;
  }
  .footer-logo img { height: 31px; }
  .footer-copyright { font-size: 0.91rem; }
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: #232117ee;
  color: #fff;
  z-index: 6000;
  padding: 18px 10px 18px 18px;
  box-shadow: 0 -2px 18px rgba(0,0,0,.19);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  transition: transform .34s cubic-bezier(.7,.13,.34,1), opacity .24s;
}
.cookie-consent-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner .cookie-message {
  flex: 2 1 400px;
  color: #fffbe7;
}
.cookie-consent-banner .cookie-action-group {
  display: flex;
  gap: 16px;
  flex: 0 0 auto;
}
.cookie-consent-banner button {
  padding: 8px 22px;
  border: none;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 0.99rem;
  cursor: pointer;
  margin-right: 0;
  margin-top: 0;
  transition: background .17s, color .13s, box-shadow .18s;
  outline: none;
}
.cookie-consent-banner .accept {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 2px 8px #ce9a1d49;
}
.cookie-consent-banner .accept:focus,
.cookie-consent-banner .accept:hover { background: var(--brand-primary); color: #fffbe7; }
.cookie-consent-banner .reject {
  background: #eee0b2;
  color: #6d650c;
}
.cookie-consent-banner .reject:hover,
.cookie-consent-banner .reject:focus { background: #ddd080; color: #322900; }
.cookie-consent-banner .settings {
  background: transparent;
  color: var(--brand-accent);
  border: 1.5px solid var(--brand-accent);
  padding: 8px 18px;
}
.cookie-consent-banner .settings:hover, .cookie-consent-banner .settings:focus {
  border-color: var(--gold-dark);
  color: var(--gold);
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 9000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(28,19,2,.70);
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .27s;
}
.cookie-modal-overlay.active {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal {
  background: #fff;
  border-radius: 23px;
  box-shadow: 0 8px 40px #8263001b, 0 3px 10px #ce9a1d17;
  min-width: 300px;
  max-width: 97vw;
  padding: 38px 30px 24px 30px;
  color: #232217;
  font-family: 'Roboto', Arial, sans-serif;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: cookieModalFadeIn 0.36s cubic-bezier(.6,.65,.24,1);
}
@keyframes cookieModalFadeIn {
  0% { opacity: 0; transform: scale(0.98) translateY(60px); }
  60% { opacity: 1; transform: scale(1.03) translateY(-5px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--gold);
  font-size: 1.19rem;
}
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 0;
}
.cookie-modal .category .toggle {
  width: 34px;
  height: 18px;
  border-radius: 18px;
  background: #e5e0c9;
  border: 1.2px solid #ddd8bf;
  position: relative;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s;
}
.cookie-modal .category .toggle[data-checked="true"] {
  background: var(--gold);
  border-color: var(--gold);
}
.cookie-modal .category .toggle::after {
  content: '';
  display: block;
  position: absolute;
  left: 3px; top: 2px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1.5px 4px #705b1d17;
  transition: left .18s;
}
.cookie-modal .category .toggle[data-checked="true"]::after {
  left: 16px;
}
.cookie-modal .category .label {
  font-weight: 500;
  color: #302b11;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal .category .always-on {
  font-size: 0.93rem;
  color: #8d7205;
  margin-left: 7px;
}
.cookie-modal-buttons {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  margin-top: 18px;
}
.cookie-modal button {
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  padding: 7px 24px;
  font-size: 0.97rem;
  border: none;
  background: var(--gold);
  color: #fff;
  box-shadow: 0 2px 8px #ce9a1d49;
  cursor: pointer;
  transition: background .17s, color .16s;
}
.cookie-modal button.secondary {
  background: #eee0b2;
  color: #6d650c;
}
.cookie-modal button.secondary:hover, .cookie-modal button.secondary:focus { background: #ddd080; color: #322900; }
.cookie-modal .close-modal {
  position: absolute;
  top: 12px;
  right: 20px;
  background: transparent;
  border: none;
  color: #ac8d1b;
  font-size: 1.7rem;
  cursor: pointer;
  z-index: 12;
}
.cookie-modal .close-modal:focus {
  color: var(--brand-primary);
  outline: 2px solid var(--brand-accent);
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 21px 6vw 14px 6vw;
  }
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    font-size: 0.98rem;
  }
}

/* Table Formatting for small screen */
@media (max-width: 600px) {
  .pricing-table th, .pricing-table td {
    padding: 8px 7px;
    font-size: 0.95rem;
  }
}

/* Responsive adjustments for layouts */
@media (max-width: 600px) {
  .feature-grid > div, .service-list li, .service-detailed-list > div {
    min-width: 0;
    padding: 17px 7px;
  }
  .service-detailed-list {
    gap: 16px;
  }
}

/* Util: hide visually */
.sr-only {
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: -1px;
}

/* FOCUS/ACCESSIBILITY */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

/* Subtle card hover microinteraction */
.card:hover, .card:focus-within {
  box-shadow: 0 10px 34px rgba(206,154,29,0.11);
  z-index: 2;
  border-color: var(--gold);
}

/* Animations for button/links */
.btn-primary, .main-nav a, .footer-nav a, .mobile-nav a, .cookie-consent-banner button, .cookie-modal button {
  transition: background .18s, color .18s, box-shadow .20s, border-color .17s;
}

/* End of style.css for Mirage Leap LUXURY PREMIUM */
