/* =============================================================
   CSS RESET & BASELINE NORMALIZATION
   ============================================================= */
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;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background: #23282B;
  color: #FAFAFA;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: inline-block;
  max-width: 100%;
  vertical-align: middle;
  height: auto;
}
a {
  color: #B6A480;
  background: transparent;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F8F5F3;
  outline: none;
}
ul, ol {
  list-style: none;
}

/* =============================================================
   BRAND FONTS (Montserrat for display, Roboto for body)
   ============================================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@800;700;500&family=Roboto:wght@400;500;700&display=swap');
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #F8F5F3;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.15;
}
h1 { font-size: 2.75rem; margin-bottom: 20px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.35rem; margin-bottom: 10px; }
h4 { font-size: 1.18rem; margin-bottom: 8px; }
p, ul, ol {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #E3E5E8;
  margin-bottom: 18px;
  line-height: 1.7;
}
strong { font-weight: 700; }

@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}
@media (max-width: 500px) {
  h1 { font-size: 1.4rem; }
  h2 { font-size: 1.18rem; }
}

/* =============================================================
   LAYOUT CONTAINERS, INDUSTRIAL MODERN STYLING
   ============================================================= */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 16px; padding-right: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(44, 55, 61, 0.98);
  border-radius: 20px;
  box-shadow: 0 6px 32px 0 rgba(30, 36, 44, 0.15), 0 1.5px 0 #363C40;
  position: relative;
}

/* Hero Section (for index) */
.hero {
  background: linear-gradient(135deg, #22272B 88%, #2c373d 100%);
  padding: 64px 0 40px 0;
  margin-bottom: 50px;
}
.hero .content-wrapper {
  max-width: 700px;
  gap: 22px;
}
.hero h1 {
  color: #F8F5F3;
}
.hero p {
  color: #d5d8da;
  font-size: 1.15rem;
}

/* =============================================================
   NAVIGATION HEADER, DESKTOP & MOBILE
   ============================================================= */
header {
  background: #21272C;
  box-shadow: 0 3px 18px 0 rgba(30, 36, 44, 0.19);
  position: sticky;
  z-index: 20;
  top: 0;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
  position: relative;
}
.logo img {
  max-height: 42px;
  vertical-align: middle;
  filter: grayscale(30%) contrast(110%) brightness(1.05);
}
.desktop-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.desktop-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #F8F5F3;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 6px 12px;
  border-radius: 6px;
  transition: background 0.17s, color 0.18s;
}
.desktop-nav a:hover, .desktop-nav a:focus {
  background: #2C373D;
  color: #B6A480;
}
.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  background: #B6A480;
  color: #23282B;
  border: none;
  border-radius: 36px;
  font-family: 'Montserrat', sans-serif;
  font-weight: bold;
  font-size: 1.08rem;
  padding: 10px 32px;
  margin-left: 18px;
  box-shadow: 0 4px 12px 0 rgba(182,164,128,0.12);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.03em;
}
.cta-btn-primary:hover, .cta-btn-primary:focus {
  background: #a2906f;
  color: #F8F5F3;
  box-shadow: 0 7px 22px 0 rgba(182,164,128,0.2);
}
.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  background: none;
  color: #B6A480;
  border: 2px solid #B6A480;
  border-radius: 36px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 1.02rem;
  padding: 8px 26px;
  margin-top: 8px;
  box-shadow: 0 3px 14px 0 rgba(182,164,128,0.07);
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.03em;
}
.cta-btn-secondary:hover, .cta-btn-secondary:focus {
  background: #B6A480;
  border-color: #d5c5a2;
  color: #23282B;
  box-shadow: 0 7px 22px 0 rgba(182,164,128,0.13);
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: none;
  background: none;
  color: #B6A480;
  border: none;
  font-size: 2rem;
  padding: 5px 14px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.18s, color 0.17s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #363C40;
  color: #F8F5F3;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  left: 0; top: 0;
  width: 100vw; height: 100vh;
  background: #21272C;
  z-index: 222;
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.39,.86,.46,.97);
  box-shadow: 10px 0 32px 0 rgba(25,28,32,0.34);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 18px 0 0 24px;
  background: none;
  color: #B6A480;
  border: none;
  font-size: 2.4rem;
  cursor: pointer;
  align-self: flex-start;
  border-radius: 8px;
  transition: background 0.15s, color 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #2C373D; color: #F8F5F3;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 48px 0 0 36px;
}
.mobile-nav a {
  color: #F8F5F3;
  font-family: 'Montserrat', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 6px 10px;
  border-radius: 7px;
  transition: color 0.15s, background 0.17s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #B6A480;
  background: #2C373D;
}

