/* ============================================
   TOMY'S PROD — PREMIUM DESIGN SYSTEM
   Luxury Dark | Gold Accents | Pro Grade
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700;900&family=DM+Sans:wght@300;400;500;600&family=Orbitron:wght@400;700;900&display=swap');

:root {
  --gold:       #C9A84C;
  --gold-light: #E8C97A;
  --gold-dim:   #7D6530;
  --black:      #0A0A0B;
  --dark:       #111113;
  --dark-2:     #18181C;
  --dark-3:     #222228;
  --dark-card:  #16161A;
  --white:      #F5F4EF;
  --white-dim:  #A8A49C;
  --border:     rgba(201,168,76,0.18);
  --border-hover: rgba(201,168,76,0.55);
  --shadow-gold: 0 0 40px rgba(201,168,76,0.15);
  --shadow-card: 0 8px 40px rgba(0,0,0,0.6);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-tech:    'Orbitron', sans-serif;
  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
  --radius:       12px;
  --radius-lg:    20px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--black);
  color: var(--white);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  line-height: 1.65;
}

/* === SELECTION === */
::selection { background: var(--gold); color: var(--black); }

/* ============================================
   LOADER
   ============================================ */
.loader-container {
  position: fixed; inset: 0;
  background: var(--black);
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  z-index: 9999;
  gap: 24px;
}
.loader-logo {
  width: 90px;
  animation: flipLogo 2s cubic-bezier(0.65,0.05,0.36,1) infinite;
  filter: drop-shadow(0 0 20px rgba(201,168,76,0.5));
}
.loader-bar {
  width: 200px; height: 2px;
  background: var(--dark-3);
  border-radius: 99px;
  overflow: hidden;
}
.loader-bar::after {
  content: '';
  display: block; height: 100%;
  width: 40%; background: linear-gradient(90deg, transparent, var(--gold), transparent);
  animation: loaderSweep 1.4s ease-in-out infinite;
}
@keyframes loaderSweep {
  0%   { transform: translateX(-200%); }
  100% { transform: translateX(400%); }
}
@keyframes flipLogo {
  0%   { transform: rotateY(0deg); }
  50%  { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.lang-switcher {
  display: flex; align-items: center; gap: 6px;
}
.lang-switcher a {
  display: flex; align-items: center; gap: 5px;
  font-size: 0.78rem; font-weight: 600;
  color: var(--white-dim);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: var(--transition);
  letter-spacing: 0.04em;
}
.lang-switcher a:hover,
.lang-switcher a.active {
  color: var(--gold);
  border-color: var(--border);
  background: rgba(201,168,76,0.07);
}
.lang-flag { font-size: 1rem; line-height: 1; }

/* ============================================
   CONTACT BAR
   ============================================ */
.contact-bar {
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  padding: 8px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.contact-info {
  display: flex; gap: 28px; align-items: center;
}
.contact-social-bar {
  display: flex; gap: 10px; align-items: center;
}
.contact-bar a {
  color: var(--white-dim);
  text-decoration: none;
  display: flex; align-items: center; gap: 7px;
  font-size: 0.82rem; font-weight: 500;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.contact-bar a:hover { color: var(--gold); }
.contact-bar a i { font-size: 0.9rem; }

/* ============================================
   HEADER / NAV
   ============================================ */

/* Pages internes : header dans le flux normal */
header {
  position: relative;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
}

/* Sur index.php uniquement : header overlay sur la vidéo */
.video-container header {
  position: absolute;
  top: 0; left: 0; right: 0;
  background: linear-gradient(180deg, rgba(10,10,11,0.9) 0%, transparent 100%);
  border-bottom: none;
}

.logo { position: absolute; left: 50%; transform: translateX(-50%); }
.logo img { height: 54px; filter: drop-shadow(0 0 12px rgba(201,168,76,0.3)); }

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  color: rgba(245,244,239,0.8);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

/* Sticky header au scroll (pages internes) */
header.scrolled {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(10,10,11,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 12px 60px;
  z-index: 999;
  animation: headerIn 0.3s ease;
}
@keyframes headerIn {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

/* === BURGER === */
.burger-menu {
  display: none; flex-direction: column;
  cursor: pointer; gap: 6px; z-index: 1000;
  padding: 8px;
}
.burger-menu div {
  width: 26px; height: 2px;
  background: var(--white); border-radius: 4px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.burger-menu.open div:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.burger-menu.open div:nth-child(2) { opacity: 0; }
.burger-menu.open div:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* === BTN DEVIS (CTA principal) === */
.btn-devis {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 11px 28px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--black);
  font-family: var(--font-tech);
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: none; border-radius: var(--radius);
  text-decoration: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn-devis::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.25) 0%, transparent 60%);
  opacity: 0; transition: opacity var(--transition);
}
.btn-devis:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.5); }
.btn-devis:hover::before { opacity: 1; }

/* ============================================
   HERO SECTION
   ============================================ */
.video-container {
  position: relative; width: 100%; height: 100vh;
  overflow: hidden;
}
.background-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.video-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(10,10,11,0.92) 0%,
    rgba(10,10,11,0.6) 50%,
    rgba(10,10,11,0.85) 100%
  );
}
.video-overlay::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 80% at 20% 50%, rgba(201,168,76,0.05) 0%, transparent 70%);
}

