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

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  min-height: 100vh;
  line-height: 1.5;
  background: #212c36;
  font-family: 'Roboto', Arial, sans-serif;
  color: #F1F5F8;
  font-size: 16px;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-color: #21303C;
  background-image: linear-gradient(120deg, #21303C 60%, #273947 100%);
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: #F57C00;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #ffa037;
  text-decoration: underline;
}

/* Typography */
h1, h2, h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.8rem;
  color: #fff;
  text-shadow: 0 0 8px #21303C, 0 0 16px #F57C0066;
}
h2 {
  font-size: 2rem;
  color: #F1F5F8;
}
h3 {
  font-size: 1.25rem;
  color: #F1F5F8;
}

p {
  color: #9da3a9;
  margin-bottom: 16px;
  font-size: 1rem;
}

ul, ol {
  margin-bottom: 24px;
  padding-left: 24px;
  color: #D8E1E9;
}
li {
  margin-bottom: 10px;
  font-size: 1rem;
}

b, strong {
  color: #FFF;
  font-weight: 700;
}

/* --------------------------
  Layout Containers & Utility
---------------------------*/
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.text-section {
  background: rgba(32, 44, 58, 0.88);
  border-radius: 18px;
  padding: 32px 24px;
  box-shadow: 0 4px 32px 0 #101c2550;
  margin-bottom: 32px;
}

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

.card-container, .feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #273947;
  border-radius: 14px;
  box-shadow: 0 2px 18px #27394766;
  padding: 28px 24px;
  color: #F1F5F8;
}

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

.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;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: start;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  background: #fff;
  color: #21303C;
  border-radius: 18px;
  box-shadow: 0 4px 40px #F57C001A, 0 1.5px 6px #174b6b25;
  min-width: 260px;
  max-width: 340px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  font-size: 1.08rem;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #273947;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  margin-top: 10px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #273947;
  color: #F1F5F8;
  border-radius: 16px;
  padding: 22px 18px;
  box-shadow: 0 2px 18px #101c2555;
}

.benefit-list, .step-teasers, .faq-list, .service-list, .feature-grid, .footer-contact, .contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/********* HEADER & NAVIGATION **********/
header {
  position: relative;
  background: #212c36;
  box-shadow: 0 0.5px 0 #19253188;
  z-index: 30;
  min-height: 64px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 18px;
  position: relative;
}
.logo img {
  height: 38px;
  width: auto;
}
.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: #F1F5F8;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 4px 2px;
  font-weight: 500;
  position: relative;
  transition: color 0.2s;
}
.main-nav a::after {
  content: '';
  display: block;
  margin: 0 auto;
  margin-top: 4px;
  height: 2px;
  width: 0%;
  background: #F57C00;
  border-radius: 2px;
  transition: width 0.18s;
}
.main-nav a:hover::after, .main-nav a:focus::after {
  width: 85%;
}
.main-nav a:hover, .main-nav a:focus {
  color: #F57C00;
}

.cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(93deg, #F57C00 80%, #FFA037 100%);
  color: #fff !important;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  padding: 12px 30px;
  box-shadow: 0 2px 18px #F57C0029;
  transition: background 0.25s, box-shadow 0.25s, transform 0.17s;
  cursor: pointer;
  text-decoration: none;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 5;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #FFA037 70%, #F57C00 90%);
  box-shadow: 0 4px 32px #F57C0044, 0 1px 4px #00000022;
  transform: translateY(-2px) scale(1.03);
  color: #fff;
}

/**** MOBILE MENU BUTTON ****/
.mobile-menu-toggle {
  display: none;
}
.mobile-menu-toggle {
  background: none;
  border: none;
  color: #FFA037;
  font-size: 2.1rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  transition: background 0.18s;
  position: absolute;
  right: 18px;
  top: 20px;
  z-index: 34;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #27394766;
  outline: none;
}

/********* MOBILE MENU OVERLAY *********/
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 90vw;
  max-width: 340px;
  height: 100vh;
  background: linear-gradient(125deg, #222d37 80%, #273947 100%);
  box-shadow: -2px 0 20px #0009;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.77,.2,.05,1.0);
  z-index: 99;
  padding-top: 40px;
  padding-left: 32px;
  padding-right: 18px;
}
.mobile-menu.open {
  transform: translateX(0);
  box-shadow: -4px 0 50px #273947dd;
}
.mobile-menu-close {
  background: none;
  color: #F1F5F8;
  border: none;
  font-size: 2.2rem;
  position: absolute;
  top: 18px;
  right: 18px;
  cursor: pointer;
  border-radius: 8px;
  padding: 5px 10px;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #21303C66;
}
.mobile-nav {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.14rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 14px 2px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #273947;
  color: #F57C00;
}

