/* RESET & BASE ----------------------- */
html {
  box-sizing: border-box;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #181f22;
  color: #EAF8FB;
  line-height: 1.6;
  min-height: 100vh;
}
img, svg {
  max-width: 100%;
  display: block;
}
a {
  color: #F59E42;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus { color: #EAF8FB; }
ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #fafbfc;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
h1 { font-size: 2.4rem; margin-bottom: 20px; }
h2 { font-size: 1.8rem; margin-bottom: 16px; }
h3 { font-size: 1.23rem; margin-bottom: 12px; font-weight: 500; }
h4, h5, h6 { font-size: 1.08rem; font-weight: 500; }
p, li { margin-bottom: 12px; }
strong { color: #F59E42; font-weight: 600; }
::selection { background: #162126; color: #F59E42; }

/* STRUCTURE ----------------------- */
.container {
  max-width: 1130px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* INDUSTRIAL MODERN AESTHETIC ----------------------- */
body {
  background-color: #181f22;
  color: #EAF8FB;
  /* subtle metallic texture with SVG or fallback */
  background-image: repeating-linear-gradient(135deg, rgba(24,31,34,0.0) 0px, rgba(21,96,114,0.015) 100px, rgba(24,31,34,0.0) 200px);
}

/* HEADER & NAVIGATION ----------------------- */
header {
  background: #121619;
  border-bottom: 2px solid #222c2f;
  position: relative;
  z-index: 20;
  box-shadow: 0 2px 16px rgba(14,17,20, 0.2);
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  gap: 12px;
}
.main-nav > a img {
  height: 44px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
}
.main-nav ul li a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.04rem;
  color: #EAF8FB;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  position: relative;
  padding: 5px 0;
  transition: color 0.18s;
}
.main-nav ul li a:hover,
.main-nav ul li a:focus { color: #F59E42; }
.cta-button {
  background: #F59E42;
  color: #181f22;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 600;
  padding: 11px 28px;
  border: none;
  border-radius: 7px;
  margin-left: 20px;
  cursor: pointer;
  font-size: 1.08rem;
  box-shadow: 0 2px 8px 0 rgba(50,50,50,0.11);
  transition: background 0.2s, color 0.18s, box-shadow 0.18s;
  letter-spacing: 0.03em;
  display: inline-block;
}
.cta-button:hover,
.cta-button:focus {
  background: #cf861c;
  color: #fff;
  box-shadow: 0 3px 14px 0 rgba(21,96,114,0.24);
}

/* MOBILE NAVIGATION ----------------------- */
.mobile-menu-toggle {
  display: none;
  background: #222c2f;
  color: #F59E42;
  border: none;
  font-size: 2.1rem;
  padding: 4px 14px 7px 10px;
  border-radius: 7px;
  margin-left: 18px;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 41;
  position: relative;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover { background: #243039; color: #fff; }
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: #171c1f;
  box-shadow: 0 4px 40px 0 rgba(10,20,30,0.9);
  z-index: 40;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 32px 24px 24px 24px;
  transform: translateX(-100vw);
  transition: transform 0.38s cubic-bezier(0.23, 1, 0.32, 1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: #F59E42;
  border: none;
  font-size: 2.1rem;
  margin-bottom: 12px;
  cursor: pointer;
  padding: 5px 12px;
  border-radius: 5px;
  transition: background 0.18s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover { background: #2d3637; color: #fff; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 12px;
  width: 100%;
}
.mobile-nav a {
  color: #EAF8FB;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.15rem;
  padding: 12px 6px;
  border-radius: 3px;
  font-weight: 500;
  background: none;
  letter-spacing: 0.05em;
  transition: background 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a:focus { background: #243039; color: #F59E42; }

@media (max-width: 1100px) {
  .main-nav ul { gap: 17px; }
  .main-nav { gap: 4px; }
}
@media (max-width: 900px) {
  .main-nav ul { gap: 7px; }
}
@media (max-width: 820px) {
  .cta-button { padding: 10px 17px; font-size: 0.95rem; }
}
@media (max-width: 786px) {
  .main-nav ul { display: none; }
  .cta-button { display: none; }
  .mobile-menu-toggle { display: block; }
}

@media (max-width: 768px) {
  .container { padding: 0 8px; }
  .main-nav { padding: 16px 8px; }
}

/* HERO / FIRST TEXT ----------------------- */
.content-wrapper h1 {
  font-size: 2.25rem;
  color: #F59E42;
  text-shadow: 0 2px 16px #181f22,
               0 1px 0px #912a0d33;
  margin-top: 16px;
  letter-spacing: 0.04em;
  font-weight: 700;
}
.content-wrapper p {
  font-size: 1.15rem;
  color: #EAF8FB;
  margin-bottom: 24px;
  margin-top: 0.5em;
}
.link-more {
  color: #F59E42;
  font-weight: 600;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.05em;
  font-size: 1rem;
  display: inline-block;
  margin-top: 16px;
  transition: color 0.19s;
}
.link-more::after {
  content: '';
  display: block;
  height: 2px;
  background: #cf861c;
  max-width: 60%;
  margin: 3px 0 0;
	transition: background 0.19s;
}
.link-more:hover,
.link-more:focus {
  color: #fff;
}
.link-more:hover::after {
  background: #fff;
}

/* FEATURE GRID, CARDS & SERVICES ----------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 20px 0;
  padding: 0;
}
.feature-grid li {
  background: #1b2327;
  padding: 28px 16px 24px 16px;
  border-radius: 10px;
  min-width: 220px;
  flex: 1 1 235px;
  box-shadow: 0 3px 14px 0 #141b1f44;
  border: 1.5px solid #25343a;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
  transition: box-shadow 0.17s, background 0.18s;
}
.feature-grid li:hover,
.feature-grid li:focus-within {
  background: #1a2529;
  box-shadow: 0 5px 22px 0 #141b1f81;
  border-color: #165463;
}
.feature-grid img {
  height: 44px;
  width: 44px;
  margin-bottom: 4px;
  filter: grayscale(30%) contrast(140%);
}
.feature-grid h3 {
  color: #F59E42;
  font-size: 1.12rem;
  font-weight: 600;
  margin-bottom: 7px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0;
  justify-content: flex-start;
}
.service-card {
  background: #1b2327;
  border: 1.5px solid #263b44;
  border-radius: 10px;
  flex: 1 1 235px;
  min-width: 220px;
  max-width: 265px;
  padding: 28px 14px;
  margin-bottom: 20px;
  box-shadow: 0 3px 18px 0 #12161834;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  position: relative;
  transition: box-shadow 0.17s, border-color 0.18s, background 0.15s;
}
.service-card:hover,
.service-card:focus-within {
  box-shadow: 0 7px 24px 0 #10161a77;
  border-color: #F59E42;
  background: #192325;
}
.service-card h3 {
  color: #F59E42;
  font-size: 1.09rem;
  font-weight: 600;
  margin-bottom: 7px;
}

/* CARD CONTAINER - any card rows */
.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;
}

/* TESTIMONIALS ----------------------- */
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 20px 0 24px 0;
  justify-content: flex-start;
}
.testimonial-card {
  background: #F9F9F9;
  color: #20272a;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 3px 14px 0 #32343b18;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  min-width: 220px;
  flex: 1 1 272px;
  border-left: 6px solid #F59E42;
  transition: box-shadow 0.17s, transform 0.14s;
  margin-bottom: 20px;
  position: relative;
}
.testimonial-card:hover,
.testimonial-card:focus-within {
  box-shadow: 0 7px 24px 0 #F59E4299;
  transform: translateY(-4px) scale(1.02);
}
.testimonial-stars {
  color: #F59E42;
  font-size: 1.23rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 0.07em;
  font-weight: 700;
}
.testimonial-person {
  color: #3d4348;
  font-size: 0.99rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
}
.average-rating {
  margin: 20px 0;
  color: #F59E42;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
}

/* PRICING TABLE ----------------------- */
.price-table {
  width: 100%;
  border-spacing: 0;
  background: #1b2327;
  border-radius: 9px;
  overflow: hidden;
  margin: 20px 0 28px 0;
  box-shadow: 0 2px 13px 0 #141a1e22;
}
.price-table tr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  border-bottom: 1px solid #243039;
  padding: 0 12px;
}
.price-table th, .price-table td {
  flex: 1 1 200px;
  padding: 15px 11px;
  text-align: left;
  color: #EAF8FB;
  font-size: 1.1rem;
}
.price-table th {
  background: #156072;
  color: #fff;
  font-size: 1.03rem;
  letter-spacing: 0.03em;
}
.price-table tr:last-child {
  border-bottom: none;
}
.price-table tr:nth-child(even) td {
  background: #182234;
}

@media (max-width: 630px) {
  .price-table tr { flex-direction: column; }
  .price-table th, .price-table td {
    padding: 8px 7px;
    font-size: 0.98rem;
  }
}

/* FAQ-LIST ----------------------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-list h3 {
  font-size: 1.07rem;
  color: #F59E42;
  font-weight: 600;
}
.faq-list p {
  color: #EAF8FB;
  margin-bottom: 0;
}

/* DETAILED SERVICES ----------------------- */
.detailed-services-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 20px 0 28px 0;
}
.detailed-services-list li h3 {
  color: #F59E42;
  margin-bottom: 7px;
  font-size: 1.08rem;
}

/* CONTACT LIST & MAP ----------------------- */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 14px 0 20px 0;
}
.fake-map {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #212b31;
  border: 1.5px solid #25343a;
  border-radius: 10px;
  padding: 20px 0 20px 0;
  margin: 0 auto 12px auto;
  max-width: 340px;
  box-shadow: 0 2px 8px 0 #1a202433;
}
.fake-map p {
  color: #eaf8fbcc;
  margin-top: 7px;
  font-size: 0.98rem;
}

/* FOOTER ----------------------- */
footer {
  background: #0e1315;
  border-top: 2px solid #222c2f;
  padding: 30px 0 8px 0;
  margin-top: 80px;
  color: #7d8a97;
  font-size: 1.01rem;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
  max-width: 1130px;
  margin: 0 auto 0px auto;
  padding: 0 20px 14px 20px;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 17px;
  min-width: 230px;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.03rem;
  color: #EAF8FB;
}
.footer-brand img { height: 38px; }
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  color: #F59E42;
  opacity: 0.82;
  transition: opacity 0.17s;
  font-weight: 400;
}
.footer-nav a:hover,
.footer-nav a:focus { opacity: 1; color: #fff; }
.footer-contact {
  font-size: 0.98rem;
  color: #b3c4d4;
  margin-top: 5px;
}
.footer-contact a { color: #F59E42; text-decoration: underline; }
.footer-copy {
  text-align: center;
  color: #37414a;
  font-size: 0.98rem;
  margin-top: 24px;
}

@media (max-width: 1000px) {
  .footer-wrapper { flex-direction: column; align-items: flex-start; gap: 17px; }
}
@media (max-width: 560px) {
  .footer-brand { gap: 10px; font-size: 0.96rem; }
  .footer-wrapper { padding: 0 8px 10px 8px; }
}

/* BUTTONS AND FORMS ----------------------- */
button, .cta-button {
  font-family: inherit;
  border: none;
  outline: none;
  cursor: pointer;
  transition: background 0.18s, color 0.14s, box-shadow 0.13s, border-color 0.12s;
}
button:focus, .cta-button:focus { outline: 2px solid #F59E42; }
input[type="text"], input[type="email"], textarea {
  background: #171c1f;
  border: 1.5px solid #263b44;
  color: #eaf8fb;
  padding: 12px 14px;
  border-radius: 7px;
  margin-bottom: 16px;
  font-size: 1rem;
  width: 100%;
  box-shadow: 0 2px 8px 0 #13171a22;
}
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #F59E42;
  background: #19262c;
  outline: none;
}

/* RESPONSIVE LAYOUTS + FLEXBOX ENFORCEMENT ----------------------- */
.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;
    gap: 24px;
  }
  .feature-grid, .service-cards, .testimonial-slider, .testimonial-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
@media (max-width: 550px) {
  .section { padding: 25px 5px; margin-bottom: 35px; }
  .feature-grid li,
  .service-card,
  .testimonial-card { min-width: unset; max-width: unset; padding: 18px 7px 18px 7px; }
  .content-wrapper { gap: 18px; }
}

/* COOKIE CONSENT BANNER ----------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0;
  width: 100vw;
  z-index: 1000;
  background: #232729;
  color: #F59E42;
  border-top: 2.5px solid #165463;
  box-shadow: 0 -2px 24px -3px #1a282a88;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding: 22px 30px 22px 18px;
  font-size: 0.99rem;
  justify-content: space-between;
  animation: cookieAppear 0.6s ease-in;
}
@keyframes cookieAppear {
  from { transform: translateY(80px); opacity: 0 }
  to { transform: translateY(0); opacity: 1 }
}
.cookie-banner .cookie-text {
  flex: 1 1 240px;
  color: #F9F9F9;
  margin-right: 14px;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
  flex: 0 0 auto;
}
.cookie-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 8px 19px;
  border-radius: 6px;
  background: #F59E42;
  color: #171c1f;
  border: none;
  margin-left: 5px;
  cursor: pointer;
  box-shadow: 0 2px 8px #0e0e0e19;
  transition: background 0.18s, color 0.17s;
}
.cookie-btn:hover, .cookie-btn:focus { background: #cf861c; color: #fff; }
.cookie-btn.reject {
  background: #222c2f;
  color: #fff;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #181f22;
  color: #F59E42;
}
.cookie-btn.settings {
  background: #1b2327;
  color: #F59E42;
  border: 1.5px solid #F59E42;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #232729;
  color: #fff;
}

/* COOKIE MODAL (PREFERENCES) ------------------ */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20, 25, 27, 0.87);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInModal 0.25s ease-in;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: #232729;
  color: #fff;
  padding: 36px 27px 27px 27px;
  border-radius: 14px;
  box-shadow: 0 7px 70px 0 #283947aa;
  max-width: 390px;
  min-width: 260px;
  width: 95vw;
}
.cookie-modal h2 {
  font-size: 1.22rem;
  color: #F59E42;
  margin-bottom: 9px;
}
.cookie-modal .cookie-categories {
  margin: 18px 0 24px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.cookie-category .label {
  font-family: 'Montserrat','Roboto',Arial,sans-serif;
  color: #EAF8FB;
  font-size: 1rem;
}
.cookie-category .toggle {
  min-width: 52px;
  height: 27px;
  border-radius: 20px;
  background: #181f22;
  border: 1.25px solid #37414a;
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.cookie-category .toggle input {
  display: none;
}
.cookie-category .toggle .slider {
  background: #F59E42;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  position: absolute;
  left: 2px;
  top: 1px;
  transition: left 0.22s;
}
.cookie-category .toggle input:checked ~ .slider {
  left: 27px;
  background: #cf861c;
}
.cookie-category .toggle.essential {
  background: #242d31;
  border: 1.25px solid #F59E42;
  opacity: 0.8;
}
.cookie-category .toggle.essential .slider {
  background: #F59E42;
}
/* Cookie modal close btn */
.cookie-modal .close-modal {
  position: absolute;
  top: 15px; right: 13px;
  background: none;
  color: #fff;
  font-size: 1.36rem;
  border: none;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.17s;
}
.cookie-modal .close-modal:hover,
.cookie-modal .close-modal:focus { opacity: 1; }
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  justify-content: flex-end;
}

/* MICRO-INTERACTIONS & MICRO-ANIMATIONS ----------------------- */
.card:hover, .feature-grid li:hover,
.service-card:hover, .testimonial-card:hover {
  box-shadow: 0 10px 34px 0 #13161755;
  transform: translateY(-3px) scale(1.015);
}
.cta-button:active, .cookie-btn:active, .feature-grid li:active, .service-card:active {
  transform: scale(0.97);
}

/* VISUAL METALLIC ACCENTS ----------------------- */
.feature-grid li, .service-card, .faq-list li, .detailed-services-list li, .testimonial-card {
  /* metallic accent simulated by subtle border or outline */
  border-left: 5px solid #15607222;
}
.feature-grid li:hover, .service-card:hover {
  border-left: 5px solid #F59E42;
}

/* TYPOGRAPHY SCALE ----------------------- */
@media (max-width: 550px) {
  h1 { font-size: 1.49rem; }
  h2 { font-size: 1.22rem; }
  h3 { font-size: 1.08rem; }
  .cta-button, .cookie-btn { font-size: 0.97rem; }
}

/* SPACING / MARGINS ----------------------- */
.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; }

/* OTHERS ----------------------- */
::-webkit-scrollbar { width: 8px; background: #181f22; }
::-webkit-scrollbar-thumb { background: #232729; border-radius: 7px; }
::-webkit-scrollbar-thumb:hover { background: #15607277; }

/* Hide elements visually but keep for accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* PRINT COLOR ADJUST */
@media print {
  * { background: #fff !important; color: #111 !important; box-shadow: none !important; }
  .main-nav,.footer-wrapper,.cookie-banner,.mobile-menu { display: none !important; }
}
