/* =====================================
   GlossSweep Auto-Auswahl: Elegant Classic CSS
   Responsive, elegant, timeless, all FLEXBOX layouts ONLY
   Developed by ChatGPT CSS Senior Dev
======================================= */
/* --- CSS RESET & NORMALIZE --- */
html, body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-size: 16px;
  height: 100%;
  background: #F6F8FA;
  color: #222;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
ul, ol {
  margin: 0 0 20px 20px;
  padding: 0;
}
ul {
  list-style-type: disc;
}
ol {
  list-style-type: decimal;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0 0 20px 0;
  font-family: 'Merriweather', Georgia, 'Times New Roman', Times, serif;
  color: #1B365D;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.17;
}
h1 {
  font-size: 2.4rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.4rem;
}
body, p, li, span, a {
  font-family: 'Lora', 'Times New Roman', Times, serif;
  color: #222;
}
p {
  margin: 0 0 16px 0;
  line-height: 1.65;
  font-size: 1rem;
}
a {
  color: #1B365D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F59B23;
  text-decoration: underline;
}

/* Typography scale */
@media (min-width: 600px) {
  h1 { font-size: 2.8rem; }
  h2 { font-size: 2.2rem; }
  h3 { font-size: 1.6rem; }
  p  { font-size: 1.10rem; }
}

/* --- GLOBAL SPACING UTILITIES --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px 0 rgba(30,32,41,.07);
  padding: 32px 24px;
  transition: box-shadow 0.23s cubic-bezier(.29,.13,.62,.97);
}
.card:hover, .card:focus-within {
  box-shadow: 0 6px 24px 0 rgba(30,32,41,.12);
}
.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;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 32px;
  background: #fff;
  border-left: 4px solid #F59B23;
  border-radius: 10px;
  box-shadow: 0 2px 8px 0 rgba(30,32,41,.08);
  margin-bottom: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* -------------------- HEADER & NAVIGATION -------------------- */
header {
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(27,54,93,.08);
  position: relative;
  z-index: 999;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0 10px 0;
  gap: 20px;
}
.main-nav > a img {
  height: 42px;
  width: auto;
  display: block;
}
.main-nav ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav ul li a {
  font-size: 1rem;
  font-family: inherit;
  color: #1B365D;
  padding: 6px 12px;
  border-radius: 5px;
  position: relative;
  transition: color 0.2s, background 0.18s;
}
.main-nav ul li a:hover, .main-nav ul li a:focus {
  color: #fff;
  background: #F59B23;
  text-decoration: none;
}
.main-nav .cta.primary {
  margin-left: 16px;
}

/* Hide mobile elements on desktop by default */
.mobile-menu-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: #1B365D;
  cursor: pointer;
  display: none;
  position: relative;
  padding: 7px 12px;
  transition: color 0.2s, background 0.12s;
  z-index: 1051;
}
.mobile-menu-toggle:focus {
  background: #f1eadf;
  outline: none;
  border-radius: 6px;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 10px 32px rgba(27,54,93,0.17);
  z-index: 1100;
  display: flex;
  flex-direction: column;
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(.65,.06,.37,1);
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 16px 16px 0 0;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: #1B365D;
  cursor: pointer;
  padding: 6px 9px;
  border-radius: 5px;
  transition: background 0.15s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #f1eadf;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 48px 28px;
}
.mobile-nav a {
  font-size: 1.3rem;
  padding: 14px 10px;
  border-radius: 7px;
  color: #1B365D;
  font-weight: 700;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #F59B23;
  color: #fff;
}

/* --- HERO SECTIONS --- */
.hero {
  background: #F6F8FA;
  padding: 60px 0 32px 0;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: #1B365D;
  font-size: 2.1rem;
}
@media (min-width: 600px) {
  .hero {
    padding: 92px 0 52px 0;
  }
  .hero h1 {
    font-size: 3rem;
  }
}

