:root {
  /* Updated theme (orange + blue palette) */
  --plum: #ff9800; /* brand primary (orange) */
  --mauve: #ec8800; /* deeper orange */
  --rose: #ffa424; /* light orange accent */
  --peach: #688db9; /* blue accent */
  --sand: #789dca; /* lighter blue */
  --bg: color-mix(in srgb, #ff9800 8%, #ffffff); /* warm paper */
  --bg-alt: color-mix(in srgb, var(--sand) 18%, #ffffff);
  --text: #2a2a2a;
  --muted: #6b6b6b;
  --brand: var(--plum);
  --accent: var(--peach);
  --brand-contrast: #ffffff;
  --card: color-mix(in srgb, var(--sand) 22%, #ffffff);
  --border: color-mix(in srgb, var(--peach) 15%, #eeeeee);
  --shadow: 0 20px 45px rgba(255, 152, 0, 0.14);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, color-mix(in srgb, var(--rose) 12%, #ffffff) 45%, color-mix(in srgb, var(--sand) 18%, #ffffff) 100%);
}

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

/* 3D utilities */
.tiltable {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.tiltable .tilt-depth {
  transform: translateZ(35px);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 500ms ease, transform 600ms cubic-bezier(.2,.65,.2,1);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Ripple effect for buttons */
.btn { position: relative; overflow: hidden; }
.ripple-ink {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  background: rgba(255,255,255,0.5);
  pointer-events: none;
  animation: ripple 600ms ease-out;
}

@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}

.container {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 20px clamp(16px, 5vw, 60px);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(16px, 4vw, 28px);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.98), rgba(255, 168, 38, 0.18));
  border: 1px solid rgba(255, 152, 0, 0.18);
  border-radius: 999px;
  box-shadow: 0 18px 40px rgba(255, 152, 0, 0.22);
  backdrop-filter: blur(10px);
}

.logo { 
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo img {
  width: 180px;
  height: 100px;
  object-fit: contain;
}

.logo-text strong {
  display: block;
  line-height: 1.1;
}

.logo small {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.menu a {
  margin: 0 12px;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s ease;
}

.menu a:hover {
  color: var(--brand);
}

.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
  border-radius: 999px;
}

.menu a:hover::after,
.menu a[aria-current="page"]::after {
  transform: scaleX(1);
}

.menu a[aria-current="page"] {
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  box-shadow:
    0 10px 20px rgba(0, 89, 84, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  transform-style: preserve-3d;
  perspective: 900px;
  position: relative;
  overflow: hidden;
}

.btn.primary {
  background: linear-gradient(180deg, color-mix(in srgb, var(--brand) 92%, #ffffff), var(--brand));
  color: #fff;
  border-color: var(--brand);
  box-shadow:
    0 14px 28px rgba(0, 89, 84, 0.28),
    0 6px 10px rgba(0, 89, 84, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.45);
}

.btn:not(.primary) {
  border-color: rgba(0, 89, 84, 0.18);
  color: var(--brand);
  background: linear-gradient(180deg, #ffffff, color-mix(in srgb, var(--peach) 18%, #ffffff));
  box-shadow:
    0 10px 18px rgba(0, 89, 84, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.6);
}

.btn.ghost {
  background: transparent;
  border-color: rgba(93, 193, 185, 0.5);
  color: var(--rose);
}

.btn:hover {
  opacity: 0.98;
  transform: translateY(-2px) translateZ(8px);
  box-shadow: 0 16px 26px rgba(0, 89, 84, 0.22);
}

.btn:active {
  transform: translateY(0) scale(0.98) translateZ(0);
  box-shadow: 0 6px 12px rgba(15, 76, 129, 0.15);
}

.btn:focus-visible {
  outline: 3px solid rgba(242, 140, 27, 0.35);
  outline-offset: 2px;
}

/* glossy sweep */
.btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -30%;
  width: 60%;
  height: 200%;
  transform: rotate(25deg) translateX(-120%);
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.35) 45%, rgba(255,255,255,0) 100%);
  transition: transform 600ms ease;
  pointer-events: none;
}

.btn:hover::before { transform: rotate(25deg) translateX(220%); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  gap: 30px;
  margin-top: 40px;
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.08), rgba(120, 157, 202, 0.18));
  padding: 42px;
  border-radius: 26px;
  border: 1px solid rgba(255, 152, 0, 0.18);
  box-shadow: var(--shadow);
  backdrop-filter: blur(6px);
}

.hero img {
  width: 100%;
  border-radius: 20px;
}

.hero h1 {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 12px 0;
  color: var(--text);
  background: linear-gradient(135deg, var(--text) 0%, var(--brand) 50%, var(--accent) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGradient 3s ease infinite, fadeInUp 1s ease-out;
  position: relative;
}

@keyframes textGradient {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 500;
  color: var(--muted);
  margin: 0 0 24px 0;
  font-style: italic;
}

.hero-description {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 32px 0;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  background: rgba(242, 140, 27, 0.12);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.partners {
  border-radius: 15px;
  margin-top: 30px;
  background: linear-gradient(120deg, rgba(255, 152, 0, 0.95), rgba(120, 157, 202, 0.92));
  padding: 30px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}

.partners h3 {
  text-align: center;
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 8px;
  margin-top: 1px;
}

.partners-sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

.marquee {
  padding-top: 10px;
  overflow: hidden;
  position: relative;
  margin-top: 24px;
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: scroll 28s linear infinite;
  width: max-content;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.brand img {
  max-height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: grayscale(0.2) brightness(1.2);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.brand img:hover {
  opacity: 1;
  transform: scale(1.05);
  filter: grayscale(0);
}

.services {
  text-align: center;
  margin: 60px 0 20px 0;
  background: var(--card);
  padding: 50px 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.services p {
  color: var(--muted);
  margin-bottom: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 30px;
  perspective: 1000px;
}

.card {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 89, 84, 0.12);
  transform-style: preserve-3d;
  transition: transform 300ms cubic-bezier(.2,.6,.2,1), box-shadow 300ms ease;
  will-change: transform;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card .icon {
  width: 100%;
  height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #ffffff, color-mix(in srgb, var(--sand) 10%, #ffffff));
  flex-shrink: 0;
}

.card .icon svg {
  width: 64px;
  height: 64px;
  color: var(--brand);
  filter: drop-shadow(0 6px 10px rgba(0,0,0,0.12));
}

.card .content {
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #ffffff);
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 160px;
}

.card .content strong {
  display: block;
  color: var(--brand);
  font-size: 1.1rem;
  line-height: 1.3;
  margin-bottom: 4px;
}

.card .content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
  flex: 1;
}

/* modern hover effects on service cards */
.card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(1200px 600px at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.15), transparent 40%);
  opacity: 0;
  transition: opacity 300ms ease;
}

.card:hover {
  transform: translateY(-8px) translateZ(20px) rotateX(2deg);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.card:hover::after { opacity: 1; }

/* Expertise Section */
.expertise {
  margin: 20px 0 clamp(30px, 5vw, 50px) 0;
  padding: clamp(40px, 6vw, 60px) 0;
}

.expertise-header {
  text-align: center;
  margin-bottom: clamp(30px, 5vw, 50px);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.expertise-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 152, 0, 0.15);
  color: var(--brand);
  font-size: clamp(0.8rem, 1.5vw, 0.9rem);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.expertise-header h2 {
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 16px 0;
  color: var(--text);
  background: linear-gradient(135deg, var(--text) 0%, var(--brand) 50%, var(--accent) 100%);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.expertise-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.expertise-services {
  list-style: none;
  padding: 0;
  margin: 24px auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 900px;
}

.expertise-services li {
  padding: 8px 16px;
  background: rgba(255, 152, 0, 0.12);
  border-radius: 20px;
  font-size: clamp(0.85rem, 1.5vw, 0.95rem);
  color: var(--text);
  font-weight: 500;
  border: 1px solid rgba(255, 152, 0, 0.2);
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.expertise-services li:hover {
  transform: translateY(-2px);
  background: rgba(255, 152, 0, 0.18);
  box-shadow: 0 4px 12px rgba(255, 152, 0, 0.15);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(24px, 4vw, 32px);
  margin-top: clamp(30px, 5vw, 50px);
  perspective: 1000px;
}

.expertise-card {
  background: #fff;
  border-radius: clamp(18px, 3vw, 24px);
  padding: clamp(28px, 4vw, 36px);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transform-style: preserve-3d;
  transition: transform 300ms cubic-bezier(.2,.6,.2,1), box-shadow 300ms ease;
  will-change: transform;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.expertise-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent), var(--brand));
  background-size: 200% 100%;
  animation: gradientShift 3s ease infinite;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 400ms ease;
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.expertise-card:hover::before {
  transform: scaleX(1);
}

.expertise-icon {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.1), rgba(120, 157, 202, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: transform 300ms ease, background 300ms ease;
}

.expertise-icon svg {
  width: 40px;
  height: 40px;
  color: var(--brand);
  filter: drop-shadow(0 4px 8px rgba(255, 152, 0, 0.2));
}

.expertise-card:hover .expertise-icon {
  transform: translateY(-4px) scale(1.05);
  background: linear-gradient(135deg, rgba(255, 152, 0, 0.2), rgba(120, 157, 202, 0.25));
}

.expertise-card h3 {
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 16px 0;
  line-height: 1.3;
}

.expertise-description {
  font-size: clamp(0.95rem, 1.8vw, 1.05rem);
  line-height: 1.7;
  color: var(--muted);
  margin: 0 0 24px 0;
  flex: 1;
}

.expertise-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.expertise-features li {
  padding-left: 28px;
  position: relative;
  font-size: clamp(0.9rem, 1.6vw, 1rem);
  line-height: 1.6;
  color: var(--text);
}

.expertise-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  box-shadow: 0 2px 6px rgba(255, 152, 0, 0.3);
}

.expertise-features li strong {
  color: var(--brand);
  font-weight: 600;
}

.expertise-card:hover {
  transform: translateY(-8px) translateZ(20px);
  box-shadow: 0 24px 48px rgba(255, 152, 0, 0.2);
}

.expertise-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(800px 400px at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.2), transparent 50%);
  opacity: 0;
  transition: opacity 300ms ease;
  border-radius: inherit;
}

.expertise-card:hover::after {
  opacity: 1;
}

.about-band {
  background: var(--bg-alt);
  padding: 55px 0;
  margin-top: 30px;
  border: 1px solid rgba(255, 152, 0, 0.15);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  gap: 40px;
}

.about-kv {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 15px;
  perspective: 1000px;
}

.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(242, 140, 27, 0.18);
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-lead {
  max-width: 540px;
  color: var(--muted);
  line-height: 1.5;
  margin: 10px 0 20px;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-bottom: 25px;
}

.stat {
  background: var(--card);
  border-radius: 14px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-size: 1.6rem;
  color: var(--brand);
  line-height: 1.1;
}

.stat span {
  color: var(--muted);
  font-size: 0.9rem;
}

.kv {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
  transform-style: preserve-3d;
  transition: transform 300ms cubic-bezier(.2,.6,.2,1), box-shadow 300ms ease;
}

.kv h4 {
  margin: 0 0 6px;
  font-size: 0.95rem;
}

.kv p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* Animated gradient border + shine on hover for values cards */
.kv::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 13px;
  padding: 1px;
  background: conic-gradient(from 180deg, var(--peach), var(--rose), var(--peach));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 300ms ease;
}

.kv::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.5) 50%, rgba(255,255,255,0) 100%);
  transform: skewX(-20deg) translateX(-100%);
  transition: transform 600ms ease;
  pointer-events: none;
  border-radius: inherit;
}

.kv:hover {
  transform: translateY(-4px) translateZ(12px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.12);
}

.kv:hover::after { opacity: 1; }
.kv:hover::before { transform: skewX(-20deg) translateX(250%); }

.about-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.about-visual {
  position: relative;
}

.about-visual img {
  width: 100%;
  border-radius: 18px;
  min-height: 360px;
  object-fit: cover;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
}

.about-badge {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(255, 255, 255, 0.92);
  padding: 14px 18px;
  border-radius: 14px;
  box-shadow: var(--shadow);
  max-width: 220px;
}

.about-badge strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 4px;
}

