/* ============================================================
  RESET & BASE STYLES
============================================================ */
html {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background-color: #F5F5F5;
  color: #232323;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  min-height: 100vh;
  line-height: 1.6;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
  border: 0;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}
a {
  color: #A88317;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #293B47;
  text-decoration: underline;
}
strong {
  font-weight: 700;
}
em {
  font-style: italic;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #293B47;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.25rem;
}
p {
  margin-bottom: 18px;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 6px 30px rgba(41,59,71,.04), 0 1.5px 2.5px rgba(168,131,23,.10);
  position: relative;
}

@media (max-width: 768px) {
  section {
    padding: 28px 10px;
    margin-bottom: 40px;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.35rem; }
  h3 { font-size: 1.1rem; }
}

/* ============================================================
  COLOR PALETTE & LUXURY ACCENTS
============================================================ */
:root {
  --color-primary: #293B47;
  --color-secondary: #6CA9AA;
  --color-accent: #F5F5F5;
  --color-background: #fff;
  --color-gold: #A88317;
  --color-gold-light: #f2e6c9;
  --color-border: #E7E9EA;
  --color-shadow: rgba(41, 59, 71, 0.07);
  --color-dark: #232323;
  --color-passive: #9099a8;
  --color-footer: #24303a;
  --color-footer-text: #cfcfcf;
}

/* Luxury: integrate gold accents with outline, buttons, headings */

/* ============================================================
  LAYOUT UTILS
============================================================ */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 12px;
  padding-right: 12px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (min-width: 992px) {
  .content-wrapper {
    gap: 24px;
  }
}

/* Utility classes */
.mt-24 { margin-top: 24px; }
.mb-36 { margin-bottom: 36px; }
.text-center { text-align: center; }

/* ============================================================
  HEADER & NAVIGATION
============================================================ */
header {
  width: 100%;
  background-color: var(--color-background);
  box-shadow: 0 2px 18px rgba(41,59,71,.07);
  position: sticky;
  top: 0;
  z-index: 1002;
  padding: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
}
header a img {
  height: 46px;
  margin-right: 24px;
}
nav {
  display: flex;
  flex-direction: row;
  gap: 28px;
  align-items: center;
}
nav a {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.04rem;
  font-weight: 500;
  padding: 3px 0;
  transition: color 0.18s;
  border-bottom: 2px solid transparent;
}
nav a:hover, nav a:focus {
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
}
.cta-button {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: var(--color-gold);
  color: #fff;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 11px 32px;
  border: none;
  border-radius: 38px;
  box-shadow: 0 2px 16px rgba(168,131,23,0.10);
  text-shadow: 0 1px 3px rgba(168,131,23,.05);
  transition: background 0.18s, color 0.18s, box-shadow 0.2s;
  cursor: pointer;
  letter-spacing: 0.018em;
  margin-left: 18px;
  display: inline-block;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: #8f6c13;
  color: #fffbe6;
  box-shadow: 0 6px 24px rgba(168,131,23,0.12), 0 1.2px 2.5px rgba(41,59,71,0.10);
  text-decoration: none;
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: var(--color-gold);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 12px;
  box-shadow: 0 2px 10px rgba(168,131,23,0.15);
  transition: background 0.19s;
  z-index: 2001;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #8f6c13;
}

/* MOBILE MENU */
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(86deg,var(--color-background) 92%,var(--color-gold-light) 100%);
  box-shadow: 0 0 30px rgba(41,59,71,.17);
  z-index: 3000;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.8,.1,.24,1);
  padding: 0 0;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu .mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  color: var(--color-gold);
  border: none;
  font-size: 2.2rem;
  padding: 24px 24px 0 0;
  cursor: pointer;
  transition: color 0.19s;
  border-radius: 50%;
  z-index: 3001;
}
.mobile-menu .mobile-menu-close:hover, .mobile-menu .mobile-menu-close:focus {
  color: #8f6c13;
}
.mobile-menu nav.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 38px;
  padding-left: 30px;
  gap: 28px;
}
.mobile-menu nav.mobile-nav a {
  color: var(--color-primary);
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.18s;
  padding: 6px 0;
}
.mobile-menu nav.mobile-nav a:active, .mobile-menu nav.mobile-nav a:hover {
  color: var(--color-gold);
}

@media (max-width: 1100px) {
  header nav, header .cta-button {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1100px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none !important;
  }
}

