/* style.css – pure custom, BEM + variables, zero conflicts */
    :root {
      --primary: #0c1f2c;
      --gold: #c8a97e;
      --bg-light: #f8f5f0;
      --text-dark: #1a1a1a;
      --overlay: rgba(12,31,44,0.55);
      --container: min(1200px, 90%);
      --transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --shadow-sm: 0 20px 40px -12px rgba(0,0,0,0.15);
      --shadow-hover: 0 30px 50px -20px rgba(0,0,0,0.3);
      --font-heading: 'Playfair Display', 'Cinzel', serif;
      --font-body: 'Poppins', 'Lato', sans-serif;
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body {
      font-family: var(--font-body);
      color: var(--text-dark);
      background-color: var(--bg-light);
      line-height: 1.6;
      overflow-x: hidden;
    }
    h1,h2,h3,h4 { font-family: var(--font-heading); font-weight: 600; letter-spacing: -0.02em; }
    img { max-width: 100%; height: auto; display: block; }
    a { text-decoration: none; color: inherit; }
    .container { width: var(--container); margin: 0 auto; position: relative; z-index: 2; }
    section { padding: 100px 0; position: relative; }
    /* buttons */
    .btn {
      display: inline-block; padding: 14px 36px; border-radius: 4px; font-weight: 500;
      letter-spacing: 1px; transition: var(--transition); border: 1px solid transparent;
      cursor: pointer; font-size: 0.95rem; text-transform: uppercase; position: relative; overflow: hidden;
    }
    .btn--primary { background: var(--gold); color: #0c1f2c; border-color: var(--gold); z-index: 1; }
    .btn--primary::before { content: ''; position: absolute; top: 50%; left: 50%; width: 0; height: 0; border-radius: 50%; background: rgba(255,255,255,0.3); transform: translate(-50%,-50%); transition: width 0.6s, height 0.6s; z-index: -1; }
    .btn--primary:hover::before { width: 400px; height: 400px; }
    .btn--primary:hover { background: transparent; color: var(--gold); border-color: var(--gold); transform: translateY(-2px); }
    .btn--outline { background: transparent; border: 1px solid #fff; color: #fff; }
    .btn--outline:hover { background: #fff; color: var(--primary); border-color: #fff; transform: translateY(-2px); box-shadow: 0 10px 25px -8px #fff; }
    /* gold underline micro */
    .gold-underline { position: relative; display: inline-block; }
    .gold-underline::after {
      content: ''; position: absolute; bottom: -4px; left: 0; width: 0%; height: 2px;
      background: var(--gold); transition: width 0.4s ease;
    }
    .gold-underline:hover::after { width: 100%; }
    /* floating shape */
    .floating-shape { position: absolute; width: 280px; height: 280px; border-radius: 50%; background: var(--gold); opacity: 0.03; pointer-events: none; z-index: 0; }

    /* navbar */
    .navbar {
      background: var(--primary);
      position: fixed; top: 0; left: 0; width: 100%; padding: 30px 40px; z-index: 100;
      transition: background 0.4s, padding 0.4s, box-shadow 0.4s; display: flex; justify-content: space-between; align-items: center;
      color: #fff; 
    }
    .navbar--solid { background: var(--primary); padding: 15px 40px; box-shadow: 0 8px 30px rgba(0,0,0,0.1); mix-blend-mode: normal; }
    .navbar__logo { font-family: var(--font-heading); font-size: 2rem; font-weight: 700; letter-spacing: 2px; transition: font-size 0.4s; }
    .navbar--solid .navbar__logo { font-size: 1.7rem; }
    .navbar__toggle { cursor: pointer; font-size: 1.6rem; width: 50px; height: 50px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--gold); 
        /* background: rgba(255,255,255,0.1); backdrop-filter: blur(4px); transition: var(--transition); */
     }
    .navbar__toggle:hover { background: var(--gold); color: var(--primary); }
    .navbar__logo-img{ width: 150px; object-fit: contain; }
    
    #menuToggle i { transition: transform 0.4s; color: var(--bg-light); }
    /* fullscreen overlay menu */
    .menu-overlay {
      position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--primary); color: #fff; z-index: 200;
      display: flex; align-items: center; justify-content: center; visibility: hidden; opacity: 0;
      transform: scale(1.2); transition: opacity 0.5s ease, transform 0.5s ease, visibility 0.5s;
    }
    .menu-overlay--active { visibility: visible; opacity: 1; transform: scale(1); }
    .menu-overlay__close {
      position: absolute; top: 30px; right: 40px; font-size: 3rem; cursor: pointer; width: 60px; height: 60px;
      display: flex; align-items: center; justify-content: center; border-radius: 50%; background: rgba(255,255,255,0.1); transition: var(--transition);
    }
    .menu-overlay__close:hover { background: var(--gold); color: var(--primary); transform: rotate(90deg); }
    .menu-overlay__nav { text-align: center; }
    .menu-overlay__link {
      font-family: var(--font-heading); font-size: 2rem; line-height: 1.3; color: #fff;
      transition: color 0.3s; display: inline-block; margin: 0.5rem 0;
    }
    .menu-overlay__link:hover { color: var(--gold); transform: translateY(-2px); }
    .menu-overlay__social { margin-top: 3rem; display: flex; gap: 2rem; justify-content: center; font-size: 1.4rem; }
    .menu-overlay__social a { opacity: 0.7; transition: var(--transition); }
    .menu-overlay__social a:hover { opacity: 1; color: var(--gold); }

    /* hero carousel (ken burns + fade) */
    .hero {
      height: 100vh; position: relative; overflow: hidden; color: #fff;
    }
    .hero__carousel { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
    .hero__slide {
      position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center;
      opacity: 0; animation: zoomFade 24s infinite; will-change: transform, opacity;
    
    }
    .hero__slide:nth-child(1) { background-image: url('slider/araliyabywow-slider1.jpg'); animation-delay: 0s; }
    .hero__slide:nth-child(2) { background-image: url('slider/araliyabywow-slider2.jpg'); animation-delay: 8s; }
    .hero__slide:nth-child(3) { background-image: url('slider/araliyabywow-slider3.jpg'); animation-delay: 16s; }
  @keyframes zoomFade {
      0% { opacity: 0; transform: scale(1); }
      5% { opacity: 1; transform: scale(1.05); }
      33% { opacity: 1; transform: scale(1.1); }
      38% { opacity: 0; transform: scale(1.15); }
      100% { opacity: 0; transform: scale(1); }
    }
    .hero__overlay { position: absolute; inset: 0; background: var(--overlay); z-index: 1; }
    .hero__content { position: relative; z-index: 3; height: 100vh; display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 0 20px; }
    .hero__title { font-size: clamp(3rem, 10vw, 5.5rem); line-height: 1.1; animation: fadeUp 1s 0.2s both; }
    .hero__sub { font-size: 1.2rem; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 1rem; animation: fadeUp 1s 0.1s both; }
    .hero__desc { max-width: 600px; margin: 1.5rem 0; animation: fadeUp 1s 0.3s both; font-weight: 300; }
    .hero__btns { display: flex; gap: 20px; flex-wrap: wrap; justify-content: center; animation: fadeUp 1s 0.4s both; }
    @keyframes fadeUp { 0% { opacity: 0; transform: translateY(30px); } 100% { opacity: 1; transform: translateY(0); } }
    .scroll-indicator {
      position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 5;
      width: 30px; height: 50px; border: 2px solid rgba(255,255,255,0.5); border-radius: 50px; display: flex; justify-content: center;
    }
    .scroll-indicator::before {
      content: ''; width: 4px; height: 10px; background: #fff; border-radius: 2px; margin-top: 8px;
      animation: bounce 2s infinite;
    }
    @keyframes bounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(15px); } }

    /* about */
    .about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .about__image { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); }
    .about__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s; }
    .about__image:hover img { transform: scale(1.05); }
    .about__shape { position: absolute; bottom: -30px; right: -30px; width: 200px; height: 200px; background: var(--gold); opacity: 0.2; border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; z-index: -1; }
    .about__subtitle { color: var(--gold); text-transform: uppercase; letter-spacing: 3px; }
    .about__title { font-size: 2.8rem; margin: 10px 0 20px; }
    .about__signature { margin: 30px 0 20px; max-width: 180px; filter: invert(30%); }

    /* rooms slider (full width) */
    .rooms-section { padding-left: 0; padding-right: 0; overflow: hidden; background: var(--bg-light); }
    .swiper { width: 100%; height: 600px; }
    .swiper-slide { position: relative; border-radius: 0; overflow: hidden; transition: transform 0.4s; }
    .swiper-slide-active { transform: scale(1.02); z-index: 5; }
    .room-card { height: 100%; width: 100%; position: relative; }
    .room-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s; }
    .room-card:hover img { transform: scale(1.1); }
    .room-overlay {
      position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,31,44,0.9) 20%, transparent 80%);
      display: flex; flex-direction: column; justify-content: flex-end; padding: 40px; color: #fff; opacity: 0.9; transition: opacity 0.4s;
    }
    .room-card:hover .room-overlay { opacity: 1; }
    .room-price { color: var(--gold); font-weight: 600; margin: 10px 0; }
    .room-icons { display: flex; gap: 15px; margin: 15px 0; }
    .btn--small { padding: 8px 24px; background: transparent; border: 1px solid #fff; color: #fff; font-size: 0.8rem; align-self: flex-start; transition: 0.3s; }
    .btn--small:hover { background: var(--gold); border-color: var(--gold); color: var(--primary); }

    /* nearby attractions asymmetrical */
    .attractions__header { text-align: center; max-width: 700px; margin: 0 auto 60px; }
    .attractions__sub { color: var(--gold); letter-spacing: 3px; }
    .attractions__title { font-size: 3rem; margin: 10px 0; }
    .attractions__grid {
      display: grid; grid-template-columns: 1.2fr 0.9fr 1fr; gap: 24px;
      grid-auto-rows: 280px;
    }
    .attraction-card {
      position: relative; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition);
    }
    .attraction-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-8px); }
    .attraction-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s; }
    .attraction-card:hover img { transform: scale(1.1); }
    .attraction-card__overlay {
      position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,31,44,0.7), transparent);
      display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; color: #fff;
    }
    .attraction-badge {
      position: absolute; top: 20px; right: 20px; background: var(--gold); color: var(--primary); padding: 6px 14px;
      border-radius: 50px; font-weight: 600; font-size: 0.85rem; z-index: 2;
    }
    .attraction-card:nth-child(1) { grid-column: span 2; grid-row: span 2; }
    .attraction-card:nth-child(2) { grid-column: 3; grid-row: span 1; }
    .attraction-card:nth-child(3) { grid-column: 1; grid-row: span 1; }
    .attraction-card:nth-child(4) { grid-column: 2 / span 2; grid-row: span 1; }

    /* testimonial overlapping cards (glassmorphism + overlap) */
    .testimonials { background: #eae4d9; overflow: hidden; }
    .testimonial-swiper { overflow: visible; padding: 40px 0 60px; }
    .testimonial-swiper .swiper-slide {
      transition: transform 0.4s, opacity 0.4s; opacity: 0.6; transform: scale(0.85); filter: blur(1px);
      background: rgba(255,255,255,0.75); backdrop-filter: blur(8px); border-radius: 30px; padding: 30px; box-shadow: var(--shadow-sm);
    }
    .testimonial-swiper .swiper-slide-active { opacity: 1; transform: scale(1); filter: blur(0); z-index: 10; background: rgba(255,255,255,0.95); }
    .testimonial-swiper .swiper-slide-prev, .testimonial-swiper .swiper-slide-next { opacity: 0.8; transform: scale(0.9); }
    .avatar { width: 70px; height: 70px; border-radius: 50%; overflow: hidden; margin: 0 auto 15px; border: 3px solid var(--gold); }
    .stars { color: var(--gold); margin: 10px 0; font-size: 1.2rem; }
    .quote-icon { font-size: 4rem; opacity: 0.2; font-family: serif; line-height: 0.5; }

    /* gallery */
    .gallery-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
    }
    .gallery-item { position: relative; overflow: hidden; border-radius: 8px; aspect-ratio: 1/1; cursor: pointer; }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
    .gallery-item:hover img { transform: scale(1.1); }
    .gallery-item:first-child { grid-column: span 2; grid-row: span 2; aspect-ratio: auto; }

    /* luxury footer */
    .footer {
      background: #0c1f2c; color: #ddd; padding: 70px 0 20px; position: relative;
      background-image: url('https://images.unsplash.com/photo-1582719508461-905c673771fd?q=80&w=2025&auto=format&fit=crop'); background-size: cover; background-position: center;
    }
    .footer::before { content: ''; position: absolute; inset: 0; background: rgba(12,31,44,0.9); }
    .footer .container { position: relative; z-index: 2; }
    .footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 40px; margin-bottom: 50px; }
    .footer__logo { font-family: var(--font-heading); font-size: 2rem; color: #fff; margin-bottom: 15px; }
    .footer__info p { margin: 8px 0; opacity: 0.8; }
    .footer__social { display: flex; gap: 20px; margin-top: 20px; }
    .footer__social a { color: #fff; opacity: 0.7; transition: var(--transition); font-size: 1.3rem; }
    .footer__social a:hover { opacity: 1; color: var(--gold); }
    .footer__title { color: #fff; font-size: 1.3rem; margin-bottom: 25px; font-weight: 600; }
    .footer__links li { list-style: none; margin-bottom: 12px; }
    .footer__links a { opacity: 0.7; transition: var(--transition); }
    .footer__links a:hover { opacity: 1; color: var(--gold); padding-left: 5px; }
    .footer__newsletter input { width: 100%; padding: 12px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: #fff; border-radius: 4px; }
    .footer__newsletter .btn { margin-top: 10px; width: 100%; }
    .footer__bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; justify-content: space-between; flex-wrap: wrap; font-size: 0.9rem; opacity: 0.7; }

    /* dividers */
    .svg-divider { width: 100%; line-height: 0; margin-bottom: -1px; }
    .svg-divider svg { width: 100%; height: auto; display: block; fill: var(--bg-light); }

    /* scroll animation classes */
    .fade-up { opacity: 0; transform: translateY(30px); transition: opacity 1s, transform 1s; }
    .fade-up.revealed { opacity: 1; transform: translateY(0); }
    .slide-left { opacity: 0; transform: translateX(-40px); transition: 1s; }
    .slide-left.revealed { opacity: 1; transform: translateX(0); }
    .slide-right { opacity: 0; transform: translateX(40px); transition: 1s; }
    .slide-right.revealed { opacity: 1; transform: translateX(0); }

    /* responsive */
    @media (max-width: 1000px) {
      .about__grid, .footer__grid { grid-template-columns: 1fr; gap: 40px; }
      .gallery-grid { grid-template-columns: repeat(2,1fr); }
      .attractions__grid { grid-template-columns: 1fr 1fr; }
      .attraction-card:nth-child(1) { grid-column: span 2; }
    }
    @media (max-width: 600px) {
      section { padding: 70px 0; }
      .hero__btns { flex-direction: column; align-items: center; }
      .attractions__grid { grid-template-columns: 1fr; }
      .attraction-card:nth-child(1) { grid-column: span 1; }
      .gallery-grid { grid-template-columns: 1fr; }
      .gallery-item:first-child { grid-column: span 1; }
    }

    /* About PAge */

    /* inner hero (always visible) */
    .about-hero {
      height: 70vh; min-height: 500px; position: relative; display: flex; align-items: center; justify-content: center;
      text-align: center; color: #fff;
      background-image: url('https://images.unsplash.com/photo-1582719508461-905c673771fd?q=80&w=2025&auto=format&fit=crop');
      background-size: cover; background-position: center; background-attachment: fixed;
    }
    .about-hero::before {
      content: ''; position: absolute; inset: 0; background: var(--overlay); z-index: 1;
    }
    .about-hero__content { position: relative; z-index: 2; padding: 20px; }
    .about-hero__title { font-size: clamp(3rem, 8vw, 5rem); line-height: 1.1; }
    .about-hero__sub { font-size: 1.3rem; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 0.5rem; }
    .breadcrumb { display: flex; gap: 8px; justify-content: center; margin-top: 1rem; font-size: 0.95rem; opacity: 0.9; }
    .breadcrumb a:hover { color: var(--gold); }

    /* story section (two-column) */
    .story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .story-image { border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); }
    .story-image img { width: 100%; height: auto; transition: transform 1s; }
    .story-image:hover img { transform: scale(1.05); }
    .story-subtitle { color: var(--gold); text-transform: uppercase; letter-spacing: 3px; }
    .story-title { font-size: 2.8rem; margin: 10px 0 20px; }
    .story-signature { margin: 30px 0 20px; max-width: 180px; filter: invert(30%); }

    /* philosophy cards */
    .philosophy { background: #eae4d9; text-align: center; }
    .philosophy-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px;
    }
    .philo-card {
      background: rgba(255,255,255,0.5); backdrop-filter: blur(4px); padding: 30px 20px;
      border-radius: 20px; transition: var(--transition);
    }
    .philo-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.8); box-shadow: var(--shadow-sm); }
    .philo-icon { font-size: 3rem; margin-bottom: 15px; display: block; }
    .philo-card h3 { margin-bottom: 10px; position: relative; display: inline-block; }
    .philo-card h3::after { content: ''; display: block; width: 0; height: 2px; background: var(--gold); transition: width 0.3s; margin: 5px auto 0; }
    .philo-card:hover h3::after { width: 50px; }

    /* features grid */
    .features-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
    }
    .feature-card {
      border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); background: #fff;
    }
    .feature-card img { width: 100%; height: 220px; object-fit: cover; transition: transform 0.8s; }
    .feature-card:hover img { transform: scale(1.1); }
    .feature-content { padding: 25px; }
    .feature-content h3 { margin-bottom: 8px; }

    /* team grid */
    .team-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
    }
    .team-card {
      background: #fff; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition);
    }
    .team-card:hover { transform: translateY(-8px); box-shadow: 0 30px 50px -20px rgba(0,0,0,0.3); }
    .team-card img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.8s; }
    .team-card:hover img { transform: scale(1.05); }
    .team-card__content { padding: 25px; text-align: center; }

    /* why choose us (counters) */
    .why-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
    }
    .counter-list {
      display: grid; grid-template-columns: 1fr 1fr; gap: 30px; margin-top: 30px;
    }
    .counter-item { text-align: center; }
    .counter-number { font-size: 3rem; font-weight: 700; color: var(--gold); font-family: var(--font-heading); line-height: 1; }
    .counter-label { text-transform: uppercase; letter-spacing: 1px; }

    /* guest quote cards (no slider, safe) */
    .testimonial-card {
      background: #fff; border-radius: 30px; padding: 40px; max-width: 800px; margin: 0 auto;
      box-shadow: var(--shadow-sm); text-align: center;
    }
    .stars { color: var(--gold); margin: 15px 0; font-size: 1.3rem; }

    /* gallery preview strip (grid) */
    .gallery-strip {
      display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px;
    }
    .gallery-item {
      position: relative; overflow: hidden; border-radius: 8px; aspect-ratio: 1/1;
    }
    .gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
    .gallery-item:hover img { transform: scale(1.1); }
    .gallery-item::after {
      content: '🔍'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(0);
      font-size: 2rem; background: rgba(200,169,126,0.9); width: 50px; height: 50px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center; color: #0c1f2c; transition: transform 0.3s;
    }
    .gallery-item:hover::after { transform: translate(-50%,-50%) scale(1); }

    /* location section */
    .location-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
    }
    .map-container { border-radius: 20px; overflow: hidden; height: 300px; }
    .map-container iframe { width: 100%; height: 100%; border: 0; }

    /* cta banner */
    .cta-banner {
      background-image: url('bg1.jpg');
      background-size: cover; background-attachment: fixed; position: relative; color: #fff; text-align: center;
      padding: 120px 0;
    }
    .cta-banner::before { content: ''; position: absolute; inset: 0; background: var(--overlay); }
    .cta-content { position: relative; z-index: 2; }

 /* responsive */
    @media (max-width: 1000px) {
      .story-grid, .why-grid, .location-grid { grid-template-columns: 1fr; }
      .philosophy-grid { grid-template-columns: repeat(2,1fr); }
      .features-grid, .team-grid { grid-template-columns: repeat(2,1fr); }
      .footer__grid { grid-template-columns: 1fr 1fr; }
      .gallery-strip { grid-template-columns: repeat(3,1fr); }
    }
    @media (max-width: 600px) {
      section { padding: 70px 0; }
      .philosophy-grid, .features-grid, .team-grid { grid-template-columns: 1fr; }
      .footer__grid { grid-template-columns: 1fr; }
      .gallery-strip { grid-template-columns: repeat(2,1fr); }
    }


    /* Accomandation Page */

    /* inner hero (accommodation) */
    .page-hero {
      height: 70vh; min-height: 500px; position: relative; display: flex; align-items: center; justify-content: center;
      text-align: center; color: #fff;
      /* background-image: url('https://images.unsplash.com/photo-1618773928121-c32242e63f39?q=80&w=2070'); */
      background-size: cover; background-position: center; background-attachment: fixed;
    }
    .page-hero::before {
      content: ''; position: absolute; inset: 0; background: var(--overlay); z-index: 1;
    }
    .page-hero__content { position: relative; z-index: 2; padding: 20px; }
    .page-hero__title { font-size: clamp(3rem, 8vw, 5rem); line-height: 1.1; }
    .page-hero__sub { font-size: 1.3rem; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 0.5rem; }
    .breadcrumb { display: flex; gap: 8px; justify-content: center; margin-top: 1rem; font-size: 0.95rem; opacity: 0.9; }
    .breadcrumb a:hover { color: var(--gold); }

    /* intro section */
    .intro { text-align: center; max-width: 800px; margin: 0 auto; }

    /* alternating room sections (full width) */
    .room-section { padding: 100px 0; }
    .room-section:nth-child(even) { background: #fffaf5; } /* subtle alternating tint */
    .room-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
    }
    .room-section--reverse .room-grid { direction: rtl; }
    .room-section--reverse .room-grid > * { direction: ltr; } /* keep text ltr */
    .room-gallery { overflow: hidden; border-radius: 24px; box-shadow: var(--shadow-sm); }
    .swiper { width: 100%; height: 450px; }
    .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
    .room-content { padding: 20px; }
    .room-name { font-size: 2.8rem; margin-bottom: 15px; }
    .room-meta { display: flex; gap: 30px; margin: 20px 0; color: var(--gold); font-weight: 500; }
    .amenities-grid {
      display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; margin: 25px 0;
    }
    .amenity-item { display: flex; align-items: center; gap: 10px; }
    .amenity-item span { font-size: 1.2rem; }
    .pricing-box {
      background: var(--primary); color: #fff; padding: 30px; border-radius: 20px; margin: 30px 0;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
    }
    .price { font-size: 2.5rem; font-weight: 700; color: var(--gold); }
    .booking-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
    .booking-buttons a { color: var(--bg-light); border: 1px solid var(--bg-light);}
    /* sticky booking bar (optional) */
    .sticky-booking {
      position: fixed; bottom: 20px; right: 20px; background: var(--primary); color: #fff;
      padding: 15px 25px; border-radius: 60px; box-shadow: var(--shadow-hover); z-index: 99;
      display: flex; gap: 20px; align-items: center; backdrop-filter: blur(8px);
      border: 1px solid var(--gold);
    }
    .sticky-booking .btn { padding: 10px 24px; color: var(--bg-light); border: 1px solid var(--bg-light);}
     
    .sticky-booking .btn:hover { background: var(--gold); color: var(--primary); }

    
    #bookingForm .btn-submit { padding: 10px 24px; background-color: var(--primary); color: var(--bg-light); border: 1px solid var(--primary);}
     
    #bookingForm .btn-submit:hover { background: var(--gold); color: var(--primary); }
    
    #bookingSuccess 
    {
      position: fixed; top: 20px; left: 50%; transform: translateX(-50%); background: var(--primary); color: var(--bg-light);
      padding: 15px 25px; border-radius: 60px; box-shadow: var(--shadow-hover); z-index: 100;
      animation: fadeInOut 4s forwards;
    }
    /* why stay with us */
    .benefits-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 50px;
    }
    .benefit-card { text-align: center; padding: 30px; background: #fff; border-radius: 20px; box-shadow: var(--shadow-sm); transition: var(--transition); }
    .benefit-card:hover { transform: translateY(-8px); }
    .benefit-icon { font-size: 2.5rem; margin-bottom: 15px; }

    /* guest reviews (simple cards) */
    .review-card {
      background: #fff; border-radius: 30px; padding: 30px; max-width: 600px; margin: 20px auto;
      box-shadow: var(--shadow-sm); text-align: center;
    }
    .stars { color: var(--gold); margin: 10px 0; font-size: 1.2rem; }

    /* gallery strip */
    .gallery-strip {
      display: grid; grid-template-columns: repeat(6, 1fr); gap: 15px; margin-top: 30px;
    }
    .strip-item { aspect-ratio: 1/1; overflow: hidden; border-radius: 8px; }
    .strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s; }
    .strip-item:hover img { transform: scale(1.1); }

    /* responsive */
    @media (max-width: 1000px) {
      .room-grid, .room-section--reverse .room-grid { grid-template-columns: 1fr; direction: ltr; }
      .benefits-grid { grid-template-columns: repeat(2,1fr); }
      .footer__grid { grid-template-columns: 1fr 1fr; }
      .gallery-strip { grid-template-columns: repeat(3,1fr); }
    }
    @media (max-width: 600px) {
      section { padding: 70px 0; }
      .benefits-grid { grid-template-columns: 1fr; }
      .footer__grid { grid-template-columns: 1fr; }
      .gallery-strip { grid-template-columns: repeat(2,1fr); }
      

    /* Contact Us PAge */


    /* contact info cards */
    /* contact info cards */
    
}

