/* ============================
   RESET & NORMALIZE
============================ */
html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; margin: 0; padding: 0; }
body, h1, h2, h3, h4, h5, h6, p, ul, ol, li, figure, figcaption, blockquote, dl, dd { margin: 0; padding: 0; }
ul, ol { list-style: none; }
a { text-decoration: none; color: inherit; }
img, video, svg { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; background: none; border: none; outline: none; }
button { cursor: pointer; background: none; border: none; padding: 0; }
html { scroll-behavior: smooth; }

/* ============================
   ROOT VARIABLES
============================ */
:root {
  --primary: #17527C;
  --secondary: #26854A;
  --accent: #F4ECE3;
  --black: #121c22;
  --white: #ffffff;
  --gray: #e0e5ec;
  --neon-blue: #3cf6ff;
  --neon-green: #36fd7d;
  --error: #ff4067;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
  --shadow-main: 0 4px 24px 0 rgba(23,82,124,0.10), 0 2px 8px 0 rgba(23,82,124,0.07);
  --shadow-card: 0 2px 16px 0 rgba(23,82,124,.08), 0 0.5px 2px 0 rgba(38,133,74,.05);
  --radius-md: 16px;
  --radius-lg: 28px;
  --transition-main: all 0.25s cubic-bezier(.4,0,.2,1);
  --gap-lg: 32px;
  --gap-md: 24px;
  --gap: 20px;
  --gap-sm: 12px;
  --font-h1: 2.5rem;
  --font-h2: 2rem;
  --font-h3: 1.25rem;
  --font-body: 1rem;
  --nav-height: 68px;
  --cookie-banner-height: 0px;
}

@media (max-width: 992px) {
  :root { --font-h1: 2rem; --font-h2: 1.5rem; --font-h3: 1.0625rem; }
}
@media (max-width: 768px) {
  :root { --font-h1: 1.5rem; --font-h2: 1.25rem; --font-h3: 1rem; --gap: 13px; }
}

/* ============================
   BODY & BASE TYPOGRAPHY
============================ */
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--accent);
  background: linear-gradient(120deg, #17527C 0%, #1E2746 100%);
  min-height: 100vh;
  letter-spacing: .01em;
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--white);
  letter-spacing: .01em;
  font-weight: bold;
}
h1 { font-size: var(--font-h1); margin-bottom: 24px; }
h2 { font-size: var(--font-h2); margin-bottom: 18px; }
h3 { font-size: var(--font-h3); margin-bottom: 12px; }

p, li, ul, ol, div, strong {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--accent);
  line-height: 1.7;
}
strong { color: var(--neon-green); font-weight: bold; }

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

/* ============================
   HEADER & NAVIGATION
============================ */
header {
  width: 100%;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(23,82,124,0.92);
  padding: 0 28px;
  box-shadow: 0 2px 12px 0 rgba(23,82,124,0.12);
  z-index: 100;
  position: sticky;
  top: 0;
}
header > a img {
  height: 48px;
  width: auto;
  margin-right: 18px;
}
header nav {
  display: flex;
  gap: 28px;
  align-items: center;
}
header nav a {
  font-family: var(--font-display);
  color: var(--accent);
  font-weight: 500;
  font-size: 1.06rem;
  padding: 8px 10px;
  border-radius: 8px;
  transition: var(--transition-main);
  position: relative;
}
header nav a:hover, header nav a:focus {
  color: var(--white);
  background: rgba(60,246,255,0.10);
  box-shadow: 0 2px 10px 0 rgba(60,246,255,0.06);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-md);
  padding: 12px 30px;
  background: var(--secondary);
  color: var(--white);
  box-shadow: 0 2px 14px 0 rgba(38,133,74,0.16);
  border: none;
  margin-left: 24px;
  transition: var(--transition-main);
  position: relative;
  z-index: 2;
}
.cta.primary {
  background: linear-gradient(90deg, var(--primary) 70%, var(--neon-blue) 100%);
  color: var(--white);
  box-shadow: 0 6px 24px 0 rgba(60,246,255,0.15);
}
.cta:hover, .cta:focus {
  background: linear-gradient(90deg, var(--secondary) 60%, var(--neon-green) 100%);
  box-shadow: 0 4px 24px 0 rgba(38,253,125,0.22);
  color: #fff;
}

