/* ------------------- CSS RESET & NORMALIZATION ------------------- */
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 {
  line-height: 1;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  background: #23293a;
  color: #fff;
  -webkit-font-smoothing: antialiased;
}
*, *::before, *::after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
button, input, textarea, select { font: inherit; }


/* ------------------- BRAND & THEME VARIABLES ------------------- */
:root {
  --color-primary: #253449;
  --color-secondary: #F8D33D;
  --color-accent: #FFFFFF;
  --color-bg: #23293a;
  --color-bg-lighter: #2d3550;
  --color-bg-dark: #181d29;
  --color-neon-blue: #25c2ff;
  --color-neon-violet: #982fff;
  --color-neon-green: #30fb83;
  --color-neon-pink: #ff43ac;
  --shadow-main: 0 2px 14px rgba(37, 194, 255, 0.13);
  --shadow-neon: 0 0 12px 0 #25c2ff99;
  --radius: 16px;
  --font-display: 'Montserrat',Arial,sans-serif;
  --font-body: 'Roboto',Arial,sans-serif;
}


/* ------------------- TYPOGRAPHY ------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: 0.01em;
  margin-bottom: 18px;
  color: var(--color-accent);
}
h1 { font-size: 2.5rem; font-weight: 800; line-height: 1.1; }
h2 { font-size: 2rem; font-weight: 700; line-height: 1.15; }
h3 { font-size: 1.25rem; font-weight: 600; }
h4 { font-size: 1rem; font-weight: 500; }
p, li, blockquote, .tagline {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #e4eaf6;
  margin-bottom: 14px;
  line-height: 1.7;
}
blockquote {
  font-style: italic;
  font-size: 1.1rem;
  color: #23293a;
  background: #fff;
  border-left: 4px solid var(--color-neon-blue);
  padding: 18px 24px;
  border-radius: var(--radius);
  margin-bottom: 14px;
  box-shadow: 0 2px 8px #23293a22;
}
blockquote footer {
  font-style: normal;
  font-size: 0.98rem;
  margin-top: 6px;
  color: #253449;
}
strong { font-weight: 700; }

.section h2 {
  margin-bottom: 20px;
}
.service-price {
  font-size: 1.06rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--color-neon-blue), var(--color-neon-violet));
  color: #231a3c;
  display: inline-block;
  padding: 2px 16px;
  border-radius: 12px;
  margin-left: 8px;
  margin-top: 10px;
}

/* Tagline under logo/title */
.tagline {
  font-size: 1.15rem;
  letter-spacing: 0.01em;
  margin-bottom: 22px;
  color: var(--color-neon-blue);
  font-weight: 500;
}

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

.content-wrapper {
  background: var(--color-bg-lighter);
  border-radius: var(--radius);
  box-shadow: var(--shadow-main);
  padding: 32px 22px;
  margin-bottom: 32px;
}

/* Spacing & Alignment Patterns */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-bg-lighter);
  margin-bottom: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-main);
  padding: 24px 20px;
  position: relative;
  transition: box-shadow .24s, transform .24s;
}
.card:hover {
  box-shadow: var(--shadow-neon);
  transform: translateY(-3px) scale(1.02);
}
.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: #1e2026;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px #25c2ff22;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/******* Main navigation, Burger menu, Mobile nav ********/
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 64px;
  padding: 12px 0;
}

.logo-link img {
  max-height: 56px;
  transition: filter .24s;
  filter: drop-shadow(0 0 8px #25c2ff66);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-accent);
  position: relative;
  padding: 6px 12px;
  transition: color .2s;
}
.main-nav a:not(.cta-btn):after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg,var(--color-neon-blue), var(--color-neon-violet));
  margin-top: 2px;
  border-radius: 2px;
  transition: width .24s;
}
.main-nav a:not(.cta-btn):hover,
.main-nav a:not(.cta-btn):focus {
  color: var(--color-neon-blue);
}
.main-nav a:not(.cta-btn):hover:after,
.main-nav a:not(.cta-btn):focus:after {
  width: 100%;
}

