/* =========================================================================
   WILDLIFE GIR RESORT — CINEMATIC LUXURY LAYER
   Loads after style.css / responsive.css / color.css.
   Elevates the existing luxury-* component system into a true
   high-end, dark-cinematic hospitality experience: Ken Burns hero,
   glassmorphism, masonry reveals, magnetic buttons, custom cursor,
   scroll progress, animated counters. Purely additive — no existing
   class names, JS hooks, or markup are removed.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,500&family=Cormorant+Garamond:ital,wght@0,500;1,500;1,600&family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root{
  --gir-forest:#0F5132;
  --gir-emerald:#198754;
  --gir-gold:#D4AF37;
  --gir-gold-soft:#ecd896;
  --gir-dark:#111111;
  --gir-dark-2:#181b16;
  --gir-cream:#FAF9F6;
  --gir-ease:cubic-bezier(.22,1,.36,1);
  --gir-ease-soft:cubic-bezier(.25,.8,.25,1);
}

/* ---------------------------------------------------------------------
   GLOBAL TYPE SYSTEM
   --------------------------------------------------------------------- */
html{ scroll-behavior:smooth; }
body{
  font-family:'Poppins','Inter',sans-serif;
  background:var(--gir-cream);
}
.hero-copy h1,
.section-heading h2,
.title1 > h2,
h1, h2, h3{
  font-family:'Playfair Display', Georgia, serif !important;
}
.section-kicker,
.luxury-split-copy .section-kicker{
  font-family:'Cormorant Garamond', cursive !important;
  font-style:italic;
  font-size:19px !important;
  letter-spacing:2.5px !important;
  font-weight:600 !important;
}

/* thin gold rule under section kickers for editorial rhythm */
.section-heading{ position:relative; }
.section-heading h2::after{
  content:"";
  display:block;
  width:64px; height:2px;
  margin:22px auto 0;
  background:linear-gradient(90deg, transparent, var(--gir-gold), transparent);
}
.title1 > h2::after{
  content:"";
  display:block;
  width:54px; height:2px;
  margin-top:16px;
  background:linear-gradient(90deg, var(--gir-gold), transparent);
}

/* ---------------------------------------------------------------------
   SCROLL PROGRESS BAR
   --------------------------------------------------------------------- */
#gir-scroll-progress{
  position:fixed; top:0; left:0;
  height:3px; width:0%;
  background:linear-gradient(90deg, var(--gir-gold), var(--gir-gold-soft));
  z-index:100000;
  box-shadow:0 0 12px rgba(212,175,55,.6);
  transition:width .08s linear;
}

/* ---------------------------------------------------------------------
   CUSTOM CURSOR (desktop / fine-pointer only)
   --------------------------------------------------------------------- */
@media(hover:hover) and (pointer:fine){
  body.gir-cursor-on{ cursor:none; }
  body.gir-cursor-on a, body.gir-cursor-on button, body.gir-cursor-on input, body.gir-cursor-on textarea{ cursor:none; }
  .gir-cursor-dot, .gir-cursor-ring{
    position:fixed; top:0; left:0;
    pointer-events:none;
    z-index:100001;
    border-radius:50%;
    transform:translate(-50%,-50%);
    will-change:transform;
  }
  .gir-cursor-dot{
    width:6px; height:6px;
    background:var(--gir-gold);
  }
  .gir-cursor-ring{
    width:36px; height:36px;
    border:1px solid rgba(212,175,55,.65);
    transition:width .25s var(--gir-ease-soft), height .25s var(--gir-ease-soft), border-color .25s ease, background .25s ease;
  }
  .gir-cursor-ring.is-active{
    width:64px; height:64px;
    background:rgba(212,175,55,.12);
    border-color:var(--gir-gold);
  }
}

/* ---------------------------------------------------------------------
   HEADER — refined glass + gold underline on scroll
   --------------------------------------------------------------------- */
header.luxury-scrolled{
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  background:rgba(10,28,18,0.86) !important;
  border-bottom:1px solid rgba(212,175,55,.22) !important;
}
.logomenu-sec nav ul li a::after{
  background:var(--gir-gold) !important;
}

/* ---------------------------------------------------------------------
   CINEMATIC HERO
   --------------------------------------------------------------------- */
