/* ============================================================
   naman HOTEL & BANQUET — MAIN STYLESHEET
   Theme : Deep Purple (#2b0a3d) & Gold (#f7c774)
   ============================================================ */

/* ============================================================
   1. RESET & BASE
   ============================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Junge;
  line-height: 1.6;
  padding-top: 80px;
  background-color: #2b0a3d;
  color: #f0e0ff;
}


/* ============================================================
   2. KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes fadeInUp    { from { opacity: 0; transform: translateY(40px)  } to { opacity: 1; transform: translateY(0)    } }
@keyframes fadeInDown  { from { opacity: 0; transform: translateY(-40px) } to { opacity: 1; transform: translateY(0)    } }
@keyframes fadeInLeft  { from { opacity: 0; transform: translateX(-50px) } to { opacity: 1; transform: translateX(0)   } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(50px)  } to { opacity: 1; transform: translateX(0)   } }
@keyframes zoomIn      { from { opacity: 0; transform: scale(0.85)       } to { opacity: 1; transform: scale(1)        } }
@keyframes shimmer     { 0%   { background-position: -200% center        } 100% { background-position: 200% center    } }
@keyframes floatBob    { 0%, 100% { transform: translateY(0)             } 50%  { transform: translateY(-12px)        } }
@keyframes goldPulse   { 0%, 100% { box-shadow: 0 0 0 0   rgba(247,199,116,0)    }
                         50%      { box-shadow: 0 0 0 8px rgba(247,199,116,0.15) } }
@keyframes heroGlow    { 0%, 100% { text-shadow: 0 0 20px rgba(247,199,116,0.3) }
                         50%      { text-shadow: 0 0 50px rgba(247,199,116,0.7), 0 0 90px rgba(247,199,116,0.25) } }
@keyframes rippleAnim  { to { transform: scale(3.5); opacity: 0 } }
@keyframes bookNowPulse{ 0%, 100% { box-shadow: 0 0 0 0   rgba(247,199,116,0.5) }
                         50%      { box-shadow: 0 0 0 7px rgba(247,199,116,0)   } }
@keyframes logoBob     { 0%, 100% { transform: translateY(0) rotate(0deg)  }
                         50%      { transform: translateY(-5px) rotate(-2deg) } }
@keyframes dropSlide   { from { opacity: 0; transform: translateY(-8px) } to { opacity: 1; transform: translateY(0) } }
@keyframes navSlideDown{ from { opacity: 0; transform: translateY(-16px) } to { opacity: 1; transform: translateY(0) } }
@keyframes iconBob     { 0%, 100% { transform: translateY(0) } 50% { transform: translateY(-4px) } }
@keyframes slideUp     { from { opacity: 0; transform: translateY(30px)  } to { opacity: 1; transform: translateY(0)  } }
@keyframes fadeIn      { from { opacity: 0; transform: translateY(15px)  } to { opacity: 1; transform: translateY(0)  } }

/* Respect user's motion preference */
@media (prefers-reduced-motion: reduce) {
  .reveal, .img-float, .heading-gold {
    animation: none !important;
    transition: none !important;
  }
}


/* ============================================================
   3. SCROLL-REVEAL SYSTEM
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.from-left  { transform: translateX(-50px); }
.reveal.from-right { transform: translateX(50px);  }
.reveal.from-top   { transform: translateY(-40px); }
.reveal.zoom       { transform: scale(0.85);       }
.reveal.animated   { opacity: 1 !important; transform: none !important; }

/* Stagger delay helpers */
.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; }
.delay-5 { transition-delay: .5s !important; }
.delay-6 { transition-delay: .6s !important; }


/* ============================================================
   4. REUSABLE COMPONENTS
   ============================================================ */

/* ── Gold shimmer heading ── */
.heading-gold {
  background: linear-gradient(90deg, #f7c774 0%, #fff5d6 40%, #f7c774 60%, #e0a84a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  display: inline-block;
}

/* ── Gold horizontal divider ── */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f7c774, transparent);
  margin: 10px auto 20px;
  border-radius: 2px;
}
.gold-divider.left { margin-left: 0; }

/* ── Logo float animation ── */
.img-float { animation: floatBob 4s ease-in-out infinite; }

/* ── Generic card hover (lift + gold border glow) ── */
.hov-card { transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease; }
.hov-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(247,199,116,.18) !important;
  border-color: rgba(247,199,116,.65) !important;
}

/* ── Gold solid button ── */
.btn-gold {
  background: #f7c774;
  color: #2b0a3d;
  font-weight: 700;
  border: 2px solid #f7c774;
  border-radius: 6px;
  padding: 5px 10px;
  position: relative;
  overflow: hidden;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  display: inline-block;
  letter-spacing: .5px;
  z-index: 1;
  cursor: pointer;
}
.btn-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.35) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .5s ease;
  z-index: 0;
}
.btn-gold:hover::before { transform: translateX(100%); }
.btn-gold:hover {
  background: #2b0a3d;
  color: #f7c774;
  border-color: #f7c774;
  box-shadow: 0 8px 28px rgba(247,199,116,.35);
  transform: translateY(-3px);
  letter-spacing: 1px;
}
.btn-gold:active { transform: translateY(-1px); }
.btn-gold span   { position: relative; z-index: 1; }

