/*
  ===============================
  CSS RESET & NORMALIZATION
  ===============================
*/
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F6F6F2;
  background: #232926;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #D9953E;
  text-decoration: none;
  transition: color 0.25s;
}
a:hover, a:focus {
  color: #FFD38B;
  text-decoration: underline;
}
ul {
  list-style: none;
}
strong {
  font-weight: bold;
  color: #FFD38B;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  color: #FFD38B;
  margin-bottom: 16px;
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }

p {
  font-size: 1rem;
  margin-bottom: 1em;
  color: #F6F6F2;
}

/* Container Section */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(44,62,47,0.93);
  border-radius: 12px;
  box-shadow: 0 4px 32px 0 rgba(44, 62, 47, 0.10);
}
.content-wrapper {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-section {
  align-items: flex-start;
}

/* Flexbox Card Containers */
.card-container,
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #F6F6F2;
  color: #232926;
  border-left: 6px solid #D9953E;
  border-radius: 10px;
  box-shadow: 0 4px 32px 0 rgba(44, 62, 47, 0.10);
  margin-bottom: 20px;
  font-size: 1rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* === Service Cards === */
.service-cards {
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.service-card {
  background: #262f2b;
  border-radius: 12px;
  padding: 32px 24px 28px 24px;
  box-shadow: 0 4px 24px 0 rgba(44,62,47,0.12);
  border: 1.5px solid #3a483a;
  min-width: 260px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 20px;
  transition: box-shadow 0.25s, transform 0.22s;
}
.service-card h3 {
  color: #FFD38B;
  margin-bottom: 12px;
}
.service-card p {
  color: #F6F6F2;
  margin: 0 0 0.75em 0;
}
.service-card span {
  color: #D9953E;
  font-weight: 600;
  font-size: 1rem;
  margin-top: 10px;
}
.service-card:hover {
  box-shadow: 0 8px 28px 0 rgba(44,62,47,0.20), 0 1.5px 0 #FFD38B;
  transform: translateY(-5px);
  border-color: #D9953E;
}

/* === Main Buttons & CTA === */
.cta-button {
  display: inline-block;
  padding: 14px 38px;
  background: #D9953E;
  color: #232926;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  border: none;
  border-radius: 36px;
  box-shadow: 0 2px 8px 0 rgba(44,62,47,0.11);
  letter-spacing: 1.0px;
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.22s, color 0.22s, transform 0.18s;
  margin-top: 16px;
  margin-bottom: 16px;
}
.cta-button:hover,
.cta-button:focus {
  background: #FFD38B;
  color: #2C3E2F;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 4px 24px 0 rgba(217,149,62,0.14);
  outline: 0;
}


/* === MAIN NAVIGATION BAR === */
header {
  background: #222823;
  box-shadow: 0 2px 12px 0 rgba(44,62,47,0.10);
  border-bottom: 2px solid #232926;
  position: sticky;
  top: 0;
  z-index: 120;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: flex-start;
  padding: 18px 20px;
}
.main-nav a {
  color: #FFD38B;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 1.1px;
  transition: color 0.22s;
  display: flex;
  align-items: center;
}
.main-nav a img {
  width: 44px;
  height: 44px;
  margin-right: 8px;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #D9953E;
  outline: none;
}

/* === MOBILE NAVIGATION === */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 21px;
  right: 20px;
  background: none;
  border: none;
  font-size: 2rem;
  color: #FFD38B;
  cursor: pointer;
  z-index: 150;
  transition: color 0.15s;
}
.mobile-menu-toggle:focus {
  color: #fff5d6;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34, 40, 35, 0.97);
  z-index: 199;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(.77,0,.18,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: #FFD38B;
  margin: 28px 26px 0 0;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: #fff5d6;
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 60px 32px 32px 32px;
  width: 264px;
}
.mobile-nav a {
  color: #FFD38B;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 1.0px;
  background: none;
  padding: 12px 4px;
  border-radius: 8px;
  transition: background 0.20s, color 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #333b37;
  color: #D9953E;
}

/* === FOOTER === */
footer {
  background: #232926;
  color: #F6F6F2;
  padding: 32px 0 8px 0;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #FFD38B;
  font-size: 0.98rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  transition: color 0.22s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: #fff5d6;
  outline: none;
}
.footer-contact {
  font-size: 0.93rem;
  color: #B6B6AB;
  margin-bottom: 20px;
}
.footer-logo img {
  width: 40px;
  height: 40px;
  filter: contrast(1.1) brightness(1.1);
}

/* ========================= */
/*        FORMS (if any)     */
/* ========================= */
input,
select,
textarea {
  border-radius: 6px;
  border: 1.5px solid #545954;
  background: #232926;
  color: #F6F6F2;
  padding: 12px 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 16px;
  min-width: 0;
  outline: none;
  transition: border-color 0.17s;
}
input:focus,
select:focus,
textarea:focus {
  border-color: #D9953E;
}

button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #D9953E;
  color: #232926;
  padding: 12px 28px;
  font-size: 1rem;
  border: none;
  border-radius: 28px;
  cursor: pointer;
  transition: background 0.18s, color 0.2s, box-shadow 0.18s;
  font-weight: 600;
}
button:hover,
button:focus {
  background: #FFD38B;
  color: #232926;
  outline: none;
  box-shadow: 0 6px 28px -7px #D9953E33;
}


/* ============================= */
/*      TYPOGRAPHY HIERARCHY     */
/* ============================= */
h1 {
  font-size: 2.5rem;
  letter-spacing: 2px;
  color: #FFD38B;
  margin: 0 0 24px 0;
}
h2 {
  font-size: 2rem;
  color: #FFD38B;
  margin: 0 0 20px 0;
}
h3 {
  font-size: 1.25rem;
  color: #FFD38B;
  margin: 0 0 14px 0;
}

@media (max-width: 540px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.08rem; }
}

