/* ====================== 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: inherit;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  height: 100%;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  background: #232735;
  color: #F3EFEA;
  font-family: 'Open Sans', Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #8fdfff;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #56ffd7;
  text-decoration: underline;
}
ul, ol {
  margin-left: 24px;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
  color: inherit;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Bree Serif', 'Times New Roman', serif;
  color: #F3EFEA;
  margin-bottom: 12px;
  line-height: 1.2;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.35rem; }
h4 { font-size: 1.15rem; }
h5, h6 { font-size: 1rem; }
p, li, blockquote { font-size: 1rem; }

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.1rem; }
}

blockquote {
  border-left: 4px solid #67ffc9;
  padding: 12px 24px;
  background: rgba(151,255,235,0.08);
  margin: 20px 0;
  font-style: italic;
  color: #CFFFFC;
}

/* ===================== BRAND COLORS/FONTS as CSS Variables ================== */
:root {
  --primary: #373E4C;
  --secondary: #9E7C56;
  --accent: #F3EFEA;
  --futuristic-blue: #67d5ff;
  --futuristic-neon: #67ffc9;
  --futuristic-purple: #6359FF;
  --futuristic-bg: #232735;
  --danger: #ff4061;
  --shadow-dark: rgba(34, 40, 50, 0.32);

  --font-display: 'Bree Serif', 'Times New Roman', serif;
  --font-body: 'Open Sans', Arial, sans-serif;
}

/* =================== LAYOUT: Container + Spacing Patterns =================== */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  position: relative;
  margin-bottom: 20px;
}

.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

@media (max-width: 768px) {
  .content-grid,
  .card-container {
    flex-direction: column !important;
    align-items: stretch;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: center;
  }
  .container {
    padding: 0 10px;
  }
}

/* ====================== HEADER and NAVIGATION ====================== */
header {
  width: 100%;
  background: linear-gradient(90deg, #2d354b 0%, #232735 70%, #373E4C 100%);
  box-shadow: 0 4px 32px var(--shadow-dark);
  position: relative;
  z-index: 1001;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 24px 0 18px;
  position: relative;
}
.main-nav .logo {
  display: flex;
  align-items: center;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 22px;
  list-style: none;
}
.main-nav ul li a {
  color: #F3EFEA;
  font-size: 1rem;
  letter-spacing: .01em;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
  position: relative;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  color: #67ffc9;
  background: rgba(151,255,235,0.09);
}
.cta-btn {
  margin-left: 20px;
  background: linear-gradient(90deg, var(--futuristic-blue), var(--secondary));
  padding: 10px 26px;
  color: #232735;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  font-weight: bold;
  border-radius: 12px;
  box-shadow: 0 2px 12px #67ffc950;
  border: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.24s, color 0.22s, box-shadow 0.2s;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #56ffd7 10%, #9E7C56 90%);
  color: #232735;
  box-shadow: 0 4px 24px #56ffd760;
}

/* Hide navigation for mobile */
@media (max-width: 940px) {
  .main-nav ul, .main-nav .cta-btn {
    display: none;
  }
  .main-nav {
    gap: 0;
  }
}

/* ====== Mobile Hamburger Icon & Menu ====== */
.mobile-menu-toggle {
  display: none;
}
@media (max-width: 940px) {
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 26px;
    right: 18px;
    background: var(--futuristic-blue);
    color: #232735;
    border-radius: 50%;
    width: 46px;
    height: 46px;
    font-size: 2rem;
    z-index: 1200;
    box-shadow: 0 2px 12px #67d5ff42;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
  }
  .mobile-menu-toggle:active, .mobile-menu-toggle:focus {
    background: #67ffc9;
  }
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, #232735 75%, #51569e 110%);
  z-index: 2002;
  transform: translateX(-110vw);
  transition: transform 0.42s cubic-bezier(.86,.27,.45,1.14);
  box-shadow: 0 0 90px #67d5ff32;
  overflow-y: auto;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  margin: 24px 24px 0 0;
  align-self: flex-end;
  background: var(--danger);
  color: #FFF;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  font-size: 1.85rem;
  border: none;
  box-shadow: 0 2px 10px #ff406143;
  cursor: pointer;
  transition: background 0.16s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #df3060;
}
.mobile-menu .mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 38px 40px;
}
.mobile-menu .mobile-nav a {
  color: #F3EFEA;
  font-size: 1.23rem;
  letter-spacing: 0.01em;
  padding: 14px 22px;
  border-radius: 8px;
  font-family: var(--font-display);
  transition: background 0.18s, color 0.16s;
}
.mobile-menu .mobile-nav a:hover, .mobile-menu .mobile-nav a:focus {
  background: #2d354b;
  color: #67ffc9;
}