/* ── Ghost / outline button ── */
.btn-ghost {
  background: transparent;
  color: #f7c774;
  border: 2px solid #f7c774;
  font-weight: 600;
  border-radius: 6px;
  padding: 8px 22px;
  position: relative;
  overflow: hidden;
  transition: all .35s cubic-bezier(.4,0,.2,1);
  text-decoration: none;
  display: inline-block;
  z-index: 1;
  cursor: pointer;
}
.btn-ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #f7c774;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
  z-index: -1;
}
.btn-ghost:hover::before { transform: scaleX(1); }
.btn-ghost:hover {
  color: #2b0a3d;
  box-shadow: 0 8px 25px rgba(247,199,116,.3);
  transform: translateY(-3px);
}
.btn-ghost:active { transform: translateY(-1px); }


/* ============================================================
   5. NAVBAR
   ============================================================ */

/* ── Base navbar ── */
.custom-navbar {
  background: transparent;
  animation: navSlideDown 0.55s ease both;
  min-height: 68px;
  padding: 8px 20px;
  z-index: 1100;
  transition: all 0.35s ease;
}

/* Scrolled state — semi-transparent background */
.custom-navbar.scrolled,
.custom-navbar.nav-scrolled {
  background: rgba(43,10,61,0.92) !important;
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.25) !important;
  min-height: 58px;
  transition: all 0.4s ease;
}

/* ── Logo — desktop center piece ── */
.center-logo {
  height: 90px;
  border-radius: 50%;
  background: #2b0a3d;
  padding: 6px;
  margin-top: 5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.center-logo:hover {
  animation: logoBob 0.7s ease;
  box-shadow: 0 0 24px rgba(247,199,116,0.3);
}

/* ── Logo — mobile ── */
.mobile-logo {
  height: 50px;
  border-radius: 50%;
  background: #2b0a3d;
  padding: 3px;
}

/* ── Nav links ── */
.navbar-nav .nav-link {
  font-weight: 600;
  color: #f7c774;
  padding: 10px 15px;
  position: relative;
  white-space: nowrap;
  transition: color 0.3s ease !important;
}

/* Animated underline on hover/active */
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: #f7c774;
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.navbar-nav .nav-link:hover            { color: #f7c774 !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after    { transform: scaleX(1);      }
.navbar-nav .nav-link.active           { color: #f7c774;            }

/* Nav link icons */
.nav-link .nav-icon {
  font-size: 13px;
  margin-right: 5px;
  color: #f7c774;
  opacity: 0.85;
  transition: opacity .25s, transform .25s;
  vertical-align: middle;
}
.nav-link:hover .nav-icon,
.nav-link.active .nav-icon { opacity: 1; transform: scale(1.2); }

/* ── Collapse panel ── */
.navbar-collapse {
  padding: 0 10rem;
  border-radius: 10px;
  overflow: visible;
  position: relative;
}

/* ── Dropdown menu ── */
.dropdown-menu {
  animation: dropSlide 0.22s ease both;
  border-radius: 12px !important;
  border: 1px solid rgba(247,199,116,0.25) !important;
  background: #3d1456;
  box-shadow: 0 12px 35px rgba(0,0,0,0.35) !important;
  padding: 8px 0 !important;
  min-width: 210px;
  overflow: hidden;
  z-index: 1200;
}
.dropdown-menu::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f7c774, transparent);
  margin-bottom: 6px;
}

/* Dropdown items */
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px !important;
  font-size: 0.88rem;
  font-weight: 500;
  color: #f0e0ff;
  border-left: 3px solid transparent;
  position: relative;
  overflow: hidden;
  transition: background .22s ease, color .22s ease, padding-left .25s ease, gap .25s ease;
}
.dropdown-item:hover {
  padding-left: 22px !important;
  color: #f7c774 !important;
  background: rgba(247,199,116,0.1) !important;
  border-left-color: #f7c774;
  gap: 13px;
}

/* Dropdown icon circles */
.dropdown-item .dd-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(247,199,116,0.15);
  border: 1px solid rgba(247,199,116,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 11px;
  color: #f7c774;
  transition: background .25s, transform .25s;
}
.dropdown-item:hover .dd-icon {
  background: #f7c774;
  color: #2b0a3d;
  transform: scale(1.15) rotate(10deg);
}
.dropdown-item .dd-label { flex: 1; }

/* ── BOOK NOW button ── */
.btn-book-now {
  background: #f7c774;
  color: #2b0a3d !important;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  border: 2px solid #f7c774;
  border-radius: 6px;
  padding: 8px 20px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  z-index: 1;
  text-decoration: none;
  display: inline-block;
  animation: bookNowPulse 2.4s ease-in-out infinite;
  transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}