/* Burger menu button */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  color: var(--neon-blue);
  background: none;
  padding: 8px;
  border-radius: 12px;
  transition: background 0.2s;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: rgba(60,246,255,0.12);
}

@media (max-width: 992px) {
  header nav, header .cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    margin-left: auto;
  }
}

/* ============================
   MOBILE SIDE MENU
============================ */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(23,82,124,0.98);
  z-index: 1200;
  display: flex; flex-direction: column;
  align-items: flex-start;
  padding: 32px 0 0 0;
  transform: translateX(-100vw);
  transition: var(--transition-main);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  color: var(--neon-blue);
  font-size: 2.4rem;
  margin-left: 28px;
  background: none;
  border-radius: 9px;
  transition: background 0.18s;
  align-self: flex-start;
  margin-bottom: 10px;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: rgba(60,246,255,0.10);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  width: 100vw;
  gap: 32px;
  margin-top: 32px;
  padding-left: 32px;
  padding-bottom: 70px;
}
.mobile-nav a {
  color: var(--white);
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 500;
  border-radius: var(--radius-md);
  padding: 12px 5px;
  transition: var(--transition-main);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: rgba(60,246,255,0.08);
  color: var(--neon-blue);
}

@media (min-width: 993px) {
  .mobile-menu, .mobile-menu.open {
    display: none !important;
  }
}

/* ============
  HERO SECTION
============== */
.hero {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(100deg, rgba(23,82,124,0.93) 0%, rgba(38,133,74,0.85) 100%);
  box-shadow: 0 12px 32px rgba(23,82,124,.10);
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 950px;
  margin: 0 auto;
  width: 100%;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero h1 {
  color: var(--neon-blue);
  text-shadow: 0 1.5px 12px #1b4464ee;
  font-family: var(--font-display);
  margin-bottom: 10px;
  letter-spacing: 0.01em;
  text-align: center;
}
.hero p {
  color: var(--accent);
  font-size: 1.25rem;
  max-width: 600px;
  text-align: center;
  margin-bottom: 9px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(23,82,124,0.85);
  border-radius: var(--radius-lg);
}

/* =============================
   FEATURES, OFFER, LOCATIONS etc
============================= */
.features, .services, .offer-preview, .about-preview, .guide, .faq, .locations, .team, .about, .contact, .contact-preview {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features .content-wrapper, .services .content-wrapper, .locations .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.feature-grid, .features ul, .locations ul, .services .text-section ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 12px;
}
.features ul li, .feature-grid li {
  background: rgba(30,39,70, 0.78);
  color: var(--accent);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  min-width: 220px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  border-left: 3.5px solid var(--neon-blue);
  transition: box-shadow 0.23s, border-color 0.23s;
}
.features ul li:hover {
  box-shadow: 0 4px 28px rgba(60,246,255,0.10);
  border-left: 3.5px solid var(--neon-green);
}
.features ul img, .feature-grid img {
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
}
.features ul h3, .feature-grid h3 {
  color: var(--neon-blue);
  font-size: 1.13rem;
  margin-bottom: 6px;
  margin-top: 6px;
}

.offer-preview ul, .about ul, .about-preview ul, .locations ul, .services ul, .guide ul, .faq ul {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 13px;
  color: var(--accent);
}
.quick-facts {
  color: var(--neon-green);
  font-family: var(--font-display);
  font-size: 1.06rem;
  margin-top: 14px;
}

.feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 29px;
  margin-top: 14px;
  align-items: center;
}
.feature-icons img {
  width: 38px;
  opacity: 0.80;
  filter: drop-shadow(0 2.5px 10px #2a63c6bb) drop-shadow(0 0px 2px #2a63c655);
}

/* =============================
   TESTIMONIALS
============================= */
.testimonials {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(244,236,227,0.09);
  border-radius: var(--radius-lg);
  box-shadow: 0 2.5px 16px 0 rgba(23,82,124,0.08);
}
.testimonials .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 26px 28px;
  margin-bottom: 20px;
  background: var(--accent);
  border-radius: var(--radius-md);
  box-shadow: 0 2px 12px rgba(30,39,70,0.13);
  color: var(--primary);
  position: relative;
  border-left: 4px solid var(--primary);
  transition: box-shadow .22s;
}
.testimonial-card p {
  color: var(--primary);
  font-style: italic;
  margin-bottom: 7px;
  font-size: 1.1rem;
  font-family: var(--font-body);
}
.testimonial-card strong {
  color: var(--secondary);
}
.testimonial-card div {
  color: var(--primary);
  font-weight: 600;
  font-size: 1rem;
}
.testimonial-card:hover {
  box-shadow: 0 5px 30px 0 rgba(38,133,74,0.13);
  border-left-color: var(--neon-green);
}
@media (max-width: 768px) {
  .testimonial-card {
    padding: 19px 14px;
  }
}

