/* ================= RESET & BASE ===================== */
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;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  background: #20242C;
  color: #F6F5F3;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  transition: background 0.3s;
}
a { color: inherit; text-decoration: none; transition: color .18s; }
img, svg { max-width: 100%; display: block; height: auto; }
ul, ol { list-style: none; }

/* Font Face Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600;700&family=Roboto:wght@400;500;700&display=swap');

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #F6F5F3;
  margin-bottom: 12px;
  line-height: 1.14;
}
h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 18px; }
h3 { font-size: 1.18rem; margin-bottom: 12px; }
h4 { font-size: 1rem; margin-bottom: 8px; }

p, li, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #E5E8EB;
}

strong, b {
  font-weight: 700;
  color: #F6F5F3;
}

/* ================= BRAND COLORS & VARIABLES ================ */
:root {
  --primary: #272B34;
  --secondary: #647687;
  --accent: #F6F5F3;
  --neon: #18FFFF;
  --neon-glow: 0 0 8px #18ffff80, 0 0 16px #18ffff40;
  --futuristic-bg: #20242C;
}

/* ================= CONTAINER & LAYOUTS ==================== */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

.main-nav, .footer-nav, .footer-flex, .header-flex,
.process-steps, .service-preview, .service-list, .feature-grid, .project-highlights, .testimonial-list, .contact-details, .contact-form-details, .faq-list, .content-grid, .contact-short {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .main-nav, .footer-nav, .footer-flex, .header-flex,
  .process-steps, .service-preview, .service-list, .feature-grid, .project-highlights, .testimonial-list, .contact-details, .contact-form-details, .faq-list, .content-grid, .contact-short {
    gap: 16px;
  }
}

/* Enclose content in a visually separate section with spacing */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  background: rgba(39,43,52,0.90);
  box-shadow: 0 4px 28px 0 rgba(24,255,255, 0.15);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  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: flex-start;
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  margin-bottom: 20px;
  position: relative;
  background: #232733;
  border-radius: 18px;
  box-shadow: 0 2px 14px 0 rgba(24,255,255,.11);
  padding: 28px 22px;
  transition: box-shadow .23s, transform .18s;
}
.card:hover {
  box-shadow: 0 0 16px 0 #18FFFF, 0 8px 30px 0 #0A0E1A44;
  transform: translateY(-3px) scale(1.016);
  z-index: 2;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.feature-grid, .service-preview, .project-highlights, .testimonial-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.feature-block, .service-card, .service-details, .project-block, .testimonial-card {
  background: #22262F;
  border-radius: 14px;
  padding: 26px 20px;
  box-shadow: 0 2px 12px 0 #18FFFF22;
  margin-bottom: 20px;
  min-width: 225px;
  flex: 1 1 285px;
  position: relative;
  transition: box-shadow .2s, transform .13s;
}
.feature-block:hover, .service-card:hover, .service-details:hover, .project-block:hover, .testimonial-card:hover {
  box-shadow: 0 0 16px 0 #18FFFF99, 0 6px 32px 0 #0A0E1A37;
  transform: translateY(-2px) scale(1.012);
}

/* Cards icon top spacing */
.feature-block img, .service-card img, .service-details img, .project-block img, .testimonial-card img {
  margin-bottom: 14px;
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg,#272B34 60%,#647687 101%);
  border-radius: 0 0 36px 36px;
  box-shadow: 0 22px 40px -14px #18FFFF22;
  min-height: 340px;
  display: flex;
  align-items: center;
  padding: 56px 0 60px 0;
  margin-bottom: 44px;
  position: relative;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 620px;
}
.hero h1 {
  color: #18FFFF;
  text-shadow: var(--neon-glow);
}
.hero p {
  font-size: 1.19rem;
  margin-bottom: 24px;
  color: #F6F5F3;
}

/* ========== BUTTONS ========== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  background: #18FFFF;
  color: #232733;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: none;
  border-radius: 24px;
  box-shadow: 0 0 14px #18FFFF88;
  padding: 13px 34px;
  margin-top: 4px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: background .25s, color .17s, box-shadow .18s, transform .13s;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.cta-btn:hover, .cta-btn:focus {
  background: #11E6E6;
  color: #20242C;
  box-shadow: 0 0 20px #18FFFF, 0 6px 16px #20242C99;
  outline: none;
  transform: translateY(-1px) scale(1.025);
}

/* ========== HEADER/NAVBAR ========== */
header {
  background: #272B34;
  box-shadow: 0 2px 22px 0 #18FFFF22;
  position: sticky;
  top: 0; width: 100%; z-index: 999;
}
.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo-link img {
  height: 38px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #18FFFF;
  font-weight: 600;
  font-size: 1.06rem;
  letter-spacing: 0.01em;
  padding: 10px 9px;
  border-radius: 7px;
  transition: background .15s, color .15s;
  position: relative;
  z-index: 2;
}
.main-nav a:hover, .main-nav a.active {
  background: #18FFFF22;
  color: #F6F5F3;
}

/* Hide burger on desktop */
.mobile-menu-toggle { display: none; }

@media (max-width: 990px) {
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: flex;
    position: fixed;
    top: 23px;
    right: 25px;
    background: #18FFFF;
    color: #20242C;
    width: 44px; height: 44px;
    font-size: 1.87rem;
    align-items: center; justify-content: center;
    border: none;
    border-radius: 14px;
    z-index: 1101;
    box-shadow: 0 0 16px #18FFFF89;
    cursor: pointer;
    transition: background .18s, color .18s;
  }
  .mobile-menu-toggle:active,
  .mobile-menu-toggle:focus {
    background: #11E6E6;
    color: #272B34;
    outline: 0;
  }
}

