/* ===========================================================
   LUMINA STRIKE - ELEGANT CLASSIC THEME CSS
   Mobile-first · Only Flexbox Layouts · No CSS Grid/Columns
   =========================================================== */

/* --- CSS 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;
  scroll-behavior: smooth;
  font-size: 16px;
  height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', serif;
  font-size: 1rem;
  color: #222;
  background: #F5F6FA;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

img, svg {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1B1F23;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover,
a:focus {
  color: #EF9930;
}

ul, ol {
  list-style: none;
}

/* --- TYPOGRAPHY ------------------------------------------------------------ */
:root {
  --brand-primary: #1B1F23;
  --brand-secondary: #F5F6FA;
  --brand-accent: #EF9930;
  --brand-gray: #b5b7ba;
  --brand-muted: #e5e7ea;
  --font-display: 'Oswald', serif, Arial, sans-serif;
  --font-body: 'Roboto', serif, Arial, sans-serif;
}
h1, .h1 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1.15;
  font-weight: 700;
  color: var(--brand-primary);
  margin-bottom: 16px;
  letter-spacing: 0.03em;
}
h2, .h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 600;
  color: var(--brand-primary);
  margin-bottom: 12px;
}
h3, .h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.25;
  font-weight: 500;
  color: var(--brand-primary);
  margin-bottom: 10px;
}
h4, .h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--brand-primary);
}
p, li, span, label {
  font-family: var(--font-body);
  font-size: 1rem;
  color: #25292d;
  line-height: 1.7;
}
strong {
  font-weight: 700;
}

.text-section {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Typography for attribution */
.testimonial-card span {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--brand-accent);
  margin-left: 12px;
}

/* --- CONTAINER & SECTION SPACING ------------------------------------------- */
.container {
  width: 100%;
  max-width: 1170px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section, section {
  margin-bottom: 60px !important;
  padding: 40px 20px;
  background: none;
  border-radius: 0;
}

/* --- HEADER --------------------------------------------------------------- */
header {
  background: #fff;
  border-bottom: 1px solid var(--brand-muted);
  box-shadow: 0 2px 8px 0 rgba(27,31,35,0.03);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 50;
}
header .container {
  min-height: 72px;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}
.logo img {
  height: 42px;
  width: auto;
  display: block;
}

nav.main-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
nav.main-nav a {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: #25292d;
  padding: 7px 14px;
  border-radius: 32px;
  transition: background 0.17s, color 0.17s;
  text-decoration: none;
  font-weight: 400;
}
nav.main-nav a.cta-primary {
  background: var(--brand-accent);
  color: #fff;
  font-weight: 600;
  padding: 7px 22px;
  margin-left: 14px;
  box-shadow: 0 2px 10px 0 rgba(239,153,48,0.10);
  border-radius: 32px;
  transition: background 0.18s, box-shadow 0.2s, color 0.18s;
}
nav.main-nav a.cta-primary:hover,
nav.main-nav a.cta-primary:focus {
  background: #faad3c;
  color: #fff;
  box-shadow: 0 4px 22px 0 rgba(239,153,48,0.18);
}
nav.main-nav a:hover,
nav.main-nav a:focus {
  background: #edecef;
  color: var(--brand-primary);
}

/* --- MOBILE MENU ----------------------------------------------------------- */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: var(--brand-primary);
  color: #fff;
  font-size: 1.48rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-left: 12px;
  cursor: pointer;
  transition: background 0.18s;
  z-index: 120;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #2a2e33;
  outline: none;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(245,246,250,0.97);
  z-index: 999;
  transition: transform 0.30s cubic-bezier(0.4,0.7,0.2,1);
  transform: translateX(-100%);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  color: var(--brand-primary);
  border: none;
  font-size: 2rem;
  margin: 22px 0 14px 22px;
  cursor: pointer;
  align-self: flex-start;
  transition: color 0.15s;
  z-index: 1100;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  color: var(--brand-accent);
  outline: 0;
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding-left: 28px;
  margin-top: 14px;
}
.mobile-nav a {
  font-size: 1.24rem;
  font-family: var(--font-display);
  color: var(--brand-primary);
  padding: 13px 18px;
  border-radius: 30px;
  width: fit-content;
  transition: background 0.15s, color 0.18s;
  margin-right: 12px;
  font-weight: 500;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: var(--brand-accent);
  color: #fff;
}

