/* =========================================================
   Gloss Sweep Luxury Premium CSS - style.css
   =========================================================
   Mobile-first, Flexbox-only, Luxury & Premium Brand
   ========================================================= */

/* RESET & BASE STYLES */
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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  background-color: #20212a;
  color: #f9f8f5;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  min-height: 100vh;
  font-size: 16px;
  overflow-x: hidden;
}
a {
  color: #f8e4b0;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #c5ab6c;
  outline: none;
}
ul, ol {
  padding-left: 18px;
  margin-bottom: 24px;
}
li {
  margin-bottom: 10px;
}
img {
  max-width: 100%;
  display: block;
}
button, .cta-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  outline: none;
}

/* FONT FACES - REMINDER: Load from Google Fonts in <head> */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-weight: 700;
}
h1 {
  font-size: 2.5rem;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 16px;
  letter-spacing: -0.2px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
  letter-spacing: 0px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 6px;
}
p, .text-section {
  color: #f9f8f5;
  font-size: 1rem;
  margin-bottom: 18px;
  line-height: 1.7;
}
.text-section {
  margin-bottom: 20px;
}
strong {
  font-weight: 700;
  color: #f8e4b0;
}

/* =========================================================
   SPACING, CONTAINERS, & FLEX LAYOUTS
   ========================================================= */

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 18px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(27, 28, 34, 0.98);
  border-radius: 30px;
  box-shadow: 0 8px 40px 0 rgba(20,12,0,0.1), 0 1.5px 2px 0 rgba(248,228,176,0.06);
}
@media (max-width: 768px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
    border-radius: 16px;
  }
}

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

.card-container,
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #25252f;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(32,33,42,0.14);
  padding: 24px;
  flex: 1 1 300px;
  min-width: 270px;
  border: 1.5px solid #f8e4b015;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.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;
    align-items: flex-start;
    gap: 18px;
  }
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 10px;
}
@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    gap: 16px;
  }
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #22232b;
  border-radius: 14px;
  padding: 24px 18px;
  box-shadow: 0 4px 18px rgba(20,12,0,0.08);
  min-width: 220px;
  max-width: 320px;
  flex: 1 1 215px;
  border: 1.5px solid #f8e4b006;
}
.feature-item img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  margin-bottom: 4px;
  filter: brightness(1.08) drop-shadow(0 1px 2px #f8e4b066);
}

.card,
.feature-item {
  transition: transform 0.26s cubic-bezier(.6,.2,.18,1), box-shadow 0.18s;
}
.card:hover, .feature-item:hover {
  transform: translateY(-7px) scale(1.028);
  box-shadow: 0 8px 32px 0 #f8e4b050, 0 0px 2px 0 rgba(248,228,176,0.07);
  border-color: #f8e4b092;
}

@media (max-width: 600px) {
  .card,
  .feature-item {
    min-width: 160px;
    max-width: 100%;
    padding: 18px 11px;
  }
}

/* Testimonials -------------------------------------------------- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  color: #22232b;
  border-radius: 18px;
  box-shadow: 0 3px 24px rgba(248,228,176,0.15), 0 0.5px 2px #ffecb36a;
  margin-bottom: 26px;
  border-left: 7px solid #f8e4b0;
  transition: box-shadow 0.15s, border-color 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(248,228,176,0.25), 0 0.5px 10px #e3cb8490;
  border-left: 7px solid #c5ab6c;
}
.testimonial-content p {
  color: #1b1c22;
  font-size: 1.18rem;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}
.testimonial-details {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.98rem;
  color: #8c9098;
}
.testimonial-details span:last-child {
  color: #f8e4b0;
  font-weight: 700;
  letter-spacing: 2px;
}

@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 12px;
    border-radius: 11px;
    margin-bottom: 18px;
  }
}

/* Pricing Table ------------------------------------------------- */
.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 20px;
  background: #272830;
  padding: 20px 0 0 0;
  border-radius: 16px;
}
.pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 30px;
  background: transparent;
  border-bottom: 1px solid #f8e4b022;
  font-size: 1.16rem;
  color: #fff;
}
.pricing-row:last-child {
  border-bottom: none;
}
.pricing-title {
  color: #f8e4b0;
  font-family: 'Montserrat', Arial, sans-serif;
}
.pricing-cost {
  font-weight: bold;
  color: #fff;
  font-family: 'Roboto', Arial, sans-serif;
}
@media (max-width: 500px) {
  .pricing-row {
    padding: 13px 10px;
    font-size: 0.98rem;
  }
}