.text-section h1, .text-section h2 {
  margin-bottom: 16px;
}


/* =================== */
/*      LIST STYLES    */
/* =================== */
ul {
  list-style: disc;
  margin-left: 1.2em;
  margin-bottom: 18px;
}
ul li {
  font-size: 1rem;
  color: #e5e5e0;
  margin-bottom: 6px;
  padding-left: 2px;
}
.content-wrapper > ul,
.text-section > ul {
  margin-bottom: 0px;
}


/* ============================ */
/*         OTHER SECTIONS       */
/* ============================ */
main {
  margin-top: 0;
  margin-bottom: 0;
}
section {
  margin-bottom: 60px;
  padding: 40px 0;
}


/* ====================== */
/*      TESTIMONIALS     */
/* ====================== */
.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #F6F6F2;
  color: #232926;
  border-left: 6px solid #D9953E;
  border-radius: 10px;
  box-shadow: 0 4px 32px 0 rgba(44, 62, 47, 0.08);
  padding: 20px;
  margin-bottom: 20px;
  font-style: italic;
  font-size: 1rem;
  position: relative;
}
.testimonial-card strong {
  color: #2C3E2F;
  font-style: normal;
  font-weight: 700;
  font-size: 1rem;
  margin-top: 6px;
}
.testimonial-card p {
  color: #232926;
  margin-bottom: 8px;
}