/**** HERO SECTION ****/
.hero {
  padding: 64px 0 40px 0;
  background: linear-gradient(110deg, #273947 60%, #21303C 100%);
  border-bottom: 2px solid #27394733;
  box-shadow: 0 8px 48px -24px #F57C0029 inset;
  margin-bottom: 0;
}
.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 22px;
  color: #fff;
  text-shadow: 0 4px 18px #27394790, 0 0 8px #F57C0040;
}
.hero p {
  color: #eee;
  margin-bottom: 28px;
  font-size: 1.14rem;
}
.hero .cta-btn {
  margin-top: 6px;
}

/**** FEATURES + SERVICES ****/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  justify-content: flex-start;
}
.feature-grid > div {
  flex: 1 1 210px;
  min-width: 210px;
  background: #273947;
  border-radius: 14px;
  padding: 24px 22px;
  box-shadow: 0 4px 18px #27394761;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  color: #F1F5F8;
  transition: box-shadow 0.18s, transform 0.14s;
  position: relative;
  border: 1.5px solid #273947;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 32px #F57C0040, 0 2.5px 8px #21303C15;
  border: 1.5px solid #F57C00;
  transform: translateY(-4px) scale(1.025);
}
.feature-grid img {
  height: 38px;
  width: 38px;
  margin-bottom: 8px;
  filter: drop-shadow(0 0 4px #F57C0081);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}
.service-item {
  background: #273947;
  border-radius: 14px;
  box-shadow: 0 2px 16px #27394754;
  padding: 24px 22px;
  color: #F1F5F8;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 5px solid #F57C00;
  transition: border-left 0.2s, box-shadow 0.18s;
}
.service-item:hover, .service-item:focus {
  border-left: 8px solid #FFA037;
  box-shadow: 0 8px 32px #F57C0040;
}
.service-item h2 {
  font-size: 1.28rem;
  color: #FFA037;
  margin-bottom: 3px;
}
.service-item b {
  color: #F1F5F8;
  font-weight: 700;
  margin-top: 10px;
}

/**** FAQ ACCORDION (If extended later) ****/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.faq-item {
  background: #273947;
  color: #F1F5F8;
  border-radius: 13px;
  box-shadow: 0 2px 10px #101c2565;
  padding: 22px 18px;
}
.faq-item h2 {
  font-size: 1.10rem;
}

/**** CONTACT PAGE ****/
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 24px;
}
.contact-info img {
  height: 21px;
  width: 21px;
  margin-right: 10px;
  vertical-align: middle;
  opacity: 0.82;
}
.contact-info div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #F1F5F8;
  font-size: 1.04rem;
}
.map-placeholder {
  margin-top: 34px;
  background: #212c36;
  border-radius: 12px;
  padding: 18px 16px;
  box-shadow: 0 1px 12px #27394722;
  color: #F57C00;
}

/**** FOOTER ****/
footer {
  background: #212c36;
  box-shadow: 0 -2px 16px #27394740 inset;
  color: #F1F5F8;
  font-size: 1rem;
  letter-spacing: 0.01em;
  margin-top: 52px;
  position: relative;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 30px 0 16px 0;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  color: #FFA037;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  transition: color 0.22s;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: #F1F5F8;
}
.footer-contact img {
  height: 18px;
  width: 18px;
  margin-right: 7px;
  vertical-align: middle;
  opacity: 0.8;
}
.footer-bottom {
  margin-top: 18px;
  padding-bottom: 22px;
  font-size: 0.95rem;
  color: #D8E1E9;
  text-align: center;
  letter-spacing: 0.02em;
}

/**** BUTTONS & INTERACTIONS ****/
button, .cta-btn {
  outline: none;
  border: none;
  user-select: none;
}
button:focus-visible {
  outline: 2.5px solid #FFA037;
}

/**** UL, OL, TABLE, FORM ****/
ul, ol {
  list-style-position: inside;
  margin-left: 0;
  color: #D8E1E9;
}
ul li::marker, ol li::marker {
  color: #F57C00;
  font-size: 1.06em;
}
table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #2d3b4a;
  margin-bottom: 20px;
}
th, td {
  border: 1px solid #2d3b4a;
  padding: 12px;
  color: #fff;
}

/**** Animations & Micro-Interactions ****/
.cta-btn, .feature-grid > div, .card, .service-item, .testimonial-card, .faq-item {
  transition: box-shadow 0.22s, transform 0.15s, border 0.18s, background 0.23s;
}
.cta-btn:active, .feature-grid > div:active, .service-item:active {
  transform: scale(0.97) translateY(1.5px);
}

