/* --------------------------------------------------
   ROYAUME DE L’ACIER - VINTAGE RETRO STYLE CSS
   Brand: Élégant, professionnel, rétro-nostalgique
   Fonts: Playfair Display (display), Montserrat (body)
   Colors: #2A3142 (primary), #B3A577 (secondary), #F5F0EA (accent)
   -------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Playfair+Display:wght@700&display=swap');

:root {
  --color-primary: #2A3142;
  --color-secondary: #B3A577;
  --color-accent: #F5F0EA;
  --color-dark: #1a1c22;
  --color-light: #fffaf3;
  --color-contrast: #2A3142;
  --color-shadow: rgba(42,49,66,0.08);
  --color-border: #e2d8c3;
  --color-retro-red: #C1440E;
  --color-retro-blue: #3B5D7A;
  --color-retro-green: #6B7A3A;
  --color-retro-yellow: #F5C16C;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Montserrat', Arial, sans-serif;
  --radius-card: 14px;
  --radius-btn: 24px;
  --shadow-card: 0 4px 24px var(--color-shadow);
  --transition: 0.25s cubic-bezier(.4,0,.2,1);
}

html {
  box-sizing: border-box;
  font-size: 18px;
  background: var(--pattern-bg);
  scroll-behavior: smooth;
}
*, *:before, *:after { box-sizing: inherit; }

body {
  font-family: var(--font-body);
  color: var(--color-primary);
  background: var(--pattern-bg);
  margin: 0;
  min-height: 100vh;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--color-accent);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  margin-top: 0;
  margin-bottom: 0.5em;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.4rem;
  font-weight: 700;
  text-shadow: 1px 1px 0 var(--color-secondary), 2px 2px 0 #fff0;
  margin-bottom: 0.5em;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-retro-red);
  margin-bottom: 0.5em;
}
h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-retro-blue);
}
h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-retro-green);
}
p, ul, ol, li {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-primary);
}
.subheadline {
  font-size: 1.2rem;
  color: var(--color-secondary);
  font-family: var(--font-body);
  margin-bottom: 1em;
}

ul, ol {
  padding-left: 1.2em;
  margin: 0 0 1em 0;
}
li {
  margin-bottom: 0.5em;
}

/* Retro List Style */
ul {
  list-style: square inside;
}
ol {
  list-style: decimal inside;
}

/* Buttons & CTA */
.cta, button, .btn {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 0.7em 2em;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  background: var(--color-secondary);
  color: var(--color-primary);
  box-shadow: 0 2px 8px var(--color-shadow);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  letter-spacing: 0.04em;
  margin: 0.5em 0;
  outline: none;
  position: relative;
  z-index: 1;
}
.cta.primary, .btn.primary {
  background: var(--color-retro-red);
  color: #fff;
  border: 2px solid var(--color-retro-red);
}
.cta.primary:hover, .btn.primary:hover {
  background: #fff;
  color: var(--color-retro-red);
  box-shadow: 0 4px 16px var(--color-retro-red);
  transform: translateY(-2px) scale(1.03);
}
.cta.secondary, .btn.secondary {
  background: var(--color-secondary);
  color: var(--color-primary);
  border: 2px solid var(--color-secondary);
}
.cta.secondary:hover, .btn.secondary:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
  box-shadow: 0 4px 16px var(--color-secondary);
  transform: translateY(-2px) scale(1.03);
}

/* Retro Button Style */
button, .btn, .cta {
  font-family: var(--font-display);
  border-radius: 24px 8px 24px 8px;
  border-width: 2px;
  border-style: solid;
  border-color: var(--color-secondary);
  box-shadow: 0 2px 8px var(--color-shadow);
  background: linear-gradient(90deg, var(--color-retro-yellow) 0%, var(--color-secondary) 100%);
  color: var(--color-primary);
  text-shadow: 0 1px 0 #fff8;
  margin-right: 12px;
}
button:hover, .btn:hover, .cta:hover {
  background: linear-gradient(90deg, var(--color-secondary) 0%, var(--color-retro-yellow) 100%);
  color: var(--color-retro-red);
  box-shadow: 0 4px 16px var(--color-secondary);
}

