/* ==== 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, 
main, 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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  background: #171A1E;
  color: #F3F4F8;
}
ol, ul {
  list-style: none;
}
a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
*:focus {
  outline: 2px solid #F2C12E;
  outline-offset: 2px;
}

/* ==== BRAND FONTS (INCLUDE FONTS IN HTML OR HERE VIA @import) ==== */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  background: #171A1E;
  color: #F3F4F8;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: .03em;
  font-weight: 700;
  color: #F2C12E;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 20px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

p {
  margin-bottom: 16px;
  font-size: 1rem;
  color: #D1D5DB;
}
strong {
  color: #FFFFFF;
  font-weight: 700;
}

/* ==== LAYOUT & CONTAINERS ==== */
.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
.section, .hero-section, .features-section, .testimonials-section, .about-section, .footer-section, .contact-section, .services-section, .thank-you-section {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 20px;
  background: #1D2127;
  box-shadow: 0 3px 18px 0 rgb(20 21 25 / 23%);
}
/* Only .hero-section gets a special background */
.hero-section {
  background: linear-gradient(120deg, #171A1E 70%, #145374 100%);
  color: #F2C12E;
}

/* ==== FLEXBOX LAYOUTS ==== */
.feature-grid, .features-section .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.card-container, .card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #23262B;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(20, 21, 25, 0.18);
  transition: box-shadow 0.2s cubic-bezier(.4,0,.2,1), border-color 0.25s;
}
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 14px;
  background: #FCFCFD;
  box-shadow: 0 3px 12px 0 rgba(20, 21, 25, 0.08);
  margin-bottom: 20px;
  color: #23262B;
}
.feature-item {
  flex: 1 1 260px;
  min-width: 220px;
  background: #22252A;
  border: 1px solid #353942;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 28px 22px;
  box-shadow: 0 2px 8px 0 rgba(14,16,18,0.09);
  margin-bottom: 20px;
  transition: border-color .2s, box-shadow .2s;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 12px;
}
.address-map {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 10px;
  color: #F2C12E;
  font-size: .98rem;
}

/* ==== HEADER & NAVIGATION ==== */
header {
  width: 100%;
  background: #171A1E;
  border-bottom: 1px solid #23262B;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo img {
  height: 44px;
  margin-right: 26px;
  vertical-align: middle;
}
.main-nav {
  display: flex;
  gap: 30px;
  align-items: center;
  margin-right: auto;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #F2C12E;
  letter-spacing: 0.02em;
  padding: 7px 10px;
  border-radius: 6px;
  transition: background 0.18s, color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #23262B;
  color: #F2C12E;
}
.cta.primary {
  background: #145374;
  color: #F2C12E;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 26px;
  border-radius: 28px;
  box-shadow: 0 4px 14px rgba(20, 83, 116, 0.10);
  margin-left: 26px;
  font-weight: 900;
  font-size: 1.02rem;
  letter-spacing: 0.03em;
  border: 2px solid #F2C12E;
  cursor: pointer;
  transition: background 0.23s, color 0.23s, border-color .23s;
}
.cta.primary:hover, .cta.primary:focus {
  background: #0F2537;
  color: #F2C12E;
  border-color: #145374;
}
.cta.secondary {
  background: #23262B;
  color: #F2C12E;
  font-family: 'Montserrat', Arial, sans-serif;
  padding: 10px 26px;
  border-radius: 28px;
  border: 2px solid #145374;
  font-weight: 700;
  letter-spacing: 0.01em;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 1px 6px 0 rgba(20, 83, 116, 0.06);
  transition: background 0.22s, color 0.22s, border-color .22s;
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #145374;
  color: #F2C12E;
  border-color: #F2C12E;
}

button.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #F2C12E;
  font-size: 2rem;
  cursor: pointer;
  margin-left: 30px;
  border-radius: 8px;
  padding: 3px 10px;
  transition: background 0.2s;
  z-index: 101;
}
button.mobile-menu-toggle:hover {
  background: #23262B;
}

/* ==== MOBILE NAV ==== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw; height: 100vh;
  background: rgba(23, 26, 30, 0.96);
  z-index: 100;
  transition: transform 0.43s cubic-bezier(.71,0,.32,1);
  transform: translateX(100%);
}
.mobile-menu.open {
  display: block;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #F2C12E;
  font-size: 2.2rem;
  position: absolute;
  top: 19px;
  right: 22px;
  z-index: 111;
  cursor: pointer;
  border-radius: 8px;
  padding: 1px 8px;
  transition: background 0.18s;
}
.mobile-menu-close:hover {
  background: #23262B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 80px;
  align-items: flex-start;
  padding-left: 38px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.4rem;
  color: #F2C12E;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 12px 6px 12px 0;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #23262B;
  color: #F2C12E;
}

/* ==== FOOTER ==== */
footer {
  width: 100%;
  background: #171A1E;
  border-top: 1px solid #23262B;
  padding: 36px 0 20px 0;
  color: #888E99;
}
footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer-nav {
  display: flex;
  gap: 22px;
  margin-bottom: 6px;
}
.footer-nav a {
  color: #B3B6BB;
  font-size: 0.98rem;
  padding: 5px 12px;
  border-radius: 5px;
  transition: background 0.16s, color 0.16s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #23262B;
  color: #F2C12E;
}
.footer-brand {
  font-size: 1.02rem;
  color: #636872;
  margin-right: auto;
}

