/* --- 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, 
main, 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; }
*, *:before, *:after { box-sizing: inherit; }
body { min-height: 100vh; line-height: 1.6; background: #FAFAFA; }
img { max-width: 100%; display: block; height: auto; border: 0; }
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; background: none; outline: none; }
button, input, select, textarea { font: inherit; border: none; background: none; outline: none; padding: 0; margin: 0; }

/* --- FONT IMPORTS (Google Fonts) --- */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Roboto:wght@300;400;500;700&display=swap');

:root {
  --color-primary: #32547C;
  --color-secondary: #FAFAFA;
  --color-accent: #F1C93A;
  --color-dark: #16181f;
  --color-card: #fff;
  --color-footer-bg: #222531;
  --color-footer-text: #E5E6EC;
  --color-border: #e4e5e7;
  --color-shadow: rgba(30,36,63,0.10);
  --color-shadow-hover: rgba(30,36,63,0.18);
  --color-testimonial-bg: #fff;
  --color-testimonial-text: #212325;
  --color-btn-text: #2E3138;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

body {
  background: var(--color-secondary);
  color: var(--color-dark);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: 0.01em;
  color: var(--color-primary);
}
h1 { font-size: 2.5rem; line-height: 1.13; }
h2 { font-size: 2rem; line-height: 1.23; }
h3 { font-size: 1.375rem; }
h4 { font-size: 1.125rem; }
h1, h2, h3 { text-rendering: optimizeLegibility; }
p, li {
  font-size: 1rem;
  margin-bottom: 12px;
  font-weight: 400;
}
strong {
  font-weight: 600;
  color: var(--color-primary);
}

/* --- CONTAINER & LAYOUT SYSTEM --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

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

/* --- HEADER/NAVIGATION --- */
header {
  background: #fff;
  border-bottom: 1px solid var(--color-border);
  padding: 0;
  position: relative;
  z-index: 1001;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 18px;
  padding-bottom: 18px;
}

header img[alt="Vivid Cloth Interieur"] {
  height: 48px;
  margin-right: 20px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav a {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.02em;
  font-size: 1.05rem;
  padding: 6px 0;
  transition: color 0.18s;
  color: var(--color-primary);
  position: relative;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-accent);
}

.btn-primary {
  padding: 12px 32px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  background: var(--color-accent);
  color: var(--color-btn-text);
  border-radius: 28px;
  box-shadow: 0 3px 12px var(--color-shadow);
  border: none;
  transition: background 0.23s, box-shadow 0.19s, transform 0.17s;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}
.btn-primary:hover, .btn-primary:focus {
  background: #eed03d;
  box-shadow: 0 6px 24px var(--color-shadow-hover);
  transform: translateY(-2px) scale(1.02);
}

/* --- MOBILE NAVIGATION --- */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: transparent;
  color: var(--color-primary);
  border: none;
  cursor: pointer;
  z-index: 1201;
  padding: 6px 14px;
  margin-left: 8px;
  border-radius: 4px;
  transition: background .2s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: rgba(49, 84, 124, 0.11);
}

.mobile-menu {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(18, 22, 34, 0.97);
  z-index: 1300;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.57,0.25,0.25,1), opacity 0.23s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  font-size: 2.2rem;
  background: transparent;
  color: var(--color-accent);
  border: none;
  margin: 22px 34px 12px 0;
  cursor: pointer;
  z-index: 1310;
  transition: color 0.21s, background 0.15s;
  border-radius: 4px;
  padding: 0 10px;
}
.mobile-menu-close:focus, .mobile-menu-close:hover {
  color: #fff3bd;
  background: rgba(241,201,58,0.08);
}
.mobile-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 48px;
  gap: 26px;
}
.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: left;
  padding: 8px 0;
  border-radius: 5px;
  width: 100%;
  transition: background .16s, color .18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}

@media (max-width: 1024px) {
  .main-nav {
    gap: 20px;
  }
  header .btn-primary {
    padding: 10px 22px;
    font-size: 1rem;
  }
}
@media (max-width: 830px) {
  header .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .main-nav {
    gap: 11px;
  }
}
@media (max-width: 820px) {
  .main-nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle { display: block; }
}

@media (min-width:821px) {
  .mobile-menu { display: none !important; }
}