.btn-book-now::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.38) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s ease;
  z-index: 0;
}
.btn-book-now:hover::before { transform: translateX(100%); }
.btn-book-now:hover {
  background: #2b0a3d;
  color: #f7c774 !important;
  border-color: #f7c774;
  box-shadow: 0 6px 22px rgba(247,199,116,0.4);
  transform: translateY(-3px);
  letter-spacing: 1px;
  animation: none;
}
.btn-book-now:active { transform: translateY(-1px); }
.btn-book-now span   { position: relative; z-index: 1; }

/* ── Toggler gold icon ── */
.navbar-toggler { border-color: rgba(247,199,116,0.5); }
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28247%2C199%2C116%2C0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ── Navbar responsive breakpoints ── */

/* Large desktop */
@media (min-width: 1200px) {
  .custom-navbar        { padding: 6px 24px; }
  .navbar-nav .nav-link { font-size: 0.92rem; padding: 10px 12px; }
}

/* Small desktop / laptop */
@media (min-width: 992px) and (max-width: 1199px) {
  .custom-navbar        { padding: 5px 12px; }
  .navbar-nav .nav-link { font-size: 0.82rem; padding: 8px 8px; }
  .nav-link .nav-icon   { font-size: 11px; margin-right: 3px; }
  .center-logo          { height: 70px !important; }
  .btn-book-now         { padding: 7px 14px; font-size: 0.82rem; }
}

/* Tablet & mobile — collapsed menu */
@media (max-width: 991px) {
  .custom-navbar   { background: rgba(43,10,61,0.97); padding: 6px 14px; min-height: 62px; }
  .mobile-logo     { height: 62px !important; }
  .center-logo     { display: none; }

  .navbar-collapse {
    background: rgba(43,10,61,0.97);
    border: 1px solid rgba(247,199,116,0.2);
    border-radius: 10px;
    margin-top: 8px;
    padding: 8px 4px 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.4);
    max-height: 80vh;
    overflow-y: auto;
  }

  .navbar-nav .nav-link {
    font-size: 0.95rem;
    padding: 11px 16px !important;
    border-bottom: 1px solid rgba(247,199,116,0.08);
  }
  .navbar-nav .nav-link::after { left: 16px; right: 16px; }

  /* Static dropdowns inside collapsed menu */
  .dropdown-menu {
    position: static !important;
    float: none;
    border: none !important;
    border-radius: 8px !important;
    box-shadow: none !important;
    background: rgba(61,20,86,0.6) !important;
    margin: 4px 12px 4px 28px !important;
    padding: 4px 0 !important;
    animation: none;
  }
  .dropdown-menu::before { display: none; }
  .dropdown-item         { font-size: 0.85rem; padding: 8px 14px !important; }

  /* Full-width Book Now */
  .btn-book-now {
    width: calc(100% - 24px);
    margin: 10px 12px 2px;
    text-align: center;
    padding: 11px;
    display: block;
    font-size: 0.92rem;
  }
}

/* Small mobile */
@media (max-width: 575px) {
  .custom-navbar        { padding: 5px 10px; min-height: 58px; }
  .mobile-logo          { height: 56px !important; }
  .navbar-collapse      { margin-top: 6px; padding: 6px 2px 12px; }
  .navbar-nav .nav-link { font-size: 0.9rem; padding: 10px 14px !important; }
  .dropdown-item        { font-size: 0.82rem; }
  .btn-book-now         { font-size: 0.88rem; padding: 10px; }
}

/* Very small */
@media (max-width: 360px) {
  .mobile-logo          { height: 50px !important; }
  .navbar-nav .nav-link { font-size: 0.85rem; padding: 9px 12px !important; }
  .btn-book-now         { font-size: 0.82rem; padding: 9px; }
}


/* ============================================================
   6. HERO SECTION
   ============================================================ */
.hero {
  background: url("imgg/namann-hotel.jpg") center/cover no-repeat;
  color: #ffffff;
  display: flex;
  align-items: center;
  text-align: center;
  object-fit: cover;
}
.hero h1       { font-size: 45px; margin-bottom: 10px; }
.hero-title    { animation: heroGlow 3s ease-in-out infinite; }

/* Hero entry animation */
#home .container { animation: zoomIn .9s ease both; }

@media (max-width: 767px) {
  .hero h1 { font-size: 28px; }
}
@media (max-width: 575px) {
  .hero h1 { font-size: 22px; }
}


/* ============================================================
   7. GENERAL SECTIONS & CARDS
   ============================================================ */
section { padding: 50px 0; }

.section-title {
  text-align: center;
  margin-bottom: 30px;
  color: #f7c774;
}

