/* ===================================================
   NEATGLINT - LUXURY PREMIUM CSS
   ---------------------------------
   Reset | Brand Colors | Typography | Layout | Responsive | Mobile Menu | Cookie Consent Banner
   =================================================== */

/* ===== 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-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  min-height: 100vh;
  color: #232323;
  background-color: #FAFAFA;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #176CA1;
  text-decoration: none;
  transition: color 0.2s;
}
a:focus {
  outline: 2px solid #BA9306;
  outline-offset: 2px;
}

/* ===== BRAND VARIABLES ===== */
:root {
  --lux-blue: #253A57;                   /* Primary brand color */
  --lux-gold: #BA9306;                   /* Luxury gold accent */
  --lux-gold-light: #F8E7BB;             /* Gold subtle background-accent */
  --lux-white: #FFFFFF;                   /* Secondary */
  --lux-charcoal: #232323;
  --lux-accent: #176CA1;                 /* Accent brand blue */
  --lux-bg: #FAFAFA;
  --lux-footer-bg: #222B39;
  --lux-divider: #E0E0E0;
  --lux-card-bg: #FFFFFF;
  --lux-card-shadow: 0 4px 32px 0 rgba(24,32,61,0.07);
  --lux-radius: 18px;
  --lux-radius-sm: 10px;
  --lux-shadow-min: 0 2px 8px 0 rgba(26,26,36,0.07);
  --lux-shadow-card: 0 6px 24px 0 rgba(36,42,77,0.13);
  --lux-transition: 0.18s cubic-bezier(0.45, 0.20, 0.34, 1.01);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', 'Times New Roman', serif;
  font-weight: 700;
  color: var(--lux-blue);
}
h1 { font-size: 2.8rem; margin-bottom: 20px; letter-spacing: -0.02em; }
h2 { font-size: 2rem; margin-bottom: 16px; letter-spacing: -0.01em; }
h3 { font-size: 1.4rem; margin-bottom: 10px; letter-spacing: 0; }
h4 { font-size: 1.15rem; margin-bottom: 6px; }
h5, h6 { font-size: 1rem; margin-bottom: 4px; }

p, li, ul, ol, blockquote, small {
  font-family: 'Open Sans', Arial, sans-serif;
  color: var(--lux-charcoal);
  font-weight: 400;
  font-size: 1rem;
}
blockquote {
  border-left: 4px solid var(--lux-gold);
  color: var(--lux-blue);
  background: var(--lux-gold-light);
  font-style: italic;
  padding: 10px 25px;
  margin: 18px 0 8px 0;
  border-radius: var(--lux-radius-sm);
}
ul, ol {
  padding-left: 22px;
  margin-bottom: 20px;
}
ul { list-style-type: disc; }
ol { list-style-type: decimal; }
strong { color: var(--lux-blue); font-weight: 700; }

/* ===== CONTAINER & SPACING ===== */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 8px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.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;
  background: var(--lux-white);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow-card);
  margin-bottom: 20px;
  border: 1px solid var(--lux-divider);
  transition: box-shadow var(--lux-transition), transform var(--lux-transition);
  min-width: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background-color: var(--lux-white);
  box-shadow: var(--lux-shadow-min);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 19px 20px;
}
.logo-link img {
  height: 44px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--lux-blue);
  position: relative;
  padding: 6px 0;
  font-weight: 500;
}
.main-nav a:hover,
.main-nav a:focus {
  color: var(--lux-gold);
}
.cta-primary {
  background: var(--lux-gold);
  color: var(--lux-white) !important;
  border: none;
  border-radius: var(--lux-radius-sm);
  font-family: 'Roboto Slab', serif;
  font-size: 1.12rem;
  font-weight: 700;
  padding: 13px 32px;
  box-shadow: 0 5px 24px 0 rgba(186,147,6,0.16), 0 2px 8px 0 rgba(36,42,87,0.04);
  transition: background var(--lux-transition), color var(--lux-transition), transform var(--lux-transition);
  margin-left: 28px;
  cursor: pointer;
  letter-spacing: 0.02em;
  text-align: center;
  display: inline-block;
}
.cta-primary:hover, .cta-primary:focus {
  background: #E8C44B;
  color: var(--lux-blue)!important;
  transform: translateY(-2px) scale(1.04);
}
.cta-secondary {
  background: transparent;
  color: var(--lux-gold);
  border: 2px solid var(--lux-gold);
  font-family: 'Roboto Slab', serif;
  font-size: 1.08rem;
  font-weight: 700;
  padding: 12px 29px;
  border-radius: var(--lux-radius-sm);
  margin-top: 12px;
  letter-spacing: 0.02em;
  transition: background var(--lux-transition), color var(--lux-transition), border-color var(--lux-transition);
  display: inline-block;
}
.cta-secondary:hover, .cta-secondary:focus {
  background: var(--lux-gold);
  color: var(--lux-white);
  border-color: var(--lux-gold);
}