.video-text {
  position: absolute; top: 50%; left: 10%;
  transform: translateY(-50%);
  z-index: 2; max-width: 680px;
}
.hero-eyebrow {
  font-family: var(--font-tech);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 12px;
  animation: fadeUp 0.8s ease both;
}
.hero-eyebrow::before {
  content: '';
  display: block; width: 40px; height: 1px;
  background: var(--gold);
}
.intro-text {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 900; line-height: 1.1;
  color: var(--white);
  margin-bottom: 22px;
  animation: fadeUp 1s ease 0.1s both;
}
.intro-text em { color: var(--gold); font-style: normal; }
.cta-text {
  font-size: 1.1rem; font-weight: 400;
  color: var(--white-dim); margin-bottom: 40px;
  line-height: 1.7; max-width: 520px;
  animation: fadeUp 1s ease 0.2s both;
}
.hero-buttons {
  display: flex; gap: 16px; flex-wrap: wrap;
  animation: fadeUp 1s ease 0.35s both;
}
.video-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-family: var(--font-tech); font-size: 0.82rem;
  font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  border-radius: var(--radius); text-decoration: none;
  box-shadow: 0 4px 24px rgba(201,168,76,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden; position: relative;
}
.video-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 36px rgba(201,168,76,0.55); }
.video-btn-outline {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-tech); font-size: 0.82rem;
  font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  border-radius: var(--radius); text-decoration: none;
  border: 1px solid rgba(245,244,239,0.3);
  transition: var(--transition);
}
.video-btn-outline:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,168,76,0.06);
}

/* Stats bar in hero */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 2;
  display: flex;
  background: rgba(24,24,28,0.85);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--border);
}
.hero-stat {
  flex: 1; padding: 24px 40px;
  display: flex; flex-direction: column; gap: 4px;
  border-right: 1px solid var(--border);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-number {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 900;
  color: var(--gold);
}
.hero-stat-label {
  font-size: 0.8rem; font-weight: 500;
  color: var(--white-dim); letter-spacing: 0.05em; text-transform: uppercase;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
  text-align: center; margin-bottom: 64px;
}
.section-eyebrow {
  font-family: var(--font-tech);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900; color: var(--white);
  line-height: 1.15;
}
.section-title em { color: var(--gold); font-style: normal; }
.section-desc {
  margin-top: 16px; font-size: 1.05rem;
  color: var(--white-dim); max-width: 600px;
  margin-left: auto; margin-right: auto;
}
.section-divider {
  width: 60px; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 20px auto 0;
}

/* ============================================
   SERVICES / PRESENTATION
   ============================================ */
.main-content {
  background: var(--dark);
}
.presentation-section {
  padding: 100px 60px;
  position: relative;
}
.presentation-section::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 1px; background: var(--border);
}
.layout-wrapper {
  display: flex; justify-content: space-between;
  align-items: center; gap: 80px;
  max-width: 1300px; margin: auto; flex-wrap: wrap;
}

/* Left / Right text blocks */
.left-section, .right-section-text {
  flex: 1; min-width: 300px;
}
.service-tag {
  font-family: var(--font-tech);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
  display: block;
}
.service-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900; color: var(--white);
  margin-bottom: 32px; line-height: 1.2;
}
.service-title a {
  color: inherit; text-decoration: none;
  transition: color var(--transition);
}
.service-title a:hover { color: var(--gold); }