/* --- HERO SECTIONS --------------------------------------------------------- */
.hero {
  background: #f2f3f7;
  border-radius: 18px;
  box-shadow: 0 6px 32px 0 rgba(30,33,40,0.04);
  margin-bottom: 46px !important;
  padding: 42px 20px 52px 20px;
  display: flex;
  align-items: center;
  flex-direction: column;
  min-height: 180px;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  max-width: 670px;
}
.hero h1,
.hero h2 {
  margin-bottom: 4px;
}
.hero p {
  margin-bottom: 10px;
  color: #363a40;
}

/* --- BUTTONS & CTAs -------------------------------------------------------- */
.cta-primary,
.cta-section a.cta-primary {
  display: inline-block;
  font-family: var(--font-display);
  background: var(--brand-accent);
  color: #fff;
  font-size: 1.08rem;
  font-weight: 600;
  padding: 11px 32px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  text-align: center;
  box-shadow: 0 2px 16px 0 rgba(239,153,48,0.08);
  transition: background 0.17s, box-shadow 0.18s, color 0.18s, transform 0.14s;
}
.cta-primary:hover,
.cta-primary:focus {
  background: #faad3c;
  color: #fff;
  box-shadow: 0 4px 22px 0 rgba(239,153,48,0.14);
  transform: translateY(-2px) scale(1.03);
}

/* --- CARDS, GRIDS, FLEXBOX LAYOUTS ----------------------------------------- */
.features, .services-section, .cta-section, .cta-contact {
  background: #fff;
  border-radius: 19px;
  box-shadow: 0 3px 32px 0 rgba(27,31,35,0.06);
}
.feature-grid, .product-types-grid, .promo-grid, .service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.feature-item, .product-type, .promo-item, .service-item {
  background: #f8f9fc;
  border-radius: 15px;
  box-shadow: 0 2px 10px 0 rgba(38, 41, 50, 0.07);
  padding: 24px 22px;
  min-width: 220px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
  transition: box-shadow 0.18s, transform 0.18s;
  position: relative;
}
.feature-item:hover,.feature-item:focus,
.product-type:hover,.product-type:focus,
.promo-item:hover,.promo-item:focus,
.service-item:hover,.service-item:focus {
  box-shadow: 0 8px 32px 0 rgba(239,153,48,0.10);
  transform: translateY(-2px) scale(1.025);
  z-index: 2;
}
.feature-item img, .promo-item img, .product-type img, .service-item img {
  height: 44px;
  width: 44px;
  margin-bottom: 4px;
  border-radius: 6px;
  background: #ecebf3;
  object-fit: contain;
}

/* Cards (for other content if needed) */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 2px 10px 0 rgba(30,32,38,0.07);
  padding: 22px 20px;
  min-width: 220px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  width: 100%;
}
.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* --- TESTIMONIALS CARDS --------------------------------------------------- */
.testimonials {
  background: #F8F7F5;
  border-radius: 17px;
  box-shadow: 0 3px 22px 0 rgba(27,31,35,0.05);
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 26px;
  background: #fff;
  border-left: 4px solid var(--brand-accent);
  border-radius: 12px;
  box-shadow: 0 3px 18px 0 rgba(27,31,35,0.04);
  margin-bottom: 20px;
  transition: box-shadow 0.15s, transform 0.17s;
}
.testimonial-card p {
  color: #25292d;
  font-size: 1.05rem;
  font-family: var(--font-body);
  margin-bottom: 0;
}
.testimonial-card:hover, .testimonial-card:focus {
  box-shadow: 0 6px 26px 0 rgba(239,153,48,0.10);
  transform: translateY(-2px) scale(1.02);
  z-index: 3;
}

/* --- LISTS & DETAILS ------------------------------------------------------ */
.feature-list, .service-list, .features ul, .features ol, .text-section ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 16px;
  margin-bottom: 0;
}
.feature-list li, .service-list li, .features ul li, .text-section ul li {
  list-style: disc inside;
  font-size: 1rem;
  color: #282d32;
}
.text-section ul {
  padding-left: 24px;
}
.text-section p, .text-section li {
  margin-bottom: 0;
}

