/* =========================================
   DESIGN SYSTEM & VARIABLES
   ========================================= */
:root {
  --primary-gold: #c99a2e;
  --primary-gold-dark: #a67c25;
  --primary-gold-light: #eec15c;
  --bg-dark: #0a0a0a;
  --bg-darker: #050505;
  --bg-light-dark: #151515;
  --text-white: #ffffff;
  --text-gray: #a0a0a0;
  --accent-red: #8b0000;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --shadow-gold: 0 10px 30px rgba(201, 154, 46, 0.15);
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
}

/* =========================================
   BASE STYLES
   ========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gold-text {
  color: var(--primary-gold);
}

.section {
  padding: 100px 0;
}

.centered {
  text-align: center;
}

.hidden {
  display: none !important;
}

/* =========================================
   COMPONENTS
   ========================================= */
.section-tag {
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
  display: inline-block;
}

.section-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.section-title.has-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.inline-logo {
  width: 95px;
  height: 95px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(201, 154, 46, 0.5));
  flex-shrink: 0;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto 4rem;
  color: var(--text-gray);
  font-size: 1.1rem;
}

.btn {
  display: inline-block;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-gold {
  background: var(--primary-gold);
  color: var(--bg-darker);
  border: 1px solid var(--primary-gold);
}

.btn-gold:hover {
  background: transparent;
  color: var(--primary-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--glass-border);
}

.btn-outline:hover {
  background: var(--glass);
  border-color: var(--text-white);
  transform: translateY(-3px);
}

.btn-small {
  padding: 0.7rem 1.5rem;
  font-size: 0.85rem;
}

.btn-full {
  width: 100%;
}

/* =========================================
   NAVBAR
   ========================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 1rem 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--glass-border);
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.julija-logo-nav {
  height: 95px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 6px rgba(201, 154, 46, 0.4));
  transition: var(--transition);
}

.scrolled .julija-logo-nav {
  height: 70px;
}

.nav-brand {
  font-size: 1.8rem;
  letter-spacing: 1px;
  color: var(--primary-gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-white);
  opacity: 0.8;
}

.nav-link:hover {
  color: var(--primary-gold);
  opacity: 1;
}

.nav-cta {
  background: var(--primary-gold);
  color: var(--bg-darker);
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
  opacity: 1;
}

.nav-cta:hover {
  background: var(--primary-gold-light);
  color: var(--bg-darker);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 25px;
  height: 2px;
  background: var(--text-white);
  transition: var(--transition);
}

/* =========================================
   LANGUAGE SWITCHER
   ========================================= */
.lang-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--glass-border);
  color: var(--text-white);
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.lang-btn svg:first-child {
  width: 16px;
  height: 16px;
  stroke: var(--primary-gold);
  flex-shrink: 0;
}

.lang-btn:hover {
  background: rgba(201,154,46,0.12);
  border-color: var(--primary-gold);
  color: var(--primary-gold);
}

.lang-chevron {
  width: 12px;
  height: 12px;
  transition: transform 0.3s ease;
}

.lang-switcher.open .lang-chevron {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: rgba(15,15,15,0.97);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  overflow: hidden;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
  backdrop-filter: blur(12px);
  z-index: 2000;
  box-shadow: 0 15px 35px rgba(0,0,0,0.4);
}

.lang-switcher.open .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 0.75rem 1.1rem;
  background: none;
  border: none;
  color: var(--text-gray);
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-align: left;
}

.lang-option:hover {
  background: rgba(201,154,46,0.1);
  color: var(--primary-gold);
}

.lang-option.active {
  color: var(--primary-gold);
  font-weight: 600;
  background: rgba(201,154,46,0.08);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  margin-bottom: 0;
  overflow: hidden;
  background-color: var(--bg-darker);
}