/* --- FEATURES GRID --- */
.features {
  padding: 48px 0 30px 0;
  background: #fff;
}
.feature-grid, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
  justify-content: flex-start;
}
.feature-card, .service-item {
  background: #F6F8FA;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(27,54,93,.07);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  flex: 1 1 290px;
  min-width: 250px;
  max-width: 340px;
  transition: box-shadow 0.2s, transform 0.22s;
  border: 1px solid #e5e9f2;
}
.feature-card img, .service-item img {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
}
.feature-card:hover, .service-item:hover {
  box-shadow: 0 8px 32px rgba(27,54,93,.12);
  transform: translateY(-6px) scale(1.02);
  z-index: 2;
}
.service-price {
  margin-top: 10px;
  padding: 4px 14px;
  background: #1B365D;
  color: #fff;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* --- CARDS (GENERIC) --- */
.card {
  /* already styled above */
}

/* --- TESTIMONIALS --- */
.testimonials {
  background: #f1f3f5;
  padding: 48px 0 40px 0;
}
.testimonials .testimonial-card {
  margin-bottom: 28px;
  background: #fff;
  border-left: 4px solid #1B365D;
  box-shadow: 0 2px 10px 0 rgba(30,32,41,.09);
  color: #232428;
}
.testimonial-card p {
  color: #232428;
  font-size: 1.1rem;
  font-style: italic;
}
.testimonial-card span {
  color: #8a8579;
  font-size: 1rem;
}
.testimonial-card strong {
  color: #1B365D;
}

/* --- ABOUT, TEAM, FAQ, LEGAL SECTIONS --- */
.brand-story, .team, .benefits, .faq, .legal, .about-preview, .import-service, .service-offers, .procedures, .locations, .contact-section {
  background: #fff;
  padding: 40px 0;
}
.brand-story h3, .team h3, .faq h3, .legal h2, .locations h3 {
  color: #F59B23;
}
ul, ol {
  padding-left: 25px;
}

/* --- FAQ --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.faq-item {
  background: #f6f8fa;
  border-left: 4px solid #F59B23;
  border-radius: 7px;
  padding: 18px 24px;
  margin-bottom: 16px;
  transition: box-shadow 0.19s;
}
.faq-item h3 {
  margin-bottom: 8px;
  font-size: 1.05rem;
  color: #1B365D;
}
.faq-item p {
  margin-bottom: 0;
}

/* --- PRICING & HIGHLIGHTS --- */
.pricing, .import-pricing,.price-info {
  background: #f6f8fa;
  border-radius: 7px;
  color: #1B365D;
  padding: 10px 22px;
  font-weight: 600;
  margin: 16px 0 0 0;
  display: inline-block;
}

/* --- CTA BUTTONS --- */
.cta,
.cta.primary {
  display: inline-block;
  padding: 13px 34px;
  background: #F59B23;
  color: #fff;
  font-family: inherit;
  font-size: 1.08rem;
  border: none;
  border-radius: 7px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  cursor: pointer;
  box-shadow: 0 2px 8px 0 rgba(245,155,35,0.07);
  transition: background 0.19s, box-shadow 0.16s, color 0.17s;
  margin-top: 8px;
  outline: none;
}
.cta.secondary {
  background: #fff;
  color: #1B365D;
  border: 1.7px solid #1B365D;
}
.cta.primary:hover, .cta.primary:focus, .cta:hover, .cta:focus {
  background: #1B365D;
  color: #fff;
  box-shadow: 0 6px 32px rgba(27,54,93,.16);
}
.cta.secondary:hover, .cta.secondary:focus {
  background: #F59B23;
  color: #fff;
  border-color: #F59B23;
}

/* --- FOOTER --- */
footer {
  background: #1B365D;
  color: #fff;
  padding: 34px 0 24px 0;
  margin-top: 40px;
}
footer .container {
  padding-bottom: 0;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 12px;
}
.footer-menu a {
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  transition: color 0.18s;
  opacity: 0.9;
}
.footer-menu a:hover, .footer-menu a:focus {
  color: #F59B23;
}
.footer-contact {
  color: #e0e8f5;
}
.footer-contact a {
  color: #F59B23;
  text-decoration: underline;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.footer-social a img {
  width: 27px;
  height: 27px;
  opacity: 0.83;
  filter: grayscale(40%) contrast(0.85);
  transition: filter 0.19s, opacity 0.17s;
}
.footer-social a:hover img, .footer-social a:focus img {
  opacity: 1;
  filter: none;
}

/* --- THANK YOU PAGE --- */
.thank-you {
  background: #f6f8fa;
  padding: 64px 0 36px 0;
}
.cta-more {
  background: #fff;
  padding: 32px 0 20px 0;
}
@media (min-width: 900px) {
  footer .content-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
  }
  .footer-contact, .footer-menu, .footer-social {
    margin-bottom: 0;
  }
}

/* --- ADDRESS & LOCATIONS BLOCKS --- */
.address-block, .opening-hours, .contact-info-block {
  background: #f1f3f5;
  border-radius: 9px;
  padding: 20px 28px 18px 21px;
  margin-top: 18px;
  color: #3a3a35;
  margin-bottom: 16px;
  box-shadow: 0 1px 4px 0 rgba(30,32,41,.05);
}
.opening-hours h3 {
  margin-bottom: 8px;
}

/* --- Responsive FLEX LAYOUTS --- */
@media (max-width: 1100px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  .feature-grid, .service-list {
    justify-content: center;
  }
}
@media (max-width: 900px) {
  .content-wrapper,
  footer .content-wrapper {
    flex-direction: column;
    gap: 24px;
  }
  .footer-menu, .footer-contact, .footer-social {
    margin-bottom: 16px;
  }
}
@media (max-width: 768px) {
  .feature-grid, .service-list {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .main-nav ul {
    display: none;
  }
  .main-nav .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .main-nav {
    gap: 0;
  }
}
@media (max-width: 768px) {
  .section {
    padding: 32px 6px;
    margin-bottom: 38px;
  }
  .hero, .features, .testimonials, .benefits, .brand-story, .cta, .team, .about-preview, .import-service, .service-offers, .faq, .procedures, .legal, .contact-section, .locations, .cta-more {
    padding-left: 0;
    padding-right: 0;
  }
  .content-wrapper, .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card, .faq-item {
    padding: 17px 11px;
  }
  .cta, .cta.primary {
    padding: 12px 18px;
    font-size: 1rem;
  }
}


/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 1300;
  width: 100%;
  background: #fffbe8;
  box-shadow: 0 -2px 16px 0 rgba(27,54,93,.11);
  padding: 22px 11px 16px 11px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  font-size: 1rem;
  color: #2d2a23;
  opacity: 1;
  animation: cookie-slidein 0.8s cubic-bezier(.32,.79,.56,1.23);
}
@keyframes cookie-slidein {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner.hide {
  opacity: 0;
  pointer-events: none;
  transition: opacity .5s;
}
.cookie-banner .cookie-text {
  flex: 1 1 360px;
  max-width: 700px;
  color: #232428;
}
.cookie-banner .cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.cookie-banner .cookie-btn {
  background: #1B365D;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  padding: 7px 20px;
  cursor: pointer;
  margin: 0 3px 0 0;
  transition: background 0.17s, color 0.14s;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: #1B365D;
  border: 1.5px solid #1B365D;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  background: #F59B23;
  color: #fff;
}
.cookie-banner .cookie-btn.settings:hover, .cookie-banner .cookie-btn.settings:focus {
  background: #1B365D;
  color: #fff;
  border-color: #1B365D;
}

/* -- COOKIE PREFERENCES MODAL -- */
.cookie-modal-overlay {
  position: fixed;
  z-index: 1500;
  top: 0; left: 0;width: 100vw; height: 100vh;
  background: rgba(27,54,93,.27);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  animation: cookie-fadein 0.6s;
}
@keyframes cookie-fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 13px;
  padding: 34px 28px 28px 28px;
  box-shadow: 0 6px 36px rgba(27,54,93,.18);
  min-width: 285px;
  max-width: 93vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.cookie-modal h3 {
  margin-bottom: 7px;
  font-size: 1.19rem;
  color: #1B365D;
}
.cookie-modal .cookie-cat {
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 7px 0 13px 0;
}
.cookie-modal .cookie-cat input[type="checkbox"] {
  width: 19px; height: 19px; accent-color: #F59B23; margin: 0;
}
.cookie-cat .always {
  color: #888;
  font-size: 0.99rem;
}
.cookie-modal .modal-actions {
  display: flex; gap: 14px; margin-top: 12px;
}
.cookie-modal .cookie-btn {
  padding: 9px 22px;
}
.cookie-modal .close-modal {
  position: absolute;
  top: 13px;
  right: 13px;
  background: transparent;
  border: none;
  font-size: 1.7rem;
  color: #1B365D;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.17s;
}
.cookie-modal .close-modal:hover, .cookie-modal .close-modal:focus {
  background: #f3f1ec;
}

@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    padding: 18px 6px 16px 6px;
    font-size: 0.98rem;
  }
  .cookie-modal {
    padding: 18px 10px 16px 10px;
    /* Use full width */
  }
}