/* --- HERO SECTIONS --- */
.hero-section {
  background: linear-gradient(110deg, #fdf8ee 87%, #f1c93a17 100%);
  padding: 54px 0 44px 0;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-section .content-wrapper {
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}
.hero-section h1 {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 14px;
}
.hero-section p {
  max-width: 630px;
  font-size: 1.13rem;
  color: #2e3138;
  margin-bottom: 0;
}
@media (max-width: 700px) {
  .hero-section { padding: 32px 0 24px 0; }
  .hero-section h1 { font-size: 2rem; }
}

/* --- FLEX LAYOUTS, CARDS, FEATURES --- */
.features-section .features-grid,
.services-section .services-grid,
.project-types-section .unique-aspects-list,
.project-testimonials-section .testimonials-grid,
.testimonials-section .testimonials-grid,
.blog-list-section .blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  align-items: stretch;
  justify-content: flex-start;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 15px;
  background: var(--color-card);
  border-radius: 12px;
  box-shadow: 0 1.5px 7px var(--color-shadow);
  padding: 28px 28px 24px 28px;
  margin-bottom: 20px;
  min-width: 200px;
  max-width: 350px;
  border: 1.5px solid #f6f7f9;
  transition: box-shadow 0.22s, border 0.17s, transform 0.18s;
}
.feature-item img {
  height: 36px; width: 36px;
  margin-bottom: 7px;
}
.feature-item h3 { font-size: 1.18rem; color: var(--color-primary); }
.feature-item p { margin-bottom: 0; }
.feature-item:hover {
  box-shadow: 0 7px 24px var(--color-shadow-hover);
  border: 1.5px solid var(--color-accent);
  transform: translateY(-3px) scale(1.025);
}

@media (max-width: 900px) {
  .features-section .features-grid, .services-section .services-grid { gap: 20px; }
}
@media (max-width: 700px) {
  .features-section .features-grid, .services-section .services-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .feature-item { min-width: 0; max-width: 100%; }
}

.services-grid, .features-grid {
  margin-bottom: 24px;
}

.services-grid .service-category {
  background: var(--color-card);
  border-radius: 12px;
  box-shadow: 0 1.5px 7px var(--color-shadow);
  padding: 28px 24px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  min-width: 200px;
  border: 1.2px solid #f6f7f9;
  transition: box-shadow 0.17s, border 0.15s, transform 0.17s;
}
.services-grid .service-category:hover {
  box-shadow: 0 7px 24px var(--color-shadow-hover);
  border: 1.2px solid var(--color-accent);
  transform: translateY(-2px) scale(1.018);
}

/* --- TESTIMONIALS & CARDS --- */
.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
  align-items: stretch;
  justify-content: flex-start;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
  background: var(--color-testimonial-bg);
  color: var(--color-testimonial-text);
  border-radius: 14px;
  box-shadow: 0 3px 14px var(--color-shadow);
  padding: 20px 32px;
  margin-bottom: 20px;
  border-left: 5px solid var(--color-accent);
  font-style: italic;
  min-width: 220px;
  max-width: 420px;
  transition: box-shadow 0.17s, border-color 0.18s;
}
.testimonial-card strong {
  font-size: 1rem;
  color: var(--color-primary);
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px var(--color-shadow-hover);
  border-left: 5px solid #ffe488;
}
@media (max-width:870px) {
  .testimonials-grid { flex-direction: column; gap: 16px; }
  .testimonial-card { max-width: 100%; }
}

/* --- BLOG POST LIST --- */
.blog-post-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-post-list article {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 2px 10px var(--color-shadow);
  padding: 28px 25px 22px 25px;
  margin-bottom: 20px;
  min-width: 220px;
  max-width: 360px;
  transition: box-shadow .17s, transform .18s;
  border-left: 4px solid var(--color-accent);
}
.blog-post-list article h3 { font-size: 1.11rem; margin-bottom: 10px; }
.blog-post-list article:hover {
  box-shadow: 0 9px 20px var(--color-shadow-hover);
  transform: translateY(-2px) scale(1.015);
}
@media (max-width:750px) {
  .blog-post-list { flex-direction: column; gap: 12px; }
  .blog-post-list article { max-width: 100%; }
}