.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  padding: 0 2rem;
  animation: fadeInUp 1s ease-out;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0.5rem 1.5rem;
  background: rgba(201, 154, 46, 0.1);
  border: 1px solid var(--primary-gold);
  color: var(--primary-gold);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.badge-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(201, 154, 46, 0.5));
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 6rem);
  line-height: 1;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-gray);
  margin-bottom: 3rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
}

.stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  color: var(--primary-gold);
  font-weight: 700;
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--glass-border);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0.6;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--primary-gold), transparent);
}

/* =========================================
   ABOUT
   ========================================= */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  background: var(--bg-light-dark);
  border-radius: 20px;
  overflow: visible;
  border: 1px solid var(--glass-border);
  min-height: 480px;
}

.about-image-photo {
  overflow: hidden;
  padding: 0;
}

.about-photo {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center 12%;
  display: block;
  border-radius: 20px;
}

.about-logo-display {
  width: 100%;
  max-width: 300px;
  animation: float 6s ease-in-out infinite;
}

.about-logo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.about-badge-float {
  position: absolute;
  bottom: 40px;
  right: -20px;
  background: var(--primary-gold);
  color: var(--bg-darker);
  padding: 1.5rem;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.about-badge-float svg {
  width: 30px;
  height: 30px;
}

.about-badge-float span {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  max-width: 80px;
  text-align: center;
  line-height: 1.2;
}

.about-text {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: var(--text-gray);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.feature {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-icon {
  background: var(--glass);
  width: 60px;
  height: 60px;
  min-width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--glass-border);
  color: var(--primary-gold);
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary-gold);
}

.feature h4 {
  font-size: 1.3rem;
  margin-bottom: 5px;
  color: var(--primary-gold);
}

/* =========================================
   DOG CARDS
   ========================================= */
.dark-section {
  background-color: var(--bg-darker);
}

.dogs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.dog-card {
  background: var(--bg-light-dark);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  transition: var(--transition);
  position: relative;
}

.dog-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary-gold);
}

.dog-image-placeholder {
  height: 400px;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.dog-silhouette {
  width: 200px;
  opacity: 0.8;
}

.dog-gender {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
}

.male-badge {
  background: #004d80;
  color: #fff;
}

.female-badge {
  background: #80004d;
  color: #fff;
}

.dog-info {
  padding: 30px;
}

.dog-name {
  font-size: 2rem;
  margin-bottom: 10px;
}

.dog-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--glass-border);
}

.dog-color {
  color: var(--text-gray);
  font-size: 0.9rem;
}

.dog-title {
  color: var(--primary-gold);
  font-weight: 600;
  font-size: 0.9rem;
}

.dog-desc {
  font-size: 0.95rem;
  color: var(--text-gray);
  margin-bottom: 25px;
}

.dog-stats {
  display: flex;
  justify-content: space-between;
}

.dog-stat {
  display: flex;
  flex-direction: column;
}

.dog-stat span {
  font-size: 0.75rem;
  color: var(--text-gray);
  text-transform: uppercase;
}

.dog-stat strong {
  font-size: 1.1rem;
  color: var(--text-white);
}

.dog-featured-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 5;
  background: var(--primary-gold);
  color: var(--bg-darker);
  padding: 0.4rem 1rem;
  border-radius: 4px;
  font-weight: 700;
  font-size: 0.8rem;
}

/* =========================================
   CHIOTS – Prochaines Portées
   ========================================= */

.chiots-coming-soon {
  background: linear-gradient(135deg, var(--bg-light-dark) 0%, #110e05 100%);
  border: 1px solid rgba(201, 154, 46, 0.25);
  border-radius: 24px;
  padding: 60px 50px;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.chiots-coming-soon::before {
  content: '';
  position: absolute;
  top: -60px; left: 50%;
  transform: translateX(-50%);
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(201,154,46,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.csoon-icon {
  font-size: 3.5rem;
  margin-bottom: 1.2rem;
  animation: float 4s ease-in-out infinite;
}

.csoon-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-white);
}

.csoon-text {
  color: var(--text-gray);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

/* Étapes timeline horizontale */
.csoon-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  row-gap: 20px;
}

.csoon-step {
  display: flex;
  align-items: center;
  gap: 16px;
  text-align: left;
}

.cstep-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-gold);
  line-height: 1;
  min-width: 48px;
}