/* Hamburger & Mobile Menu */
.mobile-menu-toggle {
  font-size: 2.2rem;
  background: none;
  border: none;
  color: var(--lux-gold);
  margin-left: 18px;
  cursor: pointer;
  display: none;
  line-height: 1;
  transition: color var(--lux-transition)
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--lux-accent);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 100vw;
  width: 100vw;
  height: 100vh;
  background: rgba(37,58,87,0.98);
  z-index: 200;
  overflow-y: auto;
  transition: transform 0.37s cubic-bezier(0.87,0.16,0.42,1.09);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  pointer-events: none;
  transform: translateX(0);
}
.mobile-menu.open {
  left: 0;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: var(--lux-gold);
  font-size: 2.8rem;
  font-weight: bold;
  margin: 24px 32px 0 0;
  align-self: flex-end;
  cursor: pointer;
  transition: color var(--lux-transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: var(--lux-white);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  margin-top: 36px;
  padding: 0 48px;
  gap: 24px;
}
.mobile-nav a {
  color: var(--lux-gold);
  font-size: 1.55rem;
  padding: 14px 0;
  font-family: 'Roboto Slab', serif;
  font-weight: 600;
  width: 100%;
  border-bottom: 1px solid rgba(250,250,250,0.07);
  transition: color 0.13s;
}
.mobile-nav a:hover {
  color: var(--lux-accent);
}

/* ===== HERO + SECTIONS ===== */
main section:first-child {
  background: linear-gradient(103deg, var(--lux-white) 60%, var(--lux-gold-light) 100%);
  border-bottom: 0.5px solid var(--lux-divider);
}
main h1 {
  font-size: 2.2rem;
  line-height: 1.18;
}
main h2 {
  font-size: 1.4rem;
  margin-bottom: 21px;
}
main h3 {
  color: var(--lux-gold);
}

/* ===== CARDS / FEATURED ITEMS / GADGETS ===== */
.card,
.testimonial-card,
.service-card,
.trend-card,
.gadget-card {
  background: var(--lux-card-bg);
  border-radius: var(--lux-radius);
  box-shadow: var(--lux-shadow-card);
  border: 1px solid var(--lux-divider);
  padding: 22px 28px 22px 28px;
  margin-bottom: 20px;
  transition: box-shadow var(--lux-transition), border-color var(--lux-transition), transform var(--lux-transition);
  min-width: 0;
}
.card:hover, .service-card:hover, .trend-card:hover, .gadget-card:hover {
  border-color: var(--lux-gold);
  box-shadow: 0 12px 40px 0 rgba(186,147,6,.10);
  transform: translateY(-3px) scale(1.03);
}
.gadget-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.gadget-card {
  flex: 1 1 220px;
  min-width: 280px;
  max-width: 350px;
}
.benefit-tag {
  display: inline-block;
  margin-top: 12px;
  background: var(--lux-gold-light);
  color: var(--lux-gold);
  font-size: 0.92rem;
  border-radius: 22px;
  padding: 4px 17px;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.service-card {
  flex: 1 1 280px;
  max-width: 370px;
}

.trend-card {
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 380px;
}

/* ===== TESTIMONIALS (Card Highlight) ===== */
.testimonial-card {
  background: var(--lux-white);
  border: 1px solid #e6e6e6;
  color: var(--lux-charcoal);
  box-shadow: 0 6px 32px 0 rgba(186,147,6,0.05), 0 2px 8px 0 rgba(36,42,87,0.08);
}
.testimonial-card p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--lux-blue);
  flex: 2 1 58%;
  margin-bottom: 8px;
}
.testimonial-card span {
  font-size: 0.95rem;
  color: var(--lux-gold);
  flex: 1 1 30%;
  align-self: flex-end;
}

/* Testimonials contrast fix */
.testimonial-card {
  background-color: #fff;
  color: #232323;
}
.testimonial-card p, .testimonial-card span, .testimonial-card strong {
  color: #232323;
}
.testimonial-card strong { color: var(--lux-blue); }

