/* ========== 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;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
ul, ol {
  padding-left: 24px;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}

body {
  background: #1a2324;
  color: #E4F1E1;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  min-height: 100vh;
  position: relative;
}

/* ========== BRAND TYPOGRAPHY ========== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #F7BE5A;
  line-height: 1.2;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: #E4F1E1;
  font-weight: 600;
}
h4, h5, h6 {
  font-size: 1.13rem;
  margin-bottom: 10px;
  color: #E4F1E1;
  font-weight: 600;
}
p,ul,ol,blockquote {
  margin-bottom: 16px;
}
strong, b {
  font-weight: bold;
}
blockquote {
  padding: 16px 24px 16px 36px;
  border-left: 4px solid #F7BE5A;
  color: #E4F1E1;
  background: rgba(47,60,62,0.8);
  font-style: italic;
  margin-bottom: 24px;
  border-radius: 4px;
}
small {
  font-size: 0.93em;
  color: #b7bfbd;
}

/* ========== LAYOUT & CONTAINER ========== */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.content-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding: 14px 0 14px 0;
}

.footer-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  border-top: 1.5px solid #314343;
  padding: 32px 0 16px 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 12px;
}

.footer-contact p {
  font-size: 0.98em;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b7bfbd;
  margin-bottom: 6px;
}

/* ========== HEADER & MAIN NAVIGATION ========== */
header {
  background: #232a2b;
  box-shadow: 0 2px 8px rgba(24,26,27,0.10);
  border-bottom: 2px solid #20504F;
}
.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
.main-nav a {
  padding: 8px 0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: #b7bfbd;
  letter-spacing: 0.4px;
  transition: color 0.2s;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #F7BE5A;
  border-bottom: 2px solid #F7BE5A;
}

/* HAMBURGER MENU (MOBILE) */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #F7BE5A;
  font-size: 2rem;
  padding: 4px 16px 4px 14px;
  cursor: pointer;
  display: none;
  transition: color 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  color: #E4F1E1;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 101;
  background: #232a2b;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.73,.01,.3,.99);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0 0 0 0;
  box-shadow: 2px 0 16px 0 rgba(24,26,27,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #F7BE5A;
  font-size: 2rem;
  padding: 20px 0 16px 22px;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: #E4F1E1;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  padding: 14px 30px 0 32px;
}
.mobile-nav a {
  color: #F7BE5A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  padding: 12px 0 12px 2px;
  border-radius: 5px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #20504F;
  color: #fff;
}
/* Hide nav on mobile */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  header .cta-btn {
    display: none;
  }
}
@media (max-width: 640px) {
  .mobile-nav {
    font-size: 1.05rem;
    gap:12px;
    padding-left:18px;
  }
}