.cstep-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cstep-info strong {
  font-size: 0.95rem;
  color: var(--text-white);
  font-weight: 600;
}

.cstep-info span {
  font-size: 0.8rem;
  color: var(--text-gray);
}

.csoon-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, rgba(201,154,46,0.5), rgba(201,154,46,0.1));
  margin: 0 16px;
  flex-shrink: 0;
}

/* Bloc notification */
.csoon-notify {
  padding-top: 2.5rem;
  border-top: 1px solid var(--glass-border);
}

.csoon-notify p {
  color: var(--text-gray);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* Photos aperçu */
.chiots-photos-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 10px;
}

.csoon-photo {
  height: 380px;
  background-size: cover;
  background-position: center top;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition);
}

.csoon-photo:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(201, 154, 46, 0.15);
  border-color: rgba(201, 154, 46, 0.5);
}

/* =========================================
   GALERIE – Vignettes compactes
   ========================================= */
.galerie-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.galerie-thumb {
  height: 180px;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid var(--glass-border);
}

.galerie-thumb:hover {
  transform: scale(1.04);
  box-shadow: 0 8px 30px rgba(201, 154, 46, 0.3);
  z-index: 2;
  border-color: var(--primary-gold);
}

.thumb-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 12px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
  transform: translateY(100%);
  transition: transform 0.3s ease;
  font-size: 0.8rem;
  color: #fff;
  letter-spacing: 0.5px;
}

.galerie-thumb:hover .thumb-overlay {
  transform: translateY(0);
}

/* =========================================
   LIGHTBOX POPUP
   ========================================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lb-stage {
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lb-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.8);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lb-img.fading {
  opacity: 0;
  transform: scale(0.97);
}

.lb-close {
  position: fixed;
  top: 20px; right: 28px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 2.2rem;
  line-height: 1;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(6px);
  z-index: 10001;
}

.lb-close:hover {
  background: rgba(201,154,46,0.25);
  transform: rotate(90deg);
}

.lb-arrow {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
  font-size: 2.8rem;
  line-height: 1;
  width: 58px; height: 58px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
  backdrop-filter: blur(6px);
  z-index: 10001;
}

.lb-arrow:hover {
  background: rgba(201,154,46,0.3);
}

.lb-prev { left: 20px; }
.lb-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lb-next { right: 20px; }
.lb-next:hover { transform: translateY(-50%) translateX(3px); }

.lb-footer {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(8px);
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.08);
}

.lb-caption {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
  letter-spacing: 0.5px;
}

.lb-counter {
  font-size: 0.8rem;
  color: var(--primary-gold);
  font-weight: 600;
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 1px;
}

/* Vidéos galerie */
.galerie-videos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 24px;
  margin-top: 0.5rem;
}

.galerie-video-wrap {
  border-radius: 15px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--bg-light-dark);
  transition: var(--transition);
}

.galerie-video-wrap:hover {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 1px rgba(201, 154, 46, 0.2);
}

.galerie-video {
  width: 100%;
  display: block;
  max-height: 380px;
  object-fit: cover;
  background: #000;
}

.galerie-video-label {
  padding: 14px 20px;
  font-size: 0.9rem;
  color: var(--text-gray);
  font-style: italic;
  letter-spacing: 0.5px;
}

/* =========================================
   TEMOIGNAGES
   ========================================= */
.temoignages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.temoignage-card {
  background: var(--bg-light-dark);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
}