.cta-btn, .cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 24px;
  padding: 11px 28px;
  cursor: pointer;
  background: linear-gradient(92deg, var(--color-neon-blue), var(--color-neon-violet));
  color: #181d29;
  border: none;
  box-shadow: var(--shadow-neon);
  transition: background .19s, color .17s, box-shadow .19s, transform .15s;
}
.cta-btn:hover, .cta-btn:focus, .cta-link:hover, .cta-link:focus {
  background: linear-gradient(92deg, var(--color-neon-violet), var(--color-neon-pink));
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 18px #ff43ac99;
  outline: none;
}
.cta-link {
  background: none;
  color: var(--color-neon-blue);
  border: 2px solid var(--color-neon-blue);
  box-shadow: none;
  margin-top: 12px;
  font-weight: 600;
}
.cta-link:hover, .cta-link:focus {
  border-color: var(--color-neon-pink);
  background: linear-gradient(92deg, var(--color-neon-violet), var(--color-neon-pink));
  color: #fff;
}

/* Hamburger Button */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(90deg, var(--color-neon-blue), var(--color-neon-pink));
  border: none;
  color: #23293a;
  font-size: 2rem;
  padding: 7px 14px;
  border-radius: 8px;
  cursor: pointer;
  box-shadow: var(--shadow-neon);
  transition: background .23s, box-shadow .2s, color .2s;
  z-index: 40;
}
.mobile-menu-toggle:focus {
  outline: 2px solid var(--color-neon-blue);
}

/* ------------------- MOBILE MENU ------------------- */
.mobile-menu {
  position: fixed;
  top: 0; right: 0; bottom: 0; left: 0;
  background: rgba(34, 37, 61, 0.97);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-end;
  padding: 40px 24px 24px 24px;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.57,.05,.67,.28), opacity .22s;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: linear-gradient(90deg,var(--color-neon-blue),var(--color-neon-pink));
  border: none;
  color: #23293a;
  border-radius: 8px;
  font-size: 2rem;
  margin-bottom: 26px;
  padding: 6px 13px;
  cursor: pointer;
  box-shadow: var(--shadow-neon);
  transition: background .2s, color .2s;
}
.mobile-menu-close:focus {
  outline: 2px solid var(--color-neon-blue);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  font-family: var(--font-display);
  color: #fff;
  font-size: 1.18rem;
  font-weight: 600;
  padding: 9px 6px;
  width: 100%;
  border-radius: 6px;
  transition: background .14s, color .15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: linear-gradient(90deg, var(--color-neon-blue), var(--color-neon-green));
  color: #181d29;
  outline: none;
}


/* ------------------- FEATURE LISTS, BRAND VALUES ------------------- */
.features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 8px;
  margin-bottom: 18px;
}
.features-list li, .features-list .feature-value {
  background: linear-gradient(120deg, #23293a 80%, #982fff14);
  padding: 22px 20px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px #25c2ff18;
  min-width: 220px;
  flex: 1 1 275px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  transition: box-shadow .18s, transform .18s;
}
.features-list li:hover, .features-list .feature-value:hover {
  box-shadow: 0 0 24px #ff43ac69;
  transform: scale(1.025);
}
.feature-icon {
  margin-right: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(120deg, #982fff25 20%, #30fb8342 80%);
  border-radius: 50%;
  width: 54px;
  height: 54px;
  box-shadow: 0 2px 14px #25c2ff22;
}
.feature-icon img {
  width: 32px;
  height: 32px;
}
.brand-values {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin: 16px 0 18px 0;
}
.brand-values li {
  background: linear-gradient(90deg, var(--color-neon-pink),var(--color-neon-blue) 80%);
  color: #fff;
  font-weight: 600;
  padding: 6px 20px;
  border-radius: 14px;
  box-shadow: 0 1px 8px #982fff42;
  font-family: var(--font-display);
  font-size: 1.01rem;
}

.services-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.services-list li {
  background: #23293abd;
  border-radius: var(--radius);
  padding: 24px 16px;
  box-shadow: 0 2px 11px #25c2ff25;
  min-width: 220px;
  flex: 1 1 260px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow .13s, transform .14s;
}
.services-list li:hover {
  box-shadow: 0 0 17px #f8d33daf;
  transform: scale(1.024);
}

.event-list-preview, .holidays-preview {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin: 16px 0 20px 0;
  color: #f8d33d;
  font-weight: 600;
  font-size: 1.09rem;
}

.service-detail {
  background: #1c2233fa;
  border-radius: var(--radius);
  padding: 26px 18px 22px 22px;
  box-shadow: 0 2px 16px #25c2ff19;
  margin-bottom: 20px;
}
.service-detail ul {
  margin: 10px 0 10px 0;
  padding-left: 18px;
  color: #fff;
}
.service-detail li {
  list-style: disc;
  margin-bottom: 7px;
}

/* ------------------- REVIEWS, TESTIMONIALS, SNIPPETS ------------------- */
.review-snippet {
  background: #fff;
  color: #23293a;
  padding: 20px 18px;
  border-radius: var(--radius);
  box-shadow: 0 2px 11px #982fff11;
  margin-bottom: 20px;
  font-size: 1.08rem;
}
.testimonial-card {
  background: #fff;
  color: #23293a;
  font-size: 1.08rem;
  margin-bottom: 20px;
  border-radius: var(--radius);
  box-shadow: 0 2px 10px #30fb8321;
  border-left: 4px solid var(--color-neon-blue);
  padding: 20px 26px 20px 22px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.testimonial-card blockquote {
  background: none;
  color: #23293a;
  box-shadow: none;
  border: none;
  padding: 0;
  margin: 0;
}
.testimonial-card footer {
  margin-top: 5px;
  color: #656a78;
  font-size: 0.96rem;
}

/* ------------------- CONTACT & FOOTER ------------------- */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 16px 0 27px 0;
  color: #fff;
}
.footer-main {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  padding-top: 36px;
  padding-bottom: 38px;
  border-top: 1.5px solid #30fb833e;
  justify-content: space-between;
}
.footer-main a:first-child img {
  max-width: 56px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-nav a {
  color: #eaf9fd;
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--font-display);
  transition: color .18s;
  padding: 4px 2px;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-secondary);
}
.footer-contact p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .97rem;
  margin-bottom: 7px;
  color: #b0b9cd;
}
.footer-contact img {
  width: 18px;
  height: 18px;
}