/* ==== HERO HEADLINE ==== */
.hero-headline, .hero-section h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.4rem;
  color: #F2C12E;
  line-height: 1.15;
  margin-bottom: 14px;
}
.hero-subheadline, .hero-section p {
  color: #F3F4F8;
  font-size: 1.09rem;
  margin-bottom: 20px;
}

/* ==== CARDS & FEATURE ITEMS ==== */
.feature-item img {
  width: 42px;
  height: 42px;
  filter: grayscale(65%) brightness(1.1);
  margin-bottom: 5px;
}
.feature-item h3 {
  color: #F2C12E;
  margin-bottom: 5px;
}
.feature-item p {
  color: #D1D5DB;
  font-size: 0.98rem;
}
.feature-item:hover, .feature-item:focus-within {
  border-color: #F2C12E;
  box-shadow: 0 3px 20px 0 #14537430;
}

/* ==== TESTIMONIALS ==== */
.testimonials-section .testimonial-card {
  border-left: 5px solid #145374;
  background: #FCFCFD;
  color: #23262B;
  box-shadow: 0 3px 12px 0 rgba(20, 21, 25, 0.08);
  padding: 26px 32px 18px 24px;
  gap: 18px;
  margin-bottom: 24px;
  transition: box-shadow .18s, border-color .18s;
}
.testimonials-section .testimonial-card:hover, .testimonials-section .testimonial-card:focus-within {
  box-shadow: 0 5px 24px 0 #14537428;
  border-left-color: #F2C12E;
}
.testimonial-name {
  display: block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.04rem;
  font-weight: 700;
  color: #145374;
  margin-top: 0;
}

/* ==== THANK YOU PAGE ==== */
.thank-you-section {
  text-align: center;
  background: #145374;
  color: #F2C12E;
}

.thank-you-section .text-section {
  color: #FCFCFD;
  margin-top: 18px;
}
.thank-you-section a.cta.primary {
  margin: 24px auto 0 auto;
}

/* ==== TEXT SECTION/AIDS ==== */
.text-section ul, .about-section ul, .services-section ul {
  padding-left: 24px;
  color: #D1D5DB;
  list-style: disc;
}
.text-section li, .about-section li, .services-section li {
  font-size: 1rem;
  margin-bottom: 10px;
}

/* ==== LISTS ============ */
ul, ol {
  margin-bottom: 20px;
}

/* ==== LINKS & BUTTONS ==== */
a {
  color: #F2C12E;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #FFDE5B;
}
button, .cta {
  cursor: pointer;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border: none;
}

/* ==== COOKIE CONSENT BANNER ==== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  width: 100vw;
  background: #22252A;
  color: #F2C12E;
  padding: 26px 18px 20px 18px;
  box-shadow: 0 -2px 24px 0 rgba(14, 16, 18, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  z-index: 9999;
  font-size: 1rem;
  transition: transform 0.4s cubic-bezier(.69,0,.31,1), opacity 0.32s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 16px;
}
.cookie-btn, .cookie-actions .cta {
  padding: 8px 22px;
  border-radius: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  margin-left: 5px;
  background: #145374;
  color: #F2C12E;
  border: 1.7px solid #F2C12E;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}
.cookie-btn.accept {
  background: #F2C12E;
  color: #171A1E;
  border-color: #145374;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #E5AA22;
  color: #FFFFFF;
}
.cookie-btn.reject {
  background: #23262B;
  color: #F2C12E;
  border-color: #F2C12E;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #145374;
}
.cookie-btn.settings {
  background: #23262B;
  color: #F2C12E;
  border-color: #F2C12E;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #145374;
  color: #F2C12E;
}

/* ==== COOKIE MODAL ==== */
.cookie-modal-backdrop {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 10000;
  background: rgba(32,34,38,0.95);
  justify-content: center;
  align-items: center;
}
.cookie-modal-backdrop.open {
  display: flex;
}
.cookie-modal {
  background: #1D2127;
  border-radius: 20px;
  box-shadow: 0 0 40px 0 #14537434;
  max-width: 360px;
  padding: 34px 26px 24px 26px;
  color: #F2C12E;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 11000;
  animation: fadeInModal 0.34s cubic-bezier(.72,0,.32,1);
}
@keyframes fadeInModal {
  0% {opacity:0;transform:scale(.87);}
  100%{opacity:1;transform:scale(1);}
}
.cookie-modal h3 {
  color: #F2C12E;
  font-size: 1.3rem;
  margin-bottom: 8px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
  font-size: 1.05rem;
}
.cookie-category .toggle-switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 26px;
}
.toggle-switch input {
  display: none;
}
.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #23262B;
  border: 1.5px solid #145374;
  border-radius: 18px;
  transition: background .2s;
}
.toggle-switch input:checked + .toggle-slider {
  background: #145374;
  border-color: #F2C12E;
}
.toggle-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 5px; bottom: 4px;
  background: #F2C12E;
  border-radius: 50%;
  transition: transform .18s;
}
.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(15px);
  background: #FFFFFF;
}

