/* === 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;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #fff;
  color: #15202B;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  overflow-x: hidden;
}

*, *:before, *:after {
  box-sizing: inherit;
}
img, picture, video, canvas, svg {
  display: inline-block; max-width: 100%; height: auto;
}
ul, ol {
  list-style-position: inside;
  margin-left: 0;
}
input, button, textarea, select {
  font: inherit;
}
button {
  background: none; border: none; cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
main {
  word-break: break-word;
}


/* === BRAND COLORS & FONTS === */
:root {
  --nt-primary: #15202B;
  --nt-secondary: #27D4F5;
  --nt-accent: #ebe700;
  --nt-dark: #0A1017;
  --nt-light: #F9F9F9;
  --nt-card-bg: #fff;
  --nt-card-shadow: 0 8px 32px rgba(21,32,43,0.10);
  --nt-footer-bg: #15202B;
  --nt-footer-light: #222B3A;
  --nt-border-radius: 18px;
  --nt-btn-radius: 28px;
  --nt-gap: 24px;
  --nt-font-display: 'Montserrat', 'Arial Black', Arial, sans-serif;
  --nt-font-body: 'Roboto', Arial, sans-serif;
  --nt-transition-fast: 0.15s cubic-bezier(.6,.05,.2,.95);
  --nt-transition: 0.3s cubic-bezier(.6,.05,.2,.95);
  --nt-star: #FFD73C;
}


/* === GENERAL LAYOUT CONTAINERS === */
.container {
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}


/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--nt-font-display);
  font-weight: 800;
  color: var(--nt-primary);
  letter-spacing: -1px;
  line-height: 1.15;
}
h1 {
  font-size: 2.85rem;
  margin-bottom: 20px;
  color: var(--nt-secondary);
  text-shadow: 0 2px 18px rgba(39,212,245,0.14);
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--nt-accent);
  text-shadow: 0 1px 12px rgba(255,253,130,0.10);
}
h3 {
  font-size: 1.35rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1rem;
  font-weight: 700;
}
p, li, table, ul, ol {
  color: var(--nt-primary);
  font-family: var(--nt-font-body);
}
p, ul, ol, table { font-size: 1.09rem; margin-bottom: 12px; }
ul, ol { padding-left: 12px; }
strong { color: var(--nt-secondary); font-weight: 700; }

/* Artistic text effect for main headings */
h1, .hero h1 {
  font-family: var(--nt-font-display);
  font-weight: 900;
  text-transform: uppercase;
  background: linear-gradient(90deg,#27D4F5 10%, #15202B 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

/* Artistic subheading for creative character */
h2, .section-title {
  font-family: var(--nt-font-display);
  font-weight: 800;
  text-transform: none;
  color: var(--nt-accent);
  margin-top: 10px;
  margin-bottom: 12px;
}

/* LINKS */
a {
  color: var(--nt-secondary);
  text-decoration: underline dotted 2px var(--nt-secondary);
  transition: color 0.19s;
}
a:hover, a:focus {
  color: var(--nt-primary);
  text-decoration: underline dashed 2px var(--nt-accent);
}


/* === HEADER & NAVIGATION === */
header {
  background: var(--nt-primary);
  color: #fff;
  width: 100%;
  padding: 0;
  box-shadow: 0 4px 24px rgba(21,32,43,0.05);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
  gap: 18px;
  position: relative;
}
.logo img {
  height: 54px;
  width: auto;
  display: block;
  transition: transform var(--nt-transition);
}
.logo:hover img {
  transform: rotate(-7deg) scale(1.08);
}

.main-nav {
  display: flex;
  flex-direction: row;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  color: #fff;
  font-family: var(--nt-font-display);
  font-size: 1rem;
  letter-spacing: 0.01em;
  position: relative;
  padding: 8px 0;
  transition: color 0.15s;
}
.main-nav a:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 0;
  height: 3px;
  background: var(--nt-accent);
  transition: width 0.3s;
  border-radius: 2px;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--nt-accent);
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 100%;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 34px;
  font-family: var(--nt-font-display);
  font-size: 1.13rem;
  font-weight: 700;
  color: var(--nt-primary);
  background: var(--nt-accent);
  border-radius: var(--nt-btn-radius);
  border: 2px solid var(--nt-accent);
  box-shadow: 0 2px 12px rgba(255,253,130,0.11);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-left: 20px;
  transition: background 0.17s, color 0.17s, transform 0.18s;
  text-decoration: none;
}
.cta-btn:hover, .cta-btn:focus {
  color: var(--nt-accent);
  background: var(--nt-secondary);
  border-color: var(--nt-secondary);
  transform: translateY(-2px) scale(1.03);
}