/* Generic auto-fit grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

/* Base card style */
.card {
  border: 1px solid rgba(247,199,116,0.3);
  border-radius: 5px;
  overflow: hidden;
  background: #3d1456;
}
.card img       { width: 100%; height: 200px; object-fit: cover; }
.card-content   { padding: 15px; color: #f0e0ff; }


/* ============================================================
   8. FACILITY CARDS
   ============================================================ */
.facility-card {
  background: #3d1456;
  border: 1px solid rgba(247,199,116,.25);
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.facility-card:hover {
  border-color: #f7c774 !important;
  box-shadow: 0 8px 30px rgba(247,199,116,.25) !important;
  transform: translateY(-8px) scale(1.04) !important;
}
.facility-card img {
  transition: transform .4s ease;
  filter: drop-shadow(0 2px 6px rgba(247,199,116,.15));
}
.facility-card:hover img { transform: scale(1.12) rotate(-3deg); }
.facility-card:hover p   { color: #f7c774 !important; font-weight: 700; }


/* ============================================================
   9. ROOMS
   ============================================================ */
.room-list li {
  transition: color .2s, transform .2s;
  cursor: default;
}
.room-list li:hover { color: #f7c774 !important; transform: translateX(6px); }


/* ============================================================
   10. SNAPSHOT SECTION
   ============================================================ */
.snapshot-list li {
  position: relative;
  padding-left: 6px;
  transition: color .25s, padding-left .25s;
}
.snapshot-list li:hover  { color: #f7c774 !important; padding-left: 14px; }
.snapshot-list li::marker { color: #f7c774; }


/* ============================================================
   11. CAROUSEL (Bootstrap override)
   ============================================================ */
.carousel-inner          { transition: transform 0.8s ease-in-out; }
.carousel img            { height: 180px; object-fit: cover; cursor: pointer; }

/* Control arrow styling */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
  background-color: rgba(43,10,61,0.6);
  border-radius: 50%;
  padding: 10px;
}
.carousel-control-prev,
.carousel-control-next { top: 30%; width: 80px; }

/* Hero banner carousel */
#carouselExampleAutoplaying,
#carouselExampleAutoplaying img { height: 50vh; object-fit: cover; }

/* Carousel responsive */
@media (max-width: 991px) {
  .carousel-control-prev,
  .carousel-control-next        { width: 5%; }
  #carouselExampleAutoplaying,
  #carouselExampleAutoplaying img { height: 50vh; }
}
@media (max-width: 767px) {
  .carousel-control-prev,
  .carousel-control-next        { width: 8%; }
  #carouselExampleAutoplaying,
  #carouselExampleAutoplaying img { height: 35vh; }
}


/* ============================================================
   12. GALLERY SECTION
   ============================================================ */
.tg-gallery-section {
  padding: 50px 20px;
  background: #1a0626;
}
.tg-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 25px;
  color: #f7c774;
}

/* Filter buttons */
.tg-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}
.tg-filters button {
  background: #f7c774;
  border: none;
  color: #2b0a3d;
  padding: 8px 14px;
  font-size: 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.tg-filters button:active           { transform: scale(0.92); }
.tg-filters button.active,
.tg-filters button:hover {
  background: #2b0a3d;
  color: #f7c774;
  border: 1px solid rgba(247,199,116,0.5);
}

/* Gallery grid */
.tg-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}
.tg-item {
  position: relative;
  overflow: hidden;
  animation: fadeIn 0.6s ease;
}
.tg-item img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 6px;
  transition: transform 0.5s ease;
}
.tg-item:hover img { transform: scale(1.08); }

/* Overlay on hover */
.tg-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.tg-item:hover::after { opacity: 1; }

/* Filter show/hide states */
.tg-item.hide { opacity: 0; transform: scale(0.9); pointer-events: none; }
.tg-item.show { opacity: 1; transform: scale(1);   transition: all 0.45s ease; }

/* Gallery responsive */
@media (max-width: 991px) {
  .tg-gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .tg-gallery    { grid-template-columns: 1fr; }
  .tg-item img   { height: 220px; }
}


/* ============================================================
   13. INSTAGRAM / REEL FEED
   ============================================================ */
.tg-insta-section {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #2b0a3d, #1a0626);
  text-align: left;
}
.insta-icon { color: #f7c774; margin-left: 8px; }

/* Feed grid */
.tg-insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

/* Feed card */
.tg-insta-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  animation: slideUp 0.7s ease forwards;
  transition: border-color .35s ease, transform .35s ease, box-shadow .35s ease !important;
}
.tg-insta-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.tg-insta-card:hover {
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
  transform: translateY(-6px);
  border-color: #f7c774 !important;
  box-shadow: 0 12px 32px rgba(247,199,116,.22) !important;
}
.tg-insta-card:hover img { transform: scale(1.1); }

/* Dark overlay on hover */
.tg-insta-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  opacity: 0;
  transition: 0.4s;
}
.tg-insta-card:hover::after { opacity: 1; }

/* Play button overlay */
.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 50px;
  color: #f7c774;
  opacity: 0;
  transform: scale(0.8);
  transition: 0.4s;
  z-index: 2;
}
.video:hover .play-btn { opacity: 1; transform: scale(1); }