.home-hero{ background:var(--gir-dark); }
.home-hero .rev_slider_wrapper,
.home-hero .rev_slider{ overflow:hidden !important; }

/* slow Ken Burns drift on the active slide image */
.home-hero .rev-slidebg{
  animation:girKenBurns 18s ease-in-out infinite alternate;
  will-change:transform;
}
@keyframes girKenBurns{
  0%{ transform:scale(1) translate3d(0,0,0); }
  100%{ transform:scale(1.14) translate3d(-1.5%, -1%, 0); }
}

/* deep cinematic vignette + gradient instead of flat brand wash */
.featured-carouselsec::before{
  background:
    radial-gradient(120% 100% at 14% 100%, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 55%),
    linear-gradient(100deg, rgba(8,12,9,.92) 0%, rgba(8,12,9,.62) 38%, rgba(8,12,9,.28) 64%, rgba(8,12,9,.55) 100%) !important;
  z-index:2;
}
.featured-carouselsec::after{
  content:"";
  position:absolute; inset:0;
  z-index:2;
  background:linear-gradient(180deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,0) 18%, rgba(0,0,0,0) 72%, rgba(0,0,0,.65) 100%);
  pointer-events:none;
}

.hero-copy{ overflow:visible; }
.section-kicker{
  position:relative;
  padding-left:38px;
}
.section-kicker::before{
  content:"";
  position:absolute; left:0; top:50%;
  width:28px; height:1px;
  background:var(--gir-gold);
  transform:translateY(-50%);
}
.hero-copy h1{
  font-size:clamp(28px, 3.4vw, 48px) !important;
  letter-spacing:.2px !important;
  text-shadow:0 8px 40px rgba(0,0,0,.45);
}
.hero-copy h1 span{
  background:linear-gradient(95deg, var(--gir-gold-soft), var(--gir-gold) 55%, var(--gir-gold-soft));
  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
}
.hero-copy p{ font-family:'Inter',sans-serif !important; font-weight:300; }

/* word-level reveal targets injected by JS: .gir-word */
.gir-split h1 .gir-word{
  display:inline-block;
  overflow:hidden;
}
.gir-split h1 .gir-word > span{
  display:inline-block;
  transform:translateY(115%);
  will-change:transform;
}

/* magnetic premium CTA buttons */
.luxury-btn{
  position:relative;
  overflow:hidden;
  border-radius:2px;
  isolation:isolate;
}
.luxury-btn::before{
  content:"";
  position:absolute; inset:0;
  background:var(--gir-gold);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .45s var(--gir-ease);
  z-index:-1;
}
.luxury-btn-primary{
  background:linear-gradient(120deg, var(--gir-forest), var(--gir-emerald)) !important;
}
.luxury-btn-primary:hover::before,
.luxury-btn-ghost:hover::before{ transform:scaleX(1); }
.luxury-btn-primary:hover, .luxury-btn-primary:focus{
  color:var(--gir-dark) !important;
}
.luxury-btn-ghost:hover, .luxury-btn-ghost:focus{
  color:var(--gir-dark) !important;
  border-color:var(--gir-gold) !important;
}

.scroll-indicator::before{ border-color:rgba(255,255,255,.5) !important; }
.scroll-indicator span{ background:var(--gir-gold) !important; }

/* ---------------------------------------------------------------------
   ROOM CARDS — immersive image, animated reveal
   --------------------------------------------------------------------- */