.cookie-modal .modal-actions {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  justify-content: flex-end;
}

/* ==== ANIMATIONS ==== */
.card, .feature-item, .testimonial-card, .section {
  transition: box-shadow 0.22s cubic-bezier(.47,0,.28,1), border-color .22s;
}
.cta, .cta.primary, .cta.secondary {
  transition: background 0.18s, color 0.18s, border-color 0.18s;
}

/* ==== SPACING & HIERARCHY ==== */
.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;
}

/* ==== RESPONSIVE DESIGN ==== */
@media (max-width: 1220px) {
  .container {
    max-width: 98%;
    padding: 0 12px;
  }
}
@media (max-width: 980px) {
  .main-nav {
    gap: 16px;
    font-size: 0.98rem;
  }
  .cta.primary {
    font-size: 0.98rem;
    padding: 9px 18px;
    margin-left: 16px;
  }
  .section {
    padding: 30px 10px;
  }
  .hero-section {
    padding: 33px 10px 38px 10px;
  }
  .feature-item {
    min-width: 170px;
    padding: 18px 13px;
  }
}
@media (max-width: 900px) {
  .content-wrapper, .footer .container {
    padding: 0;
  }
}
@media (max-width: 768px) {
  header {
    flex-direction: row;
    justify-content: space-between;
    padding: 10px 12px;
  }
  .main-nav {
    display: none;
  }
  .cta.primary {
    margin-left: 0;
    font-size: 1rem;
    padding: 8px 17px;
  }
  button.mobile-menu-toggle {
    display: block;
  }
  .content-wrapper {
    gap: 12px;
  }
  .feature-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 12px 14px 14px;
    gap: 8px;
  }
  .feature-item {
    min-width: 0;
    width: 100%;
    padding: 13px 8px;
    gap: 9px;
    font-size: 0.98rem;
  }
  .about-section, .features-section, .testimonials-section, .hero-section, .contact-section {
    padding: 22px 4px;
    margin-bottom: 38px;
  }
  .section {
    padding: 19px 6px;
    margin-bottom: 36px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 14px;
  }
  .address-map {
    font-size: .96rem;
    flex-direction: column;
    gap: 2px;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: column;
    gap: 11px;
    align-items: center;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 14px;
    font-size: .97rem;
    align-items: flex-start;
  }
}
@media (max-width: 500px) {
  h1, .hero-headline, .hero-section h1 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  h2 {
    font-size: 1.19rem;
    margin-bottom: 10px;
  }
  .hero-section {
    padding: 15px 2px 24px 2px;
  }
  .section, .about-section, .features-section, .testimonials-section, .footer-section, .contact-section, .services-section, .thank-you-section {
    padding: 9px 1px;
  }
  .feature-item {
    padding: 7px 0;
  }
  .cookie-modal {
    max-width: 98vw;
    padding: 18px 5px 14px 5px;
  }
}

/* ==== SCROLLBAR ==== */
body::-webkit-scrollbar {
  width: 10px;
  background: #23262B;
}
body::-webkit-scrollbar-thumb {
  background: #145374;
  border-radius: 5px;
}

/* ==== UTILITIES / MISC ==== */
::-selection {
  background: #F2C12E;
  color: #23262B;
}

/* ==== INDUSTRIAL MODERN METAL EFFECTS ==== */
.feature-item, .card, .section {
  border: 1.5px solid #23262B;
  box-shadow: 0 3px 20px 0 #1d212726;
}
.feature-item:hover, .card:hover, .section:hover {
  box-shadow: 0 5px 32px 2px #1453742B;
}
.section {
  position: relative;
  overflow: hidden;
}
.section:before {
  content: '';
  position: absolute;
  top: 22px; right: -40px;
  width: 100px; height: 130px;
  background: rgba(242,193,46,.035);
  border-radius: 40px 60px 80px 100px;
  filter: blur(4px);
  z-index: 1;
  pointer-events: none;
}

/* ==== ACCESSIBILITY ==== */
.testimonial-card, .testimonials-section .testimonial-card {
  color: #23262B !important;
  background: #ffffff67 !important;
  border-left: 5px solid #145374 !important;
}

/* ==== END OF CSS ==== */