/* --- CTA CONTACT ---------------------------------------------------------- */
.cta-contact, .cta-section {
  background: #FCFAF5;
  border-radius: 16px;
  box-shadow: 0 2px 16px 0 rgba(239,153,48,0.03);
}
.cta-contact .content-wrapper,
.cta-section .content-wrapper {
  align-items: center;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.cta-contact h2,
.cta-section h2 {
  margin-bottom: 6px;
}

/* --- CONTACT DETAILS ------------------------------------------------------ */
.contact-details .text-section {
  gap: 16px;
}
.contact-details p {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contact-details a {
  color: var(--brand-accent);
  text-decoration: underline;
  transition: color 0.15s;
}
.contact-details a:hover,
.contact-details a:focus {
  color: var(--brand-primary);
}
.contact-details img {
  width: 28px;
  height: 28px;
}

/* --- FOOTER --------------------------------------------------------------- */
footer {
  background: #23262d;
  color: #d1d1d1;
  padding: 36px 0 0 0;
  margin-top: 40px;
  font-size: 1rem;
}
.footer-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid #46474a;
}
.footer-brand {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-brand img {
  width: 98px;
  height: auto;
  margin-bottom: 10px;
}
.footer-brand p {
  color: #eee;
  font-size: 0.98rem;
  line-height: 1.6;
  margin-bottom: 0;
}
.footer-menu {
  flex: 0 1 260px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 6px;
}
.footer-menu a {
  font-family: var(--font-body);
  color: #d7dafe;
  font-size: 1rem;
  padding: 2px 0;
  text-decoration: underline;
  border-radius: 6px;
  transition: color 0.12s, background 0.12s;
}
.footer-menu a:hover,
.footer-menu a:focus {
  color: var(--brand-accent);
  background: #2d2f34;
}
.footer-social {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 10px;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #191a1c;
  border-radius: 50%;
  transition: background 0.15s;
  overflow: hidden;
}
.footer-social a:hover,
.footer-social a:focus {
  background: var(--brand-accent);
}
.footer-social img {
  width: 20px;
  height: 20px;
}
.footer-bottom {
  text-align: center;
  color: #8B8E98;
  font-size: 0.96rem;
  padding: 20px 0 10px 0;
}

/* --- SPACING HELPERS ------------------------------------------------------ */
.mb-20 { margin-bottom: 20px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mb-40 { margin-bottom: 40px !important; }

/* --- COOKIE CONSENT BANNER ---------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  z-index: 1500;
  background: #fff9eb;
  color: #1B1F23;
  border-top: 2px solid var(--brand-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  box-shadow: 0 -4px 16px 0 rgba(27,31,35,0.08);
  gap: 20px;
  font-size: 1rem;
  min-height: 64px;
  animation: fadeInCookieBanner 0.55s ease;
}
@keyframes fadeInCookieBanner {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner__msg {
  flex: 1;
  min-width: 0;
  font-family: var(--font-body);
}
.cookie-banner__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: var(--font-display);
  font-size: 1rem;
  border: none;
  padding: 9px 24px;
  border-radius: 24px;
  margin: 0;
  cursor: pointer;
  transition: background 0.16s, color 0.15s, box-shadow 0.14s;
  font-weight: 600;
}
.cookie-btn.accept {
  background: var(--brand-accent);
  color: #fff;
  box-shadow: 0 2px 10px 0 rgba(239,153,48,0.12);
}
.cookie-btn.accept:hover,
.cookie-btn.accept:focus {
  background: #d58324;
}
.cookie-btn.reject {
  background: #eaeaea;
  color: #23262d;
  border: 1px solid #e0e0e0;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #dadada;
}
.cookie-btn.settings {
  background: transparent;
  color: var(--brand-primary);
  border: 1px solid var(--brand-accent);
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #f5ecd8;
}

/* --- COOKIE PREFERENCES MODAL ------------------------------------------ */
.cookie-modal {
  position: fixed;
  z-index: 1700;
  left: 0; right: 0;
  top: 0; bottom: 0;
  background: rgba(60, 60, 68, 0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeInCookieModal 0.3s cubic-bezier(.46, .03, .52, .96);
}
@keyframes fadeInCookieModal {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal__content {
  background: #fff9eb;
  border-radius: 14px;
  box-shadow: 0 6px 32px 0 rgba(239,153,48,0.14);
  min-width: 320px;
  max-width: 92vw;
  padding: 30px 24px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: modalPopIn 0.33s cubic-bezier(.71,1.7,.77,1.24);
}
@keyframes modalPopIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1.0); }
}
.cookie-modal__close {
  background: none;
  border: none;
  color: var(--brand-primary);
  font-size: 1.36rem;
  position: absolute;
  right: 22px;
  top: 18px;
  cursor: pointer;
  transition: color 0.13s;
  z-index: 1;
}
.cookie-modal__close:hover,
.cookie-modal__close:focus {
  color: var(--brand-accent);
}
.cookie-category {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 8px;
}
.cookie-category label {
  font-size: 1rem;
  font-family: var(--font-display);
}
.cookie-category input[type=checkbox] {
  accent-color: var(--brand-accent);
  width: 19px;
  height: 19px;
  margin-right: 9px;
}
.cookie-category input[disabled] {
  opacity: 0.55;
}

/* --- MEDIA QUERIES / RESPONSIVE ------------------------------------------- */
@media (max-width: 1100px) {
  .container { max-width: 970px; }
}
@media (max-width: 950px) {
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
@media (max-width: 850px) {
  .feature-grid, .product-types-grid, .promo-grid, .service-grid, .content-grid {
    gap: 18px;
  }
  .footer-wrapper {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  header .container {
    flex-direction: row;
    gap: 8px;
    min-height: 60px;
  }
  nav.main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .feature-grid, .product-types-grid, .promo-grid, .service-grid {
    flex-direction: column;
    gap: 20px;
  }
  .footer-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-bottom: 12px;
  }
  .footer-menu {
    margin-top: 8px;
    margin-bottom: 10px;
  }
  .footer-social {
    gap: 14px;
    margin-bottom: 8px;
  }
  .section, section {
    margin-bottom: 40px !important;
    padding: 28px 6px;
  }
  .hero {
    padding: 30px 8px 38px 8px;
    min-height: 120px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}
@media (max-width: 600px) {
  html { font-size: 14px; }
  .container {
    max-width: 100vw;
    padding-left: 5px;
    padding-right: 5px;
  }
  .hero {
    padding: 22px 3px 18px 3px;
  }
}
@media (max-width: 480px) {
  .hero {
    border-radius: 10px;
    min-height: 40px;
  }
  header .container {
    padding-left: 2px;
    padding-right: 2px;
  }
  .footer-wrapper {
    gap: 8px;
  }
}

/* --- MICRO-INTERACTIONS --------------------------------------------------- */
.feature-item, .promo-item, .product-type, .service-item, .testimonial-card, .card {
  transition: box-shadow 0.16s, transform 0.15s;
}
.feature-item:active, .promo-item:active, .product-type:active, .service-item:active, .testimonial-card:active {
  box-shadow: 0 2px 7px 0 rgba(239,153,48,0.08);
  transform: scale(0.98);
}

.cta-primary:active {
  transform: scale(0.97);
}

.footer-social a:active {
  transform: scale(0.95) rotate(-1deg);
}

.mobile-nav a:active {
  background: var(--brand-accent);
  color: #fff;
}

/* --- ACCESSIBILITY & FOCUS STATES ---------------------------------------- */
a:focus, button:focus, .cta-primary:focus {
  outline: 2px solid var(--brand-accent);
  outline-offset: 1.5px;
}

.cookie-modal__close:focus {
  outline: 2px solid var(--brand-accent);
}

/* --- HIDE MOBILE MENU BY DEFAULT ON DESKTOP ------------------------------ */
@media (min-width: 769px) {
  .mobile-menu-toggle, .mobile-menu { display: none !important; }
  nav.main-nav { display: flex !important; }
}

/* --- MISC --------------------------------------------------------------- */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-thumb {
  background: #e6e6e9;
  border-radius: 6px;
}
::-webkit-scrollbar-track {
  background: #fcfcfd;
}

/* --- PRINT DECLUTTER ----------------------------------------------------- */
@media print {
  header, footer, .cookie-banner, .mobile-menu { display: none !important; }
  body { background: #fff !important; }
}