.about-badge span {
  display: block;
  font-size: 0.85rem;
  color: var(--muted);
}

.policy-page {
  padding-bottom: 60px;
}

.policy {
  background: var(--card);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-top: 40px;
}

.policy h1 {
  margin: 10px 0 5px;
}

.policy article {
  margin-top: 24px;
}

.policy h3 {
  margin-bottom: 8px;
}

.policy p {
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.5;
}

.policy ul {
  margin: 0 0 16px 18px;
  color: var(--muted);
  padding-left: 0;
}

.contact-page {
  padding-bottom: 60px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(220px, 400px));
  gap: 20px;
  margin: 40px auto 0;
  max-width: 900px;
  perspective: 1000px;
  justify-content: center;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    max-width: 100%;
  }
}

.contact-card {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 300ms cubic-bezier(.2,.6,.2,1), box-shadow 300ms ease;
}

.contact-card:hover {
  transform: translateY(-5px) translateZ(12px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.16);
}

.contact-card h3 {
  margin: 0 0 8px;
}

.contact-card p {
  margin: 0 0 8px;
  font-weight: 600;
}

.contact-card small {
  color: var(--muted);
}

.contact-card a {
  color: var(--brand);
  text-decoration: none;
}

.about-list {
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.about-list li {
  margin-bottom: 8px;
}

.realisations {
  background: var(--bg-alt);
  padding: 50px 0;
  margin-top: 60px;
}

.realisations h2 {
  margin: 0 0 8px;
}

.realisations p.sub {
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 0.9rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  perspective: 1000px;
}

.project-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transform-style: preserve-3d;
  transition: transform 300ms cubic-bezier(.2,.6,.2,1), box-shadow 300ms ease;
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-6px) translateZ(15px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.18);
}