.featured-temoignage {
  border-color: var(--primary-gold);
  background: linear-gradient(135deg, var(--bg-light-dark) 0%, #1a150a 100%);
}

.stars {
  color: var(--primary-gold);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.temoignage-text {
  font-style: italic;
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: var(--text-white);
}

.temoignage-author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.author-avatar {
  width: 50px;
  height: 50px;
  background: var(--glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary-gold);
  border: 1px solid var(--glass-border);
}

.temoignage-author strong {
  display: block;
}

.temoignage-author span {
  font-size: 0.8rem;
  color: var(--text-gray);
}

/* =========================================
   PARTENAIRES
   ========================================= */
.partenaires-section {
  position: relative;
}

.partenaires-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  margin-bottom: 60px;
}

.partenaire-card {
  background: var(--bg-light-dark);
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  padding: 35px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.partenaire-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(201, 154, 46, 0.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.partenaire-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 154, 46, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(201, 154, 46, 0.1);
}

.partenaire-card:hover::before {
  opacity: 1;
}

.featured-partenaire {
  border-color: var(--primary-gold);
  background: linear-gradient(135deg, var(--bg-light-dark) 0%, #1a150a 100%);
}

.featured-partenaire::after {
  content: '⭐ Partenaire Officiel';
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--primary-gold);
  color: var(--bg-darker);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.partenaire-icon {
  font-size: 2.5rem;
  width: 65px;
  height: 65px;
  background: rgba(201, 154, 46, 0.08);
  border: 1px solid rgba(201, 154, 46, 0.2);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.partenaire-card:hover .partenaire-icon {
  background: rgba(201, 154, 46, 0.15);
  border-color: var(--primary-gold);
  transform: scale(1.1);
}

.partenaire-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.partenaire-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary-gold);
}

.partenaire-name {
  font-size: 1.4rem;
  color: var(--text-white);
  line-height: 1.2;
}

.partenaire-desc {
  font-size: 0.9rem;
  color: var(--text-gray);
  line-height: 1.6;
  flex: 1;
}

.partenaire-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-gold);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  opacity: 0.8;
  transition: var(--transition);
  margin-top: 5px;
}

.partenaire-link:hover {
  opacity: 1;
  gap: 10px;
}

.partenaire-link-inactive {
  font-size: 0.8rem;
  color: var(--text-gray);
  font-style: italic;
  opacity: 0.5;
  cursor: default;
  margin-top: 5px;
  display: inline-block;
}

.partenaires-cta {
  text-align: center;
  padding: 50px;
  background: rgba(201, 154, 46, 0.04);
  border: 1px solid rgba(201, 154, 46, 0.15);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.partenaires-cta p {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin: 0;
}

/* =========================================
   RENDEZ-VOUS (FORM)
   =========================================*/
.rdv-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.rdv-desc {
  margin-bottom: 40px;
  font-size: 1.2rem;
  color: var(--text-gray);
}

.rdv-contacts {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.rdv-contact-item {
  display: flex;
  gap: 20px;
  align-items: center;
}

.rdv-contact-icon {
  width: 50px;
  height: 50px;
  background: var(--glass);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.2rem;
  border: 1px solid var(--glass-border);
}

.rdv-contact-item strong {
  display: block;
  color: var(--primary-gold);
}

.rdv-logo-large {
  margin-top: 50px;
  display: flex;
  justify-content: flex-start;
  animation: fadeIn 1s ease-out 0.5s both;
}

.rdv-logo-large img {
  width: 320px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(201, 154, 46, 0.35));
  transition: var(--transition);
}

.rdv-logo-large img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 30px rgba(201, 154, 46, 0.55));
}

.rdv-form-wrap {
  background: var(--bg-light-dark);
  padding: 50px;
  border-radius: 30px;
  border: 1px solid var(--glass-border);
  position: relative;
}

.form-title {
  font-size: 2.2rem;
  margin-bottom: 30px;
  text-align: center;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  color: var(--text-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 20px;
  background: #0a0a0a;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: white;
  font-family: inherit;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-gold);
  background: #111;
}

.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 30px;
  font-size: 0.9rem;
  color: var(--text-gray);
  cursor: pointer;
}