/* ===== LISTS and ICON LISTS ===== */
.content-wrapper ul:not([class]), .text-section ul:not([class]) {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding-left: 18px;
}
.content-wrapper ul li, .text-section ul li {
  display: flex;
  align-items: flex-start;
  font-size: 1rem;
  gap: 9px;
}
.content-wrapper ul li img, .text-section ul li img {
  width: 22px; min-width: 22px; height: 22px; margin-right: 7px;
}
ul li strong {
  color: var(--lux-blue);
}

/* ===== FOOTER ===== */
footer {
  background: var(--lux-footer-bg);
  color: var(--lux-white);
  padding: 38px 0 18px 0;
  font-size: 0.95rem;
  border-top: 2px solid var(--lux-gold-light);
}
footer .container {
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
}
.footer-nav a {
  font-size: 1rem;
  color: var(--lux-gold);
  font-family: 'Open Sans', Arial, sans-serif;
  transition: color var(--lux-transition);
}
.footer-nav a:hover { color: var(--lux-accent); }
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}
.footer-brand img {
  height: 32px; width: auto;
}
footer small {
  color: var(--lux-gold-light);
}

/* ===== FORMS / LINKS / BUTTONS ===== */
input, textarea, select {
  font-family: inherit;
  border: 1.5px solid var(--lux-divider);
  border-radius: var(--lux-radius-sm);
  padding: 11px 18px;
  font-size: 1rem;
  background: var(--lux-white);
  margin-bottom: 18px;
  transition: border-color var(--lux-transition);
}
input:focus, textarea:focus, select:focus {
  border-color: var(--lux-gold);
  outline: none;
}
button, .button, .cta-primary, .cta-secondary {
  cursor: pointer;
  transition: background var(--lux-transition), color var(--lux-transition), box-shadow var(--lux-transition), border-color var(--lux-transition), transform var(--lux-transition);
}
.button:active, .cta-primary:active, .cta-secondary:active {
  transform: scale(0.97);
}

/* ===== DIVIDERS / DETAILS ===== */
hr {
  border: none;
  border-top: 1px solid var(--lux-divider);
  margin: 36px 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1000px) {
  .container {
    max-width: 960px;
    padding: 0 12px;
  }
  .footer-nav {
    flex-direction: column;
    gap: 14px;
  }
}

@media (max-width: 768px) {
  section, .section {
    padding: 28px 7px;
    margin-bottom: 38px;
  }
  header .container {
    flex-direction: row;
    padding: 10px 10px;
    gap: 0;
  }
  .main-nav, .cta-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .mobile-menu {
    display: flex;
  }
  .container {
    max-width: 98vw;
    padding: 0 7px;
  }
  .footer-brand {
    align-items: flex-start;
  }
  .gadget-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .content-wrapper, .text-section {
    flex-direction: column;
    gap: 19px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    padding: 18px
  }
  .gadget-card, .service-card {
    max-width: 100%;
    min-width: 0;
    padding: 18px 15px;
  }
  .trend-card {
    min-width: 0;
    max-width: 100%;
    padding: 18px 13px;
  }
  .content-grid {
    flex-direction: column;
    gap: 10px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .footer-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
  }
  main h1 {
    font-size: 1.7rem;
  }
  main h2 {
    font-size: 1.15rem;
  }
}
@media (max-width: 520px) {
  .logo-link img {
    height: 31px;
  }
  .card, .testimonial-card, .service-card, .trend-card {
    padding: 11px 7px 14px 7px;
    border-radius: 11px;
  }
  .benefit-tag {
    padding: 2px 12px;
    font-size: 0.88rem;
  }
  .cta-primary, .cta-secondary {
    font-size: 1rem;
    padding: 11px 13px;
  }
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 10000;
  width: 100vw;
  background: var(--lux-white);
  box-shadow: 0 -4px 26px 0 rgba(35,58,87,0.13);
  color: var(--lux-blue);
  border-top: 2px solid var(--lux-gold-light);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  padding: 18px 32px;
  font-size: 1rem;
  font-family: 'Open Sans', Arial, sans-serif;
  transition: bottom 0.22s;
}
.cookie-banner.hide {
  bottom: -120px;
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  margin-right: auto;
  max-width: 680px;
  color: var(--lux-blue);
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  align-items: center;
}
.cookie-banner button {
  font-family: 'Roboto Slab', serif;
  border-radius: 22px;
  border: none;
  font-weight: 600;
  font-size: 1.06rem;
  cursor: pointer;
  padding: 9px 22px;
  margin: 0; min-width: 0;
  transition: background var(--lux-transition), color var(--lux-transition);
}
.cookie-banner .accept {
  background: var(--lux-gold);
  color: var(--lux-white);
}
.cookie-banner .accept:hover {
  background: #E6B20A;
}
.cookie-banner .reject {
  background: transparent;
  color: var(--lux-gold);
  border: 2px solid var(--lux-gold);
}
.cookie-banner .reject:hover {
  background: var(--lux-gold-light);
}
.cookie-banner .settings {
  background: transparent;
  color: var(--lux-blue);
}
.cookie-banner .settings:hover {
  color: var(--lux-accent);
}
@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 16px 7px;
    font-size: 0.95rem;
  }
  .cookie-banner .cookie-actions {
    gap: 10px;
  }
}