.project-image {
  display: block;
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  text-decoration: none;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.project-content h3 {
  margin: 0;
  color: var(--brand);
  font-size: 1.3rem;
  line-height: 1.2;
}

.project-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
  flex: 1;
}

.project-details {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.project-details li {
  color: var(--text);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.project-details strong {
  color: var(--brand);
  font-weight: 600;
  min-width: 80px;
}

.gallery {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
}

.gallery::-webkit-scrollbar {
  height: 8px;
}

.gallery::-webkit-scrollbar-thumb {
  background: #cfd2d8;
  border-radius: 8px;
}

.shot {
  min-width: 230px;
  height: 150px;
  border-radius: 14px;
  overflow: hidden;
  background: #ccc;
  scroll-snap-align: start;
  box-shadow: var(--shadow);
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gal-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 18px;
}

.iconbtn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: var(--shadow);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--brand);
}

.testimonials {
  padding: 60px 0;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 6px;
}

.testimonials .sub {
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0 0 20px;
}

.reviews {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
  perspective: 1000px;
}

.review {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform 300ms cubic-bezier(.2,.6,.2,1), box-shadow 300ms ease;
}

.review:hover {
  transform: translateY(-4px) translateZ(10px);
  box-shadow: 0 16px 32px rgba(0,0,0,0.15);
}

