/* =============================================================
   CRYSTAL BLISS TECHNOLOGIES – Creative Artistic CSS Theme
   Style: vibrant, creative, artistic, modern
   Author: Professional Senior CSS Developer
============================================================= */

/* 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,
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;
  background: #fafaff;
}
body {
  min-height: 100vh;
  line-height: 1.6;
  color: #22253e;
  background: #F7F9FB;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 1rem;
}
img {
  max-width: 100%;
  display: block;
  height: auto;
}
a {
  color: #14213D;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus, a:hover {
  color: #FCA311;
  outline: none;
}
ul, ol {
  list-style: none;
}

/* FONT-FACE ------------------------------------------ */
@font-face {
  font-family: 'Orbitron';
  src: local('Orbitron'), url('https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700&display=swap');
  font-weight: 500 700;
}
@font-face {
  font-family: 'Roboto';
  src: local('Roboto'), url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');
  font-weight: 400 700;
}

/* VARIABLE PALETTE ---------------------------------- */
:root {
  --primary: #14213D;
  --secondary: #FCA311;
  --accent: #FFFFFF;
  --muted: #E5E7EB;
  --shadow: rgba(20,33,61,0.1);
  --surface: #F7F9FB;
  --card: #fff;
  --card-shadow: 0 6px 20px 0 rgba(20,33,61,0.09), 0 1.5px 2px 0 rgba(252,163,17,0.07);
}

/* TYPOGRAPHY ---------------------------------------- */
h1,
h2,
h3,
h4 {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.15;
  color: var(--primary);
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.25rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 1.75rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
p, li, span, address {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: #22253e;
  letter-spacing: 0.02em;
}
strong {
  color: var(--primary);
  font-weight: 700;
}

/* Highlighted text theme accent for creative effect */
mark, .brand-highlight {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 5px;
  padding: 0 4px;
  font-weight: 700;
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
}

/* GENERAL CONTAINER LAYOUTS ------------------------- */
.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
  max-width: 1200px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.section,
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}

/* HERO SECTION -------------------------------------- */
.hero-section {
  background: linear-gradient(100deg, var(--secondary) 0%, var(--surface) 100%);
  padding: 64px 0 48px 0;
  min-height: 320px;
  position: relative;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.hero-section h1 {
  color: var(--primary);
  font-size: 2.5rem;
  margin-bottom: 20px;
  font-family: 'Orbitron', Arial, sans-serif;
  letter-spacing: 0.025em;
  text-shadow: 0 2px 8px rgba(252,163,17,0.10);
}
.hero-section p {
  font-size: 1.15rem;
  color: #282828;
  margin-bottom: 28px;
}

/* BUTTONS ------------------------------------------ */
.cta-button,
button, input[type="submit"], input[type="button"] {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  min-width: 140px;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 32px;
  padding: 13px 30px;
  margin-top: 8px;
  box-shadow: 0 2px 8px rgba(20,33,61,0.12);
  color: #fff;
  background: var(--primary);
  cursor: pointer;
  transition: background 0.22s, box-shadow 0.22s, transform 0.16s;
  outline: none;
  position: relative;
}
.cta-button.primary {
  background: var(--secondary);
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 5px 14px -2px rgba(252,163,17,0.22);
}
.cta-button.primary:hover, .cta-button.primary:focus {
  background: #ffbb3a;
  color: #11153a;
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 24px -4px rgba(252,163,17,0.34);
}
.cta-button:not(.primary):hover, .cta-button:not(.primary):focus {
  background: #1d2660;
  color: var(--secondary);
  transform: translateY(-1px) scale(1.02);
}
button:active, .cta-button:active {
  background: #0d1631;
  color: var(--secondary);
}

/* NAVIGATION ---------------------------------------- */
header {
  background: var(--card);
  border-bottom: 2px solid var(--muted);
  z-index: 40;
  position: sticky;
  top: 0;
  width: 100%;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  min-height: 74px;
  position: relative;
}
.logo img {
  height: 44px;
  width: auto;
  margin-right: 14px;
}
.main-nav {
  display: flex;
  gap: 15px;
}
.main-nav a {
  font-family: 'Orbitron', 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--primary);
  border-radius: 4px;
  padding: 7px 13px;
  transition: background 0.17s, color 0.17s;
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--secondary);
  color: #fff;
  text-decoration: underline;
}

