/* =============================================================
   Reset & Normalize
   ============================================================= */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #1a2326;
  color: #F3E9DC;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
}
a {
  color: #329D9C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F3E9DC;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #F3E9DC;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  color: #B1B4B7;
  margin-bottom: 24px;
}
p {
  margin-bottom: 12px;
}
strong {
  color: #F3E9DC;
  font-weight: 700;
}

/* =============================================================
   Layout Containers
   ============================================================= */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(32, 80, 114, 0.10);
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(10, 18, 28, 0.09);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 10px;
    margin-bottom: 40px;
  }
}

/* =============================================================
   Header & Navigation
   ============================================================= */
header {
  background: #232e32;
  border-bottom: 1px solid #2f3a3e;
  position: sticky;
  top: 0;
  z-index: 900;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
}
.logo-link img {
  height: 42px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 28px;
}
.main-nav a {
  color: #B1B4B7;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-size: 1rem;
  padding: 7px 0 6px 0;
  border-bottom: 2.5px solid transparent;
  transition: color 0.18s, border-color 0.18s;
}
.main-nav a:hover, .main-nav a:focus, .main-nav a.active {
  color: #F3E9DC;
  border-bottom: 2.5px solid #329D9C;
}
.btn-primary {
  background: linear-gradient(90deg, #205072 80%, #329D9C 100%);
  color: #F3E9DC;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  border-radius: 7px;
  padding: 12px 28px;
  box-shadow: 0 4px 18px rgba(32,80,114,0.20);
  margin-left: 26px;
  transition: background 0.23s, color 0.23s, box-shadow 0.2s;
  position: relative;
  z-index: 1;
}
.btn-primary:hover, .btn-primary:focus {
  background: #329D9C;
  color: #1a2326;
  box-shadow: 0 9px 24px rgba(32, 157, 156, 0.16);
}
.btn-secondary {
  background: #232e32;
  color: #F3E9DC;
  border: 1px solid #329D9C;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  padding: 10px 24px;
  font-weight: 600;
  margin-left: 18px;
  transition: background 0.21s, border-color 0.21s, color 0.2s;
}
.btn-secondary:hover, .btn-secondary:focus {
  background: #329D9C;
  color: #1a2326;
  border-color: #205072;
}

/* Burger (Mobile Menu) */
.mobile-menu-toggle {
  display: none;
  background: #232e32;
  color: #F3E9DC;
  font-size: 2rem;
  border-radius: 7px;
  padding: 6px 18px 8px 18px;
  margin-left: 15px;
  z-index: 99;
  transition: background 0.22s, color 0.22s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #329D9C;
  color: #1a2326;
}
@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .btn-primary {
    margin-left: 0;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26,35,38,0.97);
  z-index: 1900;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 30px 0 0 0;
  transform: translateX(-100%);
  transition: transform 0.32s cubic-bezier(0.71,0.21,0.25,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: #232e32;
  color: #F3E9DC;
  font-size: 2rem;
  margin: 0 0 0 22px;
  border-radius: 6px;
  padding: 2px 11px;
  align-self: flex-start;
  transition: background 0.21s, color 0.21s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #329D9C;
  color: #1a2326;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 50px 0 0 35px;
}
.mobile-nav a {
  color: #F3E9DC;
  font-size: 1.35rem;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 7px 0;
  letter-spacing: 0.05em;
  font-weight: 500;
  border-left: 3.5px solid transparent;
  transition: border-color 0.18s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  border-left: 3.5px solid #329D9C;
  color: #329D9C;
  background: rgba(50,157,156,0.06);
}
@media (min-width: 1020px) {
  .mobile-menu,
  .mobile-menu.open,
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* =============================================================
   Hero Section
   ============================================================= */
.hero {
  background: linear-gradient(110deg, #232e32 80%, #205072 100%);
  color: #F3E9DC;
  padding: 60px 0 48px 0;
  display: flex;
  align-items: center;
  min-height: 345px;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 16px;
}
@media (max-width: 768px) {
  .hero {
    padding: 36px 0 25px 0;
    min-height: 186px;
  }
}

/* =============================================================
   Features, Cards, Grids, Testimonial Styles
   ============================================================= */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin: 24px 0 0 0;
}
.feature-grid li {
  background: #1a2326;
  border: 1.5px solid #329D9C;
  box-shadow: 0 2px 16px 0 rgba(32,80,114,0.13);
  padding: 16px 20px;
  border-radius: 14px;
  min-width: 190px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  transition: box-shadow 0.18s, border-color 0.19s, background 0.16s;
}
.feature-grid li img {
  width: 38px;
  height: 38px;
  filter: grayscale(13%) brightness(92%);
  margin-top: 2px;
}
.feature-grid li:hover, .feature-grid li:focus {
  box-shadow: 0 8px 24px 0 rgba(50,157,156,0.18);
  background: #232e32;
  border-color: #205072;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.card {
  margin-bottom: 20px;
  background: #232e32;
  border-radius: 18px;
  box-shadow: 0 4px 22px 0 rgba(32,80,114,0.10);
  border: 1.5px solid #329D9C;
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 220px;
  flex: 1 1 255px;
  transition: box-shadow 0.21s, border-color 0.2s, background 0.19s;
}
.card:hover, .card:focus {
  box-shadow: 0 8px 30px rgba(32, 157, 156, 0.22);
  border-color: #205072;
  background: #1a2326;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 11px;
  padding: 25px 22px 22px 22px;
}

.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) {
  .feature-grid, .card-container, .content-grid, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* Testimonial Cards */
.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
  margin-bottom: 4px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  background: #F3E9DC;
  color: #232e32;
  border-radius: 14px;
  box-shadow: 0 2px 14px 0 rgba(32,80,114,0.10);
  border-left: 7px solid #205072;
  min-width: 235px;
  flex: 1 1 285px;
  transition: box-shadow 0.18s, border-color 0.17s;
}
.testimonial-card .testimonial-user {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #205072;
}
.testimonial-card > div {
  font-size: 1.1rem;
  letter-spacing: 2px;
}
.testimonial-card:hover, .testimonial-card:focus {
  border-left-color: #329D9C;
  box-shadow: 0 8px 36px rgba(32,157,156,0.14);
  background: #fffefb;
}

/* CTA Section */
.cta {
  background: linear-gradient(98deg, #205072 90%, #232e32 100%);
  box-shadow: 0 9px 38px 0 rgba(32,80,114,0.11);
  color: #F3E9DC;
  border-radius: 14px;
  padding: 44px 0;
  margin-bottom: 60px;
}
.cta .btn-primary {
  margin-left: 0;
  margin-top: 22px;
}
@media (max-width: 768px) {
  .cta {
    padding: 26px 0;
    margin-bottom: 38px;
  }
  .cta .content-wrapper {
    gap: 12px;
  }
}

/* Service Price Tag */
.service-price {
  font-size: 1rem;
  color: #329D9C;
  margin-top: 7px;
  margin-bottom: 5px;
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}

/* FAQ Stying */
.faq-list {
  margin: 32px 0 16px 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-list li {
  background: #1a2326;
  color: #F3E9DC;
  border-radius: 10px;
  padding: 20px 18px;
  box-shadow: 0 1.5px 12px 0 rgba(32,80,114,0.16);
  border-left: 4px solid #329D9C;
}
.faq-list li h3 {
  color: #329D9C;
  font-size: 1.1rem;
  margin-bottom: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
}
.contact-prompt p {
  margin-top: 18px;
  color: #B1B4B7;
  font-style: italic;
}
.contact-prompt a {
  color: #329D9C;
  text-decoration: underline;
}
.contact-prompt a:hover {
  color: #205072;
}

/* Confirmation (Thank-you) page section */
.confirmation {
  background: linear-gradient(95deg, #232e32 85%, #205072 100%);
  color: #F3E9DC;
  border-radius: 14px;
  padding: 50px 0 50px 0;
  text-align: left;
}
.confirmation .btn-primary {
  margin-top: 18px;
}
@media (max-width: 800px) {
  .confirmation {
    padding: 28px 0;
  }
}

/* =============================================================
   UL/LI Simple List Styling
   ============================================================= */
.text-section ul, ul:not(.feature-grid):not(.faq-list) {
  margin: 18px 0 10px 22px;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #acc5ce;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
}
.text-section ul li::marker, ul li::marker {
  color: #329D9C;
}
.text-section ul li, ul li {
  list-style-type: disc;
  margin-left: 17px;
}

/* =============================================================
   Footer
   ============================================================= */
footer {
  background: #232e32;
  border-top: 2px solid #205072;
  padding: 38px 0 34px 0;
  color: #B1B4B7;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 36px;
  justify-content: space-between;
  align-items: flex-start;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  min-width: 230px;
}
.footer-menu a {
  color: #329D9C;
  font-weight: 500;
  transition: color 0.22s;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #F3E9DC;
}
.brand-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 260px;
  color: #B1B4B7;
  font-size: 1rem;
}
.brand-contact img {
  width: 48px;
  height: auto;
  margin-bottom: 7px;
}
.social-links {
  display: flex;
  gap: 18px;
  align-items: center;
}
.social-links a img {
  width: 28px;
  filter: grayscale(57%) brightness(100%);
  opacity: 0.82;
  transition: filter 0.18s, opacity 0.17s;
}
.social-links a:hover img, .social-links a:focus img {
  filter: none;
  opacity: 1;
}
@media (max-width: 920px) {
  footer .container {
    flex-direction: column;
    gap: 26px;
    align-items: flex-start;
  }
}

/* =============================================================
   Cookie Consent Banner & Modal
   ============================================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #232e32;
  color: #F3E9DC;
  box-shadow: 0 -2px 18px 0 rgba(32,80,114,0.14);
  z-index: 5000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  border-top: 3.5px solid #329D9C;
  transition: transform 0.34s cubic-bezier(0.88,0.22,0.36,1);
  gap: 18px;
  font-size: 1rem;
}
.cookie-banner.hide {
  transform: translateY(100%);
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 2 2 350px;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  flex: 1 1 160px;
  justify-content: flex-end;
}
.cookie-banner button {
  background: #205072;
  color: #F3E9DC;
  border: none;
  border-radius: 6px;
  padding: 10px 18px;
  margin: 0;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: background 0.21s, color 0.19s, box-shadow 0.18s;
}
.cookie-banner .accept-btn {
  background: #329D9C;
  color: #1a2326;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #F3E9DC;
  color: #205072;
  box-shadow: 0 2px 6px rgba(50,157,156,0.15);
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(34, 46, 50, 0.92);
  z-index: 5100;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #F3E9DC;
  color: #1a2326;
  border-radius: 12px;
  padding: 34px 28px 30px 28px;
  min-width: 324px;
  max-width: 95vw;
  box-shadow: 0 8px 38px 0 rgba(32,80,114,0.16);
  display: flex;
  flex-direction: column;
  gap: 21px;
  position: relative;
  animation: slideDown 0.36s cubic-bezier(0.77,0.11,0.2,1);
}
@keyframes slideDown {
  from {
    transform: translateY(-28px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.cookie-modal h2 {
  color: #205072;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.cookie-modal .modal-close {
  background: #205072;
  color: #F3E9DC;
  border: none;
  border-radius: 24px;
  font-size: 1.7rem;
  padding: 3px 13px 7px 13px;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  transition: background 0.2s, color 0.2s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #329D9C;
  color: #1a2326;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: #fff;
  border-radius: 7px;
  padding: 11px 13px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.cookie-category.disabled {
  opacity: 0.61;
}
.cookie-category label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #205072;
  cursor: pointer;
}
.cookie-category input[type='checkbox'] {
  width: 22px;
  height: 22px;
  accent-color: #205072;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal .modal-actions button {
  font-size: 1rem;
  padding: 8px 18px;
  border-radius: 6px;
  background: #329D9C;
  color: #1a2326;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.cookie-modal .modal-actions button.cancel-btn {
  background: #205072;
  color: #F3E9DC;
}

/* =============================================================
   Misc (Form elements, micro animations, details)
   ============================================================= */
input, textarea, select {
  font-family: 'Roboto', Arial, sans-serif;
  border: 1.5px solid #205072;
  background: #232e32;
  color: #F3E9DC;
  border-radius: 6px;
  padding: 10px 13px;
  font-size: 1rem;
  outline: none;
  transition: border-color 0.16s, box-shadow 0.19s;
}
input:focus, textarea:focus, select:focus {
  border-color: #329D9C;
  box-shadow: 0 2px 8px 0 rgba(32,80,114,0.11);
}

::-webkit-input-placeholder { color: #B1B4B7; }
::-moz-placeholder { color: #B1B4B7; }
:-ms-input-placeholder { color: #B1B4B7; }
::placeholder { color: #B1B4B7; }

hr {
  border: none;
  border-top: 1px solid #205072;
  margin: 26px 0;
}

/* =============================================================
   Spacing Utilities (Consistency everywhere)
   ============================================================= */
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mt-4 { margin-top: 32px !important; }
.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 8px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mb-3 { margin-bottom: 24px !important; }
.mb-4 { margin-bottom: 32px !important; }
.gap-1 { gap: 8px !important; }
.gap-2 { gap: 16px !important; }
.gap-3 { gap: 24px !important; }
.gap-4 { gap: 32px !important; }

/* =============================================================
   Responsive tweaks (Mobile-friendly everywhere)
   ============================================================= */
@media (max-width: 768px) {
  footer {
    padding: 26px 0 21px 0;
  }
  h1 { font-size: 1.45rem; }
  h2 { font-size: 1.08rem; }
  .hero {
    min-height: 144px;
  }
  .feature-grid li,
  .card,
  .testimonial-card {
    min-width: 90vw;
    width: 100%;
  }
  .testimonials {
    flex-direction: column;
    gap: 13px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    padding: 17px 10px;
    font-size: 0.98rem;
  }
  .cookie-banner .cookie-actions {
    justify-content: flex-start;
    gap: 10px;
  }
}

/* =============================================================
   Industrial Modern – Accents & UX Detail
   ============================================================= */
body {
  background: #1a2326;
  /* metallic accent underlay */
  background-image: linear-gradient(124deg, rgba(32,80,114,0.08) 65%, rgba(50,157,156,0.03) 100%),
    repeating-linear-gradient(45deg, transparent, transparent 21px, rgba(92, 104, 111,0.09) 23px, transparent 24px);
}
.section, .content-wrapper, .card, .testimonial-card, .cta, .feature-grid li {
  /* subtle inner drop and outer shadow for metallic effect */
  box-shadow: 0 2px 10px 0 rgba(50, 55, 58, 0.07), 0 1.5px 8px 0 rgba(30,75,100,0.08) inset;
}
hr {
  border-top: 1.5px solid #232e32;
}

/* -------------------------------------------------------------
   Font Import (Google Fonts: Montserrat & Roboto)
---------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;700&family=Roboto:wght@400;500&display=swap');