/* --- FOOTER --- */
footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 0;
}
footer .container {
  padding-top: 38px;
  padding-bottom: 30px;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 38px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-main-nav, .footer-secondary-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-main-nav a, .footer-secondary-nav a {
  color: var(--color-footer-text);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.02em;
  opacity: 0.93;
  transition: color 0.16s, opacity 0.16s;
}
.footer-main-nav a:hover, .footer-secondary-nav a:hover {
  color: var(--color-accent);
  opacity: 1;
}
.contact-footer {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 0.98rem;
}
.contact-footer img {
  height: 20px; width: 20px; vertical-align: middle; margin-right: 8px;
}
.footer-social {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 10px;
}
.footer-social a {
  height: 36px; width: 36px; border-radius: 50%; background: #232748; display: flex; align-items: center; justify-content: center;
  transition: background .17s;
}
.footer-social img { height: 23px; width: 23px; }
.footer-social a:hover { background: var(--color-accent); }

@media (max-width:820px) {
  footer .content-wrapper { flex-direction: column; gap: 22px; }
  .footer-main-nav, .footer-secondary-nav { gap: 13px; }
}

/* --- SECTION LISTS & VALUES --- */
.values-list, .features-list, .services-list, .unique-aspects-list, .about-history-section ul, .core-values ul {
  margin: 10px 0 0 0;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.values-list li, .features-list li, .services-list li, .unique-aspects-list li, .core-values ul li, .about-history-section ul li {
  list-style: none;
  background: url('assets/icons/icon-check-gold.svg') left 4px center/16px 16px no-repeat;
  padding-left: 28px;
  color: #2e3138;
  font-size: 1rem;
  min-height: 24px;
}

/* --- CTA SECTION --- */
.cta-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(96deg, #fffbe5 84%, #F1C93A11 100%);
  border-radius: 14px;
}
.cta-section .btn-primary {
  font-size: 1.2rem;
  padding: 18px 38px;
  box-shadow: 0 0 0 transparent, 0 3px 12px var(--color-shadow);
}

/* --- CONTACT INFO SHORT/EXTENDED --- */
.contact-info-short, .contact-info-extended {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 18px 0 10px 0;
}
.contact-info-short p, .contact-info-extended p {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #2e3138;
  font-size: 0.98rem;
}
.contact-info-short img, .contact-info-extended img {
  height: 21px;
  width: 21px;
}

/* --- SPECIAL SECTIONS --- */
.privacy-section, .gdpr-section, .cookie-policy-section, .terms-section {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 1.2px 6px var(--color-shadow);
  margin-bottom: 60px;
  padding: 40px 22px;
}

.thankyou-section {
  margin-bottom: 60px;
  padding: 54px 0;
  text-align: center;
}
.thankyou-section .content-wrapper {
  align-items: center;
  justify-content: center;
  gap: 18px;
}

/* --- MAP & VISIT INFORMATION --- */
.map-location, .visit-information {
  margin-top: 27px;
  background: #F6F8FB;
  padding: 18px 20px;
  border-radius: 10px;
  box-shadow: 0 1px 4px var(--color-shadow);
  color: #2e3138;
}

.visit-information h3 {
  color: var(--color-primary);
  font-size: 1.18rem;
  margin-bottom: 13px;
}
.visit-information ul {
  gap: 7px;
}

/* --- RESPONSIVE FLEX-LAYOUTS --- */
@media (max-width: 768px) {
  .content-wrapper {
    gap: 10px;
  }
  .features-grid, .services-grid, .testimonials-grid, .blog-post-list {
    flex-direction: column;
    gap: 12px;
  }
  .section, .cta-section, .privacy-section, .gdpr-section, .terms-section, .cookie-policy-section {
    padding: 28px 10px;
    margin-bottom: 32px;
  }
  .hero-section { padding: 24px 0 16px 0; }
  .testimonials-grid { gap: 10px; }
}

@media (max-width:500px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.25rem; }
  h3 { font-size: 1.05rem; }
  .btn-primary { font-size: 0.97rem; padding: 10px 18px; }
  footer .container { padding-top: 20px; padding-bottom: 10px; }
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff8ec;
  box-shadow: 0 -4px 24px var(--color-shadow);
  border-top: 2.5px solid var(--color-accent);
  padding: 22px 18px 18px 18px;
  z-index: 4002;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  transition: transform 0.3s cubic-bezier(0.7,0,0.25,1), opacity 0.2s;
}
.cookie-banner.hide {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}
.cookie-banner p {
  margin-bottom: 0;
  color: #3d3414;
  font-size: 0.98rem;
  max-width: 400px;
}
.cookie-banner .cookie-btn-group {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  border-radius: 23px;
  border: none;
  padding: 9px 22px;
  background: #fff;
  color: var(--color-primary);
  cursor: pointer;
  transition: background .18s, box-shadow .18s, color .17s;
  box-shadow: 0 1.2px 4px var(--color-shadow);
}
.cookie-btn.accept {
  background: var(--color-accent);
  color: var(--color-btn-text);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #ffe486;
}
.cookie-btn.reject {
  background: #eee6c6;
  color: #805a01;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #ffe486;
  color: #2e3138;
}
.cookie-btn.settings {
  background: transparent;
  color: var(--color-primary);
  border: 1px solid #bfa212;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #f1c93a20;
  color: var(--color-dark);
}
@media (max-width:600px) {
  .cookie-banner {
    flex-direction: column;
    gap: 18px;
    padding-left: 10px; padding-right: 10px;
  }
}

/* --- COOKIE CONSENT PREFERENCES MODAL --- */
.cookie-modal-backdrop {
  position: fixed; left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(18,22,34,0.54);
  z-index: 5000;
  pointer-events: auto;
  transition: opacity 0.21s;
  opacity: 1;
}
.cookie-modal {
  position: fixed;
  left: 0; right: 0; top: 50%;
  transform: translateY(-50%);
  margin: 0 auto;
  max-width: 420px;
  background: #fffbe8;
  border-radius: 15px;
  box-shadow: 0 13px 38px var(--color-shadow-hover);
  padding: 32px 26px 26px 26px;
  z-index: 5200;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  color: var(--color-primary);
  font-size: 1.13rem;
  margin-bottom: 7px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px; right: 25px;
  font-size: 1.62rem;
  background: transparent;
  border: none;
  color: var(--color-accent);
  cursor: pointer;
}
.cookie-preferences-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 17px;
}
.cookie-preferences-list label {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  color: #333108;
  font-family: var(--font-body);
  font-weight: 500;
}
.cookie-toggle {
  appearance: none;
  width: 44px; height: 24px;
  border-radius: 12px;
  background: #e2e2e2;
  position: relative;
  outline: none;
  transition: background .17s;
  cursor: pointer;
}
.cookie-toggle:checked {
  background: var(--color-accent);
}
.cookie-toggle:before {
  content: "";
  position: absolute;
  left: 3px; top: 3px;
  height: 18px; width: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left .18s;
  box-shadow: 0 1px 2px rgba(49, 84, 124, 0.09);
}
.cookie-toggle:checked:before {
  left: 23px;
}
.cookie-preferences-list .always-on {
  color: #af9804;
  font-size: 0.94rem;
  margin-left: 4px;
}
.cookie-modal .cookie-btn-group {
  display: flex; gap: 16px; margin-top: 12px;
}
@media (max-width: 500px) {
  .cookie-modal { max-width: 97vw; padding: 20px 6vw; }
  .cookie-modal-close { right: 8vw; }
}