/* ========== MOBILE MENU OVERLAY ========== */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: linear-gradient(116deg, #232733 80%, #11E6E6 140%);
  box-shadow: 0 0 48px #18FFFF85;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  pointer-events: none;
  opacity: 0;
  transform: translateX(100%);
  transition: transform .38s cubic-bezier(.6,0,.4,1), opacity .18s;
}
.mobile-menu.open {
  pointer-events: auto;
  opacity: 1;
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  color: #18FFFF;
  border: none;
  font-size: 2.3rem;
  font-weight: 700;
  padding: 28px 28px 10px 0;
  cursor: pointer;
  z-index: 1202;
  align-self: flex-end;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 19px;
  align-items: flex-start;
  padding: 16px 41px 24px 36px;
  width: 100vw;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #F6F5F3;
  font-size: 1.22rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 11px 0;
  border-radius: 6px;
  width: 100%;
  transition: background .17s, color .18s;
}
.mobile-nav a:hover {
  background: #18FFFF33;
  color: #18FFFF;
}

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

/* ========== FOOTER ========== */
footer {
  background: #232733;
  box-shadow: 0 -2px 18px 0 #18FFFF22;
  position: relative;
  font-size: 1rem;
  padding-top: 30px;
}
.footer-main {
  padding: 32px 0 14px 0;
}
.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-nav, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #18FFFF;
  padding: 0 3px 2px 0;
  font-weight: 600;
  font-size: 1.01rem;
  border-radius: 5px;
  transition: color .13s, background .14s;
}
.footer-nav a:hover {
  color: #232733;
  background: #18FFFF;
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
  color: #F6F5F3;
  margin-bottom: 4px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  font-size: 1.03rem;
  color: #18FFFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
}
.footer-brand img {
  width: 48px;
}
footer span, footer .footer-brand span { color: #18FFFF; }

@media (max-width: 900px) {
  .footer-flex { flex-direction: column; gap: 18px; align-items: flex-start; }
  .footer-brand { align-items: flex-start; }
}

/* ========== FEATURE/PROJECT/PROCESS ========== */
.feature-grid, .service-preview, .project-highlights, .process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 12px;
}
.feature-block, .service-card, .service-details, .project-block, .process-steps > div {
  flex: 1 1 285px;
  min-width: 220px;
  margin-bottom: 20px;
}