@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 98vw;
    padding-left: 12px; padding-right: 12px;
  }
}
@media (max-width: 768px) {
  header .container {
    padding-top: 12px; padding-bottom: 12px;
  }
  .cta-btn-primary, .cta-btn-secondary {
    font-size: 1rem;
    padding: 8px 18px;
    margin-left: 10px;
  }
}

/* =============================================================
   FLEXBOX - LAYOUT COMPONENTS
   (MANDATORY EXACT CLASSES + spacing/gap rules)
   ============================================================= */
.feature-grid,
.services-list,
.project-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 14px;
}
.feature-item, .service-item, .project-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #262C30;
  border-radius: 14px;
  box-shadow: 0 2px 13px 0 rgba(44,55,61,0.07);
  padding: 28px 22px;
  margin-bottom: 20px;
  border: 1.5px solid #363C40;
  min-width: 240px;
  max-width: 340px;
  transition: box-shadow 0.21s, border-color 0.18s, transform 0.17s;
}
.feature-item:hover, .service-item:hover, .project-item:hover {
  border-color: #B6A480;
  box-shadow: 0 10px 36px 0 rgba(182,164,128,0.11);
  transform: translateY(-3px) scale(1.02);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #21272C;
  border-radius: 16px;
  box-shadow: 0 4px 18px 0 rgba(44,55,61,.11);
  padding: 30px 18px 28px 18px;
  position: relative;
  border: 1.5px solid #363C40;
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #FAFAFA;
  color: #2C373D;
  border-radius: 14px;
  box-shadow: 0 7px 24px rgba(44,55,61,0.09);
  position: relative;
  border-left: 4px solid #B6A480;
  max-width: 600px;
  font-size: 1.02rem;
}
.testimonial-card p {
  color: #262C30;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.testimonial-card strong {
  color: #2C373D;
}
.testimonial-card div {
  font-weight: 500; font-size: 0.97rem;
}
.feature-item img, .service-item img, .project-item img {
  max-height: 48px;
  filter: grayscale(40%) contrast(110%) brightness(0.95);
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 45px;
  margin: 10px 0 22px 0;
  color: #B6A480;
  font-size: 1.08rem;
}
.contact-details div {
  display: flex; align-items: center; gap: 8px;
  color: #B6A480; font-weight: 500;
}
.contact-details img {
  max-height: 20px;
  filter: grayscale(30%) contrast(130%);
}
/* Table Styles (Pricing) */
table {
  width: 100%;
  margin: 16px 0 30px 0;
  border-spacing: 0;
  background: #21272C;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 3px 14px 0 rgba(44, 55, 61, 0.08);
}
thead th {
  font-family: 'Montserrat',sans-serif;
  background: #2C373D;
  color: #B6A480;
  padding: 16px 10px;
  text-align: left;
  font-size: 1rem;
  border-bottom: 2.5px solid #363C40;
}
tbody td {
  padding: 14px 10px;
  color: #E3E5E8;
  border-bottom: 1px solid #363C40;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
tbody tr:last-child td { border-bottom: 0; }

/* =============================================================
   CTA, MAP LOCATION BLOCK
   ============================================================= */
.map-location {
  background: #272D34;
  border: 1.2px solid #363C40;
  border-radius: 12px;
  padding: 26px 18px;
  margin-top: 22px;
  color: #E3E5E8;
}
.map-location h3 {
  color: #F8F5F3;
  font-size: 1.18rem;
  margin-bottom: 9px;
}
.map-location p {
  margin-bottom: 0;
  font-size: 1.03rem;
  color: #dcdcdc;
}

/* =============================================================
   FOOTER
   ============================================================= */
footer {
  margin-top: 40px;
  background: #181C20;
  color: #F8F5F3;
  border-top: 1px solid #363C40;
  letter-spacing: 0.01em;
}
.footer-area {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 48px;
  padding: 52px 0 32px 0;
}
.footer-brand {
  flex: 2 1 230px;
  min-width: 210px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-brand img {
  max-height: 34px;
  filter: grayscale(32%) contrast(110%) brightness(1.02);
}
.footer-links,
.footer-legal,
.footer-contact {
  flex: 1 1 160px;
  min-width: 120px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links h4, .footer-contact h4, .footer-legal h4 {
  color: #B6A480;
  font-size: 1.08rem;
  font-weight: 700;
  margin-bottom: 7px;
}
.footer-links nav, .footer-legal nav {
  display: flex;
  flex-direction: column;
  gap: 9px 0;
}
.footer-links a, .footer-legal a {
  color: #a8a8ad;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border-radius: 4px;
  transition: background .14s, color .17s;
  padding: 3px 6px;
  margin-left: -4px;
}
.footer-links a:hover,
.footer-legal a:hover, .footer-links a:focus, .footer-legal a:focus {
  background: #23282B;
  color: #B6A480;
}
.footer-contact {
  gap: 3px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  border-top: 1px solid #363C40;
  padding: 20px 0 14px 0;
  margin-top: 18px;
  color: #7b7d7e;
  font-size: 0.98rem;
  justify-content: center;
}

@media (max-width: 950px) {
  .footer-area { flex-direction: column; gap: 22px; }
  .footer-bottom { text-align: center; font-size: 0.92rem; }
}

/* =============================================================
   COOKIE CONSENT BANNER & MODAL
   ============================================================= */
.cookie-banner {
  position: fixed;
  width: 100vw;
  left: 0;
  bottom: 0;
  z-index: 999;
  background: #23282B;
  color: #F8F5F3;
  box-shadow: 0 -5px 18px 0 rgba(44,55,61,.15);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 10vw 20px 7vw;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.02rem;
  transition: transform 0.4s cubic-bezier(.46,1.28,.51,1.01), opacity 0.28s;
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 26px;
  padding: 9px 26px;
  font-weight: 700;
  font-family: 'Montserrat',sans-serif;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s, color 0.17s, box-shadow 0.15s;
}
.cookie-accept {
  background: #B6A480;
  color: #23282B;
  box-shadow: 0 3px 12px 0 rgba(182,164,128,.11);
}
.cookie-accept:hover, .cookie-accept:focus {
  background: #947847; color: #fff;
  box-shadow: 0 5px 24px 0 rgba(182,164,128,.21);
}
.cookie-reject {
  background: #363C40; color: #F8F5F3;
  border: 1.5px solid #B6A480;
}
.cookie-reject:hover, .cookie-reject:focus {
  background: #22272b; color: #B6A480;
}
.cookie-settings {
  background: none;
  color: #B6A480;
  border: 1.5px solid #B6A480;
}
.cookie-settings:hover, .cookie-settings:focus {
  background: #B6A480; color: #23282B;
}

/* Cookie Modal Overlay */
.cookie-modal {
  position: fixed;
  left: 0; top: 0; width: 100vw; height: 100vh;
  z-index: 2002;
  background: rgba(44,55,61, 0.78);
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadein 0.3s;
}
.cookie-modal.open {
  display: flex;
}
@keyframes fadein {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal__window {
  background: #23282b;
  border-radius: 16px;
  padding: 38px 28px 30px 28px;
  box-shadow: 0 10px 64px 0 rgba(44,55,61,0.31);
  max-width: 410px; width: 92vw;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 17px;
  color: #F8F5F3;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal__close {
  position: absolute;
  right: 14px; top: 12px;
  background: none;
  border: none;
  color: #B6A480;
  font-size: 2rem;
  cursor: pointer;
  border-radius: 7px;
  padding: 2px 5px;
  transition: background 0.15s, color 0.15s;
}
.cookie-modal__close:hover, .cookie-modal__close:focus {
  background: #2C373D; color: #fff;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
}
.cookie-category label {
  font-size: 0.98rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-toggle {
  width: 38px; height: 22px;
  background: #363C40;
  border-radius: 12px;
  position: relative;
  cursor: pointer;
}
.cookie-toggle input {
  display: none;
}
.cookie-toggle-slider {
  position: absolute; left: 3px; top: 3px;
  width: 16px; height: 16px;
  background: #B6A480;
  border-radius: 50%;
  transition: left 0.19s;
}
.cookie-toggle input:checked + .cookie-toggle-slider {
  left: 19px;
  background: #f8f5f3;
  box-shadow: 0 1.5px 4px 0 rgba(182,164,128,0.23);
}
.cookie-category[data-required="true"] .cookie-toggle {
  opacity: .5;
  cursor: not-allowed;
}

/* =============================================================
   MEDIA QUERIES: RESPONSIVE DESIGN
   ============================================================= */
@media (max-width: 1020px) {
  .feature-grid, .services-list, .project-list {
    gap: 22px;
    justify-content: center;
  }
}
@media (max-width: 900px) {
  .feature-item, .service-item, .project-item {
    padding: 18px 8px;
    min-width: 180px; max-width: 90vw;
  }
  .feature-grid, .services-list, .project-list {
    flex-direction: column;
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .footer-area, .contact-details {
    flex-direction: column;
    gap: 14px;
  }
  .container { padding-left: 7px; padding-right: 7px; }
  .hero, .section {
    padding: 26px 7px;
  }
  .testimonial-card {
    padding: 13px;
    max-width: 95vw;
  }
  .feature-item, .service-item, .project-item {
    min-width: unset;
    padding: 12px 4px;
    border-radius: 11px;
  }
  .content-wrapper { gap: 11px; }
  .text-image-section { flex-direction: column; gap: 17px; }
}
.cookie-banner { flex-direction: column; align-items: flex-start; padding: 17px 7vw 17px 4vw; }
@media (max-width: 600px) {
  .testimonial-card { font-size: 0.95rem; padding: 8px; }
}
@media (max-width: 425px) {
  .feature-item, .service-item, .project-item, .section { min-width: unset; max-width: 97vw; }
  .container { padding-left: 2px; padding-right: 2px; }
}

/* =============================================================
   INDUSTRIAL MODERN ACCENTS & MICRO-INTERACTIONS
   ============================================================= */
.section {
  box-shadow: 0 6px 32px 0 rgba(30, 36, 44, 0.15), 0 1.5px 0 #363C40;
  border: 1.5px solid #363C40;
}
.card, .feature-item, .service-item, .project-item, .testimonial-card {
  transition: box-shadow 0.21s, border-color 0.18s, transform 0.15s;
}
.card:hover, .feature-item:hover, .service-item:hover, .project-item:hover, .testimonial-card:hover {
  box-shadow: 0 10px 36px 0 rgba(182,164,128,0.11);
  border-color: #B6A480;
  transform: translateY(-2.5px) scale(1.017);
}
.cta-btn-primary, .cta-btn-secondary, .cookie-btn {
  transition: background 0.22s, color 0.19s, box-shadow 0.19s, border 0.19s;
}

/* Fake metallic effect for industrial style accents */
.cta-btn-primary, .cta-btn-secondary, .card, .feature-item, .service-item, .project-item, .section {
  box-shadow: 0 2px 14px 0 rgba(44,55,61,0.09);
}

/* Hide scrollbars for overlays */
.mobile-menu, .cookie-modal { scrollbar-width: none; }
.mobile-menu::-webkit-scrollbar, .cookie-modal::-webkit-scrollbar { display: none; }

/* Utilities for spacing and alignment (by class or utility) */
.mb-2 { margin-bottom: 18px !important; }
.mb-3 { margin-bottom: 28px !important; }
.mt-2 { margin-top: 18px !important; }
.mt-3 { margin-top: 28px !important; }
.center-flex {
  display: flex !important; align-items: center !important; justify-content: center !important;
}

/* END OF INDUSTRIAL MODERN CSS for Allora Ligg */