/**** COOKIE CONSENT BANNER & MODAL ****/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1020;
  background: linear-gradient(90deg, #273947 70%, #21303C 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 24px 20px 18px 20px;
  box-shadow: 0 -6px 30px #0007;
  font-size: 1.08rem;
  border-top: 2.5px solid #F57C00;
  animation: cookieBannerSlideIn 0.5s;
}
@keyframes cookieBannerSlideIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 6px;
}
.cookie-accept-btn, .cookie-reject-btn, .cookie-settings-btn {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  border: none;
  border-radius: 8px;
  padding: 9px 28px;
  font-weight: 700;
  margin: 0;
  cursor: pointer;
  box-shadow: 0 2px 12px #27394719;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.cookie-accept-btn {
  background: #F57C00;
  color: #fff;
}
.cookie-accept-btn:hover, .cookie-accept-btn:focus {
  background: #FFA037;
}
.cookie-reject-btn {
  background: #273947;
  color: #fff;
  border: 2px solid #F57C00;
}
.cookie-reject-btn:hover, .cookie-reject-btn:focus {
  background: #192531;
  color: #FFA037;
}
.cookie-settings-btn {
  background: #fff;
  color: #21303C;
  border: 2px solid #F57C00;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #FFA037;
  color: #fff;
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1100;
  width: 100vw;
  height: 100vh;
  background: #21303Ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal-dialog {
  background: #fff;
  color: #21303C;
  border-radius: 16px;
  padding: 38px 26px;
  box-shadow: 0 6px 40px #F57C0044;
  min-width: 300px;
  max-width: 98vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: cookieModalIn 0.33s cubic-bezier(.7,1.3,.5,1.01);
}
@keyframes cookieModalIn {
  from { transform: scale(0.97) translateY(70px); opacity:0; }
  to   { transform: scale(1)    translateY(0);    opacity:1; }
}
.cookie-modal-title {
  font-size: 1.34rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: bold;
  margin-bottom: 15px;
  color: #F57C00;
}
.cookie-modal-list {
  list-style-type: none;
  margin-left: 0;
  padding-left: 0;
  gap: 16px;
  display: flex;
  flex-direction: column;
}
.cookie-modal-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 13px 0 3px 0;
  border-bottom: 1px solid #F1F5F830;
}
.cookie-modal-row label {
  font-weight: 500;
  font-size: 1.05em;
}
.cookie-modal-row input[type=checkbox] {
  accent-color: #F57C00;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 20px;
  background: none;
  border: none;
  color: #F57C00;
  font-size: 1.4rem;
  cursor: pointer;
  border-radius: 6px;
  padding: 3px 9px;
  transition: background 0.15s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F57C0030;
}
.cookie-modal-actions {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

/**** RESPONSIVE DESIGN (MOBILE FIRST) ****/
@media (max-width: 1024px) {
  .container {
    max-width: 100vw;
    padding: 0 12px;
  }
  .footer-main {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}
@media (max-width: 900px) {
  .content-wrapper {
    max-width: 96vw;
    padding: 0 6px;
  }
  .main-nav {
    gap: 18px;
  }
  .feature-grid > div, .service-item, .faq-item {
    min-width: 180px;
    padding: 18px 10px;
  }
}
@media (max-width: 800px) {
  .feature-grid {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  body, html {
    font-size: 15px;
  }
  header .container {
    flex-direction: row;
    gap: 8px;
    padding-top: 11px;
    padding-bottom: 11px;
  }
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid, .service-list, .testimonials {
    flex-direction: column;
    gap: 18px;
  }
  .content-wrapper {
    gap: 20px;
    max-width: 99vw;
  }
  .section, .text-section {
    padding: 24px 7px;
  }
  .testimonial-card {
    max-width: 95vw;
    min-width: 0;
    padding: 16px 14px;
  }
  .feature-grid > div, .service-item, .faq-item, .card {
    padding: 14px 10px;
    min-width: 0;
  }
  .card-container, .feature-grid {
    gap: 13px;
  }
  .footer-main {
    gap: 17px;
    padding: 22px 0 8px 0;
  }
  .footer-contact,
  .footer-nav {
    font-size: 0.9em;
    gap: 6px;
  }
  .map-placeholder {
    padding: 10px 5px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
  }
  .cookie-modal-dialog {
    min-width: 0;
    width: 97vw;
    padding: 20px 4vw;
  }
}
@media (max-width: 520px) {
  .hero {
    padding: 28px 0 24px 0;
  }
  .content-wrapper {
    gap: 10px;
  }
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .testimonial-card {
    padding: 10px 7px;
  }
}
/**** END OF RESPONSIVE SECTION ****/