/* ========== TESTIMONIALS ========== */
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #F6F5F3;
  color: #232733;
  border-radius: 18px;
  box-shadow: 0 2px 18px 0 #18FFFF10;
  margin-bottom: 20px;
  flex: 1 1 280px;
  min-width: 222px;
  transition: box-shadow .20s, transform .12s;
}
.testimonial-card:hover {
  box-shadow: 0 0 19px #18FFFF96;
  transform: translateY(-2px) scale(1.014);
}
.testimonial-card blockquote {
  color: #232733;
  font-size: 1.08rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-style: italic;
  margin-bottom: 8px;
  border-left: 4px solid #18FFFF;
  padding-left: 14px;
  line-height: 1.48;
}
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 0.97rem;
  color: #272B34;
  font-family: 'Montserrat', Arial, sans-serif;
}
.stars {
  color: #11E6E6;
  font-size: 1.18em;
  font-family: monospace;
  letter-spacing: -.03em;
}

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(94deg,#272B34 76%,#18FFFF 200%);
  border-radius: 16px;
  padding: 36px 30px;
  box-shadow: 0 6px 24px 0 #18ffff24;
  margin: 32px 0 10px 0;
  color: #F6F5F3;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-start;
}
.cta-banner h2 { color: #18FFFF; }

/* ========== CONTACT CARDS ========== */
.contact-short, .contact-details, .contact-form-details {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  background: #232733;
  border-radius: 16px;
  padding: 23px 18px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px #18FFFF18;
  align-items: center;
}
.contact-short div, .contact-details div, .contact-form-details div {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-size: 1.08rem;
  color: #F6F5F3;
  margin-bottom: 2px;
}
.contact-form-short { margin-left: auto; }
.contact-form-short a { margin: 0; }

/* ========== FAQ LIST ========== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 8px;
}
.faq-list > div {
  background: #22262F;
  border-radius: 14px;
  padding: 20px 18px;
  box-shadow: 0 1px 8px 0 #18FFFF17;
}
.faq-list h3 {
  font-size: 1.11rem;
  margin-bottom: 8px;
}
.faq-list p { margin-bottom: 0; }

/* ================= FORM ELEMENTS (CONTACT) =============== */
input, textarea, select, button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  outline: none;
}
input, textarea {
  width: 100%;
  background: #181B1F;
  border: 2px solid #18FFFF33;
  color: #F6F5F3;
  border-radius: 8px;
  padding: 13px 12px;
  margin-bottom: 14px;
  transition: border .15s, box-shadow .17s;
  box-shadow: 0 0 4px #18FFFF22;
}
input:focus, textarea:focus {
  border: 2px solid #18FFFF;
  box-shadow: 0 0 10px #18FFFF72;
}
label { font-size: 1rem; color: #F6F5F3; }

/* ========== LIST STYLE (UL/OL LI) ========== */
ul, ol {
  padding-left: 24px;
}
ul li, ol li {
  margin-bottom: 7px;
  color: #E5E8EB;
}
.section ul, .section ol { margin-bottom: 4px; }

/* =========================== SPACING =========================== */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* ===================== COOKIE CONSENT BANNER/MODAL =========== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  background: linear-gradient(95deg,#22262F 80%,#18ffff 220%);
  color: #F6F5F3;
  box-shadow: 0 -2px 32px #18FFFF33;
  z-index: 1400;
  padding: 17px 16px 22px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 19px;
  font-size: 1rem;
  transition: transform .33s cubic-bezier(.8,0,.3,1), opacity .2s;
}
.cookie-banner.hide {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner .cookie-text {
  flex: 1 1 auto;
  margin-right: 12px;
  color: #F6F5F3;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 13px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  background: #18FFFF;
  color: #232733;
  border: none;
  border-radius: 8px;
  padding: 10px 21px;
  margin: 0 2px;
  cursor: pointer;
  transition: background .18s, color .14s, transform .13s;
  box-shadow: 0 0 8px #18FFFF99;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #11E6E6;
  color: #20242C;
  transform: translateY(-1px) scale(1.01);
}
.cookie-btn-reject {
  background: #232733;
  color: #18FFFF;
  border: 1.2px solid #18FFFF99;
}
.cookie-btn-reject:hover {
  background: #18FFFF22;
  color: #F6F5F3;
}

/* --- Cookie Modal */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 316px; max-width: 97vw;
  width: 390px;
  transform: translate(-50%, 130%) scale(.97);
  background: linear-gradient(96deg,#232733 84%,#18FFFF 220%);
  box-shadow: 0 0 90px #18FFFF66, 0 3px 25px #23273377;
  border-radius: 16px;
  z-index: 1700;
  padding: 24px 22px 20px 22px;
  pointer-events: none;
  opacity: 0;
  transition: transform .33s cubic-bezier(.8,0,.3,1), opacity .2s;
  display: flex;
  flex-direction: column;
  gap: 17px;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h3 {
  color: #18FFFF;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.19rem;
  margin-bottom: 6px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 8px;
}
.cookie-modal label {
  color: #F6F5F3;
  font-size: 1.06rem;
  font-weight: 500;
  cursor: pointer;
}
.cookie-modal input[type="checkbox"] {
  accent-color: #18FFFF;
  width: 18px; height: 18px;
  margin-right: 4px;
}
.cookie-modal .cookie-category.disabled label { opacity: .6; }
.cookie-modal-actions {
  display: flex;
  gap: 15px;
  margin-top: 13px;
  justify-content: flex-end;
}

/* === Cookie Modal Overlay === */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left:0; width: 100vw; height: 100vh;
  background: #1e2329dd;
  z-index: 1699;
  pointer-events: none;
  opacity: 0;
  transition: opacity .20s;
}
.cookie-modal-overlay.open { pointer-events: auto; opacity: 1; }

/* ================ MISC & MICRO-ANIMATIONS ============= */
::-webkit-scrollbar {
  width: 11px;
  background: #20242C;
}
::-webkit-scrollbar-thumb {
  background: #18FFFF55;
  border-radius: 7px;
}
html { scroll-padding-top: 88px; }

a:focus, button:focus, input:focus, .cta-btn:focus {
  outline: 2.2px solid #18FFFF;
  outline-offset: 1px;
}

@media (max-width: 768px) {
  h1 { font-size: 1.74rem; }
  h2 { font-size: 1.26rem; }
  h3 { font-size: 1.02rem; }
  .container {
    padding: 0 11px;
  }
  .section, section {
    padding: 26px 6px;
    border-radius: 12px;
  }
  .feature-block, .service-card, .service-details, .project-block, .testimonial-card {
    padding: 17px 9px;
    border-radius: 9px;
  }
  .card {
    padding: 19px 8px;
    border-radius: 9px;
  }
  .cta-banner {
    padding: 20px 6px;
    border-radius: 10px;
  }
  .contact-short, .contact-details, .contact-form-details {
    padding: 11px 6px;
    border-radius: 8px;
  }
}

/* ========== ACCESSIBLE COLOR CONTRAST ON TESTIMONIALS ========== */
.testimonial-card, .testimonial-card > * {
  color: #232733 !important;
}
.testimonial-card blockquote {
  color: #232733 !important;
}
.testimonial-card .testimonial-meta {
  color: #272B34 !important;
}
.testimonial-card .stars {
  color: #11E6E6 !important;
}

/* ========== CONFIRMATION MESSAGE/THANK YOU ========== */
.confirmation-message {
  background: #232733;
  color: #18ffff;
  border-radius: 12px;
  padding: 24px 18px;
  box-shadow: 0 2px 14px #18FFFF24;
  margin-bottom: 22px;
}
.confirmation-message ul {
  color: #E6E9EF;
}

/* ========================== RESPONSIVE DESIGN ============================ */
@media (max-width: 1200px) {
  .container { max-width: 94vw; }
}
@media (max-width: 900px) {
  .feature-grid, .service-preview, .project-highlights, .testimonial-list, .process-steps, .card-container, .content-grid, .contact-short, .contact-details, .contact-form-details {
    flex-direction: column; gap: 13px;
  }
  .card, .feature-block, .service-card, .service-details, .project-block, .testimonial-card, .process-steps > div {
    min-width: 0;
    width: 100%;
    flex: 1 1 100%;
  }
}

/* ============= MICRO-INTERACTIONS & TRANSITIONS =============== */
.process-steps > div {
  background: #232733;
  border-radius: 13px;
  box-shadow: 0 1px 14px #18FFFF14;
  padding: 22px 11px;
  margin-bottom: 14px;
  transition: box-shadow .13s, transform .13s;
}
.process-steps > div:hover {
  box-shadow: 0 0 14px #18FFFF77;
  transform: translateY(-1px) scale(1.012);
}

/* =========================== UTILITIES ============================= */
.mb-20 { margin-bottom: 20px !important; }
.mt-20 { margin-top: 20px !important; }
.mt-40 { margin-top: 40px !important; }
.flex { display: flex; }
.column { flex-direction: column; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.gap-20 { gap: 20px; }
.gap-8 { gap: 8px; }

/* ========================== PRINT ================================ */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal, .cookie-modal-overlay { display: none !important; }
  section, .section { padding: 0 !important; background: none !important; margin: 0 !important; }
  body { background: #fff !important; color: #232733 !important; }
}