.stars {
  color: #f5b301;
  letter-spacing: 2px;
  font-size: 1.1rem;
}

.review .meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--muted);
}

.avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  overflow: hidden;
}

footer {
  border-top: 1px solid #e7e8ef;
  padding: 26px 0 16px;
  background: #fff;
}

.foot {
  background: linear-gradient(120deg, rgba(255, 152, 0, 0.95), rgba(120, 157, 202, 0.92));
  color: #fef9f3;
  padding: 5px 0 5px;
  margin-top: 50px;
}

.foot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  align-items: center;
}

.foot-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.foot-brand img {
  width: 180px;
  height: 100px;
  object-fit: contain;
}

.foot-cta h4 {
  margin: 0 0 8px;
}

.foot-cta p {
  margin: 0 0 18px;
  color: rgb(182, 182, 182);
  max-width: 360px;
}

.foot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.foot-actions .btn {
  flex: 0 0 auto;
}

.foot .btn.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #0b2a4a;
}

.foot .btn.ghost {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.foot small {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 10px;
}

.foot-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.foot-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.foot-contact-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.9);
}

.foot-contact-item small {
  margin: 0;
  line-height: 1.4;
}

.foot h4 {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: #fff;
}

.foot a:not(.btn) {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  opacity: 1;
  text-decoration: none;
  font-size: 0.9rem;
  margin: 6px 0;
}