.luxury-room-card .bloglist-post{
  border-radius:4px;
  box-shadow:0 40px 90px -30px rgba(8,36,23,.35) !important;
  transition:box-shadow .5s var(--gir-ease-soft), transform .5s var(--gir-ease-soft);
}
.luxury-room-card .bloglist-post:hover{
  box-shadow:0 55px 120px -25px rgba(8,36,23,.45) !important;
}
.luxury-room-image-col .post-thumb{
  overflow:hidden;
  position:relative;
}
.luxury-room-image-col .post-thumb::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0) 55%, rgba(0,0,0,.55) 100%);
  opacity:0;
  transition:opacity .5s ease;
}
.luxury-room-card:hover .luxury-room-image-col .post-thumb::after{ opacity:1; }
.luxury-room-image-col .post-thumb img{
  transition:transform 1.1s var(--gir-ease);
}
.luxury-room-card:hover .luxury-room-image-col .post-thumb img{
  transform:scale(1.09);
}
.luxury-room-image-col .post-thumb .book-btn2{
  background:var(--gir-gold) !important;
  color:var(--gir-dark) !important;
  font-weight:700;
  letter-spacing:1.2px;
  border-radius:2px;
  transform:translateY(8px);
  opacity:0;
  transition:all .4s var(--gir-ease-soft);
}
.luxury-room-card:hover .book-btn2{ transform:translateY(0); opacity:1; }
.luxury-room-meta-column span{
  position:relative;
  padding-left:22px;
  font-family:'Inter',sans-serif;
  letter-spacing:.4px;
}
.luxury-room-meta-column span::before{
  content:"";
  position:absolute; left:0; top:9px;
  width:12px; height:1px;
  background:var(--gir-gold);
}

/* room / package / feature cards (other pages) */
.luxury-feature-card, .luxury-package-card{
  border-radius:4px;
  background:#fff;
  box-shadow:0 30px 70px -28px rgba(8,36,23,.3);
  transition:transform .5s var(--gir-ease-soft), box-shadow .5s var(--gir-ease-soft);
  overflow:hidden;
}
.luxury-feature-card:hover, .luxury-package-card:hover{
  transform:translateY(-10px);
  box-shadow:0 45px 95px -25px rgba(8,36,23,.4);
}
.luxury-card-image{ overflow:hidden; }
.luxury-card-image img{ transition:transform 1s var(--gir-ease); }
.luxury-feature-card:hover .luxury-card-image img,
.luxury-package-card:hover .luxury-card-image img{ transform:scale(1.08); }
.luxury-card-body h3{ font-family:'Playfair Display',serif !important; color:var(--gir-forest); }
.luxury-facility-list li{
  position:relative; padding-left:22px;
}
.luxury-facility-list li::before{
  content:"\2726";
  position:absolute; left:0; top:0;
  color:var(--gir-gold);
  font-size:11px;
}

/* ---------------------------------------------------------------------
   SERVICES — glassmorphism premium cards
   --------------------------------------------------------------------- */
.luxury-services{
  background:linear-gradient(180deg, var(--gir-cream) 0%, #f1efe6 100%);
  position:relative;
}
.service1{
  background:rgba(255,255,255,.55);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border:1px solid rgba(255,255,255,.6);
  border-radius:6px;
  box-shadow:0 25px 60px -30px rgba(8,36,23,.25);
  padding:42px 34px !important;
  transition:transform .5s var(--gir-ease-soft), box-shadow .5s var(--gir-ease-soft), background .5s ease;
  position:relative;
  overflow:hidden;
}
.service1::before{
  content:"";
  position:absolute; top:0; left:0; right:0; height:3px;
  background:linear-gradient(90deg, var(--gir-forest), var(--gir-gold));
  transform:scaleX(0); transform-origin:left;
  transition:transform .5s var(--gir-ease);
}
.service1:hover{
  transform:translateY(-8px);
  background:rgba(255,255,255,.85);
  box-shadow:0 40px 80px -28px rgba(8,36,23,.32);
}
.service1:hover::before{ transform:scaleX(1); }
.service1 > span{
  display:inline-flex; align-items:center; justify-content:center;
  width:62px; height:62px;
  border-radius:50%;
  background:linear-gradient(135deg, rgba(15,81,50,.1), rgba(212,175,55,.18));
  margin-bottom:18px;
  transition:transform .5s var(--gir-ease-soft), background .5s ease;
}
.service1 > span i{ color:var(--gir-forest); font-size:26px; transition:color .4s ease; }
.service1:hover > span{
  background:linear-gradient(135deg, var(--gir-forest), var(--gir-gold));
  transform:rotate(-8deg) scale(1.08);
}
.service1:hover > span i{ color:#fff; }
.service1 h4 a{ font-family:'Playfair Display',serif; color:var(--gir-forest); }

/* ---------------------------------------------------------------------
   GALLERY — luxury overlays + masonry
   --------------------------------------------------------------------- */
.gallery-item{ position:relative; overflow:hidden; }
.gallery-item img{ transition:transform 1.1s var(--gir-ease); }
.gallery-list > ul > li:hover .gallery-item img{ transform:scale(1.1); }
.gallery-detail{
  background:linear-gradient(0deg, rgba(8,12,9,.92) 0%, rgba(8,12,9,0) 75%) !important;
  opacity:0;
  transition:opacity .5s ease;
}
.gallery-list > ul > li:hover .gallery-detail,
.gallery-list > ul > li.active .gallery-detail{ opacity:1; }
.gallery-detail h4 a{
  font-family:'Cormorant Garamond',cursive !important;
  font-style:italic;
  font-size:21px !important;
  color:#fff !important;
}

/* masonry page (gallery.html) */
.luxury-masonry-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  grid-auto-rows:280px;
  grid-auto-flow:row;
  gap:18px;
}
.luxury-masonry-item{
  position:relative;
  overflow:hidden;
  border-radius:8px;
  grid-column:span 1;
  grid-row:span 1;
  box-shadow:0 20px 45px -20px rgba(8,36,23,.3);
}
.luxury-masonry-item.tall{ grid-row:span 2; }
.luxury-masonry-item.wide{ grid-column:span 2; grid-row:span 1; }
.luxury-masonry-item img{
  width:100%; height:100%; object-fit:cover;
  transition:transform 1.1s var(--gir-ease);
}
.luxury-masonry-item:hover img{ transform:scale(1.1); }
.luxury-masonry-item::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(0deg, rgba(8,12,9,.78) 0%, rgba(8,12,9,0) 50%);
  opacity:0;
  transition:opacity .45s ease;
}
.luxury-masonry-item:hover::after{ opacity:1; }