/* FAQ List ------------------------------------------------------- */
.faq-list h3 {
  font-size: 1.14rem;
  color: #f8e4b0;
  margin-bottom: 7px;
  margin-top: 22px;
  font-weight: 700;
}
.faq-list p {
  margin-bottom: 12px;
}

/* Contact Details ------------------------------------------------ */
.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 700px) {
  .contact-details { flex-direction: column; gap: 16px; }
}

/* Hero Section -------------------------------------------------- */
.hero {
  background: linear-gradient(120deg, #1b1c22 65%, #291f02 100%);
  padding: 52px 0 38px 0;
  border-bottom: 1.5px solid #f8e4b01c;
  margin-bottom: 44px;
}
.hero h1 {
  font-size: 2.7rem;
  color: #f8e4b0;
  text-shadow: 0 3px 16px #463b1c44;
  margin-bottom: 0.8rem;
}
.hero p {
  font-size: 1.18rem;
  color: #f9f8f5;
}
@media (max-width: 800px) {
  .hero {
    padding: 32px 0 28px 0;
    margin-bottom: 24px;
  }
  .hero h1 { font-size: 2.05rem; }
}

/* =========================================================
   HEADER & NAVIGATION
   ========================================================= */
header {
  width: 100%;
  background: #20212a;
  box-shadow: 0 3px 14px rgba(32,33,42,0.12);
  position: sticky;
  top: 0;
  z-index: 200;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 19px 18px 17px 18px;
}
.header-inner img[alt="Gloss Sweep"] {
  height: 46px;
  width: auto;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #f8e4b0;
  position: relative;
  padding: 6px 0;
}
.main-nav a:after {
  content: '';
  display: block;
  width: 0%;
  height: 2px;
  background: #f8e4b0;
  border-radius: 2px;
  margin: 0 auto;
  transition: width 0.2s;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  width: 80%;
}
@media (max-width: 1100px) {
  .main-nav {
    gap: 12px;
  }
}

.cta-btn {
  background: #f8e4b0;
  color: #25252f;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 26px;
  padding: 11px 32px;
  font-size: 1.12rem;
  box-shadow: 0 2px 7px #f8e4b031;
  margin-left: 22px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.19s, color 0.2s, transform 0.11s;
}
.cta-btn:hover, .cta-btn:focus {
  background: #bf994a;
  color: #fff;
  transform: translateY(-2px) scale(1.028);
  box-shadow: 0 4px 17px #f8e4b040;
}

/* Burger Menu (Mobile) ---------------------- */
.mobile-menu-toggle {
  display: none;
  background: #1b1c22;
  color: #f8e4b0;
  border: none;
  font-size: 2rem;
  border-radius: 12px;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  margin-left: 16px;
  cursor: pointer;
  z-index: 301;
  transition: background 0.18s, color 0.18s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #2f2108;
  color: #fff;
}

@media (max-width: 980px) {
  .main-nav {
    display: none;
  }
  .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* MOBILE MENU STYLES ------------------------------------- */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #1b1c22ef;
  box-shadow: 0 6px 40px #0e0803af;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.67,.15,.32,.98);
  z-index: 2999;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 34px;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 22px;
  background: #f8e4b0;
  color: #20212a;
  border: none;
  font-size: 2.1rem;
  border-radius: 10px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  box-shadow: 0 1.5px 8px #f8e4b028;
  z-index: 301;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.13s, color 0.13s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: #bf994a;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  margin-top: 90px;
  width: 100%;
}
.mobile-nav a {
  color: #f8e4b0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 15px 44px;
  width: 100%;
  border-bottom: 1px solid #f8e4b018;
  transition: background 0.10s, color 0.10s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #272830;
  color: #fff;
}
@media (max-width: 600px) {
  .mobile-nav a {
    font-size: 1.09rem;
    padding: 15px 18px;
  }
}

/* Cover entire viewport (iOS safe area fix) */
@supports (height: 100dvh) {
  .mobile-menu {
    height: 100dvh;
  }
}

/* =========================================================
   FOOTER
   ========================================================= */
footer {
  padding: 38px 0 19px 0;
  margin-top: 41px;
  background: #18181f;
  color: #f7efd9;
  box-shadow: 0 -2px 14px rgba(32,33,42,0.18);
}
.footer-nav {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #f8e4b0;
  font-size: 1rem;
  padding: 6px 8px;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.3px;
  transition: color 0.15s;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 40px;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 1rem;
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #c2b487;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  filter: brightness(1.1) opacity(0.87);
}
.footer-branding {
  text-align: center;
  font-size: 0.9rem;
  color: #7f816c;
  margin-top: 12px;
}
@media (max-width: 670px) {
  .footer-nav {
    gap: 13px;
  }
  .footer-contact {
    flex-direction: column;
    gap: 13px;
    font-size: 0.97rem;
    align-items: center;
  }
}

/* =========================================================
   BUTTONS & FORMS
   ========================================================= */
button, input[type='button'], input[type='submit'] {
  cursor: pointer;
  font-family: inherit;
  border: none;
  background: #f8e4b0;
  color: #18181f;
  padding: 12px 30px;
  border-radius: 21px;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.18s, color 0.17s, box-shadow 0.12s;
}
button:hover, button:focus,
input[type='button']:hover, input[type='button']:focus,
input[type='submit']:hover, input[type='submit']:focus {
  background: #d8be86;
  color: #22232b;
  box-shadow: 0 4px 14px #f8e4b051;
}

/* Cookie Consent Banner ================================================= */
#cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3999;
  background: #1b1c22;
  color: #fff;
  padding: 22px 18px 16px 18px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  box-shadow: 0 -6px 40px #0e080355;
  gap: 18px;
  border-top: 2px solid #f8e4b099;
  font-size: 1rem;
  animation: cookie-banner-in 0.42s cubic-bezier(.65,.13,.29,1);
  transition: transform 0.25s, opacity 0.2s;
}
@keyframes cookie-banner-in {
  from { transform: translateY(80px); opacity: 0; } to { transform: translateY(0); opacity: 1; }
}
#cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100px);
  transition: transform 0.22s, opacity 0.18s;
}
#cookie-banner .cookie-text {
  max-width: 430px;
  color: #edead6;
  font-size: 1rem;
  line-height: 1.6;
}
#cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 11px;
  flex-shrink: 0;
  align-items: center;
}
#cookie-accept, #cookie-reject, #cookie-settings {
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  background: #f8e4b0;
  color: #151516;
  transition: background 0.17s, color 0.16s;
}
#cookie-reject {
  background: #22232b;
  color: #f8e4b0;
  border: 1px solid #f8e4b0;
}
#cookie-accept:hover, #cookie-accept:focus {
  background: #bf994a;
  color: #fff;
}
#cookie-reject:hover, #cookie-reject:focus {
  background: #29231a;
  color: #fff7e1;
}
#cookie-settings {
  background: #18181f;
  color: #f8e4b0;
  border: 1px solid #f8e4b0;
}
#cookie-settings:hover, #cookie-settings:focus {
  background: #272830;
}
@media (max-width: 650px) {
  #cookie-banner {
    flex-direction: column;
    gap: 14px;
    font-size: 0.97rem;
    padding: 16px 7px 10px 7px;
  }
  #cookie-banner .cookie-text {
    max-width: 100%;
  }
  #cookie-banner .cookie-btns {
    gap: 8px;
  }
}