.foot a:not(.btn):hover {
  color: #fff;
}

.subline {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  text-align: center;
  margin-top: 1px;
}

.timeline {
  padding: 60px 0;
}

.timeline h2,
.team h2,
.case-studies h2 {
  text-align: center;
  margin-bottom: 24px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  perspective: 1000px;
}

.timeline .card {
  padding: 20px;
  height: auto;
  background: var(--card);
  transform-style: preserve-3d;
  transition: transform 300ms cubic-bezier(.2,.6,.2,1), box-shadow 300ms ease;
}

.timeline .card:hover {
  transform: translateY(-6px) translateZ(15px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.16);
}

.timeline .card h3 {
  margin: 0 0 8px;
  color: var(--brand);
}

.case-studies {
  padding: 40px 0 60px;
}

.case-studies ul {
  padding-left: 18px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.quote {
  padding: 60px 0;
}

.quote h2 {
  text-align: center;
  margin-bottom: 24px;
}

.quote-form {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote-form label {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  gap: 6px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--bg);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.team .service-grid .card {
  min-height: 280px;
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    gap: 12px;
  }

  .foot-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .expertise-card {
    padding: 24px;
  }

  .expertise-icon {
    width: 64px;
    height: 64px;
  }

  .expertise-icon svg {
    width: 36px;
    height: 36px;
  }
}

@media (max-width: 768px) {
  .expertise {
    margin: 20px 0 40px 0;
    padding: 30px 0;
  }

  .expertise-header {
    margin-bottom: 30px;
  }

  .expertise-services {
    gap: 8px;
    margin-top: 20px;
  }

  .expertise-services li {
    font-size: 0.8rem;
    padding: 6px 12px;
  }

  .expertise-grid {
    gap: 20px;
  }

  .expertise-card {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .expertise {
    margin: 20px 0 30px 0;
    padding: 24px 0;
  }

  .expertise-header {
    margin-bottom: 24px;
  }

  .expertise-services {
    gap: 6px;
    margin-top: 16px;
  }

  .expertise-services li {
    font-size: 0.75rem;
    padding: 6px 10px;
  }

  .expertise-badge {
    font-size: 0.75rem;
    padding: 4px 12px;
  }

  .expertise-grid {
    gap: 16px;
  }

  .expertise-card {
    padding: 20px 16px;
  }

  .expertise-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }

  .expertise-icon svg {
    width: 32px;
    height: 32px;
  }

  .expertise-features {
    gap: 10px;
  }

  .expertise-features li {
    padding-left: 24px;
    font-size: 0.9rem;
  }

  .expertise-features li::before {
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tiltable,
  .expertise-card,
  .expertise-icon {
    transition: none;
    transform: none !important;
    animation: none !important;
  }

  .expertise-card::before {
    animation: none;
  }
}

/* Floating WhatsApp button */
.fab-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
  text-decoration: none;
  z-index: 9999;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
}

.fab-whatsapp:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 28px rgba(0,0,0,0.22);
}

.fab-whatsapp svg { width: 28px; height: 28px; fill: currentColor; }

@media (max-width: 560px) {
  .fab-whatsapp { right: 12px; bottom: 12px; width: 52px; height: 52px; }
}

/* Floating scroll to top button */
.fab-scroll-top {
  position: fixed;
  right: 18px;
  bottom: 90px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--brand);
  color: #ffffff;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(255, 152, 0, 0.3);
  cursor: pointer;
  z-index: 9998;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease, opacity 300ms ease;
  opacity: 0;
  pointer-events: none;
}

.fab-scroll-top.show {
  opacity: 1;
  pointer-events: auto;
}

.fab-scroll-top:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 16px 28px rgba(255, 152, 0, 0.4);
  background: var(--mauve);
}