.form-check input {
  margin-top: 4px;
}

.form-success {
  text-align: center;
  padding: 40px 0;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--bg-darker);
  padding: 80px 0 40px;
  border-top: 1px solid var(--glass-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  margin-bottom: 60px;
}

.footer-logo {
  height: 130px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(201, 154, 46, 0.4));
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--text-gray);
  max-width: 300px;
  margin-bottom: 25px;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.social-link {
  width: 40px;
  height: 40px;
  background: var(--glass);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  border: 1px solid var(--glass-border);
}

.social-link:hover {
  background: var(--primary-gold);
  color: var(--bg-darker);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--primary-gold);
  margin-bottom: 25px;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links ul li {
  margin-bottom: 12px;
}

.footer-links ul li a {
  color: var(--text-gray);
  font-size: 0.95rem;
}

.footer-links ul li a:hover {
  color: var(--primary-gold);
  padding-left: 5px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.contact-icon {
  width: 40px;
  height: 40px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-list li:hover .contact-icon {
  background: var(--primary-gold);
  color: var(--bg-darker);
  transform: scale(1.1);
}

.contact-icon svg {
  width: 20px;
  height: 20px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-gold);
}

.contact-value {
  color: var(--text-gray);
  font-weight: 400;
  font-size: 0.95rem;
  transition: var(--transition);
}

a.contact-value:hover {
  color: var(--primary-gold);
}

.footer-bottom {
  padding-top: 40px;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  display: flex;
  justify-content: space-between;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-20px);
  }

  100% {
    transform: translateY(0px);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* =========================================
   RESPONSIVE – 1024px (tablets)
   ========================================= */
@media (max-width: 1024px) {
  .about-grid,
  .rdv-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .dogs-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .rdv-logo-large img {
    width: 220px;
  }
}

/* =========================================
   RESPONSIVE – 768px (mobile)
   ========================================= */
@media (max-width: 768px) {

  /* ── NAV ── */
  .hamburger {
    display: flex;
    z-index: 1100;
  }

  .nav-brand {
    font-size: 1.1rem;
    display: block;
  }

  .julija-logo-nav {
    height: 52px;
  }

  .scrolled .julija-logo-nav {
    height: 44px;
  }

  /* Mobile drawer */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(85%, 320px);
    height: 100dvh;
    background: rgba(5, 5, 5, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--glass-border);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    transition: right 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 1050;
    padding: 5rem 2.5rem 3rem;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--glass-border);
  }

  .nav-links li:first-child {
    border-top: 1px solid var(--glass-border);
  }

  .nav-links.active {
    right: 0;
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.6);
  }

  .nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    opacity: 1;
  }

  .nav-cta {
    background: var(--primary-gold);
    color: var(--bg-darker);
    border-radius: 8px;
    padding: 0.85rem 1.5rem;
    margin-top: 1.5rem;
    display: inline-block;
    width: 100%;
    text-align: center;
  }

  /* Lang switcher on mobile */
  .lang-switcher {
    order: -1;
  }

  /* Hamburger animation */
  .hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  /* Mobile nav overlay backdrop */
  .nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 1040;
  }
  .nav-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* ── HERO ── */
  .hero-title {
    font-size: clamp(2rem, 10vw, 3rem);
    margin-bottom: 1.2rem;
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 2rem;
  }

  .hero-badge {
    font-size: 0.75rem;
    padding: 0.4rem 1rem;
    margin-bottom: 1.5rem;
  }

  .badge-logo {
    width: 36px;
    height: 36px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-bottom: 2.5rem;
  }

  .hero-actions .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }

  .hero-stats {
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-num {
    font-size: 1.8rem;
  }

  .stat-label {
    font-size: 0.68rem;
  }

  .hero-scroll-indicator {
    display: none;
  }

  /* ── SECTIONS ── */
  .section {
    padding: 70px 0;
  }

  .section-title {
    font-size: clamp(1.7rem, 6vw, 2.2rem);
    line-height: 1.15;
  }

  .section-tag {
    font-size: 0.78rem;
    letter-spacing: 2.5px;
  }

  .section-desc {
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
  }

  /* ── ABOUT ── */
  .about-grid {
    gap: 0;
  }

  .about-image-wrap {
    border-radius: 16px;
    min-height: 340px;
  }

  .about-photo {
    min-height: 340px;
    object-position: center 10%;
    border-radius: 16px;
  }

  .about-badge-float {
    right: 12px;
    bottom: 12px;
    padding: 0.85rem 1rem;
    border-radius: 14px;
  }

  .about-badge-float svg {
    width: 22px;
    height: 22px;
  }

  .about-badge-float span {
    font-size: 0.7rem;
    max-width: 70px;
  }

  .about-content {
    padding-top: 2rem;
  }

  .section-title.has-logo {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 1.8rem;
  }

  .inline-logo {
    width: 56px;
    height: 56px;
  }

  .about-text {
    font-size: 0.95rem;
  }

  .about-features {
    gap: 20px;
  }

  .feature {
    gap: 15px;
  }

  .feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 10px;
  }

  .feature-icon svg {
    width: 22px;
    height: 22px;
  }

  .feature h4 {
    font-size: 1.1rem;
  }

  /* ── DOGS GRID ── */
  .dogs-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .dog-card {
    border-radius: 16px;
  }

  .dog-image-placeholder {
    height: 300px;
  }

  .dog-info {
    padding: 22px 20px;
  }

  .dog-name {
    font-size: 1.7rem;
  }

  .dog-stats {
    gap: 10px;
    flex-wrap: wrap;
  }

  /* ── CHIOTS ── */
  .chiots-coming-soon {
    padding: 40px 24px;
    border-radius: 20px;
  }

  .csoon-icon {
    font-size: 2.8rem;
    margin-bottom: 1rem;
  }

  .csoon-title {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
  }

  .csoon-text {
    font-size: 0.95rem;
    margin-bottom: 2rem;
  }

  .csoon-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 0;
  }

  .csoon-divider {
    width: 2px;
    height: 24px;
    margin: 0 0 0 22px;
    background: linear-gradient(to bottom, rgba(201,154,46,0.5), rgba(201,154,46,0.1));
  }

  .csoon-notify {
    padding-top: 2rem;
  }

  .csoon-notify p {
    font-size: 0.9rem;
  }

  .chiots-photos-preview {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
  }

  .csoon-photo {
    height: 260px;
    border-radius: 18px;
  }

  /* ── GALLERY ── */
  .galerie-thumbs {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .galerie-thumb {
    height: 130px;
    border-radius: 8px;
  }

  .galerie-videos {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* ── LIGHTBOX MOBILE ── */
  .lb-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.8rem;
  }

  .lb-close {
    top: 14px;
    right: 16px;
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }

  .lb-prev { left: 6px; }
  .lb-next { right: 6px; }

  .lb-footer {
    padding: 8px 14px;
    gap: 12px;
    bottom: 14px;
    max-width: 92vw;
    font-size: 0.8rem;
  }

  /* ── TEMOIGNAGES ── */
  .temoignages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .temoignage-card {
    padding: 28px 22px;
    border-radius: 16px;
  }

  .temoignage-text {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  /* ── PARTENAIRES ── */
  .partenaires-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .partenaire-card {
    padding: 28px 22px;
    border-radius: 16px;
  }

  .partenaires-cta {
    padding: 28px 20px;
    flex-direction: column;
    gap: 20px;
    border-radius: 16px;
    text-align: center;
  }

  .partenaires-cta p {
    font-size: 1rem;
  }

  /* ── RDV (FORM) ── */
  .rdv-grid {
    gap: 40px;
  }

  .rdv-desc {
    font-size: 1rem;
    margin-bottom: 28px;
  }

  .rdv-contacts {
    gap: 22px;
  }

  .rdv-contact-item {
    gap: 14px;
  }

  .rdv-contact-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .rdv-form-wrap {
    padding: 30px 20px;
    border-radius: 20px;
  }

  .form-title {
    font-size: 1.8rem;
    margin-bottom: 24px;
  }

  .rdv-logo-large {
    display: none;
  }

  /* ── FOOTER ── */
  .footer {
    padding: 60px 0 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }

  .footer-logo {
    height: 100px;
    margin-bottom: 16px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    padding-top: 28px;
  }

  .footer-brand p {
    max-width: 100%;
    font-size: 0.9rem;
  }

  .social-link {
    width: 44px;
    height: 44px;
  }
}

/* =========================================
   RESPONSIVE – 480px (small phones)
   ========================================= */
@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }

  /* Nav */
  .nav-brand {
    font-size: 0.95rem;
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .julija-logo-nav {
    height: 46px;
  }

  /* Hero */
  .hero-title {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .hero-content {
    padding: 0 0.75rem;
  }

  .hero-badge {
    font-size: 0.7rem;
    letter-spacing: 1.5px;
  }

  .hero-stats {
    gap: 8px;
  }

  .stat-divider {
    display: none;
  }

  .stat-num {
    font-size: 1.6rem;
  }

  /* Sections */
  .section {
    padding: 56px 0;
  }

  .section-title {
    font-size: clamp(1.5rem, 7vw, 1.9rem);
  }

  /* Buttons */
  .btn {
    padding: 0.85rem 1.6rem;
    font-size: 0.88rem;
  }

  /* About */
  .about-image-wrap,
  .about-photo {
    min-height: 290px;
    border-radius: 14px;
  }

  .inline-logo {
    width: 48px;
    height: 48px;
  }

  /* Dogs */
  .dog-image-placeholder {
    height: 260px;
  }

  .dog-info {
    padding: 18px 16px;
  }

  .dog-name {
    font-size: 1.5rem;
  }

  /* Chiots */
  .chiots-coming-soon {
    padding: 28px 16px;
    border-radius: 16px;
  }

  .csoon-title {
    font-size: 1.4rem;
  }

  .csoon-text {
    font-size: 0.9rem;
  }

  .cstep-num {
    font-size: 1.8rem;
    min-width: 38px;
  }

  .csoon-photo {
    height: 230px;
    border-radius: 14px;
  }

  /* Gallery */
  .galerie-thumbs {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  .galerie-thumb {
    height: 110px;
    border-radius: 7px;
  }

  /* Form */
  .rdv-form-wrap {
    padding: 24px 16px;
    border-radius: 16px;
  }

  .form-title {
    font-size: 1.6rem;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 16px; /* prevents iOS zoom */
    padding: 11px 14px;
  }

  /* Temoignages */
  .temoignage-card {
    padding: 22px 16px;
  }

  .temoignage-text {
    font-size: 0.9rem;
  }

  /* Partners */
  .partenaire-card {
    padding: 22px 16px;
    border-radius: 14px;
  }

  /* Footer */
  .footer {
    padding: 50px 0 28px;
  }

  .footer-logo {
    height: 80px;
  }

  .footer-links h4,
  .footer-contact h4 {
    font-size: 1rem;
    margin-bottom: 16px;
  }

  .contact-icon {
    width: 36px;
    height: 36px;
  }

  .contact-icon svg {
    width: 16px;
    height: 16px;
  }

  .contact-value {
    font-size: 0.85rem;
    word-break: break-all;
  }
}

/* =========================================
   RESPONSIVE – 360px (very small phones)
   ========================================= */
@media (max-width: 360px) {
  .nav-brand {
    display: none;
  }

  .hero-title {
    font-size: 1.7rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .btn {
    padding: 0.75rem 1.2rem;
    font-size: 0.82rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .galerie-thumb {
    height: 95px;
  }

  .dog-image-placeholder {
    height: 230px;
  }

  .csoon-photo {
    height: 200px;
  }
}