/* Cookie Settings Modal =============================================== */
#cookie-modal-overlay {
  position: fixed;
  z-index: 6000;
  top: 0; left: 0; width: 100vw; height: 100vh;
  background: rgba(32,33,42,0.72);
  display: none;
  align-items: center;
  justify-content: center;
  animation: fade-in 0.22s;
}
#cookie-modal-overlay.active {display: flex;}
@keyframes fade-in { from { opacity: 0; } to { opacity: 1; } }
#cookie-modal {
  background: #23232d;
  border-radius: 18px;
  box-shadow: 0 6px 48px #f8e4b02a;
  max-width: 410px;
  width: 93vw;
  padding: 34px 22px 30px 22px;
  position: relative;
  color: #edead6;
  animation: modal-in 0.3s cubic-bezier(.6,.2,.23,1);
  display: flex;
  flex-direction: column;
  gap: 13px;
}
@keyframes modal-in {
  from { transform: translateY(60px) scale(0.91); opacity: 0; } to { transform: translateY(0) scale(1); opacity: 1; }
}
#cookie-modal h2 {
  color: #f8e4b0;
  font-size: 1.2rem;
  margin-bottom: 10px;
  font-weight: 700;
}
#cookie-modal label {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 8px 0 6px 0;
  font-size: 1rem;
  color: #edead6;
  font-family: 'Roboto', Arial, sans-serif;
}
#cookie-modal input[type='checkbox'] {
  accent-color: #f8e4b0;
  width: 21px;
  height: 21px;
  margin-right: 5px;
}
.category-essential {
  color: #beb9a1;
  font-style: italic;
}
#cookie-modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
  background: #f8e4b0;
  color: #1b1c22;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.21rem;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background 0.13s, color 0.13s;
}
#cookie-modal-close:hover, #cookie-modal-close:focus {
  background: #bf994a;
  color: #fff;
}
#cookie-modal-actions {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  margin-top: 14px;
}
#cookie-modal-actions button {
  font-size: 1rem;
}
@media (max-width: 480px) {
  #cookie-modal {
    padding: 20px 6px 18px 14px;
    gap: 6px;
  }
}