/* HAMBURGER MENU BUTTON ----------------------------- */
.mobile-menu-toggle {
  background: var(--secondary);
  color: var(--primary);
  border: none;
  border-radius: 6px;
  font-size: 2rem;
  display: none;
  height: 46px;
  width: 46px;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
  box-shadow: 0 2px 8px rgba(252,163,17,0.18);
  transition: background 0.18s, color 0.18s;
  z-index: 160;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #ffd76b;
  color: var(--primary);
  outline: 2px solid #ccc;
}

/* MOBILE MENU STYLES -------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(3,5,36,0.94);
  z-index: 900;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-110vw);
  transition: transform 0.34s cubic-bezier(0.7,0.2,0.15,1.0);
  box-shadow: 0 16px 54px 0 rgba(20,33,61,0.22);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 12px;
  right: 18px;
  z-index: 930;
  background: transparent;
  color: var(--secondary);
  border: none;
  font-size: 2.3rem;
  line-height: 1;
  padding: 0 6px;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--secondary);
  color: var(--primary);
  outline: none;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 100px 38px 36px 42px;
  width: 100%;
  height: 100%;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Orbitron', Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  width: 100%;
  transition: color 0.20s, background 0.15s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  background: rgba(252,163,17,0.1);
  border-radius: 6px;
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 16px;
    font-size: 0.97rem;
  }
  .cta-button.primary {
    padding: 13px 18px;
    min-width: 120px;
  }
}
@media (max-width: 800px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .cta-button.primary {
    display: none;
  }
}

/* FOOTER ------------------------------------------- */
footer {
  background: var(--primary);
  color: #fff;
  padding: 34px 0 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
  align-items: flex-start;
}
footer .text-section {
  min-width: 210px;
  max-width: 300px;
}
footer .text-section img {
  width: 78px;
  margin-bottom: 8px;
}
footer p {
  color: #dde6f5;
  font-size: 0.97rem;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
footer .footer-nav a, footer .legal-nav a {
  color: #FCA311;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 3px 0;
  border-radius: 3px;
  transition: background 0.14s, color 0.14s;
}
footer .footer-nav a:hover, footer .footer-nav a:focus,
footer .legal-nav a:hover, footer .legal-nav a:focus {
  background: #FCA311;
  color: #0d1631;
}
.social-links {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 13px 0 13px 8px;
  margin-top: 10px;
}
.social-links img {
  width: 30px;
  height: 30px;
  opacity: 0.92;
  transition: opacity 0.14s, filter 0.16s;
  border-radius: 50%;
  box-shadow: 0 2px 7px rgba(252,163,17,0.11);
  background: #1b2454;
  padding: 2px;
}
.social-links img:hover, .social-links img:focus {
  opacity: 1;
  filter: brightness(1.15) drop-shadow(0 0 6px #FCA311);
}

@media (max-width: 900px) {
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  footer {
    padding: 24px 0 0 0;
  }
  footer .text-section img {
    width: 56px;
  }
  footer .container {
    padding: 0 8px;
  }
}

/* SECTION & CARDS ---------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  background: var(--card);
  border-radius: 18px;
  box-shadow: var(--card-shadow);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 22px 24px 22px;
  min-width: 260px;
  max-width: 360px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.15s;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(20,33,61,0.17);
  transform: translateY(-3px) scale(1.013);
}

/* Content grid (flex-driven, never grid) */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

/* Text-image row section (responsive) */
.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;
  }
}

