/* =======================================
   CSS RESET & BASE STYLES
======================================= */
html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  min-height: 100vh;
  background: #21252b;
  color: #eaeaea;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  display: block;
}
a {
  color: #FFD75C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ffe28a;
  text-decoration: underline;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}
ul, ol {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  background: #232323;
}
th, td {
  padding: 12px;
  text-align: left;
}
strong {
  color: #FFD75C;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #262a31;
  border-radius: 11px;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.14);
  margin-bottom: 20px;
  position: relative;
  padding: 30px 28px;
  border: 1.5px solid #353b40;
  transition: box-shadow 0.2s, border-color 0.2s;
  min-width: 260px;
}
.card:hover {
  border-color: #FFD75C;
  box-shadow: 0 4px 20px 0 rgba(43,49,58,0.26);
}
.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;
  }
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #eaeaea;
  color: #232323;
  border-radius: 10px;
  border: 1.3px solid #b2b2b2;
  box-shadow: 0 2px 10px rgba(40,40,50,0.07);
  transition: transform 0.18s, box-shadow 0.18s;
}
.testimonial-card:hover {
  transform: translateY(-2px) scale(1.012);
  box-shadow: 0 6px 24px rgba(51,51,63,0.17);
}
.testimonial-meta {
  font-size: 1rem;
  color: #2A4058;
  font-weight: 600;
  text-align: right;
}
.star-rating {
  color: #FFD75C;
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  user-select: none;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.values-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.values-list > div {
  background: #273140;
  color: #FFD75C;
  border-radius: 10px;
  padding: 24px;
  min-width: 220px;
  flex: 1 0 240px;
  border: 1.5px solid #353b40;
  transition: background 0.2s, color 0.2s;
}
.values-list > div:hover {
  background: #FFD75C;
  color: #232323;
}

/* =======================================
   TYPOGRAPHY/METALLIC ACCENTS
======================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.005em;
  color: #FFD75C;
  margin-bottom: 12px;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(255,198,45,0.08), 0 1px 0 #232323;
}
h2 {
  font-size: 1.7rem;
  margin-bottom: 8px;
  border-left: 4px solid #FFD75C;
  padding-left: 12px;
}
h3 {
  font-size: 1.18rem;
  margin-bottom: 8px;
}
h4, h5, h6 {
  font-size: 1rem;
}
p {
  color: #eaeaea;
  font-size: 1.07rem;
  margin-bottom: 12px;
}
blockquote {
  font-size: 1.13rem;
  font-style: italic;
  border-left: 4px solid #FFD75C;
  background: #f3f2e8;
  color: #2A4058;
  padding: 12px 20px;
  margin: 0 0 12px 0;
}
ul li, ol li {
  padding-left: 1.5em;
  position: relative;
  margin-bottom: 8px;
  color: #eaeaea;
}
ul li:before {
  content: '\25B8';
  color: #FFD75C;
  position: absolute;
  left: 0;
  font-size: 1em;
  top: 0;
}

/* =======================================
   HEADER & NAVIGATION
======================================= */
header {
  width: 100%;
  background: #242932;
  box-shadow: 0 3px 12px 0 rgba(30,32,34,0.14);
  padding: 0 0 0 0;
  position: relative;
  z-index: 900;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 0 16px;
}
header img {
  height: 45px;
  width: auto;
}
nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
nav a {
  font-family: 'Montserrat',Arial,sans-serif;
  color: #eaeaea;
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.03em;
  border-radius: 6px;
  padding: 7px 15px;
  transition: background 0.18s, color 0.18s;
  position: relative;
}
nav a.btn-primary, .btn-primary {
  background: linear-gradient(90deg,#2A4058 60%,#FFD75C 120%);
  color: #232323;
  border-radius: 7px;
  padding: 9px 24px;
  font-size: 1.17rem;
  font-weight: 700;
  border: 2px solid #FFD75C;
  box-shadow: 0 2px 8px 0 rgba(240,194,60,0.12);
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  outline: none;
  text-shadow: 0 1px 0 #fff8d8;
  cursor: pointer;
}
nav a.btn-primary:hover, .btn-primary:hover, nav a.btn-primary:focus, .btn-primary:focus {
  background: #FFD75C;
  color: #2A4058;
  box-shadow: 0 7px 20px -4px #FFD75C55;
}
.btn-secondary {
  background: #2A4058;
  color: #FFD75C;
  border-radius: 7px;
  padding: 9px 20px;
  font-size: 1.08rem;
  font-weight: 700;
  border: 2px solid #2A4058;
  transition: background 0.22s, color 0.16s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #FFD75C;
  color: #2A4058;
  border-color: #FFD75C;
  transition: background 0.15s, color 0.16s;
}
.mobile-menu-toggle {
  display: none;
  background: #FFD75C;
  color: #232323;
  font-size: 2.2rem;
  border-radius: 8px;
  padding: 3px 15px 1px 15px;
  margin-left: 20px;
  border: 2px solid #FFD75C;
  box-shadow: 0 2px 12px 0 rgba(40,44,55,0.09);
  transition: background 0.17s, box-shadow 0.17s, color 0.18s;
  z-index: 1001;
}
.mobile-menu-toggle:active,
.mobile-menu-toggle:focus {
  background: #2A4058;
  color: #FFD75C;
}
/* HIDE nav on mobile */
@media (max-width: 988px) {
  nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}

/* =======================================
   MOBILE SLIDE-IN MENU
======================================= */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; height: 100vh; width: 100vw;
  background: rgba(25,27,32,0.98);
  z-index: 1999;
  transform: translateX(-100%);
  transition: transform 0.36s cubic-bezier(.8,.3,.16,.96);
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: #FFD75C;
  color: #232323;
  font-size: 2.4rem;
  font-weight: 700;
  border-radius: 7px 0 0 7px;
  margin: 18px 8px 24px 0;
  padding: 2px 18px 1px 12px;
  border: 2px solid #FFD75C;
  box-shadow: 0 2px 8px rgba(200,160,20,0.13);
  transition: background 0.15s, color 0.17s;
  z-index: 2001;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #2A4058;
  color: #FFD75C;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 36px 36px 0 36px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.28rem;
  letter-spacing: 0.02em;
  padding: 15px 8px 14px 12px;
  color: #FFD75C;
  border-radius: 6px;
  width: 100%;
  transition: background 0.15s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFD75C;
  color: #2A4058;
}
.mobile-menu {
  display: none;
}
.mobile-menu.open {
  display: flex;
}
@media (max-width: 988px) {
  .mobile-menu {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
}

/* =======================================
   HERO / SECTIONS / CTA
======================================= */
.hero {
  background: linear-gradient(120deg, #23282e 70%, #2A4058 110%);
  padding: 70px 0 40px 0;
  box-shadow: 0 0 16px 0 rgba(30,30,32,0.14);
}
.hero h1 {
  color: #FFD75C;
  font-size: 2.7rem;
  margin-bottom: 1.1rem;
}
.hero p {
  color: #eaeaea;
  margin-bottom: 26px;
  font-size: 1.21rem;
}
.services-preview .btn-secondary {
  margin-top: 22px;
}
.services-preview ul {
  margin: 15px 0 15px 0;
}

/* =======================================
   FEATURE GRID / SERVICE LIST
======================================= */
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 6px;
}
.feature {
  background: #262a31;
  border-radius: 10px;
  border: 1.5px solid #353b40;
  box-shadow: 0 1px 8px 0 rgba(30,30,37,0.07);
  padding: 30px 20px;
  flex: 1 0 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-width: 220px;
  transition: box-shadow 0.17s, border-color 0.17s;
}
.feature:hover {
  box-shadow: 0 4px 20px 0 rgba(41,51,80,0.19);
  border-color: #FFD75C;
}
.feature img {
  height: 39px;
  margin-bottom: 12px;
  filter: grayscale(0.22) brightness(1.14) contrast(1.12);
}
.service-list li {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14px;
  padding: 15px 0 13px 0;
  border-bottom: 1px solid #323540;
  color: #FFF9E0;
  font-size: 1.12rem;
}
.service-list li:last-child {
  border: none;
}
.service-list img {
  height: 29px;
  width: 29px;
  filter: grayscale(0.2) brightness(1.08) contrast(1.13);
}

/* =======================================
   SERVICE AREAS / DETAILS
======================================= */
.service-area {
  background: #23282e;
  border-radius: 10px;
  border: 1.5px solid #282B35;
  margin-bottom: 24px;
  padding: 25px 22px;
  min-width: 220px;
  box-shadow: 0 2px 10px 0 rgba(45,51,66,0.08);
}
.service-area h3 {
  color: #FFD75C;
  font-size: 1.1rem;
}
.service-area ul {
  margin: 10px 0 0 0;
}
.process ul {
  margin: 14px 0 10px 0;
}
.process li {
  margin-bottom: 7px;
  color: #eaeaea;
}

/* =======================================
   FAQ ACCORDION
======================================= */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}
.faq-item {
  background: #23282e;
  color: #FFD75C;
  border-radius: 9px;
  border: 1.2px solid #353c46;
  box-shadow: 0 1.5px 8px rgba(31,32,44,0.07);
  padding: 20px 24px;
  transition: box-shadow 0.15s, border-color 0.15s;
}
.faq-item h2 {
  color: #FFD75C;
  font-size: 1.09rem;
  margin-bottom: 8px;
  border: none;
  padding-left: 0;
}
.faq-item p {
  color: #eaeaea;
  margin-bottom: 0;
}
.faq-item:hover {
  box-shadow: 0 8px 20px 0 rgba(45,46,60,0.13);
  border-color: #FFD75C;
}

/* =======================================
   FOOTER
======================================= */
footer {
  background: #202328;
  padding: 44px 0 22px 0;
  color: #afb2b7;
}
footer .container {
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
footer img {
  height: 40px;
  filter: grayscale(0.19) brightness(1.03);
}
footer nav {
  display: flex;
  gap: 18px;
}
footer nav a {
  color: #FFD75C;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.17s;
}
footer nav a:hover {
  color: #FFE492;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 28px;
  font-size: 0.98rem;
  color: #EAEAEA;
  justify-content: center;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #eaeaea;
}
.footer-contact img {
  filter: invert(0.90) sepia(0.18) saturate(0.75) hue-rotate(185deg);
  height: 22px;
  width: 22px;
}

/* =======================================
   COOKIE CONSENT BANNER
======================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 3500;
  background: #23282e;
  color: #FFD75C;
  font-size: 1.08rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 24px 25px;
  box-shadow: 0 -2px 8px rgba(20,20,32,0.13);
  transition: transform 0.26s;
  border-top: 1.7px solid #FFD75C;
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
  opacity: 0.7;
}
.cookie-banner p {
  margin-bottom: 0;
  color: #FFD75C;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.cookie-btn {
  padding: 8px 20px;
  border-radius: 6px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #FFD75C;
  margin-left: 0;
  background: #FFD75C;
  color: #2A4058;
  cursor: pointer;
  transition: background 0.13s, color 0.13s, box-shadow 0.12s;
  outline: none;
}
.cookie-btn.reject {
  background: none;
  color: #FFD75C;
  border: 2px solid #FFD75C;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #2A4058;
  color: #FFD75C;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FFF5BB;
  color: #2A4058;
  box-shadow: 0 2px 10px rgba(200,170,60,0.16);
}
.cookie-btn.settings {
  background: #23282e;
  color: #FFD75C;
  border: 2px solid #FFD75C;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #FFD75C;
  color: #23282e;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(0.96);
  min-width: 320px;
  max-width: 97vw;
  background: #23282e;
  color: #FFD75C;
  z-index: 3600;
  box-shadow: 0 12px 48px rgba(33,40,52,0.29);
  border-radius: 13px;
  padding: 24px 28px 22px 28px;
  display: none;
  flex-direction: column;
  gap: 20px;
  border: 2px solid #FFD75C;
  animation: cookieModalFadeIn 0.4s cubic-bezier(0.68, -0.25, 0.32, 1.35);
}
@keyframes cookieModalFadeIn {
  from { transform: translate(-50%,-30%) scale(0.88); opacity: 0.3; }
  to   { transform: translate(-50%,-50%) scale(1); opacity: 1; }
}
.cookie-modal.open { display: flex; }
.cookie-modal h3 {
  color: #FFD75C;
  font-size: 1.09rem;
  margin-bottom: 10px;
  border: none;
  padding: 0;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 12px;
  gap: 14px;
}
.cookie-category label {
  font-size: 1rem;
  font-weight: 600;
  color: #FFD75C;
  margin-right: 8px;
}
.cookie-toggle {
  appearance: none;
  width: 36px;
  height: 19px;
  background: #323b46;
  border-radius: 13px;
  vertical-align: middle;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: background 0.14s;
  border: 1.2px solid #FFD75C;
}
.cookie-toggle:checked {
  background: #FFD75C;
}
.cookie-toggle:before {
  content: "";
  position: absolute;
  left: 2px;
  top: 2.5px;
  width: 14px;
  height: 14px;
  background: #eaeaea;
  border-radius: 50%;
  box-shadow: 0 1px 1px #0001;
  transition: transform 0.18s;
}
.cookie-toggle:checked:before {
  transform: translateX(16px);
}
.cookie-modal .cookie-actions {
  justify-content: flex-end;
}
.cookie-modal .cookie-actions .cookie-btn {
  font-size: 0.99rem;
}

/* =======================================
   BUSINESS HOURS / TABLES
======================================= */
.business-hours table {
  background: #23282e;
  color: #eaeaea;
  border-radius: 9px;
  box-shadow: 0 2.2px 12px rgba(30,30,38,0.08);
  border: 1.5px solid #FFD75C;
  font-size: 1rem;
}
.business-hours td {
  border: none;
  padding: 10px 16px 10px 0;
}

/* =======================================
   THANK YOU PAGE
======================================= */
.thank-you {
  text-align: center;
  background: #23282e;
  border-radius: 12px;
  box-shadow: 0 0 12px 0 #FFD75C22;
  padding: 50px 24px;
  margin: 80px auto 0 auto;
  max-width: 600px;
}

/* =======================================
   RESPONSIVE DESIGN (Mobile first)
======================================= */
@media (max-width: 900px) {
  .feature-grid, .values-list, .card-container, .content-grid, footer .footer-contact {
    flex-direction: column;
    gap: 20px;
  }
  .footer-contact > div {
    min-width: 160px;
  }
}
@media (max-width: 768px) {
  h1 { font-size: 1.65rem; }
  h2 { font-size: 1.23rem; }
  .hero {
    padding: 52px 0 25px 0;
  }
  .section, .content-wrapper {
    padding: 23px 3vw;
  }
  .thank-you {
    padding: 28px 6px;
  }
  .feature-grid, .values-list, .card-container, .content-grid, .footer-contact {
    flex-direction: column;
    gap: 14px;
    align-items: stretch;
  }
  nav {
    gap: 8px;
  }
  .testimonial-card {
    padding: 13px 8px;
    font-size: 0.97rem;
  }
  .footer-contact div {
    font-size: 0.97rem;
    gap: 7px;
  }
  .footer-contact {
    gap: 10px;
  }
  .services-preview ul, .service-list {
    font-size: 0.99rem;
  }
  .service-area {
    padding: 15px 7px;
    font-size: 0.98rem;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 18px 7px;
    font-size: 0.98rem;
  }
  .cookie-modal {
    padding: 13px 5vw 12px 5vw;
    font-size: 0.99rem;
  }
}
@media (max-width: 540px) {
  .hero h1 { font-size: 1.125rem; }
  .container {
    padding: 0 4px;
  }
  .section {
    margin-bottom: 38px;
    padding: 24px 0;
  }
}

/* =======================================
   ANIMATIONS & INTERACTION
======================================= */
.btn-primary,
.btn-secondary,
nav a.btn-primary,
.mobile-menu-toggle,
.mobile-menu-close,
.cookie-btn {
  transition: background 0.16s, color 0.16s, box-shadow 0.16s, transform 0.18s;
  will-change: background, color, box-shadow, transform;
}
.btn-primary:active,
.btn-secondary:active,
.cookie-btn:active {
  transform: translateY(2.7px) scale(0.97);
  box-shadow: 0 0 1px #FFD75C44;
}
.card, .testimonial-card, .feature, .service-area, .faq-item {
  transition: box-shadow 0.16s, border-color 0.16s, background 0.16s, color 0.16s;
}
.card:active, .feature:active, .service-area:active {
  transform: scale(0.985);
}

/* =======================================
   Z-INDEX - Overlays
======================================= */
.mobile-menu,
.cookie-modal {
  z-index: 2000;
}
.cookie-banner {
  z-index: 3500;
}

/* =======================================
   SPACING & MARGINS PER SPEC
======================================= */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* =======================================
   INDUSTRIAL MODERN AESTHETIC EXTRAS
======================================= */
.card, .feature, .service-area {
  border-left: 6px solid #FFD75C11;
  border-bottom: 2.5px solid #FFD75C10;
}
.card:before, .feature:before, .service-area:before {
  content: '';
  display: block;
  height: 6px;
  width: 48px;
  background: linear-gradient(90deg, #FFD75C 25%, #2A4058 100%);
  border-radius: 2.5px;
  margin-bottom: 9px;
  opacity: 0.57;
}
.card:before { margin-bottom: 16px; }
.card {
  padding-top: 45px;
}
/* Only add before for cards/feature/service-area, not for testimonial-cards */
.testimonial-card:before { display: none; }

/* ========================
   END OF STYLE.CSS
======================== */