/* --- UTILITY CLASSES & GENERAL SPACING --- */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.gap-1 { gap: 8px; }
.gap-2 { gap: 16px; }
.gap-3 { gap: 24px; }

/* --- LINK/FOCUS/ACTIVE --- */
a:focus, button:focus, .btn-primary:focus, .cookie-btn:focus, .cookie-btn.accept:focus {
  outline: 2.5px solid var(--color-accent);
  outline-offset: 2.2px;
}

::selection {
  background: var(--color-accent);
  color: #fff;
}

/* --- ELEVATED SHADOW ON HOVER (CARD/BUTTONS) --- */
.card-container, .card, .card-content {
  /* legacy for additional possible cards */
}

/* --- SPECIALS: ANIMATIONS & TRANSITIONS --- */
@media (prefers-reduced-motion: no-preference) {
  .btn-primary, .cookie-btn, .cookie-btn-group > * {
    transition: background 0.22s, color 0.19s, box-shadow 0.19s, transform 0.19s;
  }
  .mobile-menu, .mobile-menu.open {
    transition: transform 0.35s cubic-bezier(0.57,0.25,0.25,1), opacity 0.23s;
  }
  .mobile-nav a {
    transition: background .13s, color .19s;
  }
  .feature-item, .service-category, .testimonial-card, .blog-post-list article {
    transition: box-shadow .22s, border .17s, transform .17s;
  }
}

/* --- END OF STYLE --- */