/* Insta feed responsive */
@media (max-width: 991px) {
  .tg-insta-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 576px) {
  .tg-insta-grid      { grid-template-columns: 1fr; }
  .tg-insta-card img  { height: 220px; }
}


/* ============================================================
   14. ABOUT PAGE
   ============================================================ */

/* Hero banner */
.about-hero {
  position: relative;
  padding: 95px 20px 72px;
  background-size: cover !important;
  background-position: center !important;
  overflow: hidden;
}
.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(43,10,61,.85) 0%, rgba(26,6,38,.78) 100%);
}
/* Gold bottom border */
.about-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f7c774, transparent);
}
.about-hero .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.about-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  animation: heroGlow 3s ease-in-out infinite;
  color: #fff;
}
.about-hero p { color: #f0e0ff; font-size: 1rem; line-height: 1.7; opacity: .92; }

/* History / intro section */
.about-history          { background: #2b0a3d; padding: 60px 0 40px; }
.about-history h3       { color: #f7c774; font-weight: 700; font-size: 1.5rem; margin-bottom: 12px; }
.about-history p        { color: #f0e0ff; font-size: 0.93rem; line-height: 1.8; margin-bottom: 14px; }
.about-history .logo-wrap img {
  border-radius: 12px;
  border: 2px solid rgba(247,199,116,.35);
  box-shadow: 0 0 30px rgba(247,199,116,.12);
  animation: floatBob 4s ease-in-out infinite;
  max-width: 260px;
  width: 100%;
}

/* Image carousel section */
.about-carousel-section         { background: #1a0626; padding: 56px 0; }
.about-carousel-section .section-head { text-align: center; margin-bottom: 32px; }
.about-carousel-section .card {
  background: #3d1456;
  border: 1px solid rgba(247,199,116,.25);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.about-carousel-section .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 36px rgba(247,199,116,.18);
  border-color: rgba(247,199,116,.55);
}
.about-carousel-section .card-img-top {
  height: 220px;
  object-fit: cover;
  transition: transform .4s ease;
}
.about-carousel-section .card:hover .card-img-top { transform: scale(1.05); }
.about-carousel-section .card-body {
  color: #f0e0ff;
  font-size: .9rem;
  font-weight: 500;
  padding: 14px 16px;
  background: linear-gradient(135deg, #3d1456, #2b0a3d);
}

/* Carousel prev/next buttons (about page) */
.carousel-btn-prev,
.carousel-btn-next {
  background: #f7c774;
  color: #2b0a3d;
  border: 2px solid #f7c774;
  border-radius: 50px;
  padding: 8px 22px;
  font-weight: 700;
  font-size: .88rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}
.carousel-btn-prev::before,
.carousel-btn-next::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.35) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .5s ease;
  z-index: 0;
}
.carousel-btn-prev:hover::before,
.carousel-btn-next:hover::before { transform: translateX(100%); }
.carousel-btn-prev:hover,
.carousel-btn-next:hover {
  background: #2b0a3d;
  color: #f7c774;
  border-color: #f7c774;
  box-shadow: 0 6px 20px rgba(247,199,116,.35);
  transform: translateY(-2px);
}
.carousel-btn-prev span,
.carousel-btn-next span { position: relative; z-index: 1; }

/* More info section */
.about-info-section {
  background: linear-gradient(135deg, #1a0626 0%, #2b0a3d 100%);
  padding: 52px 0;
  position: relative;
  overflow: hidden;
}
.about-info-section::before,
.about-info-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f7c774, transparent);
}
.about-info-section::before { top: 0;    }
.about-info-section::after  { bottom: 0; }
.about-info-section .info-text h4  { color: #f7c774; font-weight: 700; font-size: 1.4rem; margin-bottom: 12px; }
.about-info-section .info-text p   { color: #f0e0ff; font-size: .93rem; line-height: 1.8; }
.about-info-section .carousel-inner { border-radius: 12px; overflow: hidden; }
.about-info-section .carousel-inner img {
  height: 280px;
  object-fit: cover;
  border: 1px solid rgba(247,199,116,.25);
  border-radius: 12px;
}

/* About page responsive */
@media (min-width: 1400px) {
  .about-history,
  .about-carousel-section,
  .about-info-section { padding-left: 40px; padding-right: 40px; }
}
@media (max-width: 991px) {
  .about-hero                           { padding: 72px 20px 52px; }
  .about-history                        { padding: 44px 0 28px; }
  .about-history .logo-wrap             { margin-top: 28px; }
  .about-history .logo-wrap img         { max-width: 200px; }
  .about-carousel-section               { padding: 40px 0; }
  .about-carousel-section .card-img-top { height: 180px; }
  .about-info-section                   { padding: 38px 0; }
  .about-info-section .carousel-inner img { height: 220px; }
  .about-info-section .info-text        { margin-top: 24px; }
}
@media (max-width: 767px) {
  .about-hero                              { padding: 62px 16px 42px; }
  .about-hero h1                           { font-size: 1.75rem; }
  .about-hero p                            { font-size: .88rem; }
  .about-history h3                        { font-size: 1.25rem; }
  .about-history p                         { font-size: .88rem; }
  .about-carousel-section .card-img-top    { height: 160px; }
  .about-carousel-section .card-body       { font-size: .82rem; }
  .about-info-section .carousel-inner img  { height: 190px; }
  .about-info-section .info-text h4        { font-size: 1.2rem; }
  .about-info-section .info-text p         { font-size: .88rem; }
  .carousel-btn-prev,
  .carousel-btn-next                       { padding: 7px 16px; font-size: .82rem; }
}
@media (max-width: 575px) {
  .about-hero                              { padding: 52px 12px 36px; }
  .about-hero h1                           { font-size: 1.5rem; }
  .about-hero p                            { font-size: .84rem; line-height: 1.6; }
  .about-history                           { padding: 32px 0 20px; }
  .about-history h3                        { font-size: 1.15rem; }
  .about-history p                         { font-size: .84rem; }
  .about-carousel-section                  { padding: 28px 0; }
  .about-carousel-section .card-img-top    { height: 180px; }
  .about-info-section .carousel-inner img  { height: 180px; }
  .gold-divider                            { margin-bottom: 16px; }
}
@media (max-width: 360px) {
  .about-hero h1                           { font-size: 1.3rem; }
  .about-carousel-section .card-img-top    { height: 150px; }
}


/* ============================================================
   15. CONTACT PAGE
   ============================================================ */

/* Hero */
.contact-hero {
  position: relative;
  padding: 90px 20px 70px;
  background-size: cover !important;
  background-position: center !important;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark overlay — */
.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 5, 30, 0.35);
}

/* Gold bottom border */
.contact-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f7c774, transparent);
}

/* Center glass box — */
.contact-hero .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px !important;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 40px 50px;
  border-radius: 12px;
  background: rgba(43, 10, 61, 0.72);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  border: 1px solid rgba(247, 199, 116, 0.30);
  box-shadow:
    0 0 0 1px rgba(247,199,116,0.10),
    0 8px 40px rgba(0,0,0,0.45);
}

/* Heading — gold shimmer */
.contact-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
  display: inline-block;
  background:#f7c774 ;
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  letter-spacing: 0.5px;
}