/* Burger menu */
.mobile-menu-toggle {
  display: none;
  color: var(--nt-accent);
  font-size: 2.2rem;
  background: none;
  border: none;
  margin-left: 10px;
  z-index: 1050;
  transition: color var(--nt-transition);
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  color: var(--nt-secondary);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21,32,43, 0.96);
  z-index: 2000;
  transform: translateX(-105vw);
  transition: transform 0.45s cubic-bezier(.77,0,.175,1);
  padding: 24px 28px 20px 28px;
  box-shadow: 0 16px 40px 0 rgba(21,32,43,.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  color: var(--nt-accent);
  font-size: 2.3rem;
  border: none;
  margin-bottom: 28px;
  margin-right: -5px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobile-nav a {
  font-size: 1.35rem;
  color: #fff;
  font-family: var(--nt-font-display);
  padding: 16px 0;
  border-radius: 10px;
  background: none;
  margin-right: 0;
  text-align: left;
  width: 100%;
  transition: background 0.14s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--nt-accent);
  color: var(--nt-primary);
}

/* Hide desktop nav on mobile */
@media (max-width: 940px) {
  .main-nav { display: none; }
  .cta-btn { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 941px) {
  .mobile-menu { display: none !important; }
}


/* === HERO SECTION === */
.hero {
  background: linear-gradient(115deg, #FFFD82 0%, #27D4F5 100%);
  min-height: 330px;
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 50px;
}
.hero .container {
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  min-height: 230px;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 18px;
  max-width: 680px;
  margin: 0 auto;
}
.hero p {
  font-size: 1.20rem;
  color: var(--nt-primary);
  text-shadow: 0 0 18px rgba(255,253,130,0.13);
}


/* === SECTION LAYOUT CLASSES (FLEXBOX ONLY) === */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature {
  flex: 1 1 240px;
  min-width: 210px;
  background: var(--nt-light);
  box-shadow: 0 1.5px 14px rgba(21,32,43,0.09);
  border-radius: var(--nt-border-radius);
  padding: 26px 22px 22px 22px;
  text-align: center;
  transition: box-shadow 0.20s, transform 0.22s;
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  margin-bottom: 20px;
}
.feature img {
  width: 52px;
  margin-bottom: 7px;
  filter: drop-shadow(0 3px 10px rgba(39,212,245,0.14));
}
.feature h3 {
  color: var(--nt-secondary);
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 8px 34px rgba(39,212,245,0.18);
  transform: scale(1.04) rotate(-1deg);
}

.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;
  background: #fff;
  color: var(--nt-primary);
  border-radius: var(--nt-border-radius);
  box-shadow: 0 8px 24px rgba(39,212,245,0.12), 0 2px 16px rgba(255,253,130,0.09);
  margin-bottom: 24px;
  font-size: 1.07rem;
  min-width: 240px;
}
.testimonial-card p {
  color: var(--nt-primary);
  font-style: italic;
  flex: 1;
}
.testimonial-card span {
  font-size: 1.03rem;
  color: var(--nt-secondary);
  font-weight: 600;
  font-family: var(--nt-font-display);
  white-space: nowrap;
}
.stars {
  color: var(--nt-star);
  font-size: 1.24em;
  font-family: var(--nt-font-display);
  margin-left: 7px;
  letter-spacing: 2px;
  text-shadow: 0 1px 7px rgba(255,253,130,0.13);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.map-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 160px;
  background: #F3FBFB;
  border-radius: var(--nt-border-radius);
  box-shadow: 0 2px 24px rgba(39,212,245,0.11);
  margin-bottom: 22px;
}
.map-placeholder img { max-width: 100%; filter: drop-shadow(0 2px 9px rgba(39,212,245,0.10)); }

.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 18px 0 10px 0;
}
.text-section a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--nt-secondary);
  font-weight: 500;
  font-family: var(--nt-font-body);
  transition: color 0.15s;
}
.text-section a:hover {
  color: var(--nt-primary);
}