.fab-scroll-top svg { 
  width: 28px; 
  height: 28px; 
  fill: currentColor; 
}

@media (max-width: 560px) {
  .fab-scroll-top { 
    right: 12px; 
    bottom: 80px; 
    width: 52px; 
    height: 52px; 
  }
  .fab-scroll-top svg {
    width: 24px;
    height: 24px;
  }
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 10000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 300ms ease;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: lightboxZoom 300ms ease;
}

@keyframes lightboxZoom {
  from {
    transform: scale(0.8);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-content p {
  color: #fff;
  margin-top: 16px;
  font-size: 1.1rem;
  text-align: center;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: #fff;
  font-size: 40px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  transition: transform 200ms ease, opacity 200ms ease;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
  z-index: 10001;
}

.lightbox-close:hover {
  transform: scale(1.2);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .lightbox-content {
    max-width: 95%;
  }
  
  .lightbox-content img {
    max-height: 70vh;
  }
  
  .lightbox-close {
    top: -35px;
    font-size: 35px;
  }
}

/* Pages de détail des réalisations */
.realisation-detail {
  margin-top: 40px;
  padding-bottom: 60px;
}

.detail-header {
  margin-bottom: 40px;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 20px;
  transition: color 0.2s ease;
}

.btn-back:hover {
  color: var(--brand);
}

.detail-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin: 0;
  color: var(--text);
}

.detail-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.detail-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.detail-main-centered .detail-image {
  margin-left: 0;
  justify-self: center;
}

.detail-main-centered .detail-info {
  grid-column: 1 / -1;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  align-items: center;
  text-align: center;
}

.detail-main-centered .detail-meta {
  width: 100%;
  text-align: center;
}

.detail-main-centered .meta-item strong,
.detail-main-centered .meta-item p {
  text-align: center;
}

.detail-main-centered .detail-features,
.detail-main-centered .detail-description {
  width: 100%;
}


.detail-image {
  width: fit-content;
  max-width: 100%;
  padding: 10px;
  border-radius: 24px;
  overflow: visible;
  box-shadow: 
    0 20px 60px rgba(0, 89, 84, 0.15),
    0 8px 24px rgba(0, 89, 84, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transform-style: preserve-3d;
  display: inline-block;
  margin-left: 100px;
  margin-right: 0;
}

.detail-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 89, 84, 0.05) 0%, rgba(255, 140, 0, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
  border-radius: 24px;
}

.detail-image:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 24px 72px rgba(0, 89, 84, 0.2),
    0 12px 32px rgba(0, 89, 84, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.detail-image:hover::before {
  opacity: 1;
}

.detail-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 600px;
  display: block;
  object-fit: contain;
  position: relative;
  z-index: 0;
  transition: transform 0.4s ease;
  border-radius: 16px;
}

.detail-image:hover img {
  transform: scale(1.02);
}

.before-after-section {
  margin-top: 20px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

.before-after-section h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 0 24px 0;
  color: var(--text);
  text-align: center;
}

/* Before/After Slider */
.before-after-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 
    0 20px 60px rgba(0, 89, 84, 0.15),
    0 8px 24px rgba(0, 89, 84, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.before-after-container:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 24px 72px rgba(0, 89, 84, 0.2),
    0 12px 32px rgba(0, 89, 84, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.before-after-wrapper {
  position: relative;
  width: 100%;
  max-height: 700px;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  cursor: grab;
  user-select: none;
}

.before-after-wrapper:active {
  cursor: grabbing;
}

.before-image,
.after-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.before-image {
  z-index: 1;
}

.before-image img,
.after-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.after-image {
  z-index: 2;
  clip-path: inset(0 50% 0 0);
  will-change: clip-path;
}

.label {
  position: absolute;
  top: 20px;
  padding: 8px 16px;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 20px;
  backdrop-filter: blur(10px);
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.label-before {
  left: 20px;
}

.label-after {
  right: 20px;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 4px;
  height: 100%;
  background: white;
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  will-change: left;
  transition: left 0.05s linear;
}

.slider-line {
  width: 100%;
  height: 100%;
  background: white;
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: grab;
  transition: transform 0.2s ease, box-shadow 0.2s ease, left 0.05s linear;
  will-change: left, transform;
}

.slider-button:active {
  cursor: grabbing;
  transform: translate(-50%, -50%) scale(0.95);
}

.slider-button svg {
  width: 24px;
  height: 24px;
  color: var(--brand);
}

.slider-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: grab;
  z-index: 4;
  margin: 0;
}

.slider-input:active {
  cursor: grabbing;
}

.slider-input::-webkit-slider-thumb {
  appearance: none;
  width: 100%;
  height: 100%;
  cursor: grab;
}

.slider-input::-moz-range-thumb {
  width: 100%;
  height: 100%;
  cursor: grab;
  border: none;
  background: transparent;
}

.detail-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.detail-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  padding: 24px;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.meta-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 8px;
  font-weight: 600;
}

.meta-item p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
}

.detail-description {
  line-height: 1.8;
}

.detail-description h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  color: var(--text);
}