/* ========== HERO SECTIONS ========== */
.hero {
  background: linear-gradient(120deg, #232a2b 78%, #20504F 108%);
  border-bottom: 3px solid #314343;
  padding: 50px 0 44px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 26px;
  text-shadow: 1px 1px 0 #1a2324CC;
}
.hero h1 {
  color: #F7BE5A;
  font-size: 2.7rem;
  text-shadow: 1px 2px 6px #000B;
}
.hero p {
  font-size: 1.18rem;
  color: #E4F1E1;
  max-width: 580px;
}

/* ========== FEATURE GRIDS, CARDS, FLEX-BASED COMPONENTS ========== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 32px 0 18px 0;
}
.feature-grid > div {
  flex: 1 1 240px;
  background: #20292a;
  border-radius: 12px;
  padding: 28px 18px 20px 18px;
  box-shadow: 0 2px 14px 0 rgba(32,44,47, 0.12), 0 0.5px 0 #314343 inset;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  min-width: 220px;
  max-width: 350px;
  border: 1.5px solid #314343;
  transition: transform 0.18s, box-shadow 0.22s;
  margin-bottom: 20px;
}
.feature-grid > div:hover {
  transform: translateY(-8px) scale(1.023);
  box-shadow: 0 4px 32px rgba(32,80,79,0.23), 0 0.5px 0 #F7BE5A inset;
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 3px;
  filter: grayscale(36%) contrast(0.95) drop-shadow(0 1px 2px #0007);
}

.blog-grid > div {
  min-height: 170px;
}
.tags {
  margin-top: 9px;
  font-size: 0.98em;
  color: #F7BE5A;
  opacity: .7;
  font-family: 'Montserrat', Arial, sans-serif;
}

.text-image-section {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  margin: 32px 0;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #20292a;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(24,26,27,0.08);
  border: 1.4px solid #314343;
  display: flex;
  flex-direction: column;
  padding: 30px 22px 22px 22px;
  transition: box-shadow 0.18s, transform 0.15s;
}
.card:hover {
  box-shadow: 0 4px 28px rgba(32,80,79,0.22), 0 0.5px 0 #F7BE5A inset;
  transform: translateY(-6px) scale(1.016);
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #fafbfa;
  color: #1a2324;
  border-radius: 10px;
  box-shadow: 0 2px 18px rgba(32,80,79,0.09);
  padding: 20px;
  margin-bottom: 24px;
  position: relative;
  min-width: 220px;
  max-width: 540px;
}
.testimonial-card .stars {
  font-size: 1.2rem;
  color: #F7BE5A;
  letter-spacing: 1.5px;
  font-family: 'Montserrat', Arial, sans-serif;
  align-self: flex-start;
}
.testimonial-card p {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.testimonial-footer {
  font-size: 0.99em;
  color: #20504F;
  font-weight: 600;
  letter-spacing: 0.2px;
  align-self: flex-end;
}

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

/* LISTS INSIDE FEATURES */
.feature-grid + ul, .content-wrapper > ul, .content-wrapper > ol {
  margin: 16px 0 10px 0;
  font-size: 1.03em;
}
.feature-grid + ul li, .content-wrapper > ul li {
  margin-bottom: 8px;
  padding-left: 0.1em;
  color: #b7bfbd;
}
ol {
  padding-left: 25px;
  margin-bottom: 12px;
}
ul li, ol li {
  margin-bottom: 7px;
  list-style-position: outside;
}
/* ========== SERVICES, ABOUT, SECTIONS ========== */
.services {
  background: #232a2b;
  border-radius: 14px;
  margin-bottom: 60px;
  padding: 36px 0 26px 0;
  box-shadow: 0 2.5px 6px rgba(32,80,79,0.10);
}
.about {
  margin-bottom: 60px;
  padding: 36px 0 18px 0;
}
.text-section {
  margin-bottom: 64px;
  padding: 54px 0 54px 0;
}

/* === CONTACT === */
.contact-details {
  margin-bottom: 60px;
  padding: 36px 0 18px 0;
}
.address-block, .phone-email-details, .opening-hours {
  background: #232a2b;
  border-radius: 8px;
  border: 1px solid #314343;
  padding: 20px 16px 8px 16px;
  margin-bottom: 17px;
  box-shadow: 0 1.5px 6px rgba(32,80,79,0.08);
}
.cta-section {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}

/* ========== CALL TO ACTION BUTTONS ========== */
.cta-btn {
  display: inline-block;
  background: #314343;
  color: #F7BE5A;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  letter-spacing: 0.7px;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(32,80,79,0.10);
  border: 2px solid #20504F;
  padding: 13px 28px;
  font-size: 1.08rem;
  margin-top: 6px;
  margin-bottom: 14px;
  transition: background 0.21s, color 0.21s, border 0.21s, transform 0.14s;
  position: relative;
  cursor: pointer;
}
.cta-btn:focus {
  outline: 3px solid #F7BE5A;
  outline-offset: 2px;
}
.cta-btn.primary {
  background: #F7BE5A;
  color: #20504F;
  border: 2px solid #F7BE5A;
  font-weight: 700;
}
.cta-btn.primary:hover,
.cta-btn.primary:focus {
  background: #20504F;
  color: #F7BE5A;
  border-color: #F7BE5A;
  transform: translateY(-2px) scale(1.03);
}
.cta-btn:hover,
.cta-btn:active {
  background: #20504F;
  color: #E4F1E1;
  border-color: #F7BE5A;
  transform: translateY(-2px) scale(1.03);
}

/* ========== FOOTER ========== */
footer {
  background: #1a2324;
  color: #b7bfbd;
  font-size: 1em;
  padding-top: 32px;
  padding-bottom: 4px;
}
footer img {
  width: 54px;
  margin-bottom: 10px;
  filter: grayscale(32%);
}
footer a {
  color: #F7BE5A;
  transition: color 0.18s, text-decoration 0.18s;
  font-weight: 500;
  font-size: 1em;
}
footer a:hover,
footer a:focus {
  text-decoration: underline;
  color: #E4F1E1;
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #232a2b;
  color: #F7BE5A;
  padding: 24px 12px 20px 12px;
  z-index: 2001;
  box-shadow: 0 -2px 18px rgba(46,61,63,0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px;
  justify-content: center;
  transition: transform 0.36s cubic-bezier(.8,0,.16,1.15);
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner p {
  color: #E4F1E1;
  max-width: 520px;
  margin-bottom: 0;
  font-size: 1em;
}
.cookie-btn {
  background: #F7BE5A;
  color: #20504F;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  border: none;
  border-radius: 7px;
  padding: 10px 22px;
  font-size: 1.025rem;
  margin: 0 7px;
  transition: background 0.15s, color 0.15s, transform 0.12s;
  cursor: pointer;
}
.cookie-btn.reject {
  background: #20504F;
  color: #F7BE5A;
}
.cookie-btn.setting {
  background: none;
  color: #b7bfbd;
  border: 2px solid #20504F;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #20504F;
  color: #F7BE5A;
  transform: translateY(-2px) scale(1.04);
}
.cookie-btn.setting:hover {
  background: #232a2b;
  color: #F7BE5A;
}

/* COOKIE MODAL POPUP */
.cookie-modal-overlay {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(32,44,47,0.85);
  display: flex;
  flex-direction: column;
  z-index: 2010;
  align-items: center;
  justify-content: flex-end;
  transition: opacity 0.33s;
}
.cookie-modal {
  background: #232a2b;
  color: #E4F1E1;
  border-radius: 14px 14px 0 0;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  padding: 38px 24px 28px 24px;
  box-shadow: 0 -3px 28px rgba(32,80,79,0.24);
  position: relative;
  margin-bottom: 0px;
  animation: cookieModalIn 0.5s cubic-bezier(.81,.07,.22,1.17);
}
@keyframes cookieModalIn {
  from { transform: translateY(130%); opacity: 0.1; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  margin-top: 0px;
  margin-bottom: 14px;
  color: #F7BE5A;
}
.cookie-modal .modal-close-btn {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  color: #F7BE5A;
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.2s;
  z-index: 2;
}
.cookie-modal .modal-close-btn:hover,
.cookie-modal .modal-close-btn:focus {
  color: #E4F1E1;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-category {
  background: #1a2324;
  border: 1px solid #314343;
  border-radius: 8px;
  padding: 13px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cookie-category label {
  font-size: 1.04em;
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 500;
  color: #F7BE5A;
  margin-right: 12px;
}
.cookie-category input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: #F7BE5A;
  vertical-align: middle;
  margin-left: 7px;
  margin-right: 2px;
}
.cookie-category .always-on {
  font-size: 0.92em;
  color: #77a799;
  margin-left: 11px;
}
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 24px;
  justify-content: flex-end;
}

/* ========== SPACING UTILITIES ========== */
.mt-0 {margin-top:0!important;}
.mt-1 {margin-top:10px;}
.mt-2 {margin-top:20px;}
.mt-3 {margin-top:32px;}
.mb-2 {margin-bottom:20px;}
.mb-3 {margin-bottom:32px;}
.pb-0 {padding-bottom: 0!important;}
.pt-0 {padding-top:0!important;}

/* ========== RESPONSIVENESS (MOBILE-FIRST) ========== */
@media (max-width: 1024px) {
  .container {
    max-width: 99vw;
  }
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }
  .content-wrapper, .feature-grid {
    max-width: 100vw;
  }
}

@media (max-width: 900px) {
  .feature-grid {
    gap: 18px;
  }
  .feature-grid>div {
    min-width: 170px;
    max-width: 340px;
    padding: 16px 10px 14px 10px;
  }
  h1 {
    font-size: 2.07rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .main-nav {
    gap: 18px;
  }
  .feature-grid {
    flex-direction: column;
    gap: 18px;
    margin: 20px 0 8px 0;
  }
  .feature-grid>div {
    min-width: unset;
    max-width: unset;
    width: 100%;
    margin-bottom: 20px;
  }
  .content-wrapper {
    gap: 14px;
    padding: 0 2px;
  }
  .hero {
    padding: 30px 0 24px 0;
  }
  .section {
    padding: 24px 6px;
    margin-bottom: 36px;
  }
  .about, .services, .contact-details, .text-section {
    padding-top: 20px;
    padding-bottom: 14px;
  }
  .cta-section {
    flex-direction: column;
    gap: 13px;
    align-items: flex-start;
  }
  .testimonial-card {
    max-width: 100vw;
    min-width: 130px;
    padding: 12px 6px 12px 6px;
  }
}
@media (max-width: 642px) {
  .hero h1 {
    font-size: 1.48rem;
    margin-bottom: 10px;
  }
  .feature-grid>div h3, .features h2 {
    font-size: 1.1em;
  }
  h2 {
    font-size: 1.2rem;
  }
  .card, .feature-item, .testimonial-card {
    padding: 12px 5px 10px 7px;
    font-size: .99em;
  }
  .section {
    padding: 16px 3px;
    margin-bottom: 22px;
  }
  .footer-flex {
    flex-direction: column;
    padding-bottom: 10px;
    gap: 14px;
  }
  .footer-nav {
    gap: 8px;
  }
}

/* ========== ANIMATIONS & MICRO-INTERACTIONS ========== */
.cta-btn, .card, .feature-grid>div, .testimonial-card, .cookie-btn, .mobile-menu, .mobile-nav a {
  transition: box-shadow 0.20s, background 0.22s, color 0.17s, border 0.19s, transform 0.16s, opacity 0.14s;
}

/* ========== INDUSTRIAL MODERN INDUSTRIAL VISUALS ========== */
body, .container, .card, .feature-grid>div, .testimonial-card, .about, .services, .text-section, .contact-details, .cookie-banner, .cookie-modal {
  /* Add subtle metallic background noise texture if desired via body::before, omitted here for performance */
}
.card, .feature-grid>div, .testimonial-card, .cookie-modal, .about, .services, .text-section, .contact-details {
  border-radius: 10px;
  box-shadow: 0 2px 16px rgba(32,44,47,0.09);
  border: 1.2px solid #314343;
}

header, footer, section, .cookie-banner {
  /* Slight metallic grayscale effect */
  /* Only visual hint through color and border styles for now */
}

/* Industrial font accents for headings, metallic colors for accents, dark panels for cards, yellow details, urban-inspired button styling. */
h1,h2,h3, .cta-btn {
  text-transform: none;
  letter-spacing: 0.03em;
}

.cta-btn,.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  /* Industrial modern font */
}

/* ========== ACCESSIBILITY: FOCUS STATES ========== */
a:focus, button:focus, .cta-btn:focus, .cookie-btn:focus {
  outline: 2.5px solid #F7BE5A;
  outline-offset: 1px;
  border-radius: 4px;
  box-shadow: 0 0 0 2.5px #f7be5a33;
}

/* ========== CUSTOM SCROLLBAR FOR URBAN FEEL ========== */
body::-webkit-scrollbar {
  width: 10px;
}
body::-webkit-scrollbar-thumb {
  background: #20504F;
  border-radius: 15px;
}
body::-webkit-scrollbar-track {
  background: #232a2b;
}

/* =====================
   UTILITY CLASSES
   ===================== */
.metal-separator {
  height: 3px;
  width: 40px;
  background: linear-gradient(90deg,#E4F1E1 5%,#F7BE5A 60%,#20504F 100%);
  border-radius: 4px;
  margin: 16px 0;
  box-shadow: 0 1.5px 6px #F7BE5A22;
}

/* =====================
   PRINT OPTIMIZATION
   ===================== */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  .container {
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
  }
  body {
    background: #fff !important;
    color: #222 !important;
  }
}