/* === TABLES === */
table {
  border-collapse: collapse;
  box-shadow: 0 2px 16px rgba(39,212,245,0.09);
  border-radius: 13px;
  overflow: hidden;
  margin: 20px 0;
  width: 100%;
  font-size: 1.02rem;
}
thead {
  background: var(--nt-secondary);
  color: #fff;
}
th, td {
  padding: 12px 17px;
  border: 1px solid #E4F6FB;
}
th {
  font-family: var(--nt-font-display);
  background: var(--nt-secondary);
  color: var(--nt-primary);
  text-align: left;
  font-size: 1.05em;
}
td {
  background: #fff;
}


/* === BUTTON STYLES === */
button,
input[type="button"], input[type="submit"], .cta-btn {
  transition: background var(--nt-transition), color var(--nt-transition), box-shadow var(--nt-transition), border var(--nt-transition);
  box-shadow: 0 1px 12px rgba(21,32,43,0.06);
  outline: none;
}
button:focus, .cta-btn:focus {
  outline: 3px dashed var(--nt-secondary);
  outline-offset: 1px;
  background: var(--nt-light);
}


/* === FOOTER === */
footer {
  background: var(--nt-footer-bg);
  color: #fff;
  padding: 50px 0 30px 0;
  margin-top: 80px;
  width: 100%;
}
footer .container {
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 28px;
}
.footer-brand img {
  width: 68px;
  height: auto;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
}
.footer-nav a {
  color: var(--nt-accent);
  font-family: var(--nt-font-display);
  font-weight: 700;
  text-transform: none;
  font-size: 1.02rem;
  border-bottom: 2px solid transparent;
  transition: border-color 0.19s, color 0.13s;
}
.footer-nav a:hover,
.footer-nav a:focus {
  color: var(--nt-secondary);
  border-bottom: 2px solid var(--nt-secondary);
}
.footer-social {
  display: flex;
  gap: 18px;
}
.footer-social a img {
  width: 27px;
  height: auto;
  filter: drop-shadow(0 3px 8px rgba(39,212,245,0.10));
  transition: filter 0.2s, transform 0.2s;
}
.footer-social a:hover img,
.footer-social a:focus img {
  filter: drop-shadow(0 4px 14px var(--nt-secondary));
  transform: rotate(4deg) scale(1.12);
}
footer p {
  color: #D6EFF7;
  font-size: 0.95rem;
  margin-top: 18px;
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  color: var(--nt-primary);
  box-shadow: 0 -2px 28px 0 rgba(39,212,245,0.21);
  border-radius: 30px 30px 0 0;
  z-index: 4000;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 32px 18px 32px;
  font-family: var(--nt-font-body);
  font-size: 1rem;
  animation: cookieIn 0.60s cubic-bezier(.8,-0.13,.33,1.07);
}
@keyframes cookieIn {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 18px;
}
.cookie-banner button {
  font-size: 1.04em;
  background: var(--nt-secondary);
  color: var(--nt-primary);
  padding: 9px 28px;
  border: none;
  border-radius: 36px;
  font-family: var(--nt-font-display);
  font-weight: 700;
  box-shadow: 0 1px 12px rgba(39,212,245,0.10);
  transition: background var(--nt-transition), color 0.14s, transform 0.18s;
}
.cookie-banner button.cookie-accept {
  background: var(--nt-accent);
  color: var(--nt-primary);
  border: 2px solid var(--nt-accent);
}
.cookie-banner button.cookie-accept:hover {
  background: var(--nt-secondary);
  color: #fff;
}
.cookie-banner button.cookie-reject {
  background: var(--nt-secondary);
  color: #fff;
  border: 2px solid var(--nt-secondary);
}
.cookie-banner button.cookie-reject:hover {
  background: var(--nt-primary);
  color: var(--nt-accent);
}
.cookie-banner button.cookie-settings {
  background: none;
  color: var(--nt-secondary);
  border: 2px dashed var(--nt-secondary);
}
.cookie-banner button.cookie-settings:hover {
  background: var(--nt-light);
  color: var(--nt-primary);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  bottom: 0; left: 0; right: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(21,32,43, 0.85);
  z-index: 4100;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.5s;
}
.cookie-modal.open {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #fff;
  border-radius: 24px;
  padding: 48px 30px 34px 30px;
  box-shadow: 0 2px 30px 0 rgba(39,212,245,0.14);
  min-width: 310px;
  max-width: 95vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: flex-start;
  font-size: 1.1rem;
  position: relative;
}
.cookie-modal-content h3 {
  color: var(--nt-secondary);
  font-size: 1.18em;
}
.cookie-modal-close {
  position: absolute;
  right: 18px; top: 17px;
  color: var(--nt-accent);
  font-size: 1.8rem;
  background: none;
  border: none;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.cookie-category label {
  font-weight: 500;
  margin-right: 6px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--nt-secondary);
  scale: 1.15;
}