.service-list {
  list-style: none; display: flex;
  flex-direction: column; gap: 14px;
}
.service-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 1rem; color: var(--white-dim);
  line-height: 1.55;
}
.service-list li::before {
  content: '';
  display: block; flex-shrink: 0;
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold); margin-top: 8px;
}

.right-list-wrapper {
  text-align: right;
}
.right-list-wrapper .service-list li {
  flex-direction: row-reverse;
}
.right-list-wrapper .service-list li::before {
  margin-top: 8px;
}

/* Carousel */
.carousel-wrapper {
  flex: 1; min-width: 320px; max-width: 600px;
}
.carousel {
  position: relative; width: 100%;
  overflow: hidden; border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-gold);
}
.carousel-inner {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
  gap: 0;
}
.carousel-inner img {
  width: 100%; flex-shrink: 0;
  object-fit: cover; display: block;
  border-radius: var(--radius-lg);
}
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(10,10,11,0.8); backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  color: var(--white); font-size: 1rem;
  border-radius: 50%; cursor: pointer; z-index: 10;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.carousel-btn:hover {
  background: var(--gold); border-color: var(--gold); color: var(--black);
}

/* Fix alignement carousel - slides pleine largeur */
#carouselInner > *,
#carouselDesignInner > *,
#photoCarouselInner > * {
  min-width: 100%;
  flex-shrink: 0;
}

.prev-btn { left: 14px; }
.next-btn { right: 14px; }

/* ============================================
   BIO / ABOUT
   ============================================ */
.bio-section {
  padding: 100px 60px;
  background: var(--dark-2);
  position: relative; overflow: hidden;
}
.bio-section::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.06), transparent 70%);
  pointer-events: none;
}
.bio-container {
  max-width: 1100px; margin: auto;
  display: flex; align-items: center; gap: 80px; flex-wrap: wrap;
}
.bio-photo {
  flex-shrink: 0;
  position: relative;
}
.bio-photo img {
  width: 320px; height: 320px;
  border-radius: 50%; object-fit: cover;
  border: 3px solid var(--border);
  box-shadow: 0 0 60px rgba(201,168,76,0.2);
  position: relative; z-index: 1;
}
.bio-photo::before {
  content: '';
  position: absolute; inset: -12px;
  border-radius: 50%;
  border: 1px solid var(--border);
  animation: rotateBorder 12s linear infinite;
}
.bio-photo::after {
  content: '';
  position: absolute; top: 10px; left: -10px;
  width: 100%; height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), transparent);
  z-index: 0;
}
@keyframes rotateBorder {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.bio-content { flex: 1; min-width: 300px; }
.bio-content h2 {
  font-family: var(--font-display);
  font-size: 2.4rem; font-weight: 900;
  color: var(--white); margin-bottom: 20px;
}
.bio-content p {
  font-size: 1.05rem; color: var(--white-dim);
  line-height: 1.8; margin-bottom: 16px;
}
.bio-skills {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 28px;
}
.bio-skill {
  font-family: var(--font-tech);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--border);
  border-radius: 99px;
  color: var(--gold); background: rgba(201,168,76,0.06);
}

/* ============================================
   CLIENTS SLIDER
   ============================================ */
.clients-section {
  padding: 60px 0;
  background: var(--black);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.slider-title {
  text-align: center;
  font-family: var(--font-tech);
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--white-dim); margin-bottom: 40px;
}
.slider {
  overflow: hidden; position: relative;
  width: 100%;
}
.slider::before, .slider::after {
  content: ''; position: absolute;
  top: 0; width: 200px; height: 100%;
  z-index: 2; pointer-events: none;
}
.slider::before {
  left: 0;
  background: linear-gradient(90deg, var(--black) 0%, transparent 100%);
}
.slider::after {
  right: 0;
  background: linear-gradient(270deg, var(--black) 0%, transparent 100%);
}
.slide-track {
  display: flex;
  animation: scroll 35s linear infinite;
  width: fit-content;
}
.slide {
  flex: 0 0 auto; width: 180px; height: 100px;
  display: flex; align-items: center; justify-content: center;
  padding: 10px 24px; opacity: 0.5;
  transition: opacity var(--transition);
}
.slide:hover { opacity: 1; }
.slide img { max-width: 100%; max-height: 100%; object-fit: contain; filter: grayscale(1) brightness(2); transition: filter var(--transition); }
.slide:hover img { filter: grayscale(0) brightness(1); }

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

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 70px 80px 50px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}
.footer-brand .footer-logo img { height: 55px; margin-bottom: 20px; }
.footer-brand p {
  font-size: 0.9rem; color: var(--white-dim);
  line-height: 1.7; max-width: 280px; margin-bottom: 24px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white-dim); font-size: 1rem;
  text-decoration: none; transition: var(--transition);
}
.footer-social a:hover {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,168,76,0.08);
}