/* ==================== HERO SECTIONS =================== */
.hero {
  width: 100%;
  padding: 68px 0 52px;
  background: linear-gradient(120deg, #232735 65%, #313C5C 110%);
  box-shadow: 0 6px 32px rgba(30, 60, 80, 0.15);
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 650px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .hero {
    padding: 36px 0 30px;
  }
  .hero .content-wrapper {
    padding: 0 4px;
  }
}

/* ==================== FEATURES, SERVICES, CARDS =================== */
.features, .services, .about, .values, .contact, .thankyou, .legal {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 0;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.feature-card {
  background: #29314a;
  border: 2px solid #313C5C;
  border-radius: 16px;
  box-shadow: 0 4px 24px #67d5ff10;
  padding: 30px 26px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 240px;
  min-height: 260px;
  transition: box-shadow 0.2s, border 0.2s, transform 0.09s;
  position: relative;
  gap: 18px;
}
.feature-card img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 6px rgba(103,223,255,0.23));
}
.feature-card h3 {
  font-size: 1.25rem;
  color: #67ffc9;
}
.feature-card p {
  color: #e3fdfd;
}
.feature-card:hover, .feature-card:focus-within {
  border: 2px solid #67ffc9;
  box-shadow: 0 6px 34px #67d5ff2e;
  transform: translateY(-3px) scale(1.01);
}
@media (max-width: 1020px) {
  .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-card {
    width: 100%;
    min-width: 0;
    min-height: 0;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* Table Styling */
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 18px;
  background: #233148;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 14px #67d5ff16;
}
table th, table td {
  padding: 13px 18px;
  border: none;
  font-family: var(--font-body);
}
table th {
  background: #313C5C;
  color: #67ffc9;
  font-size: 1.09rem;
  text-align: left;
}
table td {
  background: #28324a;
  color: #F3EFEA;
}
table tr:nth-child(even) td {
  background: #232735;
}

/* ===================== VALUES, ABOUT, MISC SECTIONS ================= */
.about ul.values-list,
.values ul {
  margin: 12px 0 0 28px;
  color: #67d5ff;
  font-size: 1.07rem;
  padding-left: 4px;
}
.values ul li strong {
  color: #67ffc9;
}

/* ============ TESTIMONIALS ============= */
.testimonials {
  width: 100%;
  background: #212534;
  border-top: 1px solid #29314a;
  margin-bottom: 60px;
  padding: 50px 0;
}
.testimonials .content-wrapper {
  gap: 30px;
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.testimonial-card {
  background: #F3EFEA;
  color: #232735;
  border-radius: 16px;
  box-shadow: 0 4px 40px #67ffc930;
  padding: 26px 26px 20px;
  min-width: 240px;
  min-height: 135px;
  flex: 1 1 292px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.13s;
  margin-bottom: 20px;
}
.testimonial-card p {
  color: #232735;
  font-weight: 500;
  font-size: 1.04rem;
}
.testimonial-card span {
  color: #85827c;
  font-size: 0.93rem;
}
.testimonial-card strong {
  color: #9e7c56;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 8px 44px #67d5ff41;
  transform: translateY(-2px) scale(1.012);
}

@media (max-width: 820px) {
  .testimonial-list {
    flex-direction: column;
    gap: 20px;
  }
}

/* CTA =============== */
.cta {
  background: linear-gradient(90deg, #373E4C 60%, #67d5ff 125%);
  padding: 60px 0 60px;
  text-align: center;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: 0 -4px 34px #67d5ff19;
}
.cta .content-wrapper {
  align-items: center;
  gap: 18px;
}
.cta h2 {
  color: #67ffc9;
  font-size: 2.0rem;
}
.cta p {
  color: #f3efea;
  font-size: 1.08rem;
}
.cta .cta-btn {
  margin-top: 12px;
}
@media (max-width: 600px) {
  .cta {
    border-radius: 20px 20px 0 0;
    padding: 26px 0 32px;
  }
}
/* ============= FOOTER ============= */
footer {
  background: #202432;
  color: #eaeaea;
  padding: 0 0 44px 0;
  border-top: 2px solid #373E4C;
}
.footer-content {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 28px;
  padding: 38px 0 0 0;
}
.footer-content > div, .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #67ffc9;
  font-size: 1.04rem;
  margin-bottom: 4px;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #9E7C56;
  text-decoration: underline;
}
.footer-social {
  flex-direction: row;
  gap: 18px;
  margin-top: 10px;
}
.footer-social a img {
  filter: drop-shadow(0 2px 12px #67ffc960);
  width: 38px;
  height: 38px;
  transition: filter 0.16s;
}
.footer-social a:hover img {
  filter: drop-shadow(0 2px 16px #67ffc9ff) grayscale(15%);
}

.footer-contact ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact li img {
  width: 20px;
  height: 20px;
  margin-right: 9px;
  vertical-align: middle;
}
.footer-contact a {
  color: #9E7C56;
  text-decoration: underline;
}
@media (max-width: 900px) {
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 0 0 0;
  }
}

/* ===================== CONTACT & THANKYOU =================== */
.contact-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-details li img {
  width: 24px;
  height: 24px;
  margin-right: 9px;
  vertical-align: middle;
}
.address-map {
  margin: 18px 0 12px 0;
}
.opening-hours ul {
  margin: 10px 0 0 22px;
}

/* =================== LEGAL/PRIVACY PAGES =================== */
.legal {
  background: #242948;
  color: #F3EFEA;
  border-radius: 18px;
  box-shadow: 0 1px 19px #67d5ff15;
  padding: 36px 0 32px;
  margin-bottom: 60px;
}
.legal h1,
.legal h2 {
  color: #67ffc9;
}
.legal a {
  color: #67d5ff;
  text-decoration: underline;
}

/* ===================== BUTTONS & INTERACTIONS ===================== */
button, .cta-btn {
  cursor: pointer;
  outline: none;
  border: none;
}
button:focus, .cta-btn:focus {
  outline: 2px solid #67ffc9;
}

/* Smooth transitions/micro-interactions */
* {
  transition: background 0.18s, color 0.18s, box-shadow 0.2s, border 0.15s, transform 0.13s;
}

/* ============== COOKIE CONSENT BANNER ============== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 4000;
  background: #212948;
  color: #FFF;
  box-shadow: 0 -2px 18px #67ffc930;
  border-top: 2px solid #232735;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 22px 14px;
  font-size: 1rem;
  font-family: var(--font-body);
  animation: cookieSlideUp 0.8s cubic-bezier(.41,1.22,.44,1.12);
}
.cookie-banner p {
  color: #f3efea;
  margin: 0 10px 0 0;
}
.cookie-banner .cookie-btn {
  padding: 8px 20px;
  border-radius: 8px;
  font-weight: bold;
  margin-right: 12px;
  margin-top: 0;
  margin-bottom: 0;
  border: none;
  outline: none;
  background: #67ffc9;
  color: #232735;
  transition: background 0.18s, color 0.12s, box-shadow 0.13s;
  box-shadow: 0 2px 7px #67ffc92a;
}
.cookie-banner .cookie-btn.cookie-settings {
  background: #9E7C56;
  color: #FFF;
  margin-right: 0;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #56ffd7;
  color: #232735;
  box-shadow: 0 4px 18px #67ffc930;
}
.cookie-banner .cookie-btn.cookie-settings:hover, .cookie-banner .cookie-btn.cookie-settings:focus {
  background: #715e3f;
  color: #fff;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

/* COOKIE MODAL (cookie preferences) */
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  z-index: 5200;
  background: rgba(23,28,56,0.84);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
  animation: fadeInModal 0.35s;
}
@keyframes fadeInModal { from { opacity: 0; } to { opacity: 1;} }
.cookie-modal .cookie-modal-content {
  background: #212948;
  border-radius: 14px;
  box-shadow: 0 6px 40px #67ffc94a;
  width: 96%;
  max-width: 420px;
  padding: 34px 26px 28px;
  color: #FFF;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h2 {
  color: #67ffc9;
  margin-bottom: 8px;
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #67ffc9;
  width: 18px;
  height: 18px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 15px;
  margin-top: 14px;
}
.cookie-modal .cookie-btn {
  min-width: 110px;
}
.cookie-modal .cookie-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ff4061;
  color: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  border: none;
  box-shadow: 0 2px 10px #ff406143;
  font-size: 1.2rem;
  cursor: pointer;
}
.cookie-modal .cookie-close-btn:focus,
.cookie-modal .cookie-close-btn:hover {
  background: #df3060;
}

/* =============== FORM ELEMENTS =============== */
input, textarea, select {
  background: #232735;
  color: #F3EFEA;
  border-radius: 8px;
  border: 1px solid #373E4C;
  padding: 10px 12px;
  font-size: 1rem;
  margin: 0 0 16px 0;
  width: 100%;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #67ffc9;
  outline: none;
}
label {
  font-size: 1.07rem;
  margin-bottom: 8px;
  color: #8fdfff;
}

/* ===================== UTILITIES ===================== */
.bg-accent {
  background: var(--accent);
  color: #232735;
}
.hide {
  display: none !important;
}
.text-center {
  text-align: center;
}
.w-100 { width: 100%; }
.mt-32 { margin-top: 32px; }
.mb-22 { margin-bottom: 22px; }

/* ================== SCROLLBAR FUTURISTIC ============== */
::-webkit-scrollbar {
  width: 12px;
  background: #232735;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(120deg, #373E4C 20%, #67ffc9 100%);
  border-radius: 8px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(110deg, #67d5ff 0%, #373E4C 90%);
}

/* ==================== SELECTION ==================== */
::selection {
  background: #67d5ff;
  color: #232735;
}

/* ================== RESPONSIVE FIXES AND SPACING RULES ============== */
@media (max-width: 768px) {
  .section,
  .features, .services, .about, .values, .contact, .thankyou, .legal {
    padding: 24px 0;
    margin-bottom: 38px;
  }
  .hero {
    padding: 22px 0 18px;
  }
  .feature-card, .testimonial-card {
    min-width: 0;
    width: 100%;
    padding: 20px 14px 16px;
  }
  .cta {
    padding: 22px 0 24px;
  }
  .footer-content {
    padding: 12px 0 0 0;
  }
}
/* ==================== FOCUS STATES =================== */
a:focus, button:focus, .cta-btn:focus {
  outline: 2px solid #67d5ff;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px #67ffc940;
}

/* =================== NEON GLOW ANIMATION =================== */
@media (hover: hover) {
  .cta-btn, .feature-card, .testimonial-card {
    will-change: box-shadow, transform;
  }
}

/* ===================== END OF CSS ===================== */
