/* RESET & BASE TYPOGRAPHY */
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, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  font-family: 'Roboto', Arial, sans-serif;
  background: #131b23;
  color: #E5E8EB;
}

body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #E5E8EB;
  background: #181d22;
  min-height: 100vh;
  line-height: 1.65;
  font-size: 16px;
}

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

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

*, *:before, *:after {
  box-sizing: inherit;
}

/* BRAND COLORS */
:root {
  --sa-primary: #1E3753;
  --sa-secondary: #55A2D3;
  --sa-accent: #F7FAFD;
  --sa-dark: #181d22;
  --sa-slate: #232b30;
  --sa-metal: #A0A6AE;
  --sa-light: #E5E8EB;
  --sa-border: #313942;
  --sa-shadow: rgba(30, 55, 83, 0.12);
}

/* ---------- TYPOGRAPHY SCALE ---------- */
h1 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 2.25rem; /* 36px */
  color: var(--sa-accent);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
  line-height: 1.1;
  text-shadow: 0 2px 6px rgba(30,55,83,0.22);
}

h2 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.5rem; /* 24px */
  color: var(--sa-secondary);
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.15;
}

h3 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.125rem; /* 18px */
  color: var(--sa-light);
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
}

h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--sa-light);
  font-weight: 500;
}

p, ul, ol, li {
  font-size: 1rem;
  color: var(--sa-metal);
  margin-bottom: 6px;
}

strong {
  font-weight: 700;
  color: var(--sa-accent);
}

a {
  color: var(--sa-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: var(--sa-accent);
  outline: none;
}

/* ------------------ LAYOUT ------------------ */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.header-container, .footer-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 24px 0;
}

footer .footer-contact {
  text-align: right;
}

.main-nav, .footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.main-nav a, .footer-nav a {
  color: var(--sa-light);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 500;
  padding: 6px 0;
  letter-spacing: 0.3px;
  position: relative;
}

.main-nav a::after, .footer-nav a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--sa-secondary);
  transition: width 0.25s;
  position: absolute;
  left: 0;
  bottom: 0;
}
.main-nav a:hover::after, .footer-nav a:hover::after {
  width: 100%;
}

.logo img {
  height: 46px;
  width: auto;
  display: block;
}