/* Header & Navigation */
header {
  background: var(--color-primary);
  color: #fff;
  padding: 0;
  box-shadow: 0 2px 12px var(--color-shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 20px;
  min-height: 80px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 24px;
  align-items: center;
}
header nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.05rem;
  text-decoration: none;
  padding: 8px 0;
  position: relative;
  transition: color var(--transition);
}
header nav a:after {
  content: '';
  display: block;
  height: 2px;
  width: 0;
  background: var(--color-secondary);
  transition: width var(--transition);
  position: absolute;
  left: 0;
  bottom: 0;
}
header nav a:hover, header nav a:focus {
  color: var(--color-retro-yellow);
}
header nav a:hover:after, header nav a:focus:after {
  width: 100%;
}
header .cta.primary {
  margin-left: 24px;
  background: var(--color-retro-red);
  color: #fff;
  border: 2px solid var(--color-retro-red);
}
header .cta.primary:hover {
  background: #fff;
  color: var(--color-retro-red);
}

/* Mobile Burger Menu */
.mobile-menu-toggle {
  display: none;
  background: var(--color-retro-yellow);
  color: var(--color-primary);
  border: 2px solid var(--color-secondary);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
  margin-left: 16px;
  z-index: 102;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--color-secondary);
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--color-accent);
  box-shadow: 0 8px 32px var(--color-shadow);
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.7,0,.3,1);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 24px 24px 0 0;
  background: var(--color-retro-red);
  color: #fff;
  border: none;
  font-size: 2rem;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  align-items: flex-start;
  padding: 40px 32px;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--color-primary);
  text-decoration: none;
  padding: 12px 0;
  border-bottom: 1px dashed var(--color-secondary);
  width: 100%;
  transition: color var(--transition), background var(--transition);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-retro-red);
  background: var(--color-retro-yellow);
}

/* Hide nav on mobile, show burger */
@media (max-width: 1024px) {
  header nav, header .cta.primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(120deg, var(--color-retro-yellow) 0%, var(--color-accent) 100%);
  padding: 60px 0 40px 0;
  border-bottom: 6px double var(--color-secondary);
  box-shadow: 0 8px 32px var(--color-shadow);
}
.hero .container {
  align-items: center;
  justify-content: center;
}
.hero .content-wrapper {
  align-items: center;
  text-align: center;
  gap: 24px;
}

/* Feature Grid & Cards */
.feature-grid, .service-grid, .team-list, .gallery, .faq, .testimonial-list, .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.feature-grid > div, .service-grid > div, .team-member, .gallery > div, .faq > div {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 28px 24px;
  flex: 1 1 260px;
  min-width: 240px;
  margin-bottom: 20px;
  border: 2px solid var(--color-border);
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature-grid > div:hover, .service-grid > div:hover, .team-member:hover, .gallery > div:hover, .faq > div:hover {
  box-shadow: 0 8px 32px var(--color-retro-yellow);
  transform: translateY(-4px) scale(1.03);
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px;
  border: 2px solid var(--color-border);
}

.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;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  border: 2px solid var(--color-retro-yellow);
  margin-bottom: 20px;
  min-width: 260px;
  max-width: 420px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px var(--color-retro-blue);
  transform: translateY(-4px) scale(1.03);
}
.testimonial-info {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-retro-blue);
  font-style: italic;
}
.star-rating {
  color: var(--color-retro-yellow);
  font-size: 1.2rem;
  letter-spacing: 0.1em;
  font-family: var(--font-display);
}