/* ------------- UTILITIES ------------- */
.mb-0 {margin-bottom:0!important;} .mb-8 {margin-bottom:8px!important;} .mb-16{margin-bottom:16px!important;}
.mt-16{margin-top:16px!important;} .mt-24{margin-top:24px!important;}
.text-center{text-align:center!important;}

/* ------------- ELEGANT EFFECTS ------------- */
@media (hover: hover) {
  .feature-card:hover, .service-item:hover {
    box-shadow: 0 8px 32px rgba(27,54,93,.16);
    transform: translateY(-9px) scale(1.033);
  }
  .cta.primary:hover, .cta.primary:focus {
    background: #1B365D;
    color: #fff;
    box-shadow: 0 7px 34px rgba(27,54,93,.14);
  }
  .footer-social a:hover img, .footer-social a:focus img {
    opacity: 1;
    filter:none;
  }
}

/* ------------- PRINT (optional) ------------- */
@media print {
  .main-nav, .mobile-menu, .mobile-menu-toggle, footer, .cta, .cookie-banner, .cookie-modal-overlay {
    display: none !important;
  }
  body {
    color: #212121;
    background: #fff;
  }
}

/* Google Fonts Embedding - for Elegant Classic effect */
@import url('https://fonts.googleapis.com/css2?family=Lora:wght@400;700&family=Merriweather:wght@700&display=swap');