/* ================================ */
/* == COOKIE CONSENT BANNER + MODAL == */
/* ================================ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #222823;
  color: #FFD38B;
  padding: 22px 18px 22px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  z-index: 400;
  box-shadow: 0 -4px 16px 0 rgba(44, 62, 47, 0.12);
  border-top: 3px solid #D9953E;
  font-size: 1rem;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.32s, transform 0.32s;
}
.cookie-banner.hide {
  opacity: 0;
  transform: translateY(64px);
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-left: auto;
}
.cookie-button,
.cookie-settings-button {
  font-family: 'Montserrat', Arial, sans-serif;
  background: #D9953E;
  color: #232926;
  padding: 10px 24px;
  border: none;
  border-radius: 26px;
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  cursor: pointer;
  transition: background 0.19s, color 0.13s;
}
.cookie-button.rejected {
  background: #454945;
  color: #FFD38B;
}
.cookie-button:hover,
.cookie-settings-button:hover,
.cookie-button:focus,
.cookie-settings-button:focus {
  background: #FFD38B;
  color: #232926;
  outline: none;
}
.cookie-settings-button {
  background: #232926;
  color: #FFD38B;
  border: 1.5px solid #FFD38B;
  margin-left: 4px;
}
.cookie-settings-button:hover,
.cookie-settings-button:focus {
  background: #FFD38B;
  color: #232926;
}

/* === Cookie Modal === */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 699;
  background: rgba(34,40,35,0.87);
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #242B2B;
  color: #FFD38B;
  border-radius: 12px;
  box-shadow: 0 9px 40px 0 rgba(44,62,47,0.22);
  width: 95%;
  max-width: 420px;
  padding: 34px 26px 26px 26px;
  display: flex;
  flex-direction: column;
  animation: cookie-popin 0.32s cubic-bezier(.4,1.15,.67,1.01);
  position: relative;
}
@keyframes cookie-popin {
  0% { transform: scale(0.7) translateY(70px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  color: #FFD38B;
  margin-bottom: 14px;
  font-size: 1.25rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 12px 0;
  border-bottom: 1px solid #333b37;
}
.cookie-modal .cookie-category:last-child {
  border-bottom: none;
}
.cookie-modal label {
  color: #FFD38B;
  font-size: 1rem;
}
.cookie-modal input[type="checkbox"] {
  appearance: none;
  width: 32px;
  height: 20px;
  background: #222823;
  border-radius: 14px;
  outline: none;
  position: relative;
  margin-right: 0;
  transition: background 0.22s;
  border: 1.2px solid #FFD38B;
}
.cookie-modal input[type="checkbox"]:checked {
  background: #D9953E;
}
.cookie-modal input[type="checkbox"]::after {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #FFD38B;
  position: absolute;
  top: 2px; left: 3px;
  transform: translateX(0);
  transition: transform 0.25s, background 0.18s;
}
.cookie-modal input[type="checkbox"]:checked::after {
  transform: translateX(12px);
  background: #232926;
}
.cookie-modal .modal-actions {
  margin-top: 22px;
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.cookie-modal .modal-actions button {
  min-width: 120px;
}
.cookie-modal .modal-close-btn {
  position: absolute;
  top: 10px; right: 16px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #FFD38B;
  cursor: pointer;
}
.cookie-modal .modal-close-btn:hover, .cookie-modal .modal-close-btn:focus {
  color: #D9953E;
  outline: none;
}

/* ========== Responsive Design ============ */
@media (max-width: 1180px) {
  .container { max-width: 980px; }
}
@media (max-width: 900px) {
  .container { max-width: 760px; }
  .main-nav { gap: 18px; }
}
@media (max-width: 820px) {
  .service-card { min-width: 200px; }
}
@media (max-width: 1000px) {
  .footer-nav, footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .footer-contact, .footer-logo { margin-bottom: 10px; }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    right: 18px;
    top: 18px;
  }
  .service-cards {
    flex-direction: column;
    gap: 20px;
  }
  .content-wrapper, .text-section, .content-grid,
  .card-container {
    flex-direction: column !important;
    gap: 20px !important;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .container {
    padding-left: 6vw;
    padding-right: 6vw;
  }
  section, .section {
    padding: 28px 0;
  }
}

@media (max-width: 540px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 12px;
  }
  .service-card {
    padding: 18px 12px 16px 12px;
  }
  .cta-button, button, .cookie-button, .cookie-settings-button {
    padding: 10px 18px;
    font-size: 1rem;
  }
  .testimonial-card {
    padding: 14px;
  }
}

/* ===== Scrollbar Styling (Industrial Modern) ===== */
body::-webkit-scrollbar {
  width: 13px;
  background: #222823;
}
body::-webkit-scrollbar-thumb {
  background: #404944;
  border-radius: 6px;
  border: 2px solid #232926;
}
body::-webkit-scrollbar-thumb:hover { background: #2C3E2F; }


/* ===== Industrial Modern Details ===== */
.section, .service-card, .testimonial-card, .cookie-modal {
  box-shadow: 0 6px 32px 0 rgba(39, 45, 38, 0.18), 0 1.5px 0 #3a483a;
}
.section {
  border-left: 4px solid #666d67;
}


/* ===== Headings & Details ===== */
hr {
  border: none;
  border-top: 2px solid #3a483a;
  margin: 32px 0;
}

/* ===== Focus Outlines for Accessibility ===== */
a:focus-visible, button:focus-visible {
  outline: 2.5px dashed #FFD38B;
  outline-offset: 2px;
}

/* ===== Card Hover Effects (Microinteractions) ===== */
.service-card, .testimonial-card {
  transition: box-shadow 0.28s, border 0.19s, transform 0.19s;
}
.service-card:hover {
  transform: translateY(-5px) scale(1.03);
  border: 1.5px solid #FFD38B;
  box-shadow: 0 10px 36px 0 rgba(217,149,62,0.10);
}
.testimonial-card:hover {
  box-shadow: 0 7px 37px 0 #FFD38B55;
  border-left: 8px solid #FFD38B;
}


/* ================================ */
/* == Industrial Modern Shadows == */
/* ================================ */
.section, .service-card {
  box-shadow: 0 3px 24px 0 rgba(60,60,56,0.15),
              0 1.5px 0 #404944;
}


/* ================================ */
/* == Hide visually and a11y == */
/* ================================ */
.sr-only {
  position: absolute !important;
  height: 1px; width: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
  border: 0;
}

/* ========== Z-Index Stack ========== */
header { z-index: 120; }
.mobile-menu { z-index: 200; }
.cookie-banner { z-index: 400; }
.cookie-modal-overlay { z-index: 699; }


/* ====================================== */
/* == CUSTOM METALLIC ACCENTS & FONT == */
/* ====================================== */
@font-face {
  font-family: 'Playfair Display';
  src: local('Playfair Display'), local('PlayfairDisplay'), url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&display=swap');
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: 'Montserrat';
  src: local('Montserrat'), url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');
  font-style: normal;
}

/* Industrial/Urban Font Accents */
h1, h2, h3, h4, h5, h6 {
  letter-spacing: 1.2px;
  text-shadow: 0 1.5px 0 #23292670, 0.5px 1.5px 0 #D9953E22;
}


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