.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-bottom: 24px;
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  font-family: var(--font-body);
}
.pricing-table th {
  background: var(--color-retro-yellow);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.pricing-table tr:last-child td {
  border-bottom: none;
}

.discounts {
  background: var(--color-retro-yellow);
  color: var(--color-primary);
  border-radius: var(--radius-card);
  padding: 16px 24px;
  font-family: var(--font-body);
  margin-bottom: 20px;
  box-shadow: 0 2px 8px var(--color-shadow);
}

/* Footer */
footer {
  background: var(--color-primary);
  color: #fff;
  padding: 40px 0 0 0;
  border-top: 6px double var(--color-secondary);
  font-size: 1rem;
}
footer .container {
  flex-direction: column;
  gap: 24px;
  align-items: center;
}
.footer-navigation {
  display: flex;
  flex-direction: row;
  gap: 12px;
  justify-content: center;
  align-items: center;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.footer-navigation a {
  color: var(--color-retro-yellow);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1rem;
  transition: color var(--transition);
}
.footer-navigation a:hover {
  color: var(--color-secondary);
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-family: var(--font-body);
  font-size: 1rem;
}
.newsletter-signup {
  background: var(--color-retro-yellow);
  color: var(--color-primary);
  border-radius: var(--radius-card);
  padding: 16px 24px;
  font-family: var(--font-body);
  margin-bottom: 20px;
  box-shadow: 0 2px 8px var(--color-shadow);
  text-align: center;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--color-retro-yellow);
  color: var(--color-primary);
  box-shadow: 0 -2px 16px var(--color-shadow);
  padding: 24px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 9999;
  font-family: var(--font-body);
  font-size: 1rem;
  animation: cookieBannerIn 0.5s cubic-bezier(.7,0,.3,1);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner .cookie-btn {
  margin: 0 8px;
  padding: 0.5em 1.5em;
  border-radius: var(--radius-btn);
  border: 2px solid var(--color-secondary);
  font-family: var(--font-display);
  font-size: 1rem;
  background: var(--color-secondary);
  color: var(--color-primary);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.cookie-banner .cookie-btn.accept {
  background: var(--color-retro-green);
  color: #fff;
  border-color: var(--color-retro-green);
}
.cookie-banner .cookie-btn.accept:hover {
  background: #fff;
  color: var(--color-retro-green);
}
.cookie-banner .cookie-btn.reject {
  background: var(--color-retro-red);
  color: #fff;
  border-color: var(--color-retro-red);
}
.cookie-banner .cookie-btn.reject:hover {
  background: #fff;
  color: var(--color-retro-red);
}
.cookie-banner .cookie-btn.settings {
  background: var(--color-secondary);
  color: var(--color-primary);
}
.cookie-banner .cookie-btn.settings:hover {
  background: var(--color-primary);
  color: var(--color-secondary);
}

/* Cookie Modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0; right: 0; bottom: 0;
  background: rgba(42,49,66,0.4);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s cubic-bezier(.7,0,.3,1);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--color-accent);
  border-radius: var(--radius-card);
  box-shadow: 0 8px 32px var(--color-shadow);
  padding: 32px 28px;
  max-width: 420px;
  width: 90vw;
  font-family: var(--font-body);
  color: var(--color-primary);
  animation: modalIn 0.4s cubic-bezier(.7,0,.3,1);
}
@keyframes modalIn {
  from { transform: translateY(40px) scale(0.95); opacity: 0; }
  to { transform: translateY(0) scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-family: var(--font-display);
  color: var(--color-retro-red);
  margin-bottom: 16px;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.cookie-modal .cookie-toggle {
  width: 40px;
  height: 24px;
  border-radius: 12px;
  background: var(--color-secondary);
  position: relative;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-modal .cookie-toggle[aria-checked="true"] {
  background: var(--color-retro-green);
}
.cookie-modal .cookie-toggle .toggle-knob {
  position: absolute;
  left: 2px; top: 2px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: left var(--transition);
}
.cookie-modal .cookie-toggle[aria-checked="true"] .toggle-knob {
  left: 18px;
}
.cookie-modal .cookie-actions {
  display: flex;
  gap: 16px;
  margin-top: 24px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  font-size: 1rem;
  padding: 0.5em 1.5em;
  border-radius: var(--radius-btn);
  border: 2px solid var(--color-secondary);
  font-family: var(--font-display);
  background: var(--color-secondary);
  color: var(--color-primary);
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.cookie-modal .cookie-btn.accept {
  background: var(--color-retro-green);
  color: #fff;
  border-color: var(--color-retro-green);
}
.cookie-modal .cookie-btn.reject {
  background: var(--color-retro-red);
  color: #fff;
  border-color: var(--color-retro-red);
}
.cookie-modal .cookie-btn.settings {
  background: var(--color-secondary);
  color: var(--color-primary);
}

/* Retro Patterns & Details */
.section, .feature-grid > div, .service-grid > div, .team-member, .gallery > div, .faq > div, .card, .testimonial-card {
  background: repeating-linear-gradient(135deg, #fff 0 12px, #f5f0ea 12px 24px);
  border: 2px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

/* Decorative Borders */
.section, .card, .testimonial-card {
  border-radius: 18px 8px 18px 8px;
  border-width: 3px;
  border-style: double;
  border-color: var(--color-secondary);
}

/* Client Logos */
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 12px;
  font-family: var(--font-display);
  color: var(--color-retro-blue);
  font-size: 1.1rem;
}
.client-logos span {
  background: var(--color-retro-yellow);
  color: var(--color-primary);
  border-radius: 8px;
  padding: 6px 16px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px var(--color-shadow);
}

/* Map Section */
.map {
  background: var(--color-retro-yellow);
  color: var(--color-primary);
  border-radius: var(--radius-card);
  padding: 16px 24px;
  font-family: var(--font-body);
  margin-bottom: 20px;
  box-shadow: 0 2px 8px var(--color-shadow);
}

/* Contact Details */
.contact-details {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 20px 24px;
  margin-bottom: 20px;
  border: 2px solid var(--color-border);
  font-family: var(--font-body);
}

/* Gallery */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.gallery > div {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 20px;
  border: 2px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.gallery > div:hover {
  box-shadow: 0 8px 32px var(--color-retro-blue);
  transform: translateY(-4px) scale(1.03);
}

/* FAQ */
.faq {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.faq > div {
  background: #fff;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 24px 20px;
  flex: 1 1 260px;
  min-width: 220px;
  margin-bottom: 20px;
  border: 2px solid var(--color-border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.faq > div:hover {
  box-shadow: 0 8px 32px var(--color-retro-green);
  transform: translateY(-4px) scale(1.03);
}

/* Spacing & Alignment Patterns */
.section { margin-bottom: 60px; padding: 40px 20px; }
.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; }
.feature-item { display: flex; flex-direction: column; align-items: flex-start; gap: 15px; }

/* Responsive Design */
@media (max-width: 1024px) {
  .feature-grid, .service-grid, .team-list, .gallery, .faq, .testimonial-list, .testimonial-slider, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-grid > div, .service-grid > div, .team-member, .gallery > div, .faq > div, .testimonial-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  html { font-size: 16px; }
  .container { padding: 0 10px; }
  .section { padding: 28px 8px; margin-bottom: 40px; }
  .hero { padding: 36px 0 24px 0; }
  .content-wrapper, .footer .content-wrapper { gap: 16px; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
  .feature-grid, .service-grid, .team-list, .gallery, .faq, .testimonial-list, .testimonial-slider, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div, .service-grid > div, .team-member, .gallery > div, .faq > div, .testimonial-card {
    min-width: 0;
    width: 100%;
    max-width: 100%;
  }
  .footer-navigation {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 18px 8px;
    font-size: 0.95rem;
  }
}

/* Utility Classes */
.text-center { text-align: center; }
.mt-2 { margin-top: 2em; }
.mb-2 { margin-bottom: 2em; }

/* Accessibility & Focus */
a, button, .cta, .btn, .cookie-btn {
  outline: none;
  transition: box-shadow var(--transition), border-color var(--transition);
}
a:focus, button:focus, .cta:focus, .btn:focus, .cookie-btn:focus {
  box-shadow: 0 0 0 3px var(--color-retro-yellow);
  border-color: var(--color-retro-yellow);
}

/* Hide visually but keep accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Prevent overlapping */
.card, .testimonial-card, .feature-grid > div, .service-grid > div, .team-member, .gallery > div, .faq > div {
  margin-bottom: 20px;
}

/* Z-index stacking for overlays */
.mobile-menu, .cookie-modal-overlay {
  z-index: 2000;
}

/* Micro-interactions */
.cta, .btn, button, .cookie-btn {
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.card, .testimonial-card, .feature-grid > div, .service-grid > div, .team-member, .gallery > div, .faq > div {
  transition: box-shadow var(--transition), transform var(--transition);
}

/* End of CSS */