.footer-col h4 {
  font-family: var(--font-tech);
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 22px;
}
.footer-col a, .footer-col p {
  display: block; font-size: 0.88rem;
  color: var(--white-dim); text-decoration: none;
  margin-bottom: 10px; transition: var(--transition);
}
.footer-col a:hover { color: var(--white); }

.copyright-bar {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 18px 80px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
}
.copyright-bar p {
  font-size: 0.78rem; color: var(--white-dim);
}
.copyright-bar .lang-switcher-footer {
  display: flex; gap: 8px;
}

/* ============================================
   PAGE — PORTFOLIO CARDS
   ============================================ */
.page-hero {
  padding: 160px 60px 80px;
  background: var(--dark);
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(201,168,76,0.06), transparent 70%);
  pointer-events: none;
}

.title-pages {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900; color: var(--white);
}
.title-pages span { color: var(--gold); }
.page-subtitle {
  margin-top: 14px; font-size: 1.05rem;
  color: var(--white-dim); max-width: 540px; margin-inline: auto;
}

/* === PHOTO CARDS === */
.photo-main, .web-main, .design-main {
  padding: 60px;
  background: var(--dark);
  min-height: 60vh;
}
.photo-cards-container, .web-cards-container, .design-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  max-width: 1300px; margin: 0 auto 60px;
}
.photo-card, .web-card, .design-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: pointer;
}
.photo-card:hover, .web-card:hover, .design-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(201,168,76,0.3);
  border-color: rgba(201,168,76,0.4);
}
.photo-card img, .web-card img, .design-card img {
  width: 100%; display: block;
  background: #000; object-fit: contain;
  transition: transform 0.5s ease;
}
.photo-card:hover img, .web-card:hover img, .design-card:hover img {
  transform: scale(1.02);
}
.photo-card-content, .web-card-content, .design-card-content {
  padding: 20px 22px;
}
.photo-card-content h3, .web-card-content h3, .design-card-content h3 {
  font-family: var(--font-display);
  font-size: 1.15rem; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.photo-card-text, .design-card-text {
  font-size: 0.82rem; font-weight: 600;
  color: var(--gold); text-transform: uppercase;
  letter-spacing: 0.08em;
}
.web-card-content a {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 600;
  color: var(--gold); text-decoration: none;
  letter-spacing: 0.05em; text-transform: uppercase;
  transition: gap var(--transition);
}
.web-card-content a:hover { gap: 10px; }
.web-card-content a::after { content: '→'; }

/* ============================================
   CTA BLOCK
   ============================================ */
.cta-contact-photo {
  max-width: 820px; margin: 40px auto 80px;
  padding: 60px 50px; border-radius: var(--radius-lg);
  background: var(--dark-2);
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow-gold);
  position: relative; overflow: hidden;
}
.cta-contact-photo::before {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.08), transparent 70%);
  pointer-events: none;
}
.cta-contact-photo h2 {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 900;
  color: var(--white); margin-bottom: 12px;
}
.cta-contact-photo p {
  font-size: 1rem; color: var(--white-dim); margin-bottom: 32px;
}
.cta-buttons { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ============================================
   BUTTONS — btn-new
   ============================================ */
.btn-new {
  position: relative;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-family: var(--font-tech); font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius); text-decoration: none;
  border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  overflow: hidden; transition: transform var(--transition), box-shadow var(--transition);
}
.btn-new:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(201,168,76,0.5); }
.btn-new-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 32px;
  background: transparent; color: var(--gold);
  font-family: var(--font-tech); font-size: 0.78rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius); text-decoration: none;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.btn-new-outline:hover {
  border-color: var(--gold); background: rgba(201,168,76,0.08);
}

/* ============================================
   CONTACT / DEVIS FORMS
   ============================================ */