.map-placeholder {
  margin: 18px 0;
  padding: 24px 16px;
  background: #191e2c;
  border-radius: var(--radius);
  color: #b9e6fd;
  font-size: 1.02rem;
}

/* -------------------- TEXT SECTIONS (for legal pages) ------------------- */
.text-section {
  padding: 18px 0;
  color: #e4eaf6;
}
.text-section h2 {
  font-size: 1.12rem;
  color: var(--color-secondary);
  margin-bottom: 12px;
  margin-top: 22px;
}
.text-section ul, .text-section ol {
  margin-left: 16px;
  margin-bottom: 14px;
  color: #fff;
}
.text-section li {
  list-style-type: disc;
  margin-bottom: 5px;
  font-size: 0.99rem;
}

/* ------------------- COOKIE BANNER & MODAL ------------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #202438fa;
  color: #fff;
  z-index: 11000;
  display: flex;
  flex-wrap: wrap;
  gap: 19px;
  align-items: center;
  justify-content: center;
  padding: 16px 18px 16px 18px;
  box-shadow: 0 -1px 20px #25c2ff44;
  font-size: 1rem;
  opacity: 0;
  pointer-events: none;
  transform: translateY(60px);
  transition: opacity .34s, transform .29s;
}
.cookie-banner.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.cookie-banner .cookie-btn {
  background: linear-gradient(90deg, var(--color-neon-green),var(--color-neon-blue));
  color: #2d3550;
  border: none;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 8px 28px;
  margin-right: 8px;
  font-size: 1rem;
  cursor: pointer;
  box-shadow: 0 2px 10px #25c2ff33;
  transition: background .16s, color .13s, box-shadow .15s;
}
.cookie-banner .cookie-btn:focus {
  outline: 2px solid var(--color-neon-blue);
}
.cookie-banner .cookie-btn.cookie-settings {
  background: linear-gradient(90deg, var(--color-neon-pink),var(--color-neon-violet));
  color: #fff;
  margin-right: 0;
}
.cookie-banner .cookie-btn.reject {
  background: linear-gradient(100deg,#23293a,#f8d33d 90%);
  color: #23293a;
}

.cookie-modal {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(24,29,41,0.96);
  z-index: 12000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .30s;
}
.cookie-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal-content {
  background: #fff;
  color: #23293a;
  border-radius: 18px;
  box-shadow: 0 6px 32px #982fff22;
  padding: 32px 26px;
  max-width: 92vw;
  max-width: 440px;
  min-width: 260px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal-content h3 {
  font-family: var(--font-display);
  font-size: 1.26rem;
  font-weight: 700;
  color: var(--color-neon-blue);
  margin-bottom: 12px;
}
.cookie-category {
  margin: 11px 0 9px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  font-size: 1.01rem;
}
.cookie-toggle-label {
  font-weight: 600;
  color: #253449;
}
.cookie-toggle {
  cursor: pointer;
  accent-color: var(--color-neon-blue);
  width: 18px;
  height: 18px;
}
.cookie-modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 12px; right: 16px;
  background: transparent;
  border: none;
  font-size: 1.6rem;
  color: var(--color-neon-violet);
  cursor: pointer;
  padding: 2px 6px;
}
.cookie-modal .cookie-close:focus {
  outline: 2px solid var(--color-neon-blue);
}
/* SHADED UNDERLAY FOR COOKIE MODAL */
.cookie-modal.active::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(18,17,32,.29);
  z-index: -1;
}