/* gallery strip (dining.html) */
.luxury-gallery-strip{ display:flex; gap:16px; flex-wrap:wrap; }
.luxury-gallery-strip a{
  flex:1 1 22%;
  overflow:hidden;
  display:block;
  border-radius:4px;
  box-shadow:0 20px 45px -20px rgba(8,36,23,.3);
}
.luxury-gallery-strip img{ width:100%; height:240px; object-fit:cover; transition:transform 1s var(--gir-ease); }
.luxury-gallery-strip a:hover img{ transform:scale(1.08); }

/* ---------------------------------------------------------------------
   ABOUT — storytelling split layout
   --------------------------------------------------------------------- */
.luxury-about-grid{ align-items:center; }
.luxury-about-visual{
  position:relative;
}
.luxury-about-visual img:first-child{
  border-radius:4px;
  box-shadow:0 50px 100px -35px rgba(8,36,23,.4);
  position:relative;
  z-index:2;
}
.luxury-about-visual img:nth-child(2){
  position:absolute;
  bottom:-20px; right:10px;
  width:42% !important;
  border:5px solid var(--gir-cream);
  border-radius:4px;
  box-shadow:0 30px 60px -20px rgba(8,36,23,.45);
  z-index:3;
}
.luxury-about-visual::before{
  content:"";
  position:absolute;
  top:24px; left:-24px;
  width:100%; height:100%;
  border:1px solid var(--gir-gold);
  border-radius:4px;
  z-index:1;
}
.luxury-about-highlights{
  display:flex; flex-wrap:wrap; gap:12px;
  margin-top:26px;
}
.luxury-about-highlights span{
  font-family:'Inter',sans-serif;
  font-size:12px;
  letter-spacing:.6px;
  text-transform:uppercase;
  padding:10px 16px;
  border:1px solid rgba(15,81,50,.25);
  border-radius:30px;
  color:var(--gir-forest);
  background:rgba(15,81,50,.05);
}

/* animated counters strip injected after about-highlights by JS (.gir-stats) */
.gir-stats{
  display:flex; flex-wrap:wrap; gap:34px;
  margin-top:34px;
  padding-top:30px;
  border-top:1px solid rgba(15,81,50,.15);
}
.gir-stats .gir-stat{ min-width:90px; }
.gir-stats .gir-stat strong{
  display:block;
  font-family:'Playfair Display',serif;
  font-size:34px;
  color:var(--gir-forest);
  line-height:1;
}
.gir-stats .gir-stat strong .gir-gold-suffix{ color:var(--gir-gold); }
.gir-stats .gir-stat span{
  display:block;
  margin-top:6px;
  font-size:11px;
  letter-spacing:1px;
  text-transform:uppercase;
  color:#6b746b;
}

