/* ========================================
   RJ CONCEPT — Dark Theme Automotive Site
   ======================================== */

:root {
  --red: #e63946;
  --red-dark: #c1121f;
  --red-light: #ff4d5a;
  --dark-1: #0a0a0a;
  --dark-2: #111111;
  --dark-3: #1a1a1a;
  --dark-4: #222222;
  --dark-5: #2a2a2a;
  --gray-1: #888888;
  --gray-2: #aaaaaa;
  --gray-3: #cccccc;
  --white: #ffffff;
  --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'CabinetGrotesk-Variable', 'Plus Jakarta Sans', sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* RESET */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font);
  background: var(--dark-1);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* CONTAINER */
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  border: 1px solid var(--red);
}

.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--dark-5);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(230, 57, 70, 0.08);
}

.btn-whatsapp {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-whatsapp:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

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

/* HEADER */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition);
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
}

.header-inner {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1;
}

.logo-rj {
  color: var(--red);
}

.logo-capitonnage {
  color: var(--white);
}

.footer .logo-img {
  height: 60px;
}

.nav {
  display: flex;
  gap: 32px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-2);
  transition: color var(--transition);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}

.nav-link:hover::after {
  width: 100%;
}

.header-cta {
  padding: 10px 20px;
  font-size: 0.9375rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dark-1);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.mobile-nav.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-link {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--gray-2);
  transition: color var(--transition);
}

.mobile-nav-link:hover {
  color: var(--white);
}

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  background: var(--dark-1);
  overflow: hidden;
}

.hero::before {
  display: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: url('images-portfolio/hero.webp') center center / cover no-repeat;
  z-index: 0;
}

.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.5) 60%, rgba(10, 10, 10, 0.3) 100%),
    linear-gradient(to bottom, transparent 50%, var(--dark-1) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 120px 24px 80px;
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
}

.hero-subtitle {
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--white);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--white);
  text-transform: uppercase;
}

.hero-text {
  font-size: 22px;
  color: #ffffffcf;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-trust-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--dark-1);
  border: 1px solid rgba(230, 57, 70, 0.2);
  border-radius: 12px;
  padding: 12px 20px;
}