.contact-cards {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 30px;
    }
    .contact-card {
      background: #fff; padding: 40px 25px; border-radius: 20px; text-align: center;
      box-shadow: var(--shadow-sm); transition: var(--transition); border-bottom: 3px solid transparent;
    }
    .contact-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); border-bottom-color: var(--gold); }
    .contact-card__icon { font-size: 2.5rem; margin-bottom: 20px; color: var(--gold); }
    .contact-card__title { font-size: 1.4rem; margin-bottom: 15px; }

    /* form + map section */
    .contact-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
    }
    .form-group { margin-bottom: 25px; }
    .form-group input, .form-group textarea {
      width: 100%; padding: 15px 20px; border: 1px solid #ddd; border-radius: 8px;
      font-family: var(--font-body); font-size: 1rem; transition: var(--transition);
      background: #fff;
    }
    .form-group input:focus, .form-group textarea:focus {
      outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(200,169,126,0.2);
    }
    .map-container { border-radius: 20px; overflow: hidden; height: 100%; min-height: 400px; }
    .map-container iframe { width: 100%; height: 100%; border: 0; }

    /* location details */
    .location-grid {
      display: grid; grid-template-columns: 2fr 1fr; gap: 40px; align-items: center;
    }
    .location-list { list-style: none; }
    .location-list li { margin-bottom: 15px; display: flex; align-items: center; gap: 10px; }
    .location-list span { font-size: 1.4rem; }


   

    /* why book direct (benefits) */
    .benefits-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-top: 30px;
    }
    .benefit-item { text-align: center; }
    .benefit-icon { font-size: 2rem; color: var(--gold); }

    /* CSS only accordion (faq) */
    .faq-accordion { max-width: 800px; margin: 0 auto; }
    .accordion-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
    .accordion-toggle { display: none; }
    .accordion-label {
      display: block; padding: 20px 20px 20px 0; font-weight: 600; font-size: 1.2rem;
      cursor: pointer; position: relative; transition: var(--transition);
    }
    .accordion-label::after {
      content: '+'; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
      font-size: 1.8rem; color: var(--gold);
    }
    .accordion-toggle:checked + .accordion-label::after { content: '−'; }
    .accordion-content {
      max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding-left: 20px;
    }
    .accordion-toggle:checked + .accordion-label + .accordion-content { max-height: 200px; padding-bottom: 20px; }

    /* gallery strip (micro) */
    .gallery-strip {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; margin-top: 30px;
    }
    .strip-item { aspect-ratio: 1/1; overflow: hidden; border-radius: 8px; }
    .strip-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
    .strip-item:hover img { transform: scale(1.1); }

     /* responsive */
    @media (max-width: 1000px) {
      .contact-cards { grid-template-columns: repeat(2,1fr); }
      .contact-grid, .location-grid { grid-template-columns: 1fr; }
      .benefits-grid { grid-template-columns: repeat(2,1fr); }
      .footer__grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 600px) {
      section { padding: 70px 0; }
      .contact-cards, .benefits-grid { grid-template-columns: 1fr; }
      .footer__grid { grid-template-columns: 1fr; }
      .gallery-strip { grid-template-columns: repeat(2,1fr); }
      .page-hero { background-attachment: scroll; } /* mobile friendly */
    }


    /* Gallery Page */

          /* ----- HERO (parallax) ----- */
        .hero-gallery {
            height: 65vh;
            min-height: 500px;
            background-image: url('gallery-hero.jpg');
            background-size: cover;
            background-position: center 30%;
            background-attachment: fixed;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: var(--white);
        }

        .hero-gallery::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(12,31,44,0.75) 0%, rgba(200,169,126,0.35) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 900px;
            padding: 0 20px;
        }

        .hero-content h1 {
            font-size: clamp(3rem, 12vw, 5.5rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 0.15em;
            margin-bottom: 0.5rem;
            text-shadow: 2px 2px 12px rgba(0,0,0,0.4);
        }

        .hero-content p {
            font-size: 1.5rem;
            font-weight: 300;
            letter-spacing: 0.3em;
            margin-bottom: 1.2rem;
        }

        .breadcrumb {
            display: inline-block;
            background: rgba(255,255,255,0.15);
            backdrop-filter: blur(6px);
            padding: 0.6rem 2rem;
            border-radius: 60px;
            font-size: 1rem;
            border: 1px solid rgba(255,255,255,0.25);
        }

        /* ----- INTRO ----- */
        .intro-section {
            padding: 5rem 0 2rem;
            text-align: center;
        }

        .intro-subtitle {
            color: var(--accent-gold);
            text-transform: uppercase;
            letter-spacing: 0.3em;
            font-size: 0.9rem;
        }

        .intro-title {
            font-size: clamp(2.2rem, 5vw, 3.2rem);
            margin: 0.5rem 0 1.2rem;
        }

        .intro-text {
            max-width: 700px;
            margin: 0 auto 2rem;
            font-weight: 300;
            font-size: 1.2rem;
            color: #2c2c2c;
        }

        .divider {
            width: 120px;
            height: 2px;
            background: var(--accent-gold);
            margin: 0 auto;
        }

        /* ----- FILTER BUTTONS (wrapped, gold active) ----- */
        .filter-section {
            padding: 1rem 0 2rem;
        }

        .filter-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem 1.5rem;
        }

        .filter-btn {
            background: transparent;
            border: none;
            padding: 0.6rem 2rem;
            font-family: var(--font-body);
            font-size: 1rem;
            font-weight: 500;
            color: var(--primary);
            border-radius: 40px;
            cursor: pointer;
            transition: var(--transition);
            border: 1px solid rgba(200,169,126,0.3);
            background: rgba(255,255,255,0.7);
            backdrop-filter: blur(2px);
            letter-spacing: 0.05em;
        }

        .filter-btn:hover {
            border-color: var(--accent-gold);
            background: var(--white);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px -8px rgba(200,169,126,0.4);
        }

        .filter-btn.active {
            background: var(--accent-gold);
            color: var(--primary);
            border-color: var(--accent-gold);
            font-weight: 600;
        }

        /* ----- GALLERY GRID (no blank spaces on filter) ----- */
        .gallery-grid-section {
            padding: 1rem 0 4rem;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            grid-auto-rows: minmax(220px, auto);
        }

        /* varied masonry sizes */
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 10px 25px -5px rgba(0,0,0,0.15);
            transition: opacity 0.45s ease, transform 0.3s, box-shadow 0.3s;
            cursor: pointer;
            grid-column: span 1;
            grid-row: span 1;
            opacity: 1;
            transform: scale(1);
        }

        .gallery-item.wide { grid-column: span 2; }
        .gallery-item.tall { grid-row: span 2; }
        .gallery-item.large { grid-column: span 2; grid-row: span 2; }

  
        .gallery-item {
            transition: opacity 0.4s ease, transform 0.4s ease;
        }
        .gallery-item.filter-hidden {
            display: none; /* simplest, no blank space, but no fade. many luxury sites skip fade. I'll stick to display: none to satisfy "no blank space" */
            /* but they asked smooth transition – I'll keep fade but comment: better to have clean grid. We'll combine both? */
        }

        /* advanced filter with no blank spaces + fade */
        .gallery-item {
            transition: opacity 0.4s ease, transform 0.4s ease;
            opacity: 1;
            transform: scale(1);
        }
        .gallery-item.filter-fade {
            opacity: 0;
            transform: scale(0.8);
            pointer-events: none;
        }
        .gallery-item.filter-hidden {
            display: none;
        }
        /* lightbox */
        .lightbox {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(12,31,44,0.98);
            backdrop-filter: blur(12px);
            z-index: 2000;
            display: none;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.25s;
        }
        .lightbox.show {
            display: flex;
            opacity: 1;
        }
        .lightbox-content {
            position: relative;
            max-width: 85vw;
            max-height: 85vh;
        }
        .lightbox-content img {
            max-width: 100%;
            max-height: 85vh;
            border: 4px solid var(--accent-gold);
            border-radius: 12px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.6);
        }
        .lightbox-close, .lightbox-prev, .lightbox-next {
            position: absolute;
            background: var(--primary);
            color: var(--accent-gold);
            border: 1px solid var(--accent-gold);
            width: 54px;
            height: 54px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.4rem;
            cursor: pointer;
            transition: 0.2s;
            z-index: 2010;
            line-height: 1;
        }
        .lightbox-close { top: 25px; right: 30px; }
        .lightbox-prev { left: 25px; top: 50%; transform: translateY(-50%); }
        .lightbox-next { right: 25px; top: 50%; transform: translateY(-50%); }
        .lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover {
            background: var(--accent-gold);
            color: var(--primary);
        }