.detail-description p {
  margin: 0 0 16px 0;
  color: var(--text);
  opacity: 0.9;
}

.detail-features {
  padding: 24px;
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--border);
}

.detail-features h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 20px 0;
  color: var(--text);
}

.detail-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.detail-features li {
  padding-left: 24px;
  position: relative;
  color: var(--text);
  opacity: 0.9;
}

.detail-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--brand);
  font-weight: bold;
}

.detail-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

@media (max-width: 968px) {
  .detail-content {
    gap: 30px;
  }
  
  .detail-main {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  
  
  .detail-meta {
    grid-template-columns: 1fr;
  }
  
  .before-after-section {
    padding-top: 30px;
    margin-top: 10px;
  }
  
  .before-after-section h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE & TABLETTE
   ============================================ */

/* Tablettes et petits écrans (max-width: 768px) */
@media (max-width: 768px) {
  /* Navigation */
  .nav {
    flex-wrap: wrap;
    padding: 12px clamp(12px, 3vw, 20px);
    border-radius: 20px;
  }

  .logo {
    flex: 1;
    min-width: 0;
  }

  .logo img {
    width: 120px;
    height: 67px;
  }

  .logo-text strong {
    font-size: 0.9rem;
  }

  .menu {
    order: 3;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 152, 0, 0.2);
  }

  .menu a {
    margin: 0 8px;
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  .nav-cta {
    gap: 8px;
    flex-wrap: nowrap;
  }

  .nav-cta .btn {
    padding: 10px 16px;
    font-size: 0.85rem;
    white-space: nowrap;
  }

  /* Hero Section */
  .hero {
    grid-template-columns: 1fr;
    padding: 24px;
    margin-top: 20px;
    gap: 20px;
  }

  .hero h1 {
    font-size: clamp(1.5rem, 6vw, 2.2rem);
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: clamp(1rem, 4vw, 1.3rem);
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: clamp(0.9rem, 3vw, 1rem);
    margin-bottom: 24px;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* Services */
  .services {
    padding: 30px 20px;
    margin: 40px 0 20px 0;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Partners */
  .partners {
    padding: 24px 0 28px;
  }

  .partners h3 {
    font-size: 1.2rem;
  }

  .marquee-track {
    gap: 40px;
  }

  .brand img {
    max-height: 32px;
  }

  /* About Section */
  .about-band {
    padding: 40px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-stats {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 12px;
  }

  .stat {
    padding: 14px 16px;
  }

  .stat strong {
    font-size: 1.4rem;
  }

  .about-kv {
    grid-template-columns: 1fr;
  }

  /* Project Grid */
  .project-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Reviews */
  .reviews {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Footer */
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
  }

  .foot-brand {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .foot-contact {
    align-items: center;
  }

  .foot-actions {
    justify-content: center;
  }

  .foot-actions .btn {
    flex: 1;
    min-width: 140px;
  }

  /* Contact Grid */
  .contact-grid {
    grid-template-columns: 1fr;
  }

  /* Quote Form */
  .quote-form {
    padding: 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Timeline */
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  /* Detail Page */
  .detail-image {
    margin-left: 0;
    margin-right: 0;
  }

  .detail-meta {
    grid-template-columns: 1fr;
  }
}

/* Téléphones (max-width: 480px) */
@media (max-width: 480px) {
  /* Container */
  .container {
    padding: 16px clamp(12px, 4vw, 20px);
  }

  /* Navigation */
  .nav {
    padding: 10px 16px;
    border-radius: 16px;
  }

  .logo img {
    width: 100px;
    height: 56px;
  }

  .logo-text strong {
    font-size: 0.8rem;
  }

  .menu {
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    margin-top: 10px;
    padding-top: 10px;
  }

  .menu a {
    margin: 0;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.5);
  }

  .nav-cta {
    width: 100%;
    order: 2;
    margin-top: 10px;
  }

  .nav-cta .btn {
    flex: 1;
    padding: 10px 12px;
    font-size: 0.8rem;
  }

  /* Hero */
  .hero {
    padding: 20px 16px;
    border-radius: 20px;
  }

  .hero h1 {
    font-size: clamp(1.4rem, 7vw, 1.9rem);
  }

  .hero-subtitle {
    font-size: clamp(0.95rem, 4vw, 1.15rem);
  }

  .hero-description {
    font-size: clamp(0.85rem, 3vw, 0.95rem);
  }

  .hero-cta .btn {
    padding: 12px 20px;
    font-size: 0.9rem;
  }

  /* Services */
  .services {
    padding: 24px 16px;
    border-radius: 20px;
  }

  .services h2 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  /* Cards */
  .card .content {
    padding: 16px;
    min-height: auto;
  }

  .card .icon {
    height: 120px;
  }

  .card .icon svg {
    width: 48px;
    height: 48px;
  }

  /* Partners */
  .partners {
    padding: 20px 0 24px;
  }

  .partners h3 {
    font-size: 1.1rem;
  }

  .partners-sub {
    font-size: 0.85rem;
  }

  .brand img {
    max-height: 28px;
  }

  /* About */
  .about-band {
    padding: 30px 0;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .stat {
    text-align: center;
  }

  /* Buttons */
  .btn {
    padding: 10px 18px;
    font-size: 0.9rem;
  }

  /* Footer */
  .foot {
    padding: 30px 0 20px;
  }

  .foot-brand img {
    width: 120px;
    height: 67px;
  }

  .foot-actions {
    flex-direction: column;
  }

  .foot-actions .btn {
    width: 100%;
  }

  /* Contact */
  .contact-card {
    padding: 20px;
  }

  /* Quote Form */
  .quote-form {
    padding: 16px;
  }

  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    padding: 12px;
    font-size: 0.9rem;
  }

  /* Testimonials */
  .testimonials {
    padding: 40px 0;
  }

  .testimonials h2 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .review {
    padding: 14px;
  }

  /* Realisations */
  .realisations {
    padding: 40px 0;
    margin-top: 40px;
  }

  .realisations h2 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .project-content {
    padding: 20px;
  }

  .project-content h3 {
    font-size: 1.1rem;
  }

  /* Detail Page */
  .detail-header h1 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .detail-image {
    padding: 8px;
  }

  .detail-image img {
    max-height: 400px;
  }

  .before-after-wrapper {
    max-height: 300px;
  }

  .slider-button {
    width: 40px;
    height: 40px;
  }

  .slider-button svg {
    width: 20px;
    height: 20px;
  }

  .label {
    font-size: 0.8rem;
    padding: 6px 12px;
    top: 12px;
  }

  .label-before {
    left: 12px;
  }

  .label-after {
    right: 12px;
  }

  /* Policy */
  .policy {
    padding: 24px 20px;
  }

  .policy h1 {
    font-size: clamp(1.5rem, 5vw, 1.9rem);
  }

  /* Expertise */
  .expertise-header h2 {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }

  .expertise-card {
    padding: 20px 16px;
  }

  .expertise-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
  }

  .expertise-icon svg {
    width: 32px;
    height: 32px;
  }

  .expertise-card h3 {
    font-size: 1.2rem;
  }

  .expertise-description {
    font-size: 0.9rem;
  }

  .expertise-features li {
    font-size: 0.85rem;
  }
}
