:root {
      --gold: #c8a05c;
      --dark-gold: #b8924d;
      --light-gold: #d4b06f;
      --charcoal: #3a3a3a;
      --dark-gray: #2a2a2a;
      --light-gray: #e8e6e1;
      --white: #ffffff;
    }
    
    * { 
      margin: 0; 
      padding: 0; 
      box-sizing: border-box; 
      font-family: 'Poppins', sans-serif; 
    }
    
    body { 
      line-height: 1.6; 
      color: var(--charcoal); 
      overflow-x: hidden; 
      background: var(--light-gray);
      padding-top: 90px;
    }
    
    .container { 
      max-width: 1200px; 
      margin: 0 auto; 
      padding: 0 20px; 
    }

    /* HEADER */
    header {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 32px rgba(58,58,58,0.1);
      position: fixed; 
      width: 100%; 
      z-index: 1000;
      border-bottom: 2px solid var(--gold);
      animation: slideDown 0.5s ease;
      height: 90px;
      display: flex;
      align-items: center;
      top: 0;
      left: 0;
    }
    
    @keyframes slideDown{
      from{transform:translateY(-100%);opacity:0;}
      to{transform:translateY(0);opacity:1;}
    }

    .navbar { 
      display: flex; 
      justify-content: space-between; 
      align-items: center; 
      width: 100%;
      padding: 0;
    }
    
    .logo-container {
      display: flex;
      align-items: center;
      gap: 15px;
    }
    
    .logo-img{
      width: 50px;
      max-width: 50px;
      height: 50px;
      max-height: 50px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      flex-shrink: 0;
      box-sizing: border-box;
    }

    .logo-img img{
      width: 100% !important;
      max-width: 100% !important;
      height: 100% !important;
      max-height: 100% !important;
      object-fit: cover;
      display: block;
    }
    
    .logo { 
      font-size: 24px; 
      background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 800; 
      text-decoration: none;
      transition: transform 0.3s;
      letter-spacing: -0.5px;
    }
    
    .logo:hover { 
      transform: scale(1.05); 
    }
    
    .nav-links { 
      display: flex; 
      list-style: none; 
      gap: 30px;
      align-items: center;
    }

    /* Ajout pour espacer le menu de CITY LIGHTS MAKATI */
    .navbar {
      display: flex;
      justify-content: flex-start;
      align-items: center;
      gap: 60px; /* Ajuste la valeur selon l'espace que tu veux */
    }

    
    .nav-links a { 
      text-decoration: none; 
      color: var(--charcoal); 
      font-weight: 600; 
      transition: all 0.3s ease; 
      position: relative;
      text-transform: uppercase;
      font-size: 0.9rem;
      letter-spacing: 0.5px;
      padding: 8px 0;
    }
    
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 0;
      height: 3px;
      background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
      transition: width 0.3s;
    }
    
    .nav-links a:hover { 
      color: var(--gold); 
    }
    
    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-links a.reservation-link {
      background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
      color: white;
      padding: 12px 25px;
      border-radius: 25px;
      font-weight: 700;
      box-shadow: 0 4px 15px rgba(200, 160, 92, 0.3);
      transition: all 0.3s;
    }

    .nav-links a.reservation-link::after {
      display: none;
    }

    .nav-links a.reservation-link:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(200, 160, 92, 0.4);
    }

    /* MENU HAMBURGER MOBILE */
    .hamburger {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 6px;
      z-index: 1001;
      padding: 10px;
    }

    .hamburger span {
      width: 28px;
      height: 3px;
      background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
      border-radius: 3px;
      transition: all 0.3s ease;
    }

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

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

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

    .special-offer {
      background: linear-gradient(135deg, var(--gold), var(--dark-gold));
      color: white;
      padding: 12px;
      text-align: center;
      font-weight: 600;
      margin-top: 90px;
      animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
      0% { box-shadow: 0 0 0 0 rgba(200, 160, 92, 0.7); }
      70% { box-shadow: 0 0 0 10px rgba(200, 160, 92, 0); }
      100% { box-shadow: 0 0 0 0 rgba(200, 160, 92, 0); }
    }

    .hero {
      background: linear-gradient(135deg, rgba(58, 58, 58, 0.8), rgba(42, 42, 42, 0.6)), url('../assets/selected-57th-3.f30caed5de43.webp');
      background-size: cover; 
      background-position: center;
      min-height: calc(100vh - 90px);
      display: flex; 
      align-items: center; 
      text-align: center; 
      color: white;
      position: relative;
      overflow: hidden;
    }
    
    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
      animation: shimmer 3s infinite;
    }
    
    @keyframes shimmer {
      0% { transform: translateX(-100%); }
      100% { transform: translateX(100%); }
    }
    
    .hero-content { 
      max-width: 800px; 
      margin: 0 auto; 
      position: relative;
      z-index: 1;
    }
    
    .hero h1 { 
      font-size: 52px; 
      margin-bottom: 20px; 
      font-weight: 800; 
      animation: fadeInUp 0.8s ease;
    }
    
    .hero p { 
      font-size: 22px; 
      margin-bottom: 30px; 
      animation: fadeInUp 1s ease;
    }
    
    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .cta-buttons { 
      margin-top: 30px; 
      animation: fadeInUp 1.2s ease;
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
    }
    
    .btn-primary, .btn-secondary { 
      padding: 16px 35px; 
      border-radius: 12px; 
      text-decoration: none; 
      font-weight: bold; 
      display: inline-block; 
      transition: all 0.3s;
      font-size: 16px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      box-shadow: 0 4px 20px rgba(200, 160, 92, 0.3);
    }
    
    .btn-primary { 
      background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
      color: white; 
    }
    
    .btn-secondary { 
      border: 2px solid white; 
      color: white; 
      background: transparent;
    }
    
    .btn-primary:hover, .btn-secondary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(200, 160, 92, 0.5);
    }
    
    .btn-primary:hover { 
      background: linear-gradient(135deg, var(--dark-gold) 0%, var(--gold) 100%);
    }
    
    .btn-secondary:hover { 
      background: rgba(255,255,255,0.1); 
    }

    section { 
      padding: 80px 0; 
    }
    
    h2 { 
      font-size: 42px; 
      text-align: center; 
      margin-bottom: 40px; 
      color: var(--charcoal);
      font-weight: 800;
      position: relative;
    }
    
    h2::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 80px;
      height: 3px;
      background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    }
    
    .about { 
      background: linear-gradient(135deg, #f5f7ff 0%, #e3f2fd 100%); 
    }
    
    .about-content { 
      display: grid; 
      grid-template-columns: 1fr 1fr; 
      gap: 40px; 
      align-items: center; 
    }
    
    .about-image {
      position: relative;
      overflow: hidden;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(58,58,58,0.15);
    }
    
    .about-image img { 
      width: 100%; 
      border-radius: 15px; 
      transition: transform 0.5s ease;
      display: block;
    }
    
    .about-image:hover img {
      transform: scale(1.05);
    }
    
    .highlight { 
      background: white; 
      border-left: 5px solid var(--gold); 
      padding: 25px; 
      border-radius: 12px; 
      margin-top: 20px; 
      box-shadow: 0 5px 20px rgba(58,58,58,0.1);
      transition: transform 0.3s ease;
    }
    
    .highlight:hover {
      transform: translateY(-5px);
    }
    
    .highlight ul {
      list-style: none;
      padding-left: 0;
    }
    
    .highlight li {
      padding: 8px 0;
      position: relative;
      padding-left: 30px;
    }
    
    .highlight li::before {
      content: '✓';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-weight: bold;
    }

    .pricing { 
      background: white; 
      padding: 60px 0; 
      text-align: center; 
    }
    
    .price-cards { 
      display: flex; 
      justify-content: center; 
      gap: 30px; 
      flex-wrap: wrap; 
      margin-top: 40px; 
    }
    
    .price-card { 
      background: var(--light-gray); 
      padding: 35px; 
      border-radius: 15px; 
      min-width: 280px;
      border: 2px solid transparent;
      transition: all 0.4s ease;
      box-shadow: 0 10px 40px rgba(58,58,58,0.1);
      position: relative;
      overflow: hidden;
      cursor: pointer;
    }
    
    .price-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
    }
    
    .price-card:hover {
      border-color: var(--gold);
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 20px 50px rgba(58,58,58,0.15);
    }
    
    .price-card h3 { 
      color: var(--charcoal); 
      margin-bottom: 15px; 
      font-size: 1.3rem;
    }
    
    .price-amount { 
      font-size: 42px; 
      background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 800; 
      margin: 15px 0; 
    }
    
    .benefits { 
      background: var(--light-gray); 
      padding: 80px 0; 
    }
    
    .benefits-grid { 
      display: grid; 
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
      gap: 30px; 
      margin-top: 40px; 
    }
    
    .benefit-item { 
      text-align: center; 
      padding: 30px; 
      background: white;
      border-radius: 15px;
      box-shadow: 0 10px 40px rgba(58,58,58,0.1);
      transition: all 0.4s ease;
      border: 1px solid rgba(200,160,92,0.1);
      cursor: pointer;
    }
    
    .benefit-item:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 20px 50px rgba(58,58,58,0.15);
      border-color: var(--gold);
    }
    
    .benefit-icon { 
      font-size: 48px; 
      margin-bottom: 20px; 
      display: inline-block;
      transition: transform 0.4s ease;
    }
    
    .benefit-item:hover .benefit-icon {
      transform: scale(1.3) rotate(10deg);
    }
    
    .gallery { 
      background: white; 
    }
    
    /* CAROUSEL — swipeable peek carousel with dot pagination (replaces the old
       grid + fullscreen lightbox, which felt heavy and jarring on mobile) */
    .stay-carousel {
      position: relative;
      margin-top: 30px;
    }

    .carousel-track {
      display: flex;
      gap: 14px;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding: 4px 14% 14px;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

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

    .carousel-slide {
      flex: 0 0 72%;
      scroll-snap-align: center;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 15px 40px rgba(58,58,58,0.15);
      aspect-ratio: 4 / 3;
      background: linear-gradient(135deg, #efe8d8 0%, #ddd0b3 100%);
    }

    .carousel-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .carousel-dots {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 8px;
      margin-top: 18px;
    }

    .carousel-dots .dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: rgba(200,160,92,0.3);
      cursor: pointer;
      transition: all 0.25s ease;
      padding: 0;
      border: none;
    }

    .carousel-dots .dot.active {
      background: var(--gold);
      width: 24px;
      border-radius: 5px;
    }


    .carousel-nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 46px;
      height: 46px;
      border-radius: 50%;
      border: none;
      background: rgba(255,255,255,0.95);
      color: var(--charcoal);
      box-shadow: 0 8px 22px rgba(58,58,58,0.2);
      display: none;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      z-index: 5;
      transition: all 0.25s ease;
    }

    .carousel-nav:hover {
      background: var(--gold);
      color: #fff;
      transform: translateY(-50%) scale(1.08);
    }

    .carousel-nav svg {
      width: 20px;
      height: 20px;
    }

    .carousel-nav.prev { left: 10px; }
    .carousel-nav.next { right: 10px; }

    @media (min-width: 700px) {
      .carousel-nav {
        display: flex;
      }
    }

    @media (min-width: 700px) {
      .carousel-slide {
        flex-basis: 44%;
      }
      .carousel-track {
        padding: 4px 20% 14px;
      }
    }

    .amenities { 
      background: var(--light-gray); 
    }
    
    .amenities-grid { 
      display: grid; 
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
      gap: 30px; 
      margin-top: 40px; 
    }
    
    .amenity-item { 
      background: white; 
      padding: 30px; 
      border-radius: 12px; 
      text-align: center; 
      box-shadow: 0 5px 15px rgba(58,58,58,0.05); 
      transition: all 0.4s ease; 
      border: 1px solid rgba(200,160,92,0.1);
      cursor: pointer;
    }
    
    .amenity-item:hover { 
      transform: translateY(-5px) scale(1.02); 
      box-shadow: 0 15px 35px rgba(58,58,58,0.1); 
      border-color: var(--gold);
    }
    
    .amenity-icon { 
      font-size: 40px; 
      margin-bottom: 15px; 
      display: inline-block;
      transition: transform 0.4s ease;
    }
    
    .amenity-item:hover .amenity-icon {
      transform: scale(1.3) rotate(360deg);
    }

    .location { 
      background: white; 
    }
    
    .location-content { 
      display: flex; 
      flex-wrap: wrap; 
      align-items: center; 
      gap: 40px; 
    }
    
    .location-map { 
      flex: 1; 
      height: 400px; 
      border-radius: 12px; 
      overflow: hidden; 
      box-shadow: 0 5px 20px rgba(58,58,58,0.1); 
      transition: transform 0.3s ease;
    }
    
    .location-map:hover {
      transform: scale(1.02);
    }
    
    .location-map iframe { 
      width: 100%; 
      height: 100%; 
      border: none; 
    }
    
    .location-text { 
      flex: 1; 
    }
    
    .location-text ul {
      list-style: none;
      padding-left: 0;
      margin-top: 15px;
    }
    
    .location-text li {
      padding: 8px 0;
      position: relative;
      padding-left: 25px;
      transition: padding-left 0.3s ease;
    }
    
    .location-text li:hover {
      padding-left: 35px;
      color: var(--gold);
    }
    
    .location-text li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--gold);
      font-weight: bold;
    }

    .testimonials { 
      background: var(--light-gray); 
    }
    
    .testimonial-grid { 
      display: grid; 
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
      gap: 30px; 
      margin-top: 40px; 
    }
    
    .testimonial-item { 
      background: white; 
      border-radius: 12px; 
      padding: 30px; 
      box-shadow: 0 5px 15px rgba(58,58,58,0.05); 
      transition: all 0.4s ease; 
      border: 1px solid rgba(200,160,92,0.1);
      cursor: pointer;
    }
    
    .testimonial-item:hover { 
      transform: translateY(-5px) scale(1.02); 
      box-shadow: 0 15px 35px rgba(58,58,58,0.1); 
      border-color: var(--gold);
    }
    
    .testimonial-text { 
      font-style: italic; 
      margin-bottom: 20px; 
      color: var(--charcoal); 
      position: relative;
      padding-left: 20px;
    }
    
    .testimonial-text::before {
      content: '"';
      position: absolute;
      left: 0;
      top: -10px;
      font-size: 40px;
      color: var(--gold);
      font-family: serif;
    }
    
    .testimonial-author { 
      display: flex; 
      align-items: center; 
    }
    
    .author-avatar { 
      width: 50px; 
      height: 50px; 
      border-radius: 50%; 
      overflow: hidden; 
      margin-right: 15px; 
      border: 2px solid var(--gold);
      transition: transform 0.3s ease;
    }
    
    .testimonial-item:hover .author-avatar {
      transform: scale(1.1);
    }
    
    .author-avatar img { 
      width: 100%; 
      height: 100%; 
      object-fit: cover; 
    }
    
    .author-info h4 { 
      margin-bottom: 5px; 
      color: var(--charcoal); 
    }

    #reservation { 
      background: white; 
      padding: 80px 0; 
      text-align: center;
    }
    
    .reservation-content {
      max-width: 600px;
      margin: 0 auto;
      background: var(--light-gray);
      padding: 50px;
      border-radius: 15px;
      box-shadow: 0 10px 30px rgba(58,58,58,0.1);
      border: 1px solid rgba(200,160,92,0.2);
      transition: transform 0.3s ease;
    }

    .reservation-content:hover {
      transform: translateY(-5px);
    }

    .reservation-content h3 {
      font-size: 28px;
      margin-bottom: 20px;
      color: var(--charcoal);
    }

    .reservation-content p {
      margin-bottom: 30px;
      color: #666;
      font-size: 18px;
    }

    .airbnb-btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: linear-gradient(135deg, #FF5A5F 0%, #E31C5F 100%);
      color: white;
      padding: 18px 35px;
      border-radius: 12px;
      text-decoration: none;
      font-weight: bold;
      font-size: 18px;
      transition: all 0.3s;
      box-shadow: 0 4px 20px rgba(255, 90, 95, 0.3);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .airbnb-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(255, 90, 95, 0.5);
    }

    .airbnb-icon {
      font-size: 24px;
    }

    footer { 
      background: linear-gradient(135deg, var(--charcoal) 0%, var(--dark-gray) 100%); 
      color: white; 
      padding: 60px 0 30px; 
      text-align: center; 
      border-radius: 20px 20px 0 0;
      position: relative;
    }
    
    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    
    .footer-content {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 40px;
      margin-bottom: 40px;
      text-align: left;
    }
    
    .footer-section h3 {
      margin-bottom: 20px;
      background: linear-gradient(135deg, var(--gold) 0%, var(--light-gold) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-weight: 700;
      font-size: 1.2rem;
    }
    
    .footer-section p {
      color: #ccc;
      line-height: 1.7;
    }
    
    .footer-section a {
      display: block;
      color: #ddd;
      text-decoration: none;
      margin-bottom: 12px;
      transition: all 0.3s;
      position: relative;
      padding-left: 0;
      font-weight: 500;
    }
    
    .footer-section a:hover {
      color: var(--gold);
      padding-left: 12px;
    }
    
    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 20px;
      flex-wrap: wrap;
    }
    
    .social-link {
      width: 45px;
      height: 45px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.3s;
      border: 2px solid rgba(200,160,92,0.3);
      font-size: 20px;
      padding: 0;
      text-decoration: none;
      color: white;
    }
    
    .social-link:hover {
      background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
      transform: translateY(-5px) rotate(10deg);
      border-color: transparent;
      box-shadow: 0 5px 20px rgba(200, 160, 92, 0.4);
    }

    /* Robust image fallback system - zero external dependency, always renders */
    .img-frame {
      position: relative;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #efe8d8 0%, #ddd0b3 100%);
      overflow: hidden;
    }

    .img-frame img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .img-frame.is-broken img {
      display: none;
    }

    .img-frame .img-fallback {
      display: none;
      position: absolute;
      inset: 0;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: var(--dark-gold);
      text-align: center;
      padding: 20px;
    }

    .img-frame.is-broken .img-fallback {
      display: flex;
    }

    .img-fallback svg {
      width: 32px;
      height: 32px;
      opacity: 0.55;
    }

    .img-fallback span {
      font-size: 0.75rem;
      font-weight: 600;
      letter-spacing: 0.3px;
      opacity: 0.65;
    }

    /* about-image sizes to the photo's natural aspect ratio (no fixed height),
       so it needs its own override instead of the generic img-frame height:100% rule */
    .about-image.img-frame {
      height: auto;
    }

    .about-image.img-frame img {
      height: auto;
    }

    .about-image.img-frame.is-broken {
      min-height: 320px;
    }

    .logo-fallback {
      padding: 0 !important;
      gap: 0 !important;
    }

    .logo-fallback span {
      font-size: 15px;
      font-weight: 800;
      opacity: 1;
      background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      letter-spacing: 0.5px;
    }

    .logo-fallback svg { display: none; }

    /* Neutralize hover-stuck effects on touch devices (tap doesn't "stick" hover) */
    @media (hover: none) {
      .card:hover { transform: none; box-shadow: 0 10px 40px rgba(58,58,58,0.1); }
      .card:hover img { transform: none; filter: brightness(0.95); }
      .card:hover::before { transform: scaleX(0); }
      .benefit-item:hover { transform: none; box-shadow: 0 10px 40px rgba(58,58,58,0.1); border-color: rgba(200,160,92,0.1); }
      .benefit-item:hover .benefit-icon { transform: none; }
      .amenity-item:hover { transform: none; box-shadow: 0 5px 15px rgba(58,58,58,0.05); border-color: rgba(200,160,92,0.1); }
      .amenity-item:hover .amenity-icon { transform: none; }
      .testimonial-item:hover { transform: none; box-shadow: 0 5px 15px rgba(58,58,58,0.05); border-color: rgba(200,160,92,0.1); }
      .testimonial-item:hover .author-avatar { transform: none; }
      .price-card:hover { transform: none; border-color: transparent; box-shadow: 0 10px 40px rgba(58,58,58,0.1); }
      .about-image:hover img { transform: none; }
    }

    #about, #pricing, #gallery, #amenities, #location, #testimonials, #reservation {
      scroll-margin-top: 100px;
    }

    /* RESPONSIVE MOBILE */
    @media (max-width: 768px) {
      body {
        padding-top: 70px;
      }
      
      header {
        height: 70px;
        padding: 0 15px;
      }
      
      .special-offer {
        margin-top: 70px;
        font-size: 14px;
        padding: 10px;
      }
      
      .hamburger {
        display: flex;
      }
      
      .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 248, 248, 0.98) 100%);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px 0;
        box-shadow: -8px 0 30px rgba(0,0,0,0.15);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        gap: 0;
        align-items: stretch;
        overflow-y: auto;
      }
      
      .nav-links.active {
        right: 0;
      }
      
      .nav-links li {
        margin: 0;
        border-bottom: 1px solid rgba(200, 160, 92, 0.1);
      }
      
      .nav-links a {
        width: 100%;
        padding: 18px 25px;
        border-radius: 0;
        background: transparent;
        margin: 0;
        font-size: 0.95rem;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        transition: all 0.3s ease;
      }
      
      .nav-links a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 4px;
        background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
        transform: scaleY(0);
        transition: transform 0.3s ease;
      }
      
      .nav-links a:hover::before,
      .nav-links a:focus::before {
        transform: scaleY(1);
      }
      
      .nav-links a::after {
        content: '›';
        font-size: 20px;
        color: var(--gold);
        opacity: 0;
        transform: translateX(-10px);
        transition: all 0.3s ease;
      }
      
      .nav-links a:hover::after,
      .nav-links a:focus::after {
        opacity: 1;
        transform: translateX(0);
      }
      
      .nav-links a:hover,
      .nav-links a:focus {
        background: rgba(200, 160, 92, 0.08);
        padding-left: 30px;
      }
      
      .nav-links a.reservation-link {
        margin: 20px 15px 10px;
        border-radius: 12px;
        text-align: center;
        padding: 16px 25px;
        background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
        border-bottom: none;
        justify-content: center;
      }
      
      .nav-links a.reservation-link::before,
      .nav-links a.reservation-link::after {
        display: none;
      }
      
      .nav-links a.reservation-link:hover {
        transform: scale(1.03);
        padding-left: 25px;
        box-shadow: 0 5px 20px rgba(200, 160, 92, 0.4);
      }
      
      .logo {
        font-size: 18px;
      }
      
      .logo-img {
        width: 40px;
        height: 40px;
      }
      
      .hero {
        min-height: 70vh;
      }
      
      .hero h1 {
        font-size: 32px;
      }
      
      .hero p {
        font-size: 16px;
      }
      
      .cta-buttons {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
      }
      
      .btn-primary, .btn-secondary {
        width: 100%;
        padding: 14px 25px;
        font-size: 14px;
      }
      
      h2 {
        font-size: 28px;
      }
      
      section {
        padding: 50px 0;
      }
      
      .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
      }
      
      .price-cards {
        flex-direction: column;
        align-items: center;
      }
      
      .price-card {
        width: 100%;
        max-width: 350px;
      }
      
      .benefits-grid, .amenities-grid, .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 20px;
      }
      
      .carousel-slide {
        flex-basis: 82%;
        aspect-ratio: 5 / 4;
      }

      .carousel-track {
        padding: 4px 9% 14px;
        gap: 10px;
      }

      .location-content {
        flex-direction: column;
      }
      
      .location-map {
        width: 100%;
        height: 300px;
      }
      
      .reservation-content {
        padding: 30px 20px;
      }
      
      .airbnb-btn {
        padding: 15px 25px;
        font-size: 16px;
      }
      
      .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
      }
      
      .footer-section a {
        padding-left: 0;
      }
      
      .footer-section a:hover {
        padding-left: 0;
      }
      
      .social-links {
        justify-content: center;
      }
      
      /* Forcer le logo sur une seule ligne sur mobile */
      .logo {
        white-space: nowrap;
      }
    }

    @media (max-width: 480px) {
      .hero h1 {
        font-size: 26px;
      }
      
      .hero p {
        font-size: 14px;
      }
      
      h2 {
        font-size: 24px;
      }
      
      .price-amount {
        font-size: 36px;
      }
      
      .benefit-icon, .amenity-icon {
        font-size: 36px;
      }
    }

    /* Animation au scroll */
    .animate-on-scroll {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .animate-on-scroll.animated {
      opacity: 1;
      transform: translateY(0);
    }

    .custom-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      text-decoration: none;
      text-transform: uppercase;
      font-weight: bold;
      letter-spacing: 0.5px;
      font-size: 18px;
      width: 100%;
      max-width: 280px;
      height: 60px;
      margin: 10px auto;
      border-radius: 12px;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    }

    /* Airbnb style */
    .airbnb-btn {
      background: linear-gradient(135deg, #FF5A5F 0%, #E31C5F 100%);
      color: #fff;
      box-shadow: 0 4px 20px rgba(255, 90, 95, 0.3);
    }

    .airbnb-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(255, 90, 95, 0.5);
    }

    /* Facebook style */
    .facebook-btn {
      background: linear-gradient(135deg, #1877F2 0%, #0E5DC0 100%);
      color: #fff;
      box-shadow: 0 4px 20px rgba(24, 119, 242, 0.3);
    }

    .facebook-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 30px rgba(24, 119, 242, 0.5);
    }

    /* Responsive (mobile) */
    @media (max-width: 600px) {
      .custom-btn {
        width: 100%;
        max-width: none;
      }
    }

    /* Social Media Styles from index.html */
    .social-links {
      display: flex;
      gap: 15px;
      margin-top: 25px;
      flex-wrap: wrap;
      justify-content: flex-start;
    }

    .social-link {
      width: 60px;
      height: 60px;
      background: rgba(255,255,255,0.08);
      backdrop-filter: blur(10px);
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      border: 2px solid rgba(200,160,92,0.3);
      font-size: 28px;
      padding: 0;
      position: relative;
      overflow: hidden;
      color: rgba(255,255,255,0.9);
      text-decoration: none;
    }

    .social-link i {
      font-size: 28px;
      position: relative;
      z-index: 1;
    }

    .social-link::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: linear-gradient(135deg, var(--gold) 0%, var(--dark-gold) 100%);
      opacity: 0;
      transition: opacity 0.3s;
      z-index: -1;
    }

    .social-link:hover {
      transform: translateY(-8px) scale(1.1);
      border-color: transparent;
      box-shadow: 0 10px 30px rgba(200,160,92,0.5);
      color: white;
    }

    .social-link:hover::before {
      opacity: 1;
    }

    /* Couleurs spécifiques par réseau social */
    .social-link.facebook:hover::before {
      background: linear-gradient(135deg, #1877f2 0%, #0d5dbf 100%);
    }

    .social-link.instagram:hover::before {
      background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    }

    .social-link.twitter:hover::before {
      background: linear-gradient(135deg, #000000 0%, #333333 100%);
    }

    .social-link.tiktok:hover::before {
      background: linear-gradient(135deg, #000000 0%, #ee1d52 50%, #69c9d0 100%);
    }

    .social-link.youtube:hover::before {
      background: linear-gradient(135deg, #ff0000 0%, #cc0000 100%);
    }

    .social-link.whatsapp:hover::before {
      background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    }

    /* Animation de pulse pour attirer l'attention */
    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.05); }
    }

    .social-link:nth-child(1) { animation: pulse 2s ease-in-out infinite; animation-delay: 0s; }
    .social-link:nth-child(2) { animation: pulse 2s ease-in-out infinite; animation-delay: 0.2s; }
    .social-link:nth-child(3) { animation: pulse 2s ease-in-out infinite; animation-delay: 0.4s; }
    .social-link:nth-child(4) { animation: pulse 2s ease-in-out infinite; animation-delay: 0.6s; }
    .social-link:nth-child(5) { animation: pulse 2s ease-in-out infinite; animation-delay: 0.8s; }
    .social-link:nth-child(6) { animation: pulse 2s ease-in-out infinite; animation-delay: 1s; }

    .social-link:hover {
      animation: none;
    }

    /* Responsive pour les réseaux sociaux */
    @media (max-width: 768px) {
      .social-links {
        justify-content: center;
      }
      
      .social-link {
        width: 55px;
        height: 55px;
        font-size: 26px;
      }
      
      .social-link i {
        font-size: 26px;
      }
    }

.special-offer { animation: none; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; } }