/* ================================
   CARDS, CARD-CONTAINER, CARD-GRID
================================ */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  padding: 22px 18px;
  border-radius: var(--radius-md);
  background: rgba(18,28,34,0.94);
  box-shadow: var(--shadow-card);
  color: var(--accent);
  display: flex;
  flex-direction: column;
  z-index: 1;
  transition: box-shadow .20s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(60,246,255,0.11);
}

.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}

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

/* ============================
   ABOUT/TEAM/CONTENT SECTIONS
============================ */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 10px 0 0 0;
}
.text-section ul {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.text-section li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 1rem;
}
.text-section li img {
  width: 22px;
  height: 22px;
  filter: grayscale(0) drop-shadow(0 0 8px #2a63c6bb);
}

/* ============================
   CONTAINERS
============================ */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.content-wrapper {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ============================
   FOOTER
============================ */
footer {
  width: 100%;
  background: #121c22;
  box-shadow: 0 -3px 28px 0 rgba(23,82,124,0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 34px 18px 28px 18px;
  gap: 10px;
  position: relative;
  z-index: 10;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
footer nav a {
  color: var(--neon-blue);
  font-size: 1rem;
  border-radius: 8px;
  padding: 5px 11px;
  transition: background 0.17s;
}
footer nav a:hover {
  background: rgba(23,82,124,0.44);
  color: var(--neon-green);
}
.footer-contact {
  text-align: center;
  color: var(--accent);
  font-size: 0.98rem;
  margin-top: 2px;
  font-family: var(--font-body);
}

/* ============================
   BUTTONS & INTERACTIONS
============================ */
button, .cta {
  outline: none;
  transition: var(--transition-main);
}
button:focus-visible,
.cta:focus-visible {
  outline: 2px solid var(--neon-blue);
  outline-offset: 2px;
}

/* ============================
   ANIMATION CLASSES
============================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInY .7s forwards;
}
@keyframes fadeInY {
  to { opacity: 1; transform: none; }
}

/* =======================
   RESPONSIVE - MOBILE FIRST
========================= */
@media (max-width: 1100px) {
  .container { padding: 0 16px; }
}
@media (max-width: 768px) {
  header {
    padding: 0 12px;
    height: 62px;
  }
  .hero, .section, .features, .about, .about-preview, .offer-preview, .testimonials, .contact-preview, .services, .guide, .faq, .locations, .team, .contact {
    padding: 30px 7px;
    margin-bottom: 36px;
  }
  .footer-contact {
    font-size: 0.92rem;
  }
  .features ul, .feature-grid {
    gap: 13px;
    flex-direction: column;
  }
  .feature-grid li, .features ul li {
    min-width: 160px;
  }
}

/* ==========================
   COOKIE CONSENT BANNER
========================== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  width: 100vw;
  background: linear-gradient(90deg, #121c22 65%, var(--primary) 100%);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 18px;
  z-index: 1600;
  box-shadow: 0 -2.5px 18px 0 rgba(23,82,124,0.15);
  border-top: 4px solid var(--neon-blue);
  animation: fadeBanner .4s cubic-bezier(.4,0,.2,1);
}
.cookie-banner .cookie-text {
  max-width: 580px;
  font-size: 1rem;
  line-height: 1.55;
}
.cookie-banner .cookie-actions {
  display: flex; gap: 14px; align-items: center;
  margin-left: 18px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 18px;
  border-radius: 9px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  box-shadow: 0 2px 8px 0 rgba(60,246,255,0.10);
  background: var(--neon-blue);
  color: #092941;
  border: none;
  margin-right: 5px;
  transition: var(--transition-main);
}
.cookie-btn.accept {
  background: var(--neon-green);
  color: #072b23;
}
.cookie-btn.reject {
  background: var(--error);
  color: #fff;
}
.cookie-btn.settings {
  background: var(--primary);
  color: var(--accent);
  border: 1.7px solid var(--neon-blue);
}
.cookie-btn:hover, .cookie-btn:focus {
  filter: brightness(1.08) drop-shadow(0px 2px 8px #21f0f0bb);
}
@media (max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 7px;
  }
  .cookie-banner .cookie-actions {
    margin-left: 0;
    gap: 8px;
  }
}

@keyframes fadeBanner {
  from { opacity:0; transform: translateY(30px);} to { opacity:1; transform: none; }
}

/* COOKIE MODAL POPUP */
.cookie-modal {
  display: none;
  position: fixed;
  left: 0; top: 0; bottom: 0; right: 0;
  z-index: 1800;
  background: rgba(18,28,34,0.78);
  align-items: center;
  justify-content: center;
  animation: fadeBanner .4s;
}
.cookie-modal.open {
  display: flex;
}
.cookie-modal .modal-box {
  background: #121c22;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 40px 0 rgba(60,246,255,0.12);
  max-width: 400px;
  width: 92vw;
  padding: 34px 23px;
  color: var(--accent);
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 14px; right: 12px;
  color: var(--neon-blue);
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  transition: background 0.15s;
  padding: 4px 8px;
  border-radius: 50%;
}
.cookie-modal .close-modal:focus, .cookie-modal .close-modal:hover {
  background: rgba(60,246,255,0.09);
}
.cookie-modal label {
  font-size: 1rem;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--neon-blue);
  width: 18px;
  height: 18px;
  border-radius: 6px;
}
.cookie-modal .cookie-category {
  font-weight: 500;
}

.cookie-modal .actions {
  margin-top: 18px;
  display: flex; gap: 16px; justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  margin: 0;
}

/* =====================
    MICRO-INTERACTIONS
====================== */
.cta, .card, .testimonial-card, .feature-grid li, .features ul li, .cookie-btn, .cookie-modal .modal-box {
  transition: box-shadow .22s, border-color .22s, color .18s, background .22s, transform .17s;
}
.cta:active, .cookie-btn:active {
  transform: scale(0.98);
}

/* =====================
   A11Y FOCUS STYLES
====================== */
:focus-visible {
  outline: 2.5px solid var(--neon-blue);
  outline-offset: 2px;
}

/* =====================
    LINK STYLES
====================== */
a {
  color: var(--neon-blue);
  transition: color .18s;
}
a:hover, a:focus {
  color: var(--neon-green);
}

/* =====================
    SPECIAL UTILITY
====================== */
.sr-only { position:absolute;width:1px;height:1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0; }

/* ======== END OF FILE ======== */