/* ============================================================
  HERO SECTION
============================================================ */
.hero {
  background: linear-gradient(96deg, #fff 85%, var(--color-gold-light) 100%);
  box-shadow: 0 12px 40px rgba(41,59,71,0.07);
  border-radius: 24px;
  padding: 80px 20px 80px 20px;
  margin-bottom: 60px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 26px;
}
@media (max-width: 768px) {
  .hero {
    padding: 48px 10px;
    margin-bottom: 32px;
  }
}

/* ============================================================
  FLEX GUIDELINES & COMPONENTS
============================================================ */
/* Feature List, Card and Grid Flex Containers */
.feature-grid, .service-tile-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: space-between;
}
.feature-grid > div, .service-tile-list > div {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 32px 24px;
  flex: 1 1 284px;
  min-width: 220px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 20px;
  transition: box-shadow 0.2s, border-color 0.2s;
  position: relative;
}
.feature-grid > div:hover, .service-tile-list > div:hover {
  border-color: var(--color-gold);
  box-shadow: 0 6px 40px rgba(168,131,23,.10), 0 1.2px 2.5px rgba(41,59,71,.09);
}
.feature-grid img, .service-tile-list img {
  width: 44px;
  height: 44px;
  margin-bottom: 14px;
}
.feature-grid h3, .service-tile-list h2 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--color-gold);
  font-weight: 600;
  font-size: 1.18rem;
  margin-bottom: 7px;
  line-height: 1.2;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px var(--color-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 28px 22px;
  min-width: 240px;
  flex: 1 1 300px;
  transition: box-shadow 0.2s, border-color 0.2s;
  border: 1.5px solid var(--color-border);
}
.card:hover {
  border-color: var(--color-gold);
  box-shadow: 0 6px 32px rgba(168,131,23,.11), 0 1.2px 2.5px rgba(41,59,71,.08);
}

.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: 900px) {
  .feature-grid, .service-tile-list, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .service-tile-list > div {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 900px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  background: #fffbe3;
  border-radius: 13px;
  border-left: 5px solid var(--color-gold);
  box-shadow: 0 3px 18px rgba(168,131,23,0.07);
  padding: 24px 24px 20px 32px;
  margin-bottom: 24px;
  color: #222; /* readability on light background */
  font-size: 1.06rem;
  max-width: 760px;
  transition: box-shadow 0.18s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 32px rgba(168,131,23,.14), 0 1.2px 2.5px rgba(41,59,71,.12);
}

.project-description {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 8px var(--color-shadow);
  border-left: 4px solid var(--color-secondary);
  margin-bottom: 20px;
  padding: 24px 20px 14px 32px;
  color: var(--color-dark);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* List styles for Steps, FAQ, etc */
ol {
  counter-reset: ol;
  list-style-type: none;
}
ol > li {
  counter-increment: ol;
  position: relative;
  padding-left: 32px;
  margin-bottom: 17px;
}
ol > li:before {
  content: counter(ol) '.';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 700;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1.12rem;
}
dt {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 1.11rem;
}
dd {
  margin-bottom: 16px;
  margin-left: 0;
}


/* ============================================================
  USPs, BADGES, ICONS
============================================================ */
.usps ul {
  margin-bottom: 24px;
  margin-top: 10px;
}
.certification-badges {
  display: flex;
  flex-direction: row;
  gap: 22px;
  margin-top: 12px;
}
.certification-badges img {
  width: 38px;
  height: auto;
  filter: grayscale(0.1) brightness(1.01) drop-shadow(0 1px 2px rgba(41,59,71,0.07));
  opacity: 0.95;
}


/* ============================================================
  CONTACT & LOCATION BLOCKS
============================================================ */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.contact-info p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.07rem;
  color: var(--color-primary);
  margin-bottom: 0;
}
.contact-info img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.location-details {
  background: var(--color-accent);
  border-left: 5px solid var(--color-secondary);
  border-radius: 9px;
  box-shadow: 0 2px 10px rgba(108,169,170,.06);
  padding: 18px 18px 14px 28px;
  color: #293B47;
  margin-bottom: 20px;
}

/* ============================================================
  FOOTER
============================================================ */
footer {
  background: var(--color-footer);
  color: var(--color-footer-text);
  width: 100%;
  padding: 34px 0 18px 0;
  border-top: 2.5px solid var(--color-gold);
}
footer .container {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
footer nav {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
}
footer nav a {
  color: var(--color-footer-text);
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  padding: 4px 0;
  font-weight: 400;
  opacity: 0.88;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-bottom 0.18s;
}
footer nav a:hover, footer nav a:focus {
  color: var(--color-gold);
  border-bottom: 2px solid var(--color-gold);
  opacity: 1;
}
footer p {
  margin-top: 6px;
  font-size: 0.98rem;
  color: var(--color-footer-text);
  opacity: 0.90;
}

/* ============================================================
  COOKIE CONSENT BANNER
============================================================ */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 4000;
  background: #fffbe3;
  border-top: 2.5px solid var(--color-gold);
  box-shadow: 0 -8px 32px rgba(168,131,23,0.08);
  color: #333;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 22px 6vw 18px 6vw;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  transition: transform 0.36s cubic-bezier(.8,.1,.24,1), opacity 0.22s;
}
.cookie-consent-banner.hidden {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner .cookie-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 6px;
}
.cookie-button, .cookie-settings-btn {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  background: var(--color-gold);
  color: #fff;
  border: none;
  border-radius: 33px;
  padding: 8px 24px;
  font-size: 1rem;
  font-weight: 600;
  margin-right: 6px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(168,131,23,0.09);
  transition: background 0.15s, color 0.18s;
}
.cookie-button.reject {
  background: #293B47;
  color: #fffbe3;
}
.cookie-button:hover, .cookie-settings-btn:hover,
.cookie-button:focus, .cookie-settings-btn:focus {
  background: #8f6c13;
  color: #fffdd9;
}
.cookie-button.reject:hover, .cookie-button.reject:focus {
  background: #151e27;
  color: #A88317;
}

/* COOKIE SETTINGS MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -55%) scale(1);
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 70px rgba(41,59,71,0.21);
  z-index: 4100;
  min-width: 320px;
  max-width: 96vw;
  width: 430px;
  padding: 32px 30px 26px 30px;
  opacity: 1;
  transition: opacity 0.18s, transform 0.25s;
}
.cookie-modal.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -55%) scale(0.88);
}
.cookie-modal h2 {
  margin-bottom: 16px;
  color: var(--color-gold);
  font-size: 1.3rem;
}
.cookie-modal ul {
  padding-left: 0;
  margin-bottom: 16px;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cookie-modal label {
  font-size: 1.01rem;
  color: var(--color-primary);
}
/* Simple switch for cookies */
.cookie-switch {
  appearance: none;
  width: 38px;
  height: 22px;
  background: #ddd6b8;
  border-radius: 18px;
  position: relative;
  outline: none;
  cursor: pointer;
  transition: background 0.18s;
  margin-left: 12px;
}
.cookie-switch:checked {
  background: var(--color-gold);
}
.cookie-switch:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.cookie-switch::before {
  content: '';
  position: absolute;
  left: 4px;
  top: 4px;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-radius: 50%;
  transition: transform 0.18s;
  box-shadow: 0 1.5px 2.5px rgba(41,59,71,0.10);
}
.cookie-switch:checked::before {
  transform: translateX(16px);
}
/* Cookie modal close */
.cookie-modal-close {
  position: absolute;
  top: 17px;
  right: 22px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--color-gold);
  cursor: pointer;
  transition: color 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  color: #8f6c13;
}