.trust-google-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.trust-rating {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.trust-top {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-score {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.trust-stars {
  color: var(--red);
  font-size: 0.875rem;
  letter-spacing: 1px;
}

.trust-text {
  font-size: 0.75rem;
  color: var(--gray-2);
}

/* SECTIONS */
.section {
  padding: 120px 0;
}

.section-label {
  display: inline-block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(230, 57, 70, 0.1);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: 35px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
  text-align: center;
}

.section-title.left {
  text-align: left;
}

.section-title-xl {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 8px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--gray-1);
  text-align: center;
  margin-bottom: 60px;
}

/* SERVICES */
.services {
  background: var(--dark-2);
}

.services-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.services-header .section-title {
  margin-bottom: 0;
}

.services-arrows {
  display: flex;
  gap: 8px;
}

.services-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  padding-left: max(24px, calc((100vw - 1500px) / 2 + 24px));
  padding-right: 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.services-carousel::-webkit-scrollbar {
  display: none;
}

.services-track {
  display: flex;
  gap: 24px;
  cursor: grab;
}

.services-track:active {
  cursor: grabbing;
}

.service-card {
  flex: 0 0 320px;
  background: var(--dark-3);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 57, 70, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.service-img {
  width: 100%;
  aspect-ratio: 3/4;
  overflow: hidden;
}

.service-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

/* Before/After hover transition */
.service-before-after {
  position: relative;
}

.service-before-after .img-avant,
.service-before-after .img-apres {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease;
}

.service-before-after .img-apres {
  opacity: 0;
}

.service-card:hover .service-before-after .img-avant {
  opacity: 0;
}

.service-card:hover .service-before-after .img-apres {
  opacity: 1;
}

.ba-label {
  position: absolute;
  bottom: 12px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
  z-index: 2;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.ba-avant {
  left: 12px;
}

.ba-apres {
  left: 12px;
  opacity: 0;
}

.service-card:hover .ba-avant {
  opacity: 0;
}

.service-card:hover .ba-apres {
  opacity: 1;
}

/* Mobile: tap to toggle */
.service-before-after.show-apres .img-avant {
  opacity: 0;
}

.service-before-after.show-apres .img-apres {
  opacity: 1;
}

.service-before-after.show-apres .ba-avant {
  opacity: 0;
}

.service-before-after.show-apres .ba-apres {
  opacity: 1;
}

.ba-tap-hint {
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 0.65rem;
  padding: 3px 8px;
  border-radius: 4px;
  z-index: 2;
  pointer-events: none;
  display: none;
}

@media (hover: none) {
  .ba-tap-hint {
    display: block;
  }
  .service-card:hover .service-before-after .img-avant,
  .service-card:hover .service-before-after .img-apres,
  .service-card:hover .ba-avant,
  .service-card:hover .ba-apres {
    opacity: unset;
  }
  .service-before-after .img-avant { opacity: 1; }
  .service-before-after .img-apres { opacity: 0; }
  .ba-avant { opacity: 1; }
  .ba-apres { opacity: 0; }
}

.service-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-4) 0%, var(--dark-3) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--gray-1);
}

.service-img-placeholder span {
  font-size: 0.75rem;
  color: var(--gray-1);
}

.star-placeholder {
  background: linear-gradient(135deg, #1a1025 0%, var(--dark-3) 100%);
}

.star-placeholder svg {
  stroke: var(--red);
}

.service-name {
  font-size: 1rem;
  font-weight: 700;
  padding: 20px 20px 8px;
}

.service-desc {
  font-size: 0.8125rem;
  color: var(--gray-1);
  padding: 0 20px;
  line-height: 1.6;
}

.btn-service {
  margin: 16px 20px 20px;
  padding: 10px 16px;
  font-size: 0.8125rem;
  width: calc(100% - 40px);
  justify-content: center;
}

/* ABOUT */
.about {
  background: var(--dark-1);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-logo {
  height: 120px;
  width: auto;
  object-fit: contain;
  margin-bottom: 20px;
}

.about-text {
  color: var(--gray-2);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.about-image {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-4) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--gray-1);
  border-radius: var(--radius);
}

.about-img-placeholder span {
  font-size: 0.8125rem;
}

/* RÉALISATIONS */
.realisations {
  background: var(--dark-2);
}

.portfolio-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.portfolio-header .section-title {
  margin-bottom: 0;
}

.portfolio-arrows {
  display: flex;
  gap: 8px;
}

.portfolio-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
}

.portfolio-arrow:hover {
  background: rgba(230, 57, 70, 0.15);
  border-color: var(--red);
  color: var(--red);
}

/* Brand logos row */
.brand-logos {
  margin-bottom: 32px;
}

.brand-logos-track {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-bottom: 20px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.brand-logos-track::-webkit-scrollbar {
  display: none;
}

.brand-logo {
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-logo:hover {
  opacity: 1;
}

.brand-logo img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
  object-fit: contain;
}

.brand-logos-bar {
  height: 3px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.brand-logos-bar::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: var(--progress, 5%);
  height: 100%;
  background: var(--red);
  border-radius: 3px;
  transition: width 0.15s ease;
}

.portfolio-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  padding-left: max(24px, calc((100vw - 1500px) / 2 + 24px));
  padding-right: 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.portfolio-carousel::-webkit-scrollbar {
  display: none;
}

.portfolio-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: grab;
}

.portfolio-track:active {
  cursor: grabbing;
}

.portfolio-card {
  flex: 0 0 320px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.portfolio-card:hover {
  border-color: rgba(230, 57, 70, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.portfolio-img {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

.portfolio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.portfolio-img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-4) 0%, var(--dark-5) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-1);
  font-size: 0.875rem;
}

.portfolio-card-bottom {
  padding: 20px;
}

.portfolio-card-bottom h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  line-height: 1.3;
}

.portfolio-car {
  font-size: 0.8125rem;
  color: #ffffffcf;
  margin-bottom: 16px;
}

.portfolio-card-bottom .btn-service {
  margin: 0;
  width: 100%;
}

.portfolio-photo {
  flex: 0 0 280px;
  height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
}

.portfolio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.portfolio-photo:hover img {
  transform: scale(1.05);
}

.portfolio-cta {
  text-align: center;
  margin-top: 48px;
}

/* REVIEWS */
.reviews {
  background: var(--dark-1);
}

.reviews-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}