/* === COOKIE PREFERENCES MODAL === */
.cookie-modal {
  position: fixed;
  z-index: 12000;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(33, 36, 45, 0.56);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.16s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .modal-content {
  background: var(--lux-white);
  border-radius: var(--lux-radius);
  box-shadow: 0 10px 58px 0 rgba(27, 28, 35, 0.24);
  padding: 38px 26px 28px 26px;
  max-width: 430px;
  width: 94vw;
  color: var(--lux-blue);
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}
.cookie-modal .modal-content h2 {
  font-size: 1.25rem;
  margin-bottom: 9px;
}
.cookie-modal .preferences-list {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.cookie-modal .pref-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--lux-divider);
  gap: 7px;
}
.cookie-modal .pref-row:last-child {
  border-bottom: none;
}
.cookie-modal label {
  font-size: 1rem;
  color: var(--lux-blue);
  font-family: 'Open Sans', Arial, sans-serif;
}
.cookie-modal input[type="checkbox"] {
  width: 22px;
  height: 22px;
  accent-color: var(--lux-gold);
  border-radius: 7px;
  margin: 0 5px 0 0;
}
.cookie-modal .pref-locked {
  font-size: 1.03rem;
  color: var(--lux-gold);
  background: var(--lux-gold-light);
  padding: 1px 11px;
  border-radius: 8px;
  margin-left: 8px;
}
.cookie-modal .modal-actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  gap: 16px;
  margin-top: 10px;
}
.cookie-modal .modal-actions button {
  border-radius: 22px;
  font-family: 'Roboto Slab', serif;
  font-size: 1.05rem;
  padding: 9px 22px;
}
.cookie-modal .modal-actions .accept {
  background: var(--lux-gold);
  color: var(--lux-white);
  border: none;
}
.cookie-modal .modal-actions .accept:hover {
  background: #E6B20A;
}
.cookie-modal .modal-actions .close {
  background: transparent;
  color: var(--lux-blue);
  border: 2px solid var(--lux-gold-light);
}
.cookie-modal .modal-actions .close:hover {
  background: var(--lux-gold-light);
}
.cookie-modal .modal-close-x {
  position: absolute;
  right: 20px;
  top: 17px;
  font-size: 1.9rem;
  color: var(--lux-gold);
  background: none;
  border: none;
  cursor: pointer;
  padding: 3px 7px;
  z-index: 1;
}
.cookie-modal .modal-close-x:hover {
  color: var(--lux-accent);
}
@media (max-width: 500px) {
  .cookie-modal .modal-content {
    max-width: 97vw;
    padding: 17px 7px 14px 7px;
  }
  .cookie-modal .modal-close-x {
    top: 7px;
    right: 5px;
  }
}

/* ===== UTILITY CLASSES ===== */
.hide { display: none !important; }
.text-center { text-align: center; }
.flex-row { display: flex; flex-direction: row; }
.flex-col { display: flex; flex-direction: column; }
.align-center { align-items: center; }
.justify-center { justify-content: center; }
.bold { font-weight: 700; }
.gold { color: var(--lux-gold); }

/* Subtle micro-interactions */
.card:active, .gadget-card:active, .service-card:active, .trend-card:active, .cta-primary:active, .cta-secondary:active {
  transform: scale(0.97);
}

/* ===== ACCESSIBILITY ===== */
:focus-visible {
  outline: 2.5px solid var(--lux-accent);
  outline-offset: 2px;
}

/* ===== PRINT CLEANUP ===== */
@media print {
  header, footer, .cookie-banner, .cookie-modal { display: none !important; }
}

/* ========== END ========== */
