/* 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 { box-sizing: border-box; }
*,*:before,*:after { box-sizing: inherit; }
body {
  line-height: 1.5;
  background: #181844;
  color: #F3F4F7;
  font-family: 'Roboto', Arial, sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul,ol { list-style: none; }
img { display: block; max-width: 100%; height: auto; border: 0; }
button { font: inherit; border: none; background: none; cursor: pointer; transition: all 0.2s; }
table { border-collapse: collapse; width: 100%; background: #23236E; color: #F3F4F7; border-radius: 12px; overflow: hidden; }
th,td { padding: 12px 16px; text-align: left; }
tr:nth-child(odd) { background: #23236E; }
tr:nth-child(even) { background: #2D2D7A; }

/* VARIABLES (with fallbacks for older browsers) */
:root {
  --primary: #262261;
  --secondary: #F2D95F;
  --accent: #F3F4F7;
  --accent-bg: #23236E;
  --neon-blue: #3bd6fc;
  --neon-purple: #ab4cff;
  --neon-pink: #fa3bb1;
  --font-display: 'Montserrat', Arial, Helvetica, sans-serif;
  --font-body: 'Roboto', Arial, Helvetica, sans-serif;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow-lg: 0 8px 32px 0 rgba(50, 28, 100, 0.24);
  --shadow-glow: 0 0 16px 2px var(--neon-blue);
}

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--secondary);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 1px;
}
h1 { font-size: 2.25rem; margin-bottom: 18px; }
h2 { font-size: 1.5rem; margin-bottom: 16px; }
h3 { font-size: 1.125rem; }
h4 { font-size: 1rem; }
p, li, td, th, dl, dd, dt, address {
  font-size: 1rem;
  font-family: var(--font-body);
  color: #F3F4F7;
  margin-bottom: 14px;
}
strong, b { font-weight: bold; }
blockquote {
  background: #202051;
  color: #181844;
  border-left: 4px solid var(--neon-blue);
  padding: 16px 24px;
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px 0 rgba(59, 214, 252, 0.07);
}
cite {
  display: block;
  margin-top: 4px;
  font-style: normal;
  font-size: 0.96rem;
  color: #5ff2ea;
  letter-spacing: 0.3px;
}

/* CONTAINER & SPACING */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}
.section:last-child {
  margin-bottom: 0;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #23236E 0%, #252587 100%);
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  margin-bottom: 60px;
  padding: 60px 0 40px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
}
.hero h1, .hero h2 {
  color: #fff;
  text-shadow: 0 0 8px var(--neon-blue);
}
.hero p {
  font-size: 1.2rem;
  color: #F3F4F7;
  margin-bottom: 24px;
  max-width: 640px;
  text-shadow: 0 1px 1px rgba(40,40,100,0.08);
}