.reviews-header .section-title {
  margin-bottom: 0;
}

.reviews-arrows {
  display: flex;
  gap: 8px;
}

.reviews-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  padding-left: max(24px, calc((100vw - 1500px) / 2 + 24px));
  padding-right: 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.reviews-carousel::-webkit-scrollbar {
  display: none;
}

.reviews-track {
  display: flex;
  gap: 24px;
  cursor: grab;
}

.reviews-track:active {
  cursor: grabbing;
}

.review-card {
  flex: 0 0 400px;
  background: var(--dark-3);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  border-color: rgba(230, 57, 70, 0.2);
}

.review-stars {
  color: #fbbf24;
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.review-text {
  font-size: 0.9375rem;
  color: var(--gray-3);
  line-height: 1.7;
  margin-bottom: 28px;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--gray-2);
}

.review-name {
  font-size: 0.875rem;
  font-weight: 600;
}

.review-source {
  font-size: 0.75rem;
  color: var(--gray-1);
}

.review-google {
  margin-left: auto;
  flex-shrink: 0;
}

.reviews-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.reviews-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: var(--dark-5);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.reviews-dot.active {
  width: 24px;
  background: var(--red);
}

.reviews-cta {
  text-align: center;
  margin-top: 32px;
}

/* ATELIERS */
.ateliers-band {
  background: var(--dark-1);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 28px 0;
}

.ateliers-inner {
  display: flex;
  align-items: center;
  justify-content: center;
}

.ateliers-text {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.ateliers-heading {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

.ateliers-sep {
  color: var(--white);
}

.ateliers-locations {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  color: var(--white);
}

.ateliers-locations svg {
  color: var(--red);
  flex-shrink: 0;
}

/* FAQ */
.faq {
  background: var(--dark-2);
}

.faq .section-title {
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--red);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: 24px;
  font-size: 0.9375rem;
  color: var(--gray-2);
  line-height: 1.7;
}

/* CONTACT */
.contact {
  background: var(--dark-1);
}

.contact-subtitle {
  text-align: center;
  color: var(--gray-1);
  margin-bottom: 64px;
  font-size: 1.0625rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

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

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

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(230, 57, 70, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red);
}

.contact-item h4 {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item a {
  font-size: 0.9375rem;
  color: var(--gray-2);
  transition: color var(--transition);
}

.contact-item a:hover {
  color: var(--red);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 20px;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.9375rem;
  transition: all var(--transition);
  outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--gray-1);
}

.contact-form select {
  color: var(--gray-1);
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888888' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.contact-form select option {
  background: var(--dark-3);
  color: var(--white);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

/* FOOTER */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-tagline {
  color: var(--gray-1);
  font-size: 0.875rem;
  margin-top: 12px;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--dark-4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-2);
  transition: all var(--transition);
}

.footer-socials a:hover {
  background: var(--red);
  color: var(--white);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.footer-col h4 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-col a,
.footer-col span {
  display: block;
  font-size: 0.875rem;
  color: var(--gray-1);
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  font-size: 0.8125rem;
  color: var(--gray-1);
}

.footer-credit a {
  color: var(--red);
  transition: color var(--transition);
}

.footer-credit a:hover {
  color: var(--red-light);
}

/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.5rem;
  cursor: pointer;
  line-height: 1;
  z-index: 2001;
  transition: opacity var(--transition);
}

.lightbox-close:hover {
  opacity: 0.6;
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: all var(--transition);
  z-index: 2001;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--white);
}