.contact-form-section {
  display: flex; gap: 0;
  max-width: 1100px; margin: 80px auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.contact-image {
  flex: 0 0 420px;
  position: relative; overflow: hidden;
}
.contact-image img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.contact-image:hover img { transform: scale(1.03); }
.contact-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,0.15), transparent 60%);
}
.contact-form-container {
  flex: 1; background: var(--dark-2);
  padding: 56px 50px;
  display: flex; flex-direction: column;
}
.contact-form-container h2 {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 900;
  color: var(--white); margin-bottom: 32px;
}
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form .grouped {
  display: flex; gap: 16px;
}
.contact-form .form-field {
  flex: 1; display: flex; flex-direction: column; gap: 7px;
}
.contact-form label {
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--white-dim);
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 13px 16px;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  color: var(--white); font-family: var(--font-body);
  font-size: 0.95rem; width: 100%;
  box-sizing: border-box;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}
.contact-form select option { background: var(--dark-2); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form button[type="submit"] {
  align-self: flex-start;
  position: relative;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-family: var(--font-tech); font-size: 0.8rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border: none; border-radius: var(--radius);
  cursor: pointer; overflow: hidden;
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-form button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.5);
}

/* Button loader */
.button-loader, #button-loader {
  width: 16px; height: 16px;
  border: 2px solid rgba(10,10,11,0.3);
  border-top-color: var(--black);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  display: none;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================
   FLASH MESSAGES
   ============================================ */
.flash-message {
  max-width: 800px; margin: 24px auto;
  padding: 16px 24px; border-radius: var(--radius);
  font-weight: 600; text-align: center;
  font-family: var(--font-body);
}
.flash-message.success {
  background: rgba(16,185,129,0.12);
  border: 1px solid rgba(16,185,129,0.4);
  color: #6EE7B7;
}
.flash-message.error {
  background: rgba(239,68,68,0.12);
  border: 1px solid rgba(239,68,68,0.35);
  color: #FCA5A5;
}

/* ============================================
   PAGINATION
   ============================================ */
.pagination {
  display: flex; justify-content: center;
  margin: 20px 0 60px; gap: 8px;
}
.pagination button {
  width: 40px; height: 40px;
  background: var(--dark-card);
  border: 1px solid var(--border);
  color: var(--white-dim); border-radius: 50%;
  cursor: pointer; font-size: 0.88rem;
  transition: var(--transition);
}
.pagination button:hover {
  border-color: var(--gold); color: var(--gold);
}
.pagination .active-page {
  background: var(--gold); border-color: var(--gold);
  color: var(--black); font-weight: 700;
}

/* ============================================
   MODALS
   ============================================ */
.photo-modal, .image-modal {
  display: none;
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(8px);
  justify-content: center; align-items: center;
}
.photo-modal { display: none; }
.image-modal { display: none; padding-top: 60px; }
.photo-modal-content, .modal-content {
  max-width: 90vw; max-height: 88vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 60px rgba(201,168,76,0.2);
  display: block; margin: auto;
}
.photo-modal-close, .modal-close {
  position: fixed; top: 24px; right: 36px;
  font-size: 2rem; color: var(--gold);
  cursor: pointer; z-index: 10000;
  transition: color var(--transition);
  line-height: 1; font-weight: 300;
}
.photo-modal-close:hover, .modal-close:hover { color: var(--white); }

/* ============================================
   MENTIONS / CGV
   ============================================ */
.mentions-legales, .cgv {
  max-width: 900px; margin: 80px auto;
  padding: 60px; color: var(--white);
}
.mentions-legales h1, .cgv h1 {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 900;
  color: var(--white); text-align: center;
  margin-bottom: 50px;
}
.mentions-legales h2, .cgv h2 {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  color: var(--gold); margin-top: 40px; margin-bottom: 16px;
  border-left: 3px solid var(--gold); padding-left: 16px;
}
.mentions-legales p, .cgv p {
  font-size: 1rem; color: var(--white-dim);
  line-height: 1.75; margin-bottom: 14px;
}
.mentions-legales a, .cgv a {
  color: var(--gold); text-decoration: none; transition: var(--transition);
}
.mentions-legales a:hover, .cgv a:hover { color: var(--gold-light); text-decoration: underline; }

/* ============================================
   PULSE ICON
   ============================================ */
.pulse-icon {
  animation: pulseIcon 2s ease-in-out infinite;
}
@keyframes pulseIcon {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.15); }
}

/* ============================================
   SCROLL REVEAL (JS class)
   ============================================ */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1; transform: translateY(0);
}