/* =========================================================
   MISC
   ========================================================= */
::-webkit-scrollbar {
  width: 9px;
  background: #20212a;
}
::-webkit-scrollbar-thumb {
  background: #f8e4b033;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #f8e4b0;
}

/* White content area for certain elements if needed */
.bg-white {
  background: #fff;
  color: #151516;
  border-radius: 14px;
}

.text-section {
  color: #f0ede3;
  font-size: 1.06rem;
  margin-bottom: 20px;
}

/* Links in white boxes */
.bg-white a { color: #a98a24; text-decoration: underline; }
.bg-white a:hover { color: #7d6421; }

/* Section spacing override for main>section (for safety) */
main > section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
@media (max-width: 700px) {
  main > section {
    padding: 20px 6px 20px 7px;
    margin-bottom: 32px;
  }
}

/* Utility */
.hidden { display: none !important; }

/* Focus outline for accessibility */
a:focus, button:focus, .cta-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid #f8e4b0;
  outline-offset: 2px;
}

/* ==========================
   FLEX CONSISTENCY - Enforce for containers
   ========================== */
.card-container, .card-grid, .features, .features-grid, .content-grid, .text-image-section, .testimonial-cards, .footer-contact, .footer-nav, .mobile-nav, .contact-details {
  display: flex;
}

.card-container, .card-grid, .features-grid, .content-grid {
  flex-wrap: wrap;
  gap: 24px;
}

.text-image-section, .contact-details {
  align-items: center;
  gap: 30px;
}

@media (max-width: 768px) {
  .card-container, .card-grid, .features-grid, .content-grid, .testimonial-cards, .footer-contact, .footer-nav, .contact-details {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
}

/* Prevent overlapping (safety for all cards/etc.) */
.card, .feature-item, .testimonial-card {
  margin-bottom: 20px;
}
@media (max-width: 700px) {
  .card, .feature-item, .testimonial-card {
    margin-bottom: 12px;
  }
}

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