/* === RESPONSIVE DESIGN (Mobile-first, breakpoints from 920px & 600px) === */
@media (max-width: 920px) {
  .footer-nav, .main-nav {
    gap: 13px;
  }
  .hero .container {
    padding: 0 6px;
  }
  .features-grid {
    gap: 14px;
  }
}

@media (max-width: 768px) {
  .section {
    margin-bottom: 38px;
    padding: 25px 7px;
  }
  .content-wrapper {
    gap: 22px;
  }
  .hero {
    min-height: 150px;
    padding-top: 14px;
    margin-bottom: 30px;
  }
  .hero .container, .hero .content-wrapper {
    min-height: 130px;
    padding: 0;
  }
  .features-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .feature, .card {
    min-width: unset;
    margin-bottom: 17px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
  }
  .footer-brand { align-items: flex-start; }
  .footer-nav { flex-direction: column; gap: 10px; align-items: flex-start; }
  footer .container { gap: 17px; }
  .cookie-banner { flex-direction: column; padding: 23px 15px 15px 15px; gap: 10px; }
}

@media (max-width: 540px) {
  h1 {
    font-size: 2.05rem;
    margin-bottom: 14px;
  }
  .hero {
    min-height: 90px;
    margin-bottom: 16px;
  }
  .features-grid, .card-container, .content-grid {
    gap: 13px;
  }
  .feature, .testimonial-card, .card {
    padding: 14px 9px;
    font-size: 1.02rem;
    min-width: unset;
  }
  .cookie-modal-content {
    padding: 21px 5vw 17px 5vw;
  }
}

/* === ARTISTIC DETAILS & HOVER STATES === */
.card, .feature, .testimonial-card, .map-placeholder, table {
  border-radius: var(--nt-border-radius);
  box-shadow: 0 2.5px 16px rgba(39,212,245,0.12);
  background-clip: padding-box;
}
.card:hover, .feature:hover, .testimonial-card:hover {
  box-shadow: 0 8px 40px 3px rgba(255,253,130,0.07), 0 2px 18px 2px rgba(39,212,245,0.13);
  transform: translateY(-4px) scale(1.02) rotate(-0.3deg);
  transition: box-shadow 0.23s, transform 0.23s;
}

/* Visual micro-interactions */
.cta-btn:active,
button:active,
.mobile-nav a:active {
  transform: scale(0.97);
}

/* Spacing enforcement */
.section, .feature, .card, .testimonial-card, .content-wrapper > * { margin-bottom: 20px; }
.section:last-child, .testimonial-card:last-child, .feature:last-child, .card:last-child {
  margin-bottom: 0;
}

/* Prevent overlap */
.card, .testimonial-card, .feature { z-index: 1; }


/* === VISUAL UNIQUE ELEMENTS === */
/* Custom artistic highlights / doodle */
h1:after {
  content: '';
  display: block;
  margin: 8px auto 0 auto;
  width: 80px; height: 4px;
  background: linear-gradient(90deg, var(--nt-secondary) 0%, var(--nt-accent) 100%);
  border-radius: 6px;
  opacity: 0.34;
}

/* Splashes for features (decorative only) */
.feature::before {
  content: '';
  display: block;
  position: absolute;
  top: -13px; left: -14px;
  width: 38px; height: 22px;
  background: var(--nt-accent);
  border-radius: 16px 0 18px 0;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

/* Card elevation accent for main offers */
.card, .feature {
  position: relative;
  overflow: hidden;
}
.card::after, .feature::after {
  content: '';
  position: absolute;
  right: -27px; bottom: -27px;
  width: 45px; height: 28px;
  background: var(--nt-secondary);
  opacity: 0.05;
  border-radius: 100px;
  z-index: 0;
}

/* Artistic font fallback */
@font-face {
  font-family: 'Montserrat';
  font-weight: 700 900;
  font-display: swap;
  src: local('Montserrat Bold'), url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&display=swap');
}
@font-face {
  font-family: 'Roboto';
  font-weight: 400 700;
  font-display: swap;
  src: local('Roboto'), url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');
}

/* === FOCUS VISIBLE ACCESSIBILITY === */
:focus-visible {
  outline: 2.5px dashed var(--nt-secondary);
  outline-offset: 2px;
}

/* === UTILITY CLASSES === */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }


/* === PRINT (Optional) === */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
}