.cta-btn {
  display: inline-block;
  color: #101041;
  background: linear-gradient(90deg, var(--secondary) 70%, #f7efb8 100%);
  font-family: var(--font-display);
  font-weight: 700;
  border-radius: var(--radius-md);
  padding: 16px 36px;
  font-size: 1.125rem;
  letter-spacing: 1px;
  margin-top: 10px;
  box-shadow: 0 1px 6px 0 rgba(242, 217, 95, 0.13), 0 0 10px 0 var(--neon-purple);
  transition: background 0.18s, box-shadow 0.14s, color 0.18s, transform 0.22s;
  border: none;
  outline: none;
  cursor: pointer;
}
.cta-btn:hover,
.cta-btn:focus {
  background: linear-gradient(90deg, #fee074 75%, #f6f8d7 100%);
  color: #262261;
  box-shadow: 0 0 16px 3px var(--neon-blue), 0 2px 50px 0 rgba(242, 217, 95, 0.19);
  transform: translateY(-2px) scale(1.035);
}

/* NAVIGATION */
header {
  width: 100%;
  background: #1B1B40;
  box-shadow: 0 4px 32px 0 rgba(59, 214, 252, 0.025);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 30;
}
header .container {
  flex-direction: row;
  align-items: center;
  min-height: 68px;
  padding: 12px 18px;
}
.logo-link {
  margin-right: 30px;
  display: flex;
  align-items: center;
  max-height: 46px;
}
.logo-link img {
  height: 38px;
  width: auto;
  display: block;
  margin-right: 3px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex: 1;
}
.main-nav a {
  color: #F3F4F7;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.3px;
  padding: 8px 15px;
  border-radius: 7px;
  transition: background 0.13s, color 0.18s;
}
.main-nav a:hover:not(.cta-btn), .main-nav a.active {
  background: #23236E;
  color: var(--secondary);
}
.main-nav .cta-btn {
  margin-left: 20px;
  font-size: 1rem;
  padding: 10px 25px;
}
.mobile-menu-toggle {
  display: none;
  font-size: 1.8rem;
  background: transparent;
  border: none;
  color: var(--secondary);
  padding: 9px;
  border-radius: 7px;
  transition: background 0.2s, box-shadow 0.18s;
  margin-left: 25px;
  z-index: 101;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #23236E;
  color: var(--neon-blue);
  box-shadow: var(--shadow-glow);
}
/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: rgba(24,24,68,0.97);
  z-index: 100;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.34s cubic-bezier(0.53,0.14,0.30,0.96), opacity 0.17s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  position: absolute;
  top: 22px;
  right: 28px;
  background: transparent;
  color: var(--secondary);
  font-size: 2.2rem;
  border-radius: 7px;
  z-index: 150;
  padding: 6px;
  border: none;
  box-shadow: none;
  transition: background 0.15s, color 0.18s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #23236E;
  color: var(--neon-pink);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  padding: 110px 40px 40px 38px;
  gap: 17px;
}
.mobile-nav a {
  color: #F3F4F7;
  font-family: var(--font-display);
  font-size: 1.18rem;
  background: none;
  border-radius: 8px;
  padding: 13px 0 13px 9px;
  width: 100%;
  transition: background 0.18s, color 0.15s, padding-left 0.15s;
  outline: none;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  color: var(--neon-blue);
  background: #23236E;
  padding-left: 21px;
}

/* SECTIONS, FLEX LAYOUTS */
ul.feature-grid, ul.services-list, ul.service-details-grid, ul.faq-list-short {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 25px;
  margin-top: 10px;
}
ul.feature-grid li, ul.services-list li, ul.service-details-grid li {
  background: #23236E;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px 0 rgba(59,214,252,0.055);
  padding: 30px 22px 28px 22px;
  min-width: 240px;
  max-width: 330px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.18s, background 0.18s, transform 0.16s;
}
ul.feature-grid li:hover, ul.services-list li:hover, ul.service-details-grid li:hover {
  box-shadow: 0 0 0 3px var(--neon-blue), 0 6px 32px 0 rgba(59,214,252,0.11);
  background: #28288c;
  transform: translateY(-3px) scale(1.025);
}
ul.feature-grid img,
ul.services-list img,
ul.service-details-grid img {
  width: 46px;
  height: 46px;
  margin-bottom: 3px;
  filter: drop-shadow(0 0 6px var(--neon-blue));
}
.price {
  display: inline-block;
  color: var(--secondary);
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  background: #242463;
  border-radius: 9px;
  padding: 6px 14px;
  margin-top: 7px;
  box-shadow: 0 0 6px 0 var(--neon-blue);
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 32px;
  margin-bottom: 24px;
  background: #fafafc;
  color: #181844;
  border-radius: var(--radius-md);
  box-shadow: 0 2px 20px 0 rgba(59, 214, 252, 0.09);
  position: relative;
  flex-wrap: wrap;
  min-width: 0;
}
.testimonial-card blockquote {
  color: #252261;
  background: none;
  border-left: 3px solid var(--secondary);
  margin: 0;
  padding: 0 22px 0 17px;
  font-size: 1.1rem;
  border-radius: 0;
  box-shadow: none;
}
.testimonial-card cite {
  color: #0084c1;
  padding-left: 9px;
}
.testimonial-card:before {
  content: '';
  position: absolute;
  left: 0;top: 0;bottom: 0;
  width: 4px;
  border-radius: 4px 0 0 4px;
  background: linear-gradient(180deg, var(--neon-blue), var(--neon-pink));
}

/* BUTTONS & LINKS */
button, .cta-btn, .mobile-menu-toggle, .mobile-menu-close {
  transition: background 0.15s, color 0.12s, box-shadow 0.14s, transform 0.22s;
  outline: none;
}
a:hover, a:focus {
  color: var(--neon-blue);
  text-decoration: underline;
}

/* CONTACT GRID */
.contact-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.text-section {
  background: #23236E;
  border-radius: var(--radius-md);
  padding: 18px 28px;
  margin-bottom: 20px;
  min-width: 230px;
  flex: 1 1 220px;
  color: #F3F4F7;
  font-size: 1rem;
  box-shadow: 0 2px 12px 0 rgba(59,214,252,0.036);
}

/* ACCORDION FAQ - SIMPLE ANIMATION */
.faq-accordion {
  width: 100%;
  max-width: 740px;
  margin-bottom: 30px;
  background: #23236E;
  border-radius: var(--radius-md);
  box-shadow: 0 1px 7px 0 rgba(59,214,252,0.06);
  font-family: var(--font-body);
}
.faq-accordion dt {
  padding: 20px 30px 8px 24px;
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.025rem;
  cursor: pointer;
  transition: color 0.14s;
  position: relative;
}
.faq-accordion dt:hover { color: var(--neon-blue); }
.faq-accordion dd {
  padding: 0 28px 18px 32px;
  color: #F3F4F7;
  font-size: 1rem;
  background: none;
}

/* TABLE (HOURS) */
.hours-table th {
  color: var(--secondary); font-weight: bold;
  background: #242463;
}
.hours-table td { background: #23236E; }
.hours-table tr:not(:first-child):hover td {
  background: #28288c;
  color: var(--neon-blue);
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(90deg, #181844 25%, #361fd4 100%);
  padding: 52px 0;
  margin-bottom: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  box-shadow: 0 -1px 50px 0 rgba(171, 76, 255, 0.12);
}
.cta-banner h2 {
  color: #fff;
  text-shadow: 0 0 11px var(--neon-pink);
}
.cta-banner .cta-btn { margin-top: 15px; margin-left: 0; }

/* FOOTER */
footer {
  background: #181844;
  color: #F3F4F7;
  padding: 36px 0 26px 0;
  width: 100%;
  border-top: 3px solid #23236E;
}
footer .container {
  flex-direction: row;
  align-items: flex-start;
  gap: 34px;
  justify-content: space-between;
}
.footer-left img {
  height: 38px;
  margin-bottom: 11px;
  filter: drop-shadow(0 0 6px var(--neon-purple));
}
.footer-left p {
  color: #F3F4F7;
  font-size: 1rem;
  margin-bottom: 0;
}
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}
.footer-nav a {
  color: #F3F4F7;
  font-size: 1rem;
  font-family: var(--font-body);
  margin-bottom: 0;
  border-radius: 7px;
  padding: 8px 13px;
  transition: background 0.13s, color 0.13s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #23236E;
  color: var(--secondary);
}

/* CARDS & CARD CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 30px;
}
.card {
  background: #23236E;
  border-radius: var(--radius-lg);
  box-shadow: 0 2px 9px 0 rgba(59, 214, 252, 0.11);
  min-width: 230px;
  margin-bottom: 20px;
  position: relative;
  padding: 28px 23px;
  transition: box-shadow 0.16s, transform 0.16s;
}
.card:hover {
  box-shadow: 0 0 0 3px var(--neon-purple), 0 6px 28px 0 rgba(171, 76, 255, 0.16);
  transform: translateY(-3px) scale(1.019);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.content-grid,
.card-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;
}

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

/***** COOKIE CONSENT BANNER *****/
.cookie-banner {
  position: fixed;
  left: 20px; right: 20px; bottom: 24px;
  z-index: 900;
  background: #23236E;
  color: #F3F4F7;
  box-shadow: 0 0 32px 4px rgba(59,214,252,0.13), 0 1px 18px 0 rgba(42,42,132,0.09);
  border-radius: var(--radius-lg);
  padding: 22px 30px 22px 30px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  font-size: 1rem;
  animation: slideBottomIn 0.33s cubic-bezier(0.48,0.06,0.19,1.15);
}
@keyframes slideBottomIn {
  from { transform: translateY(80px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 17px;
}
.cookie-banner button {
  font-family: var(--font-display);
  font-size: 1rem;
  border-radius: var(--radius-md);
  padding: 9px 22px;
  margin: 0;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  box-shadow: 0 1px 6px 0 rgba(59,214,252,0.065);
  transition: background 0.18s, color 0.19s;
}
.cookie-banner .accept {
  background: var(--secondary);
  color: #262261;
}
.cookie-banner .accept:hover { box-shadow: var(--shadow-glow); }
.cookie-banner .reject {
  background: #242463;
  color: var(--secondary);
}
.cookie-banner .reject:hover { background: #393677; color: #fff; }
.cookie-banner .settings {
  background: none;
  color: var(--neon-blue);
  border: 2px solid var(--neon-blue);
  box-shadow: none;
}
.cookie-banner .settings:hover {
  background: var(--neon-blue);
  color: #191940;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  left:0; top:0; right:0; bottom:0;
  z-index: 1000;
  background: rgba(24, 24, 68, 0.84);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.18s;
}
.cookie-modal-overlay.active {
  pointer-events: all;
  opacity: 1;
}
.cookie-modal {
  background: #23236E;
  color: #F3F4F7;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 38px 8px rgba(59,214,252,0.17);
  min-width: 340px;
  max-width: 95vw;
  padding: 38px 30px 32px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: modalIn 0.32s cubic-bezier(0.48,0.08,0.11,1.13);
}
@keyframes modalIn {
  from { transform: scale(0.84) translateY(55px); opacity:0; }
  to { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-modal h3 { margin-bottom: 7px; color: var(--secondary); }
.cookie-modal .cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 17px;
  font-size: 1rem;
}
.cookie-category label {
  font-weight: 500; min-width: 110px;
}
.cookie-modal .category-toggle {
  accent-color: var(--neon-blue);
  width: 18px;
  height: 18px;
  margin: 0 6px 0 0;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 18px;
  justify-content: flex-end;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px;
  right: 18px;
  color: var(--neon-blue);
  font-size: 1.4rem;
  background: none;
  padding: 6px;
  border-radius: 6px;
  border: none;
  transition: background 0.11s;
}
.cookie-modal .close-modal:hover {
  background: #292885;
  color: var(--neon-pink);
}

/***** CONFIRMATION MESSAGES *****/
.confirmation-message, .contact-prompt {
  background: #23236E;
  border-radius: var(--radius-md);
  padding: 20px 30px;
  margin-bottom: 25px;
  color: var(--secondary);
  font-weight: 600;
  font-size: 1.08rem;
  letter-spacing: 0.36px;
}
.confirmation-message .cta-btn {
  margin-top: 16px;
}

/* UTILITY CLASSES */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-32 { margin-top: 32px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mb-20 { margin-bottom: 20px !important; }
.gap-24 { gap: 24px !important; }

/* RESPONSIVENESS – MOBILE FIRST */
@media (max-width: 1100px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  .footer-right { align-items: flex-start; }
  .footer-nav { flex-direction: column; gap: 12px; }
}
@media (max-width: 768px) {
  .container {
    padding: 0 9px;
  }
  header .container {
    flex-direction: row;
    align-items: center;
    padding: 12px 9px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-left, .footer-right {
    width: 100%;
  }
  footer .container {
    flex-direction: column;
    align-items: flex-start;
    gap: 22px;
    padding-bottom: 14px;
  }
  .feature-grid, .services-list, .service-details-grid, .card-container, .content-grid, .contact-info-grid {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 16px 13px;
  }
  .section, .hero, .cta-banner {
    padding-left: 8px; padding-right: 8px;
  }
  .cta-btn { width: 100%; text-align: center; }
}
@media (max-width: 590px) {
  .footer-left img { height: 28px; }
  h1 { font-size: 1.5rem; }
  h2 { font-size: 1.11rem; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 12px; padding: 16px 10px 14px 13px; left: 7px; right: 7px; bottom: 6px; font-size: 0.99rem; }
  .cookie-modal { min-width: 0; max-width: 96vw; padding: 22px 10px 10px 10px; }
}

/* HOVER/FOCUS ACCESSIBILITY FOR TOUCH DEVICES */
@media (hover: none) {
  a:active, .cta-btn:active { color: var(--neon-blue); }
  .main-nav a:active { background: #23236E; color: var(--secondary); }
}

/* HIDE SCROLL ON MOBILE MENU */
body.menu-open {
  overflow: hidden;
}

/****** END ******/