/*--------------- FLEXBOX PATTERNS ---------------*/
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--sa-slate);
  border-radius: 12px;
  box-shadow: 0 4px 16px var(--sa-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 18px;
  min-width: 260px;
}
.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: 16px;
  padding: 20px;
  margin-bottom: 24px;
  background: var(--sa-accent);
  color: #192534;
  border-radius: 12px;
  box-shadow: 0 2px 12px var(--sa-shadow);
  border-left: 4px solid var(--sa-secondary);
  min-width: 260px;
  max-width: 530px;
}
.testimonial-card p {
  color: #16202e;
  font-size: 1.10rem;
  font-weight: 500;
  margin-bottom: 0;
}
.testimonial-author {
  color: var(--sa-secondary);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 15px;
  font-style: italic;
  letter-spacing: 0.3px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/*------------------- HERO -------------------*/
.hero-section {
  background: linear-gradient(110deg, #18202A 60%, #1E3753 100%);
  padding: 70px 0 40px 0;
  margin-bottom: 60px;
}
.hero-section h1 {
  color: var(--sa-accent);
  font-size: 2.5rem;
}
.hero-section p {
  color: var(--sa-metal);
  max-width: 550px;
}
.hero-section .btn-primary {
  margin-top: 22px;
}

/*------------------- BUTTONS -------------------*/
.btn-primary, .btn-secondary {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  border: none;
  outline: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 8px;
  cursor: pointer;
  padding: 14px 32px;
  margin-right: 8px;
  margin-bottom: 8px;
  transition: background 0.15s, color 0.15s, box-shadow 0.23s, transform 0.12s;
  box-shadow: 0 2px 12px var(--sa-shadow);
  position: relative;
  z-index: 1;
  display: inline-block;
}
.btn-primary {
  background: var(--sa-secondary);
  color: #192534;
  box-shadow: 0 4px 18px rgba(85,162,211,0.16);
}
.btn-primary:hover, .btn-primary:focus {
  background: #3c80b4;
  color: var(--sa-accent);
  transform: translateY(-2px) scale(1.03);
}
.btn-secondary {
  background: var(--sa-accent);
  color: var(--sa-primary);
  border: 2px solid var(--sa-secondary);
}
.btn-secondary:hover, .btn-secondary:focus {
  background: var(--sa-secondary);
  color: var(--sa-accent);
  border-color: var(--sa-primary);
  transform: translateY(-2px) scale(1.03);
}

/* Menu nav call-to-action */
.header-container .btn-primary {
  min-width: 144px;
}

/*------------------- FORMS -------------------*/
input, textarea, select {
  background: var(--sa-slate);
  color: var(--sa-accent);
  border: 1px solid var(--sa-border);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 14px;
  width: 100%;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--sa-secondary);
  outline: none;
  box-shadow: 0 0 6px 0 var(--sa-secondary);
}

/*------------------ PRICING TABLE ------------------*/
.pricing-table {
  width: 100%;
  margin: 32px 0;
  border-collapse: collapse;
  background: var(--sa-slate);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px var(--sa-shadow);
}
.pricing-table th, .pricing-table td {
  padding: 16px 10px;
  border-bottom: 1px solid var(--sa-border);
  text-align: left;
  font-size: 17px;
}
.pricing-table th {
  background: #212c38;
  color: var(--sa-accent);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
}
.pricing-table td {
  color: var(--sa-metal);
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

/*------------------- FEATURE GRID -------------------*/
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 28px;
}
.feature-grid li {
  flex: 1 1 170px;
  background: var(--sa-slate);
  border-radius: 10px;
  padding: 24px 16px;
  min-width: 210px;
  margin-bottom: 18px;
  box-shadow: 0 0px 8px var(--sa-shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;
  border-left: 3px solid var(--sa-secondary);
  font-size: 1rem;
}
.feature-section h2 {
  color: var(--sa-accent);
}

/*-------------------- SERVICE LIST -------------------*/
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 0 0 20px 0;
}
.service-list li {
  background: var(--sa-slate);
  border-radius: 10px;
  padding: 24px 20px;
  min-width: 220px;
  flex: 1 1 170px;
  margin-bottom: 18px;
  box-shadow: 0 0px 8px var(--sa-shadow);
  font-size: 1rem;
  border-left: 3px solid var(--sa-primary);
}

/*-------------------- SECTION VARIANTS -------------------*/
.cta-section {
  background: linear-gradient(110deg, #23323d 55%, #1E3753 100%);
  color: var(--sa-accent);
  border-top: 1px solid var(--sa-border);
  box-shadow: 0 2px 18px -6px var(--sa-shadow);
  text-align: center;
  border-radius: 12px;
}
.cta-section .contact-short {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-top: 10px;
  font-size: 1.09rem;
  color: var(--sa-light);
}
.cta-section .contact-short img {
  height: 22px;
  margin-right: 7px;
  opacity: 0.75;
}

/*-------------------- GALLERY/TESTIMONIALS -------------------*/
.gallery-section .testimonial-card, .testimonial-section .testimonial-card {
  margin-bottom: 24px;
  margin-right: 20px;
  position: relative;
  max-width: 500px;
  border-left: 5px solid var(--sa-secondary);
  box-shadow: 0 4px 22px -4px var(--sa-shadow);
  background: var(--sa-accent);
  color: #181d22;
}
.service-highlight {
  background: var(--sa-slate);
  color: var(--sa-accent);
  border-radius: 8px;
  padding: 18px 16px;
  margin: 28px 0 18px 0;
  box-shadow: 0 2px 10px var(--sa-shadow);
}
.service-highlight h3 {
  color: var(--sa-secondary);
}

/*-------------------- LISTS & TEXT BLOCKS -------------------*/
ul, ol {
  padding-left: 22px;
  margin-bottom: 10px;
}
ul li, ol li {
  margin-bottom: 8px;
  color: var(--sa-light);
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 700px;
}
.text-section ul, .text-section ol {
  padding-left: 20px;
  margin: 0 0 12px 0;
}

/*--------------------- LEGAL & ABOUT SECTIONS ---------------------*/
.legal-section, .about-section, .booking-section, .gallery-section, .service-details-section, .benefit-section, .contact-section, .contact-info-section, .thanks-section, .booking-instructions-section, .pricing-section {
  background: var(--sa-dark);
  border-radius: 14px;
  box-shadow: 0 2px 18px -6px var(--sa-shadow);
}

.legal-section h1, .legal-section h2, .about-section h1, .about-section h2 {
  color: var(--sa-accent);
}

/*------------------ FOOTER ------------------*/
footer {
  background: #192534;
  color: var(--sa-accent);
  border-top: 1.5px solid var(--sa-border);
  box-shadow: 0 -4px 22px -10px var(--sa-shadow);
  font-size: 1rem;
  margin-top: 38px;
}
.footer-container {
  gap: 32px;
}
footer a {
  color: var(--sa-light);
  font-weight: 500;
}
footer p {
  color: var(--sa-metal);
  margin-bottom: 4px;
}

/* ------------------------ MOBILE NAVIGATION --------------------- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 26px;
  top: 28px;
  background: var(--sa-slate);
  border: none;
  color: var(--sa-accent);
  font-size: 2.1rem;
  padding: 6px 18px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  box-shadow: 0 2px 8px var(--sa-shadow);
  z-index: 1112;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--sa-secondary);
  color: var(--sa-dark);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: var(--sa-dark);
  z-index: 1115;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.46,.03,.52,1.01);
  display: flex;
  flex-direction: column;
  padding-top: 24px;
  box-shadow: 8px 0 40px -18px var(--sa-shadow);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: var(--sa-accent);
  font-size: 2.3rem;
  align-self: flex-end;
  margin-right: 32px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--sa-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: flex-start;
  padding: 32px 42px;
}
.mobile-nav a {
  color: var(--sa-light);
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.10rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 12px 0 12px 8px;
  width: 100%;
  border-radius: 4px;
  transition: color 0.18s, background 0.16s;
}
.mobile-nav a:hover {
  color: var(--sa-secondary);
  background: #16202a;
}

@media (max-width: 1024px) {
  .header-container, .footer-container {
    gap: 14px;
    padding: 16px 0;
  }
  .main-nav, .footer-nav {
    gap: 16px;
  }
}

@media (max-width: 900px) {
  .container {
    padding-left: 13px;
    padding-right: 13px;
  }
}

@media (max-width: 850px) {
  .header-container, .footer-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
  .footer-contact {
    text-align: left;
  }
}

@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .header-container {
    flex-direction: row;
  }
  .feature-grid, .service-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .cta-section .contact-short {
    flex-direction: column;
    gap: 10px;
    font-size: 1rem;
  }
  .testimonial-card {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.25rem;
  }
  .section {
    padding: 22px 6px;
  }
  .hero-section {
    padding-top: 35px;
    padding-bottom: 20px;
  }
  .header-container {
    padding: 10px 0;
    flex-direction: row;
    align-items: center;
  }
  .footer-container {
    padding: 10px 0;
    flex-direction: column;
  }
  .logo img {
    height: 34px;
  }
  .btn-primary, .btn-secondary {
    padding: 11px 22px;
    font-size: 1rem;
  }
}

/* -------------- SPACING RULES FOR FLEX CONTAINERS --------------- */
.section, .feature-section, .service-section, .about-section, .contact-section, .gallery-section, .legal-section, .thanks-section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container { gap: 24px; }
.card { margin-bottom: 20px; }
.content-grid { gap: 20px; justify-content: space-between; }
.text-image-section { gap: 30px; }
.testimonial-card { gap: 20px; padding: 20px; }
.feature-item { gap: 15px; }

/* -------------- COOKIE CONSENT BANNER --------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #222e36;
  color: var(--sa-accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 23px 32px;
  box-shadow: 0 -3px 24px -5px var(--sa-shadow);
  z-index: 1200;
  transition: transform 0.4s;
  gap: 30px;
  font-size: 1rem;
}
.cookie-banner__info {
  flex: 1 1 260px;
}
.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-banner .btn-cookie {
  background: var(--sa-secondary);
  color: var(--sa-dark);
  border: none;
  font-size: 1rem;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  border-radius: 6px;
  cursor: pointer;
  padding: 10px 20px;
  font-weight: 600;
  margin-right: 8px;
  transition: background 0.16s, color 0.16s;
}
.cookie-banner .btn-cookie.btn-reject {
  background: var(--sa-slate);
  color: var(--sa-accent);
  border: 1.5px solid var(--sa-secondary);
}
.cookie-banner .btn-cookie.btn-settings {
  background: transparent;
  color: var(--sa-secondary);
  border: none;
  text-decoration: underline;
  padding: 0 6px;
}
.cookie-banner .btn-cookie:hover, .cookie-banner .btn-cookie:focus {
  background: #307bab;
  color: var(--sa-accent);
}
.cookie-banner .btn-cookie.btn-reject:hover {
  background: #28323b;
  color: var(--sa-secondary);
}

.cookie-banner.hide {
  transform: translateY(110%);
}

@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 10px;
    font-size: 0.98rem;
  }
  .cookie-banner__actions {
    gap: 13px;
    flex-wrap: wrap;
  }
}

/* -------------- COOKIE PREFERENCES MODAL --------------- */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 94vw;
  max-width: 420px;
  background: #232b30;
  color: var(--sa-accent);
  border-radius: 12px;
  padding: 36px 24px 24px 24px;
  box-shadow: 0 24px 64px #000a 0px 0px 18px var(--sa-shadow);
  z-index: 1600;
  transform: translate(-50%, -50%) scale(1.02);
  opacity: 1;
  transition: opacity 0.23s, transform 0.22s;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-50%) scale(0.98);
}
.cookie-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.cookie-modal__header h3 {
  color: var(--sa-accent);
  font-size: 1.19rem;
  font-weight: 700;
}
.cookie-modal__close {
  background: none;
  border: none;
  color: var(--sa-secondary);
  font-size: 1.44rem;
  cursor: pointer;
  transition: color 0.14s;
  border-radius: 50%;
}
.cookie-modal__close:hover {
  color: var(--sa-accent);
  background: #232b3099;
}
.cookie-modal__body {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.cookie-modal__category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 0;
  border-bottom: 1px solid var(--sa-border);
  font-size: 1.04rem;
}
.cookie-modal__category:last-child {
  border-bottom: none;
}
.cookie-modal__toggleswitch {
  appearance: none;
  background-color: #313942;
  width: 42px;
  height: 22px;
  border-radius: 22px;
  position: relative;
  outline: none;
  border: none;
  margin: 0;
  transition: background 0.17s;
  cursor: pointer;
}
.cookie-modal__toggleswitch:checked {
  background-color: var(--sa-secondary);
}
.cookie-modal__toggleswitch:before {
  content: '';
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.18s, background 0.15s;
}
.cookie-modal__toggleswitch:checked:before {
  left: 22px;
  background: var(--sa-accent);
}
.cookie-modal .btn-primary, .cookie-modal .btn-secondary {
  width: 100%;
  margin: 12px 0 0 0;
}

@media (max-width: 480px) {
  .cookie-modal {
    padding: 24px 4vw 16px 4vw;
    max-width: 98vw;
  }
}

/* --------- SMALL ANIMATIONS --------- */
.btn-primary, .btn-secondary, .btn-cookie {
  transition: background 0.17s, color 0.17s, box-shadow 0.19s, transform 0.13s;
}
.card, .testimonial-card, .feature-grid li, .service-list li {
  transition: box-shadow 0.17s, transform 0.13s;
}
.card:hover, .testimonial-card:hover, .feature-grid li:hover, .service-list li:hover {
  box-shadow: 0 8px 36px -8px var(--sa-shadow), 0 1.5px 7px 0px var(--sa-secondary);
  transform: translateY(-2px) scale(1.019);
}

/* ------------- MISC VISUAL ACCENTS ------------- */
.card, .feature-grid li, .service-list li {
  border: 1.2px solid var(--sa-border);
}

/* ----------------------------------------------- */
/* --------- END INDUSTRIAL MODERN STYLE --------- */
/* ----------------------------------------------- */