.testimonial-card {
  background: #fff;
  color: #13153f;
  border-left: 7px solid var(--secondary);
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(20,33,61,0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  max-width: 680px;
  position: relative;
  transition: box-shadow 0.18s, transform 0.12s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 40px -3px rgba(20,33,61,0.16);
  transform: scale(1.012);
}
.testimonial-card p {
  font-size: 1.13rem;
  font-style: italic;
  color: #22253e;
  flex: 1 1 auto;
}
.testimonial-card span {
  color: var(--secondary);
  font-size: 1.02rem;
  font-weight: 700;
  margin-left: 12px;
  font-family: 'Orbitron', Arial, sans-serif;
}

/* Feature lists */
.feature-item, .content-wrapper ul > li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 18px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.feature {
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(252,163,17,0.07);
  border-radius: 14px;
  padding: 18px 20px;
  min-width: 210px;
  max-width: 350px;
  flex: 1 1 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: box-shadow 0.18s, transform 0.11s;
}
.feature:hover {
  box-shadow: 0 10px 30px 0 rgba(252,163,17,0.21);
  transform: scale(1.022) translateY(-2px);
}
.feature img {
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  filter: drop-shadow(0 2px 8px #fde6b7);
}
.feature h3 {
  color: var(--primary);
  font-size: 1.12rem;
  margin-bottom: 8px;
}
.feature p {
  color: #202245;
}

/* List indicators creative styling */
ul > li::before, ol > li::before {
  content: '\2022';
  color: var(--secondary);
  font-family: 'Orbitron', Arial, sans-serif;
  font-weight: bold;
  margin-right: 8px;
  font-size: 1.1em;
}
ol {
  list-style: none;
  counter-reset: item;
}
ol > li {
  counter-increment: item;
}
ol > li::before {
  content: counter(item) '.';
  color: var(--primary);
  font-size: 1em;
  font-weight: bold;
  margin-right: 8px;
  font-family: 'Orbitron', Arial, sans-serif;
}

/* MAP PLACEHOLDER ----------------------------------- */
.map-placeholder {
  margin-top: 18px;
  background: #eaefff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  box-shadow: 0 2px 8px 0 rgba(20,33,61,0.07);
  min-width: 150px;
  max-width: 370px;
}
.map-placeholder img {
  width: 85px;
  height: auto;
}

/* SPACING & LAYOUTS --------------------------------- */
.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;
}
@media (max-width: 900px) {
  .feature-grid,
  .content-grid,
  .card-container {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 6px;
    max-width: 98vw;
  }
  .section,
  section {
    padding: 26px 4px;
    margin-bottom: 34px;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
}
@media (max-width: 530px) {
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 14px;
    font-size: 0.98rem;
  }
  .feature {
    padding: 12px 8px;
    min-width: 120px;
  }
}

/* TEXT SECTION -------------------------------------- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 16px;
}
.text-section h2,
.text-section h3 {
  margin-bottom: 6px;
  margin-top: 8px;
}
/* Visually highlight strong inside cards for artistic effect */
.card strong, .testimonial-card strong {
  color: var(--secondary);
  font-family: 'Orbitron', Arial, sans-serif;
}

/* COOKIE BANNER/BOTTTOM CONSENT BANNER -------------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  background: var(--primary);
  color: #fff;
  width: 100vw;
  box-shadow: 0 -8px 36px 0 rgba(20,33,61,0.19);
  padding: 18px 12px 21px 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 26px;
  justify-content: center;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.05rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s, visibility 0.18s;
}
.cookie-banner span {
    color: #fff;
}
.cookie-banner.show {
  opacity: 1;
  visibility: visible;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-banner button {
  background: var(--secondary);
  color: var(--primary);
  border-radius: 7px;
  font-family: 'Orbitron', Arial, sans-serif;
  font-weight: 700;
  padding: 9px 17px;
  font-size: 1.07rem;
  border: none;
  box-shadow: 0 1px 5px rgba(252,163,17,0.13);
  cursor: pointer;
  transition: background 0.14s, color 0.14s;
  margin-top: 0;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: #ffd76b;
  color: #11153a;
  outline: none;
}
.cookie-banner .cookie-settings {
  background: transparent!important;
  border: 1.8px solid var(--secondary);
  color: #fff !important;
  font-weight: 500;
}
.cookie-banner .cookie-settings:hover,
.cookie-banner .cookie-settings:focus {
  background: var(--secondary)!important;
  color: var(--primary)!important;
}

/* COOKIE MODAL POPUP -------------------------------- */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(22,28,52,0.75);
  z-index: 1101;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: var(--card);
  color: #161933;
  border-radius: 18px;
  box-shadow: 0 10px 50px rgba(20,33,61,0.16);
  width: 95vw;
  max-width: 390px;
  padding: 38px 24px 28px 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalPop .35s cubic-bezier(0.5,1.8,0.7,0.8);
}
@keyframes modalPop {
  0% { transform: scale(0.92) translateY(90px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-family: 'Orbitron';
  font-size: 1.4rem;
  margin-bottom: 14px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 19px;
  background: transparent;
  color: var(--secondary);
  border: none;
  font-size: 2rem;
  cursor: pointer;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 22px;
  height: 22px;
}
.cookie-category .category-label {
  font-weight: 600;
}
.cookie-category .required {
  color: #fff;
  background: var(--primary);
  border-radius: 4px;
  font-size: 0.92em;
  padding: 2px 6px 2px 5px;
  margin-left: 8px;
}
.cookie-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 18px;
}
.cookie-modal .modal-actions button {
  padding: 9px 20px;
  font-size: 1.07rem;
}

/* MICRO-INTERACTIONS & ARTISTIC DECOR --------------- */
.hero-section:before {
  content: '';
  position: absolute;
  z-index: 1;
  left: -70px; top: -45px;
  width: 170px; height: 170px;
  background: rgba(252,163,17,0.11);
  border-radius: 50%;
  filter: blur(11px);
  pointer-events: none;
  animation: floatColor 9s infinite alternate ease-in-out;
}
@keyframes floatColor {
  0%   { transform: translateY(0) scale(1); }
  40%  { transform: translateY(12px) scale(1.08); }
  100% { transform: translateY(-19px) scale(1.13); }
}
.section:after {
  content: '';
  display: block;
  width: 42px;
  height: 3.5px;
  background: var(--secondary);
  border-radius: 2.2px;
  margin: 28px auto 0 auto;
  opacity: 0.13;
}

/* RESPONSIVE TYPOGRAPHY (NO CLAMP) ------------------ */
@media (max-width: 700px) {
  h1 { font-size: 1.45rem;}
  h2 { font-size: 1.15rem;}
  h3 { font-size: 1.04rem;}
  h4 { font-size: 0.98rem;}
  body, p, .content-wrapper p { font-size: 0.97rem;}
  .card, .feature, .testimonial-card {padding: 12px 9px;}
}

/* FOCUS STATES -------------------------------------- */
a:focus-visible, button:focus-visible, .cta-button:focus-visible {
  outline: 2px dashed var(--secondary);
  outline-offset: 1.5px;
}

/* SCROLLBAR STYLE FOR ARTISTIC TOUCH ---------------- */
::-webkit-scrollbar {
  width: 10px;
  background: #eaeaea;
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 12px;
}

/* UTILS: Responsive hide/show ----------------------- */
.hide-mobile { display: block; }
@media (max-width: 768px) {
  .hide-mobile { display: none;}  
}
.show-mobile { display: none; }
@media (max-width: 768px) {
  .show-mobile { display: block;}
}

/* MISC UTILITIES ------------------------------------ */
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.no-shadow { box-shadow: none!important; }

/* END OF STYLES */