.portfolio-photo {
  cursor: pointer;
}

/* ANIMATIONS */
[data-aos] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

[data-aos-delay="100"] { transition-delay: 0.1s; }
[data-aos-delay="200"] { transition-delay: 0.2s; }
[data-aos-delay="300"] { transition-delay: 0.3s; }
[data-aos-delay="400"] { transition-delay: 0.4s; }
[data-aos-delay="500"] { transition-delay: 0.5s; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .section {
    padding: 80px 0;
  }
}

@media (max-width: 768px) {
  .nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-nav {
    display: flex;
  }

  .container {
    padding: 0 20px;
  }

  .hero {
    height: auto;
    min-height: 100vh;
  }

  .hero-content {
    padding: 90px 20px 50px;
  }

  .hero-title {
    font-size: 40px;
  }

  .hero-text {
    font-size: 16px;
    max-width: 100%;
  }

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

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

  .hero-trust-row {
    flex-direction: column;
  }

  .hero-trust {
    width: 100%;
  }

  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: 26px;
  }

  .section-title-xl {
    font-size: 28px;
  }

  .service-card {
    flex: 0 0 270px;
  }

  .portfolio-card {
    flex: 0 0 270px;
  }

  .portfolio-photo {
    flex: 0 0 240px;
    height: 320px;
  }

  .portfolio-img {
    height: 320px;
  }

  .review-card {
    flex: 0 0 280px;
    padding: 24px;
  }

  .reviews-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

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

  .about-logo {
    height: 90px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .brand-logos-track {
    gap: 24px;
  }

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

  .portfolio-header,
  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .ateliers-heading {
    font-size: 1rem;
  }

  .ateliers-text {
    gap: 10px;
    flex-direction: column;
    text-align: center;
  }

  .faq-question {
    padding: 20px 0;
    font-size: 0.9375rem;
  }

  .faq-item.active .faq-answer {
    max-height: 300px;
  }

  .lightbox-close {
    top: 16px;
    right: 16px;
    font-size: 2rem;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
  }

  .lightbox-prev { left: 12px; }
  .lightbox-next { right: 12px; }

  .lightbox-prev svg,
  .lightbox-next svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-content {
    padding: 80px 16px 36px;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-text {
    font-size: 15px;
  }

  .hero-subtitle {
    font-size: 0.8125rem;
  }

  .section-title {
    font-size: 22px;
  }

  .section-title-xl {
    font-size: 22px;
  }

  .section {
    padding: 40px 0;
  }

  .service-card {
    flex: 0 0 240px;
  }

  .portfolio-card {
    flex: 0 0 240px;
  }

  .portfolio-photo {
    flex: 0 0 220px;
    height: 280px;
  }

  .portfolio-img {
    height: 260px;
  }

  .review-card {
    flex: 0 0 260px;
    padding: 20px;
  }

  .review-text {
    font-size: 0.8125rem;
  }

  .contact-subtitle {
    margin-bottom: 40px;
  }

  .faq-question {
    font-size: 0.875rem;
    padding: 16px 0;
  }

  .faq-answer p {
    font-size: 0.8125rem;
  }

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

  .ateliers-heading {
    font-size: 0.875rem;
  }

  .ateliers-location {
    font-size: 0.75rem;
  }

  .about-logo {
    height: 70px;
  }

  .logo-img {
    height: 40px;
  }

  .logo-text {
    font-size: 0.85rem;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 36px;
    height: 36px;
  }

  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
}