/* ============================================================
  TYPOGRAPHY & DETAILS
============================================================ */
.text-section {
  margin-bottom: 14px;
}
.text-section ul, .text-section ol {
  margin-bottom: 10px;
}
.text-section h2, .text-section h3 {
  margin-top: 20px;
}

/* ============================================================
  MICROIINTERACTIONS & TRANSITIONS
============================================================ */
section, .card, .testimonial-card, .project-description, .feature-grid > div, .service-tile-list > div, .location-details {
  transition: box-shadow 0.19s, border-color 0.19s, background 0.23s;
}
.cta-button, .cookie-button, .cookie-settings-btn {
  transition: background 0.15s, color 0.18s, box-shadow 0.18s;
}

/* ============================================================
  RESPONSIVE STYLES
============================================================ */
@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding-left: 6px;
    padding-right: 6px;
  }
  .feature-grid, .service-tile-list, .certification-badges, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch !important;
  }
  .card, .feature-grid > div, .service-tile-list > div {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .testimonial-card, .project-description {
    padding: 20px 12px 14px 18px;
  }
}
@media (max-width: 600px) {
  .hero {
    border-radius: 16px;
    padding: 30px 2vw 34px 2vw;
  }
  .cookie-consent-banner {
    padding: 16px 2vw 12px 2vw;
    flex-direction: column !important;
    align-items: flex-start;
  }
}

/* ============================================================
  PRINT OPTIMIZATION
============================================================ */
@media print {
  *, *:before, *:after { box-shadow: none !important; text-shadow: none !important; }
  section, header, footer { background: #fff !important; }
  .cta-button, .cookie-consent-banner, .cookie-modal, .mobile-menu { display: none !important; }
}

/* ============================================================
  Z-INDEX LAYERING
============================================================ */
header { z-index: 1002; }
.mobile-menu { z-index: 3000; }
.cookie-consent-banner { z-index: 4000; }
.cookie-modal { z-index: 4100; }
.cookie-modal-backdrop { z-index: 4099; }

/* ============================================================
  LUXURY REFINED EXTRAS
============================================================ */
/* Subtle gold lines under headings */
h1, h2, h3 {
  position: relative;
}
h1:after, h2:after {
  content: '';
  display: block;
  margin-top: 9px;
  width: 55px;
  height: 3px;
  background: var(--color-gold);
  border-radius: 2px;
}
h1:after { width: 76px; height: 4px; }

@media (max-width: 768px) {
h1:after, h2:after { width: 33px; }
h1:after { width: 50px; }
}

/* Subtle animated hover on nav (brand refinement)*/
nav a {
  position: relative;
}
nav a:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: -1.5px;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width 0.26s;
  border-radius: 1px;
  opacity: 0.94;
}
nav a:hover:after, nav a:focus:after {
  width: 100%;
}

/* ========== END ========== */
