/* Instagram Feed & Gallery Styling */
    .instagram-section, .gallery-section {
      position: relative;
      padding: 7rem 0;
    }

    .instagram-section {
      background-color: var(--white);
    }

    .instagram-feed-container, .instagram-gallery-container {
      margin: 0 auto;
      max-width: 100%;
      overflow: hidden;
      border-radius: var(--border-radius);
      box-shadow: var(--box-shadow);
    }

    /* Style pour les widgets externes */
    .snapwidget-widget, .lightwidget-widget {
      display: block;
      width: 100%;
      border: none;
      height: 450px;
      margin: 0 auto;
    }

    /* Responsive styles pour les widgets Instagram */
    @media (max-width: 767.98px) {
      .snapwidget-widget, .lightwidget-widget {
        height: 350px;
      }
    }

    @media (max-width: 575.98px) {
      .snapwidget-widget, .lightwidget-widget {
        height: 300px;
      }
    }

    /* Photographer Profiles */
    .photographer-section {
      background-color: var(--white);
      position: relative;
    }

    .photographer-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23f7f1e5" fill-opacity="0.3" d="M0,32L48,48C96,64,192,96,288,122.7C384,149,480,171,576,165.3C672,160,768,128,864,138.7C960,149,1056,203,1152,202.7C1248,203,1344,149,1392,122.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
      background-size: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .photographer-card {
      background-color: var(--light);
      border-radius: var(--border-radius);
      overflow: hidden;
      box-shadow: var(--box-shadow);
      transition: var(--transition);
      height: 100%;
      position: relative;
      z-index: 1;
    }

    .photographer-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--box-shadow-hover);
    }

    .photographer-img {
      height: 300px;
      overflow: hidden;
      position: relative;
    }

    .photographer-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: var(--transition);
    }

    .photographer-card:hover .photographer-img img {
      transform: scale(1.1);
    }

    .photographer-content {
      padding: 2rem;
    }

    .photographer-content h3 {
      margin-bottom: 1rem;
      font-size: 1.8rem;
      position: relative;
      display: inline-block;
      padding-bottom: 0.8rem;
    }

    .photographer-content h3::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 50px;
      height: 2px;
      background-color: var(--secondary);
    }

    .social-link-photographer {
      display: inline-block;
      padding: 0.5rem 1rem;
      background-color: var(--light);
      color: var(--secondary);
      border-radius: 30px;
      font-weight: 500;
      margin-top: 1rem;
      border: 1px solid var(--secondary);
      transition: var(--transition);
    }

    .social-link-photographer:hover {
      background-color: var(--secondary);
      color: var(--white);
      transform: translateY(-3px);
    }

    .social-link-photographer i {
      margin-right: 5px;
    }

    /* Photo Gallery */
    .gallery-section {
      background-color: var(--champagne);
      position: relative;
    }

    .gallery-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.4" d="M0,224L48,218.7C96,213,192,203,288,192C384,181,480,171,576,181.3C672,192,768,224,864,213.3C960,203,1056,149,1152,149.3C1248,149,1344,203,1392,229.3L1440,256L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top;
      background-size: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .gallery-item {
      margin-bottom: 30px;
      position: relative;
      overflow: hidden;
      border-radius: var(--border-radius);
      box-shadow: var(--box-shadow);
    }

    .gallery-item img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      transition: var(--transition);
    }

    .gallery-item:hover img {
      transform: scale(1.1);
    }

    .gallery-item::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0) 70%);
      opacity: 1;
      transition: var(--transition);
    }

    .gallery-item:hover::after {
      background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1) 80%);
    }

    .gallery-item-caption {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      padding: 1.5rem;
      z-index: 2;
      color: var(--white);
      background: rgba(0, 0, 0, 0.6);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      border-radius: 8px 8px 0 0;
      margin: 0.5rem;
      margin-bottom: 0;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
      transform: translateY(0);
      opacity: 1;
      transition: var(--transition);
    }

    .gallery-item-caption h5 {
      color: var(--white);
      font-weight: 600;
      margin-bottom: 0.5rem;
      font-size: 1.1rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9);
    }

    .gallery-item-caption p {
      color: rgba(255, 255, 255, 0.95);
      margin-bottom: 0;
      font-size: 0.9rem;
      line-height: 1.4;
      text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
    }

    .gallery-item:hover .gallery-item-caption {
      background: rgba(0, 0, 0, 0.75);
      transform: translateY(-5px);
      box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    /* Why Choose Us */
    .why-section {
      background-color: var(--light);
      position: relative;
    }

    .why-card {
      background-color: var(--white);
      border-radius: var(--border-radius);
      box-shadow: var(--box-shadow);
      transition: var(--transition);
      height: 100%;
    }

    .why-card:hover {
      transform: translateY(-10px);
      box-shadow: var(--box-shadow-hover);
    }

    .icon-box {
      width: 80px;
      height: 80px;
      background: var(--light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto;
      transition: var(--transition);
    }

    .why-card:hover .icon-box {
      background: var(--champagne);
    }

    /* Philosophy Section */
    .philosophy-section {
      background-color: var(--champagne);
      position: relative;
    }

    .philosophy-section::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.4" d="M0,224L48,218.7C96,213,192,203,288,192C384,181,480,171,576,181.3C672,192,768,224,864,213.3C960,203,1056,149,1152,149.3C1248,149,1344,203,1392,229.3L1440,256L1440,0L1392,0C1344,0,1248,0,1152,0C1056,0,960,0,864,0C768,0,672,0,576,0C480,0,384,0,288,0C192,0,96,0,48,0L0,0Z"></path></svg>') no-repeat top;
      background-size: cover;
      opacity: 0.3;
      z-index: 0;
    }

    .philosophy-card {
      background-color: var(--white);
      border-radius: var(--border-radius);
      padding: 3rem;
      box-shadow: var(--box-shadow);
      position: relative;
      z-index: 1;
    }

    .philosophy-quote {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.8rem;
      line-height: 1.5;
      font-style: italic;
      color: var(--secondary);
      margin-bottom: 2rem;
      position: relative;
      padding-left: 2rem;
    }

    .philosophy-quote::before {
      content: '"';
      font-family: 'Cormorant Garamond', serif;
      font-size: 5rem;
      color: var(--secondary);
      opacity: 0.2;
      position: absolute;
      top: -2rem;
      left: -1rem;
    }

    /* Contact CTA */
    .contact-cta {
      background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1486916856108-3e5a080542f5?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1774&q=80');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      color: var(--white);
      text-align: center;
      padding: 5rem 0;
    }

    .contact-cta h2 {
      color: var(--white);
      margin-bottom: 1.5rem;
      font-size: 2.5rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    }

    .contact-cta p {
      color: rgba(255, 255, 255, 0.9);
      margin-bottom: 2rem;
      max-width: 700px;
      margin-left: auto;
      margin-right: auto;
      font-size: 1.1rem;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    }

    /* Styles améliorés pour la section contact */
    .contact-buttons {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin-top: 2.5rem;
    }

    .contact-btn {
      display: inline-block;
      padding: 15px 30px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-size: 16px;
      border-radius: 3px;
      transition: all 0.3s ease;
      text-decoration: none;
      min-width: 220px;
    }

    .devis-btn {
      background-color: #D2B48C;
      color: #fff;
      border: 2px solid #D2B48C;
    }

    .devis-btn:hover {
      background-color: #C19A6B;
      border-color: #C19A6B;
      color: #fff;
      transform: translateY(-3px);
    }

    .phone-btn {
      background-color: rgba(255, 255, 255, 0.9);
      color: #333;
      font-weight: 600;
      border: 2px solid #fff;
    }

    .phone-btn:hover {
      background-color: #fff;
      color: #000;
      transform: translateY(-3px);
    }

    .whatsapp-btn {
      background-color: #25D366;
      color: white;
      border: 2px solid #25D366;
    }

    .whatsapp-btn:hover {
      background-color: #128C7E;
      border-color: #128C7E;
      color: white;
      transform: translateY(-3px);
    }

    /* Section Headers */
    .section-header {
      text-align: center;
      margin-bottom: 5rem;
      position: relative;
    }

    .section-header .script-heading {
      color: var(--secondary);
      font-size: 2.5rem;
      margin-bottom: 0.5rem;
      display: block;
    }

    .section-header h2 {
      font-size: clamp(2rem, 5vw, 3rem);
      margin-bottom: 1.5rem;
      position: relative;
      display: inline-block;
      padding-bottom: 1rem;
    }

    .section-header h2::after {
      content: '';
      position: absolute;
      height: 2px;
      width: 60%;
      background-color: var(--secondary);
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
    }

    .section-header p {
      max-width: 700px;
      margin: 0 auto;
      font-size: 1.1rem;
      color: var(--charcoal);
    }

    /* Service Features */
    .service-features {
      padding: 0;
      list-style: none;
    }

    .service-features li {
      position: relative;
      padding-left: 1.5rem;
      margin-bottom: 1rem;
      font-size: 1.1rem;
    }

    .service-features li::before {
      content: '\f00c';
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      position: absolute;
      left: 0;
      top: 0.2rem;
      color: var(--secondary);
      font-size: 0.9rem;
    }

    /* Responsive Styles */
    @media (max-width: 1199.98px) {
      section {
        padding: 5rem 0;
      }
    }

    @media (max-width: 991.98px) {

      .photographer-card {
        margin-bottom: 2rem;
      }

      .hero-content h1 {
        font-size: 2.8rem;
      }
    }

    @media (max-width: 767.98px) {
      .hero-photograph {
        height: 50vh;
        min-height: 400px;
      }

      .hero-content {
        padding: 2rem;
      }

      .hero-content h1 {
        font-size: 2.5rem;
      }

      .hero-content .script-heading {
        font-size: 2rem;
      }

      .contact-btn {
        width: 100%;
        margin-bottom: 15px;
      }
    }

    @media (max-width: 575.98px) {
      .hero-photograph {
        height: 40vh;
        min-height: 300px;
      }

      .hero-content {
        padding: 1.5rem;
      }

      .hero-content h1 {
        font-size: 2rem;
      }

      .hero-content .script-heading {
        font-size: 1.8rem;
      }

      .hero-content p {
        font-size: 1rem;
      }

      /* Amélioration des captions sur mobile */
      .gallery-item-caption {
        padding: 1rem;
        margin: 0.25rem;
        border-radius: 6px 6px 0 0;
      }

      .gallery-item-caption h5 {
        font-size: 1rem;
      }

      .gallery-item-caption p {
        font-size: 0.85rem;
        line-height: 1.3;
      }
    }

    /* Ajout des styles pour la section héro */
    .hero-photograph {
      background: linear-gradient(135deg, #FAF0E6 0%, #F7F1E5 100%);
      padding: 100px 0;
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero-photograph::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23D2B48C" opacity="0.1"/></svg>') repeat;
      animation: float 20s ease-in-out infinite;
      z-index: 0;
    }

    .hero-content {
      text-align: left;
      position: relative;
      z-index: 1;
    }

    .hero-logo {
      width: 300px;
      height: auto;
      margin-bottom: 1.5rem;
      max-width: 100%;
    }

    .hero-subtitle {
      font-family: 'Alex Brush', cursive;
      color: #8B7355;
      font-size: 1.8rem;
      margin-bottom: 0.5rem;
    }

    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      color: #6B5B73;
      font-size: 3rem;
      font-weight: 600;
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .hero-description {
      color: #8B7B83;
      font-size: 1.1rem;
      line-height: 1.6;
      margin-bottom: 2rem;
    }

    /* Hero Features */
    .hero-features {
      margin: 2rem 0;
    }

    .feature-item {
      display: flex;
      align-items: center;
      padding: 0.75rem;
      background: rgba(255, 255, 255, 0.6);
      border-radius: 8px;
      font-weight: 500;
      color: #6B5B73;
      transition: all 0.3s ease;
      border-left: 3px solid #D2B48C;
    }

    .feature-item:hover {
      background: rgba(255, 255, 255, 0.8);
      transform: translateX(5px);
    }

    .feature-item i {
      color: #D2B48C !important;
    }

    /* Hero Actions */
    .hero-actions {
      margin-top: 2.5rem;
    }

    .hero-actions .btn {
      padding: 0.75rem 1.5rem;
      font-weight: 500;
      border-radius: 25px;
      transition: all 0.3s ease;
    }

    /* Hero Image Section */
    .hero-image-section {
      position: relative;
      z-index: 1;
    }

    .hero-image-wrapper {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .hero-main-image {
      width: 100%;
      height: 500px;
      object-fit: cover;
      transition: transform 0.3s ease;
    }

    .hero-image-wrapper:hover .hero-main-image {
      transform: scale(1.05);
    }

    /* Hero Badge */
    .hero-badge {
      position: absolute;
      top: 20px;
      right: 20px;
      background: rgba(210, 180, 140, 0.95);
      color: white;
      padding: 0.75rem 1rem;
      border-radius: 50px;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
      backdrop-filter: blur(10px);
    }

    .hero-badge i {
      font-size: 1.1rem;
    }

    .hero-badge strong {
      display: block;
      font-size: 0.8rem;
    }

    .hero-badge small {
      display: block;
      font-size: 0.7rem;
      opacity: 0.9;
    }


    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    /* ===== EFFETS PHOTOGRAPHIQUES ANIMÉS ===== */

    /* Flash d'appareil photo */
    @keyframes cameraFlash {
      0% { opacity: 0; transform: scale(0.5); }
      10% { opacity: 1; transform: scale(1.2); background: rgba(255, 255, 255, 0.9); }
      20% { opacity: 0.8; transform: scale(1); background: rgba(255, 255, 255, 0.6); }
      100% { opacity: 0; transform: scale(0.8); background: transparent; }
    }

    /* Développement photo (effet fade-in progressif) */
    @keyframes photoReveal {
      0% { 
        opacity: 0; 
        filter: brightness(2) contrast(0.5) sepia(1); 
        transform: scale(1.1); 
      }
      30% { 
        opacity: 0.3; 
        filter: brightness(1.5) contrast(0.7) sepia(0.8); 
      }
      60% { 
        opacity: 0.7; 
        filter: brightness(1.2) contrast(0.9) sepia(0.3); 
      }
      100% { 
        opacity: 1; 
        filter: brightness(1) contrast(1) sepia(0); 
        transform: scale(1); 
      }
    }

    /* Effet de respiration douce */
    @keyframes breathingEffect {
      0%, 100% { 
        transform: scale(1); 
        filter: brightness(1) contrast(1);
      }
      50% { 
        transform: scale(1.03); 
        filter: brightness(1.05) contrast(1.1);
      }
    }

    /* Effet pellicule qui défile */
    @keyframes filmStrip {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }

    /* Ouverture/fermeture d'objectif - Désactivé */
    @keyframes lensAperture {
      0% { clip-path: none; opacity: 1; }
      100% { clip-path: none; opacity: 1; }
    }


    /* ===== APPLICATION DES EFFETS ===== */

    /* Flash sur le hero au chargement */
    .hero-photograph::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at center, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
      opacity: 0;
      pointer-events: none;
      z-index: 5;
      animation: cameraFlash 2s ease-out 0.5s;
    }

    /* Effet révélation photo sur l'image principale */
    .hero-main-image {
      animation: photoReveal 3s ease-out 1s both;
    }

    /* Effet respiration sur les images de galerie au hover */
    .gallery-item img {
      transition: all 0.8s ease;
    }

    .gallery-item:hover img {
      animation: breathingEffect 2s ease-in-out infinite;
    }

    /* Pellicule décorative animée */
    .hero-photograph::after {
      content: '';
      position: absolute;
      top: 20px;
      left: -100px;
      width: 200px;
      height: 30px;
      background: 
        repeating-linear-gradient(
          90deg,
          #222 0px,
          #222 10px,
          transparent 10px,
          transparent 15px
        ),
        linear-gradient(90deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
      border-radius: 2px;
      opacity: 0.6;
      animation: filmStrip 8s linear infinite;
      z-index: 1;
    }

    /* Effet d'ouverture sur les cartes au scroll - Stabilisé */
    .service-card,
    .gallery-item {
      opacity: 1 !important;
      visibility: visible !important;
      clip-path: none !important;
    }

    /* Effet subtil sur les images de la galerie */
    .gallery-item {
      transform-style: preserve-3d;
      transition: all 0.6s ease;
    }

    .gallery-item:hover {
      transform: translateY(-5px) rotate(1deg);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    /* Effet de développement progressif sur les features */
    .feature-item {
      opacity: 0;
      animation: photoReveal 1s ease-out both;
    }

    .feature-item:nth-child(1) { animation-delay: 0.2s; }
    .feature-item:nth-child(2) { animation-delay: 0.4s; }
    .feature-item:nth-child(3) { animation-delay: 0.6s; }
    .feature-item:nth-child(4) { animation-delay: 0.8s; }

    /* Flash subtil sur les boutons */
    .hero-actions .btn:hover {
      position: relative;
      overflow: hidden;
    }

    .hero-actions .btn:hover::after {
      content: '';
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
      animation: flashSweep 0.6s ease-out;
    }

    @keyframes flashSweep {
      0% { left: -100%; }
      100% { left: 100%; }
    }

    /* Effet de grain photo sur le background */
    .hero-photograph {
      position: relative;
    }

    .hero-photograph::before {
      background-image: 
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23D2B48C" opacity="0.1"/></svg>'),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="25" cy="25" r="0.5" fill="%23000" opacity="0.02"/><circle cx="75" cy="75" r="0.5" fill="%23000" opacity="0.02"/><circle cx="50" cy="80" r="0.3" fill="%23000" opacity="0.01"/></svg>');
      background-size: 50px 50px, 25px 25px;
      animation: float 20s ease-in-out infinite, grainMove 5s linear infinite;
    }

    @keyframes grainMove {
      0% { background-position: 0 0, 0 0; }
      25% { background-position: 10px 5px, -5px 10px; }
      50% { background-position: -5px 10px, 10px -5px; }
      75% { background-position: 5px -10px, -10px 5px; }
      100% { background-position: 0 0, 0 0; }
    }

    /* Effet de vignettage subtil */
    .gallery-item::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: radial-gradient(circle at center, transparent 60%, rgba(0,0,0,0.1) 100%);
      opacity: 0;
      transition: opacity 0.3s ease;
      z-index: 1;
      pointer-events: none;
    }

    .gallery-item:hover::before {
      opacity: 1;
    }

    /* ===== ÉLÉMENTS DÉCORATIFS PHOTOGRAPHIQUES ===== */

    /* Appareil photo flottant animé */
    .floating-camera {
      position: absolute;
      top: 15%;
      right: 10%;
      width: 60px;
      height: 60px;
      background: rgba(210, 180, 140, 0.9);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 1.5rem;
      animation: cameraFloat 4s ease-in-out infinite, cameraShoot 8s infinite;
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
      z-index: 3;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .floating-camera:hover {
      transform: scale(1.1);
      animation-duration: 2s, 4s;
    }

    @keyframes cameraFloat {
      0%, 100% { transform: translateY(0px) rotate(0deg); }
      50% { transform: translateY(-15px) rotate(5deg); }
    }

    @keyframes cameraShoot {
      0%, 90%, 100% { box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); }
      95% { 
        box-shadow: 
          0 10px 20px rgba(0, 0, 0, 0.2),
          0 0 0 20px rgba(255, 255, 255, 0.4),
          0 0 0 40px rgba(255, 255, 255, 0.1);
      }
    }

    /* Anneau de flash pour l'appareil photo */
    .camera-flash-ring {
      position: absolute;
      top: -10px;
      left: -10px;
      right: -10px;
      bottom: -10px;
      border: 2px solid rgba(255, 255, 255, 0);
      border-radius: 50%;
      animation: flashRing 8s infinite;
    }

    @keyframes flashRing {
      0%, 90%, 100% { 
        border-color: rgba(255, 255, 255, 0);
        transform: scale(1);
      }
      95% { 
        border-color: rgba(255, 255, 255, 0.8);
        transform: scale(1.3);
      }
    }

    /* Pellicule décorative */
    .film-decoration {
      position: absolute;
      top: 60%;
      left: -50px;
      width: 150px;
      height: 40px;
      background: linear-gradient(90deg, #1a1a1a 0%, #333 100%);
      border-radius: 4px;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 10px;
      animation: filmFloat 6s ease-in-out infinite;
      z-index: 2;
      opacity: 0.7;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    }

    @keyframes filmFloat {
      0%, 100% { transform: translateX(0px) rotate(-2deg); }
      50% { transform: translateX(20px) rotate(2deg); }
    }

    .film-frame {
      width: 12px;
      height: 20px;
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 1px;
      animation: filmPerf 3s ease-in-out infinite;
    }

    .film-frame:nth-child(2) { animation-delay: 0.5s; }
    .film-frame:nth-child(3) { animation-delay: 1s; }

    @keyframes filmPerf {
      0%, 100% { background: rgba(255, 255, 255, 0.1); }
      50% { background: rgba(255, 255, 255, 0.3); }
    }

    /* Effet de développement sur scroll pour toute la page */
    body {
      animation: pageReveal 1.5s ease-out;
    }

    @keyframes pageReveal {
      0% { 
        filter: brightness(0) contrast(0);
        transform: scale(1.02);
      }
      30% { 
        filter: brightness(0.3) contrast(0.3);
        transform: scale(1.01);
      }
      60% { 
        filter: brightness(0.7) contrast(0.7);
        transform: scale(1.005);
      }
      100% { 
        filter: brightness(1) contrast(1);
        transform: scale(1);
      }
    }

    /* Effet de focus sur les titres */
    h1, h2, h3 {
      animation: titleFocus 2s ease-out 0.5s both;
    }

    @keyframes titleFocus {
      0% { 
        filter: blur(2px);
        opacity: 0;
        transform: translateY(20px);
      }
      60% { 
        filter: blur(1px);
        opacity: 0.7;
      }
      100% { 
        filter: blur(0px);
        opacity: 1;
        transform: translateY(0px);
      }
    }

    /* ===== RESPONSIVE MOBILE OPTIMISÉ ===== */
    @media (max-width: 991.98px) {
      .hero-photograph {
        padding: 60px 0;
        min-height: 100vh !important;
        text-align: center;
      }

      /* Force l'ordre en colonne inversée sur mobile */
      .hero-photograph .row {
        flex-direction: column-reverse !important;
      }

      .hero-photograph .col-lg-6 {
        width: 100% !important;
        max-width: 100% !important;
      }

      .hero-content {
        text-align: center;
        margin-top: 2rem;
        padding: 0 1rem;
      }

      .hero-logo {
        width: 220px;
        margin-bottom: 1rem;
      }

      .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
      }

      .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.1;
      }

      .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0 1rem;
      }

      .hero-image-section {
        margin-bottom: 2rem;
        padding: 0 1rem;
      }

      .hero-main-image {
        height: 300px;
        border-radius: 15px;
      }

      .hero-image-wrapper {
        border-radius: 15px;
      }

      .hero-badge {
        position: static !important;
        display: inline-flex;
        margin-bottom: 1rem;
        justify-content: center;
      }

      .hero-features {
        margin: 1.5rem 0;
      }

      .feature-item {
        margin-bottom: 0.75rem;
        padding: 0.6rem;
        font-size: 0.9rem;
      }

      .hero-actions {
        text-align: center;
        margin-top: 2rem;
      }

      .hero-actions .btn {
        display: block;
        margin: 0.5rem auto;
        width: 85%;
        max-width: 280px;
      }

      .floating-camera {
        top: 15%;
        right: 5%;
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
      }

      .film-decoration {
        display: none;
      }

      .hero-photograph::before {
        animation: float 30s ease-in-out infinite;
      }
    }

    @media (max-width: 575.98px) {
      .hero-photograph {
        padding: 40px 0;
        min-height: 100vh !important;
      }

      .hero-content {
        padding: 0 0.5rem;
      }

      .hero-logo {
        width: 180px;
      }

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

      .hero-title {
        font-size: 1.7rem;
      }

      .hero-description {
        font-size: 0.9rem;
        padding: 0 0.5rem;
      }

      .hero-main-image {
        height: 250px;
        border-radius: 12px;
      }

      .hero-features .row {
        gap: 0.5rem;
      }

      .feature-item {
        padding: 0.5rem;
        font-size: 0.85rem;
      }

      .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
      }

      .floating-camera {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        top: 10%;
      }
    }

    /* ===== LIGHTBOX STYLES ===== */
    .lightbox {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.9);
      display: none;
      justify-content: center;
      align-items: center;
      z-index: 9999;
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
    }

    .lightbox.active {
      display: flex;
    }

    .lightbox-content {
      position: relative;
      max-width: 90%;
      max-height: 90%;
      text-align: center;
    }

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

    .lightbox-caption {
      color: white;
      padding: 1rem;
      font-style: italic;
      font-size: 1.1rem;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
      max-width: 600px;
      margin: 0 auto;
    }

    .lightbox-close {
      position: absolute;
      top: 20px;
      right: 30px;
      font-size: 40px;
      color: white;
      cursor: pointer;
      z-index: 10000;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(0, 0, 0, 0.5);
      border-radius: 50%;
      transition: all 0.3s ease;
    }

    .lightbox-close:hover {
      background: rgba(255, 255, 255, 0.2);
      transform: scale(1.1);
    }

    .gallery-item img {
      cursor: default;
      transition: var(--transition);
    }