/* ---------------------------------------------------------------------
   TESTIMONIALS — premium editorial cards
   --------------------------------------------------------------------- */
.luxury-testimonials{
  background:var(--gir-dark);
  position:relative;
}
.luxury-testimonials .section-heading h2{ color:#fff; }
.luxury-testimonials .section-heading h2::after{ margin:22px auto 0; }
.luxury-testimonials .section-kicker{ color:var(--gir-gold-soft) !important; }
.customer-review.luxury-testimonial{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(212,175,55,.18);
  border-radius:6px;
  padding:42px 34px !important;
  position:relative;
  backdrop-filter:blur(6px);
}
.customer-review.luxury-testimonial::before{
  content:"\201C";
  position:absolute;
  top:14px; left:24px;
  font-family:'Playfair Display',serif;
  font-size:70px;
  color:rgba(212,175,55,.25);
  line-height:1;
}
.customer-review .customer-thumb img{
  border:2px solid var(--gir-gold);
}
.customer-reviewrating p{
  color:rgba(255,255,255,.86) !important;
  font-family:'Cormorant Garamond',cursive;
  font-style:italic;
  font-size:19px !important;
  line-height:1.6 !important;
}
.customer-reviewrating span{
  color:var(--gir-gold-soft) !important;
  font-size:11px;
  letter-spacing:1.5px;
  text-transform:uppercase;
}

/* ---------------------------------------------------------------------
   BOOKING CTA — dark gold band
   --------------------------------------------------------------------- */
.luxury-booking-cta{
  background:linear-gradient(120deg, var(--gir-dark) 0%, #0c1f15 60%, var(--gir-dark) 100%);
  position:relative;
  overflow:hidden;
  padding:100px 0;
}
.luxury-booking-cta::before{
  content:"";
  position:absolute; inset:0;
  background:radial-gradient(60% 120% at 80% 20%, rgba(212,175,55,.12), transparent 60%);
}
.booking-cta-inner{ position:relative; z-index:2; text-align:center; }
.booking-cta-inner .section-kicker{ color:var(--gir-gold-soft) !important; justify-content:center; display:inline-flex; }
.booking-cta-inner h2{ color:#fff; font-size:clamp(28px,4vw,46px); }
.booking-cta-inner p{ color:rgba(255,255,255,.75); max-width:560px; margin:18px auto 0; }
.booking-cta-inner .hero-actions{ justify-content:center; }

/* ---------------------------------------------------------------------
   LUXURY SPLIT (dining / safari pages)
   --------------------------------------------------------------------- */
.luxury-split{ display:flex; align-items:center; gap:54px; flex-wrap:wrap; }
.luxury-split-media, .luxury-split-copy{ flex:1 1 420px; }
.luxury-split-media img{
  width:100%; border-radius:4px;
  box-shadow:0 45px 90px -30px rgba(8,36,23,.4);
}
.luxury-dark-band{ background:var(--gir-dark); }
.luxury-dark-band .section-heading h2, .luxury-dark-band h3{ color:#fff; }
.luxury-dark-band .section-kicker{ color:var(--gir-gold-soft) !important; }
.luxury-info-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:26px;
}
.luxury-info-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(212,175,55,.16);
  border-radius:6px;
  padding:30px 26px;
  transition:transform .4s var(--gir-ease-soft), background .4s ease;
}
.luxury-dark-band .luxury-info-card p,
.luxury-dark-band .luxury-faq-list li{ color:rgba(255,255,255,.72); }
.luxury-info-card:hover{ transform:translateY(-6px); background:rgba(255,255,255,.07); }
.luxury-info-card h3{ font-family:'Playfair Display',serif; color:var(--gir-gold-soft); margin-bottom:10px; }
body:not(.luxury-dark-band) .luxury-info-card h3{ color:var(--gir-forest); }
.luxury-page-section .luxury-info-card{
  background:#fff;
  border:1px solid rgba(15,81,50,.1);
  box-shadow:0 20px 50px -28px rgba(8,36,23,.25);
}
.luxury-page-section .luxury-info-card h3{ color:var(--gir-forest); }
.luxury-faq-list li{ position:relative; padding-left:20px; margin-bottom:8px; }
.luxury-faq-list li::before{ content:"—"; position:absolute; left:0; color:var(--gir-gold); }

/* ---------------------------------------------------------------------
   CONTACT
   --------------------------------------------------------------------- */
.luxury-contact-card, .luxury-booking-form{
  background:#fff;
  border-radius:6px;
  box-shadow:0 35px 80px -30px rgba(8,36,23,.3);
  padding:42px;
}
.luxury-contact-card h3{ font-family:'Playfair Display',serif; color:var(--gir-forest); }
.luxury-booking-form input, .luxury-booking-form textarea, .luxury-booking-form select{
  border:1px solid rgba(15,81,50,.18) !important;
  border-radius:3px !important;
  transition:border-color .3s ease, box-shadow .3s ease;
}
.luxury-booking-form input:focus, .luxury-booking-form textarea:focus{
  border-color:var(--gir-gold) !important;
  box-shadow:0 0 0 3px rgba(212,175,55,.15);
  outline:none;
}

/* ---------------------------------------------------------------------
   PAGE TOP BANNERS — cinematic dark
   --------------------------------------------------------------------- */
.pagetop-sec{ position:relative; overflow:hidden; }
.pagetop-sec::before{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(120deg, rgba(8,12,9,.88), rgba(8,12,9,.55));
  z-index:1;
}
.pagetop-sec .container{ position:relative; z-index:2; }
.page-title h1, .page-title strong{ margin:0 !important; font-family:'Playfair Display',serif !important; color:#fff !important; font-weight:600; }
.luxury-attraction-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:40px;}
.luxury-google-strip{display:flex;align-items:center;justify-content:center;gap:14px;flex-wrap:wrap;margin:0 auto 36px;padding:16px 28px;background:#fff;border:1px solid #e8dece;border-radius:50px;max-width:620px;box-shadow:0 10px 30px rgba(13,53,24,0.06);}
.lgs-g-icon{width:26px;height:26px;flex-shrink:0;}
.lgs-rating{font-family:'Inter',sans-serif;font-weight:700;font-size:14px;color:#1e1e1e;}
.lgs-cta{font-family:'Inter',sans-serif;font-size:12px;font-weight:700;letter-spacing:0.04em;text-transform:uppercase;color:#0d3518;text-decoration:none;border-bottom:2px solid #D4AF37;padding-bottom:2px;transition:color 0.2s;white-space:nowrap;}
.lgs-cta:hover{color:#D4AF37;}
.ctr-stars{display:block;color:#D4AF37;font-size:15px;letter-spacing:2px;margin-bottom:10px;}
@media(max-width:480px){.luxury-google-strip{padding:14px 18px;gap:10px;border-radius:18px;}}
.luxury-attraction-card{background:#fff;border:1px solid #e8dece;border-radius:10px;padding:32px 24px;text-align:center;transition:transform 0.3s ease,box-shadow 0.3s ease;}
.luxury-attraction-card:hover{transform:translateY(-6px);box-shadow:0 18px 40px rgba(13,53,24,0.12);}
.luxury-attraction-icon{width:64px;height:64px;margin:0 auto 18px;border-radius:50%;background:#0d3518;color:#D4AF37;display:flex;align-items:center;justify-content:center;font-size:24px;}
.luxury-attraction-card h3{font-family:'Playfair Display',serif;font-size:19px;color:#111;margin-bottom:10px;}
.luxury-attraction-card p{font-size:13.5px;color:#666;line-height:1.7;margin-bottom:14px;}
.luxury-attraction-dist{display:inline-flex;align-items:center;gap:6px;font-size:11.5px;font-weight:700;letter-spacing:0.04em;color:#0d3518;background:#f5f1ea;padding:6px 14px;border-radius:20px;}
@media(max-width:991px){.luxury-attraction-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:480px){.luxury-attraction-grid{grid-template-columns:1fr;gap:16px;}.luxury-attraction-card{padding:26px 20px;}}
.page-title h1 span, .page-title strong span{ color:var(--gir-gold-soft) !important; }
.breadcrumbs li, .breadcrumbs li a{ color:rgba(255,255,255,.75) !important; }
.breadcrumbs li:last-child{ color:var(--gir-gold-soft) !important; }

/* ---------------------------------------------------------------------
   FOOTER — five-star presentation
   --------------------------------------------------------------------- */
footer{ background:var(--gir-dark) !important; }
footer .footer-widget h2{ font-family:'Playfair Display',serif !important; color:var(--gir-gold-soft) !important; }
footer p, footer li, footer span{ color:rgba(255,255,255,.7); }
footer a{ transition:color .3s ease; }
footer a:hover{ color:var(--gir-gold) !important; }
.bottom-line{ border-top:1px solid rgba(212,175,55,.15); }
.Social-btn li a{
  border:1px solid rgba(212,175,55,.4) !important;
  border-radius:50% !important;
  transition:all .35s var(--gir-ease-soft) !important;
}
.Social-btn li a:hover{
  background:var(--gir-gold) !important;
  color:var(--gir-dark) !important;
  transform:translateY(-4px) rotate(8deg);
}

/* ---------------------------------------------------------------------
   SCROLL-REVEAL UTILITY (driven by JS / IntersectionObserver + GSAP)
   --------------------------------------------------------------------- */
.gir-reveal{
  opacity:0;
  transform:translateY(46px);
  transition:opacity .9s var(--gir-ease-soft), transform .9s var(--gir-ease-soft);
}
.gir-reveal.gir-in{ opacity:1; transform:translateY(0); }
.gir-reveal-scale{ opacity:0; transform:scale(.92); transition:opacity 1s var(--gir-ease-soft), transform 1s var(--gir-ease-soft); }
.gir-reveal-scale.gir-in{ opacity:1; transform:scale(1); }

/* ---------------------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------------------- */
@media(max-width:991px){
  .luxury-masonry-grid{ grid-template-columns:repeat(2,1fr); grid-auto-rows:150px; }
  .luxury-masonry-item.wide{ grid-column:span 2; }
  .luxury-about-visual img:nth-child(2){ width:50% !important; bottom:-22px; right:-16px; }
  .luxury-info-grid{ grid-template-columns:1fr 1fr; }
}
@media(max-width:767px){
  .hero-copy{ padding-top:150px; }
  .luxury-masonry-grid{ grid-template-columns:1fr 1fr; grid-auto-rows:130px; }
  .luxury-gallery-strip a{ flex:1 1 45%; }
  .luxury-info-grid{ grid-template-columns:1fr; }
  .luxury-about-visual img:nth-child(2){ display:none; }
  .gir-stats{ gap:22px; }
  body.gir-cursor-on{ cursor:auto; }
  .gir-cursor-dot, .gir-cursor-ring{ display:none; }
}
@media(prefers-reduced-motion: reduce){
  .home-hero .rev-slidebg{ animation:none; }
  .gir-reveal, .gir-reveal-scale{ opacity:1; transform:none; transition:none; }
}

/* === Gallery enhanced animations === */
.luxury-masonry-item {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.luxury-masonry-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -10px rgba(8,36,23,0.35) !important;
  z-index: 10;
}
.luxury-masonry-item img {
  transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94);
}
.luxury-masonry-item:hover img {
  transform: scale(1.08);
}
.luxury-masonry-item span {
  transition: opacity 0.4s ease, transform 0.4s ease;
  opacity: 0;
  transform: translateY(10px);
}
.luxury-masonry-item:hover span {
  opacity: 1;
  transform: translateY(0);
}

/* === Luxurious Book Now button pulse === */
.luxury-booking-cta .luxury-btn-primary {
  animation: goldPulse 3s ease-in-out infinite;
}
@keyframes goldPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,168,75,0.4); }
  50% { box-shadow: 0 0 0 12px rgba(200,168,75,0); }
}

/* === Blog card hover lift === */
.luxury-blog-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.luxury-blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 55px rgba(8,36,23,0.16) !important;
}
.luxury-blog-card .luxury-card-image img {
  transition: transform 0.7s ease;
}
.luxury-blog-card:hover .luxury-card-image img {
  transform: scale(1.06);
}