/* ------------------- ACCESSIBILITY STYLES ------------------- */
:focus-visible {
  outline: 2.5px solid var(--color-secondary);
  outline-offset: 2px;
}


/* ------------------- TRANSITIONS AND HOVER EFFECTS ------------------- */
button, a, .cta-btn, .cta-link {
  transition: color .16s, background .16s, border .14s, box-shadow .15s, transform .15s;
}

/* ------------------- RESPONSIVE DESIGN ------------------- */
@media (max-width: 1050px) {
  .container { max-width: 97vw; }
  .main-nav { gap: 12px; }
  .features-list, .services-list {
    flex-direction: column;
    gap: 20px;
  }
  .footer-main {
    gap: 21px;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 26px; padding-bottom: 26px;
  }
}
@media (max-width: 900px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.3rem; }
  .footer-main { flex-direction: column; align-items: flex-start; gap: 22px; }
  .content-wrapper { padding: 28px 7vw; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.19rem; }
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
  .container {
    padding-left: 8px; padding-right: 8px;
  }
  .section { padding: 26px 2vw; margin-bottom: 40px; }
  .content-wrapper { padding: 18px 3vw; }
  .features-list,.services-list { gap: 14px; }
  .features-list li,.features-list .feature-value,.services-list li { padding: 16px 8px; min-width: 0; }
  .brand-values { gap: 8px; flex-wrap: wrap;}
  .event-list-preview, .holidays-preview { font-size: 0.99rem; }
  .testimonial-card { padding: 12px 9px; font-size: 0.98rem; }
  .footer-main { padding-top: 14px; padding-bottom: 14px; }
  .card-container, .content-grid, .text-image-section { flex-direction: column; gap: 16px; }
  .review-snippet, .testimonial-card { margin-bottom: 12px; }
}
@media (max-width: 540px) {
  .content-wrapper { padding: 7vw 3vw; }
  .cta-btn, .cta-link { padding: 10px 13vw; width: 100%; font-size: 1rem; }
  .section { padding: 14px 0; }
  .map-placeholder, .footer-contact, .text-section { font-size: 0.96rem; }
}

/* Hide the default focus outline except when using keyboard navigation */
:focus:not(:focus-visible) {
  outline: none;
}

/* For visually-hidden elements (e.g. aria-live updates, etc) */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ------------------- ANIMATIONS ------------------- */
@keyframes slideDownBanner {
  from { transform: translateY(60px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner.active {
  animation: slideDownBanner 0.33s cubic-bezier(.25,.8,.25,1) 1;
}
@keyframes slideInMenu {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}
.mobile-menu.active {
  animation: slideInMenu 0.31s cubic-bezier(.77,.15,.38,.94) 1;
}

/* ===== BODY BG ===== */
body {
  background: linear-gradient(120deg, #23293a 70%, #982fff18 100%);
}

/******* CUSTOM SCROLLBAR FOR DESKTOPS *******/
::-webkit-scrollbar {
  width: 9px;
  background: #23293a;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(120deg,#25c2ff77 30%,#982fff 85%);
  border-radius: 8px;
}

/* ----------- Print Styles (minimal) ----------- */
@media print {
  header, nav, .mobile-menu, footer,
  .cookie-banner, .cookie-modal { display: none !important; }
  .container, .content-wrapper { box-shadow: none !important; }
  body { color: #23293a; background: #fff !important; }
}