/* Subtitle — italic white */
.contact-hero p {
  color: #ffffff;
  font-size: 1rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.7;
  opacity: 0.92;
  margin: 0;
  letter-spacing: 0.3px;
}

/* Shimmer animation */
@keyframes shimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* Mobile responsive */
@media (max-width: 767px) {
  .contact-hero {
    padding: 60px 16px 50px;
  }
  .contact-hero .hero-inner {
    padding: 28px 24px;
    width: 95%;
  }
}
/* Main content area */
.contact-main { background: #2b0a3d; padding: 50px 0 30px; }

/* Contact form wrapper */
.contact-form-wrapper {
  background: rgba(61,20,86,0.85);
  border: 1px solid rgba(247,199,116,0.25);
  border-radius: 14px;
  padding: 32px 28px;
  backdrop-filter: blur(6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.3);
  position: relative;
  overflow: hidden;
  width: 100%;
}
/* Gold top accent */
.contact-form-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f7c774, transparent);
}
.contact-form-wrapper h4 { color: #f7c774; font-weight: 700; font-size: 1.4rem; margin-bottom: 6px; }

/* Form fields */
.form-group                  { margin-bottom: 18px; }
.form-group label            { color: #f0e0ff; font-weight: 600; font-size: 0.88rem; margin-bottom: 6px; display: block; letter-spacing: .3px; }
.form-group label span       { color: #f7c774; }
.form-control                { background: rgba(255,255,255,0.05) !important; border: 1px solid rgba(247,199,116,0.25) !important; border-radius: 8px !important; color: #f0e0ff !important; padding: 10px 14px !important; font-size: 0.9rem; transition: border-color .3s, box-shadow .3s; }
.form-control::placeholder   { color: rgba(240,224,255,0.4) !important; }
.form-control:focus          { border-color: #f7c774 !important; box-shadow: 0 0 0 3px rgba(247,199,116,0.15) !important; background: rgba(255,255,255,0.08) !important; outline: none; }

/* Send button */
.btn-send {
  width: 100%;
  background: #f7c774;
  color: #2b0a3d;
  border: 2px solid #f7c774;
  border-radius: 8px;
  padding: 12px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: goldPulse 2.5s ease-in-out infinite;
  transition: all .35s cubic-bezier(.4,0,.2,1);
}
.btn-send::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.35) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .5s ease;
  z-index: 0;
}
.btn-send:hover::before { transform: translateX(100%); }
.btn-send:hover {
  background: #2b0a3d;
  color: #f7c774;
  border-color: #f7c774;
  box-shadow: 0 8px 25px rgba(247,199,116,.35);
  transform: translateY(-2px);
  animation: none;
}
.btn-send:active { transform: translateY(0); }

/* Info boxes */
.contact-info-box {
  background: rgba(61,20,86,0.7);
  border: 1px solid rgba(247,199,116,0.2);
  border-left: 4px solid #f7c774;
  border-radius: 10px;
  padding: 18px 20px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.contact-info-box::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(247,199,116,0.04), transparent);
  pointer-events: none;
}
.contact-info-box:hover {
  transform: translateX(6px);
  box-shadow: 0 8px 28px rgba(247,199,116,0.15);
  border-color: rgba(247,199,116,0.4);
}
.contact-info-box h5 {
  color: #f7c774;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-info-box h5 .info-icon {
  width: 28px; height: 28px;
  padding-left: 8px;
  background: rgba(247,199,116,0.15);
  border: 1px solid rgba(247,199,116,0.35);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  animation: iconBob 3s ease-in-out infinite;
  transition: background .25s, transform .25s;
}
.contact-info-box:hover h5 .info-icon {
  background: #f7c774;
  color: #2b0a3d;
  transform: scale(1.15);
  animation: none;
}
.contact-info-box p { color: #f0e0ff; font-size: 0.88rem; margin: 0; line-height: 1.6; }

/* QR section */
.qr-section { margin: 48px 0 20px; text-align: center; }
.qr-section h4 {
  color: #f7c774;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 6px;
  background: linear-gradient(90deg, #f7c774 0%, #fff5d6 40%, #f7c774 60%, #e0a84a 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  display: inline-block;
}
.qr-card {
  background: rgba(61,20,86,0.7);
  border: 1px solid rgba(247,199,116,0.2);
  border-radius: 12px;
  padding: 18px 14px;
  margin-bottom: 20px;
  cursor: default;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.qr-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(247,199,116,0.2);
  border-color: rgba(247,199,116,0.5);
}
.qr-card img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid rgba(247,199,116,0.2);
  transition: transform .4s ease;
}
.qr-card:hover img { transform: scale(1.04); }
.qr-card p         { margin-top: 12px; margin-bottom: 0; font-weight: 600; font-size: 0.82rem; color: #f7c774; }

/* Map */
.map-wrapper { margin: 0; position: relative; }
.map-wrapper::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, #f7c774, transparent);
  z-index: 1;
}
.map-wrapper iframe {
  width: 100%;
  height: 420px;
  border: 0;
  display: block;
  filter: saturate(0.7) hue-rotate(240deg) brightness(0.85);
  transition: filter .4s ease;
}
.map-wrapper:hover iframe { filter: saturate(1) hue-rotate(0deg) brightness(1); }

/* Contact page responsive */
@media (max-width: 991px) {
  .contact-main          { padding: 36px 0 20px; }
  .contact-form-wrapper  { padding: 24px 20px; margin-bottom: 28px; }
  .map-wrapper iframe    { height: 320px; }
}
@media (max-width: 767px) {
  .contact-hero          { padding: 70px 16px 50px; }
  .contact-form-wrapper  { padding: 20px 16px; }
  .contact-info-box      { padding: 14px 16px; }
  .map-wrapper iframe    { height: 260px; }
  .qr-section .col-md-2  { flex: 0 0 50%; max-width: 50%; }
}
@media (max-width: 575px) {
  .contact-hero h1       { font-size: 1.8rem; }
  .contact-hero p        { font-size: 0.9rem; }
  .qr-section .col-md-2  { flex: 0 0 100%; max-width: 100%; }
  .map-wrapper iframe    { height: 220px; }
}


/* ============================================================
   16. TERMS & CONDITIONS PAGE
   ============================================================ */
.terms-wrapper {
  max-width: 1100px;
  margin: 20px auto;
  padding: 20px;
}
.terms-box {
  background: #2b0a3d;
  border: 2px dotted rgba(247,199,116,0.5);
  border-radius: 8px;
  padding: 25px;
}
.pera-text { color: #f0e0ff; }

/* Terms responsive */
@media (max-width: 768px) {
  .terms-box { padding: 15px; }
  h1         { font-size: 22px; }
  h2         { font-size: 18px; }
  p, li      { font-size: 14px; }
}


/* ============================================================
   17. FOOTER
   ============================================================ */
.tg-footer {
  background:
    linear-gradient(rgba(43,10,61,0.97), rgba(26,6,38,0.99)),
    url("imgg/world-map-dots000ng") center/cover no-repeat;
  color: #f7c774;
  overflow-x: hidden;
}

/* Left contact panel */
.tg-contact {
  background: #3d1456;
  border-right: 1px solid rgba(247,199,116,0.2);
  padding: 45px 35px;
  border-radius: 0 110px 0 0;
  word-break: break-word;
}
.tg-contact h6 { font-weight: 700; margin-bottom: 15px; font-size: 0.9rem; letter-spacing: 1px; }
.tg-contact p  { font-size: 14px; line-height: 1.6; margin-bottom: 10px; }
.tg-contact i  { color: #f7c774; margin-right: 8px; }
.tg-contact ul li span { font-size: 0.88rem; line-height: 1.5; }

/* Logo & QR */
.tg-logo { width: 85px; max-width: 120px; height: auto; display: block; margin-bottom: 20px; }
.tg-qr   { width: 120px; max-width: 140px; height: auto; margin: 18px 0; }

/* Social icons */
.tg-social a {
  display: inline-flex;
  width: 34px; height: 34px;
  background: #000;
  color: #2b0a3d;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  margin-right: 6px;
  font-size: 22px;
  transition: 0.3s;
}
.tg-social a:hover { background: #3d1456; }

/* Links columns */
.tg-links { padding: 40px 50px; }
.tg-links h5 { font-size: 0.9rem; letter-spacing: 1px; font-weight: 700; margin-bottom: 14px; }
.tg-links a  { color: rgba(247,199,116,0.8); text-decoration: none; display: inline-block; padding: 4px 0; }
.tg-links a:hover { color: #f7c774; }
.tg-links h6 { font-weight: 700; margin-bottom: 15px; }
.tg-links ul { list-style: none; padding: 0; margin: 0; }
.tg-links ul li {
  font-size: 14px;
  margin-bottom: 7px;
  position: relative;
  padding-left: 15px;
}
.tg-links ul li::before { content: "•"; color: #f7c774; position: absolute; left: 0; }

/* Map column */
.tg-map         { padding: 0; }
.tg-map h6      { font-size: 0.9rem; letter-spacing: 1px; }
.tg-map iframe  { width: 100%; height: 230px; border: 0; border-radius: 10px; }
.tg-map .ratio  { border-radius: 10px; overflow: hidden; }

/* Bottom bar */
.tg-bottom {
  background: #1a0626;
  text-align: center;
  font-size: 0.8rem;
  padding: 14px 20px !important;
  line-height: 1.6;
  word-break: break-word;
}

/* Footer responsive */

/* Large desktop */
@media (min-width: 1200px) {
  .tg-footer .container-fluid { padding: 0 40px; }
  .tg-footer .row             { padding: 0 90px; }
  .tg-contact                 { border-radius: 0 80px 0 0; }
}

/* Desktop */
@media (min-width: 992px) and (max-width: 1199px) {
  .tg-contact { padding: 25px 18px; }
  .tg-links   { padding: 25px 18px; }
  .tg-map     { padding: 20px 15px; }
  .tg-logo    { max-width: 100px; }
}

/* Tablet landscape */
@media (max-width: 991px) {
  .tg-contact { border-radius: 0 !important; padding: 25px 20px; margin-bottom: 4px; }
  .tg-links   { padding: 20px; }
  .tg-map     { padding: 10px 20px 20px; }
  .tg-bottom  { padding: 12px 16px !important; }
  .tg-map iframe { min-height: 200px; }
  .tg-links .row { row-gap: 20px; }
  .tg-footer .row > [class*="col-"] { margin-bottom: 4px; }
}

/* Tablet portrait */
@media (max-width: 767px) {
  .tg-contact,
  .tg-links,
  .tg-map   { padding: 20px 16px; text-align: left; }
  .tg-contact { border-bottom: 1px solid rgba(247,199,116,0.15); }
  .tg-links   { border-bottom: 1px solid rgba(247,199,116,0.15); }
  .tg-logo    { max-width: 90px; }
  .tg-social  { justify-content: flex-start; font-size: 25px; }
  .tg-footer ul li { font-size: 16px; }
  .tg-map iframe  { min-height: 50px !important; padding-bottom: 20px !important; }
  .tg-bottom  { font-size: 0.75rem; padding: 12px !important; }
}

/* Mobile */
@media (max-width: 575px) {
  .tg-contact,
  .tg-links,
  .tg-map         { padding: 18px 14px; }
  .tg-contact ul li span { font-size: 0.82rem; }
  .tg-social a    { font-size: 26px; }
  .tg-links h5    { font-size: 0.85rem; }
  .tg-links ul li { font-size: 0.82rem; }
  .tg-map .ratio  { border-radius: 8px; }
  .tg-bottom      { font-size: 0.72rem; padding: 10px !important; }
}

/* Very small */
@media (max-width: 360px) {
  .tg-contact ul li {
    flex-direction: row;
    align-items: flex-start;
  }
  .tg-contact ul li i { margin-top: 3px; flex-shrink: 0; }
  .tg-bottom          { font-size: 0.68rem; }
}