﻿@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #2d6a4f;
    --primary-dark: #1b4332;
    --primary-light: #40916c;
    --gold: #f9db00;
    --gold-light: #f9db00;
    --dark: #1a1a1a;
    --text: #444;
    --light-bg: #f9f7f2;
    --white: #fff;
    --shadow: 0 8px 32px rgba(0,0,0,0.12);
    --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: #fff; }
h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; color: var(--dark); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }

/* ====== NAVBAR ====== */
.navbar-custom {
  position: fixed; top: 0; width: 100%; z-index: 1050;
  padding: 18px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar-custom.scrolled {
  background: var(--primary-dark) !important;
  padding: 10px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}
.navbar-brand img { height: 52px; }
.navbar-brand span {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700;
  color: #fff; letter-spacing: 0.5px;
}
.navbar-custom .nav-link {
  color: rgba(255,255,255,1) !important;
  font-size: 0.9rem; font-weight: 500;
  padding: 6px 14px !important;
  position: relative; transition: var(--transition);
  letter-spacing: 0.3px;
}
    .navbar-custom .nav-link::after {
        content: '';
        position: absolute;
        top: 15px;
        right: 0;
        width: 0;
        height: 0px;
        background: none;
        transition: var(--transition);
    }
.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active::after { width: calc(100% - 100px); }
    .navbar-custom .nav-link:hover {
        color: var(--gold) !important;
    }
.navbar-custom .btn-book {
    background: #f9db00;
    color: #204f29 !important;
    border-radius: 30px;
    padding: 8px 22px !important;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 14px rgba(200,160,74,0.4);
    transition: var(--transition);
}
    .navbar-custom .btn-book:hover {
        background: #409c53;
        color: var(--gold) !important;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(200,160,74,0.5);
    }
.navbar-custom .btn-book::after { display: none; }
.navbar-toggler { border: 2px solid rgba(255,255,255,0.7) !important; }
.navbar-toggler-icon { filter: invert(1); }
.navbar .dropdown-menu {
    border: none;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    opacity: 0;
    transform: translateY(10px);
    visibility: hidden;
    transition: all 0.3s ease;
    display: block; 
    margin-top: 10px;
    background: #f9db00;
}
.navbar .dropdown-item {
    font-size: 0.88rem;
    padding: 9px 16px;
    color: #204f29;
    border-radius: 8px;
    transition: all 0.25s ease;
}

    .navbar .dropdown-item:hover {
        background: rgba(0,0,0,0.05);
        color:#000;
    }

.navbar .dropdown-menu.show {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}
.navbar .dropdown-toggle::after {
    transition: transform 0.3s ease;
}

.navbar .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}
/* Better dropdown arrow styling */
.navbar .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: middle;
    transition: transform 0.3s ease;
    width:0 !important;
}

/* Rotate when open */
.navbar .dropdown.show .dropdown-toggle::after {
    transform: rotate(180deg);
}
/* MOBILE DROPDOWN FIX */
@media (max-width: 991px) {
    .navbar-nav{
        background:rgba(0,0,0,0.8);
        padding:15px;
        border-radius:20px;
    }
    .navbar .dropdown-menu {
        position: static;
        display: block;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        margin-top: 6px;
        padding: 0 8px;
        border: none;
        border-radius: 12px;
        background: #f9db00;
        box-shadow: 0 8px 24px rgba(0,0,0,0.15);
        transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.3s ease, padding 0.3s ease;
    }

        .navbar .dropdown-menu.show {
            max-height: 300px;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
            padding: 8px;
        }

    .navbar .dropdown-item {
        color: #204f29;
        font-size: 0.88rem;
        padding: 10px 16px;
        border-radius: 8px;
        transition: all 0.25s ease;
    }

        .navbar .dropdown-item:hover,
        .navbar .dropdown-item:focus {
            background: rgba(0,0,0,0.08);
            color: #000;
            padding-left: 22px;
        }

    .navbar .dropdown.show .dropdown-toggle::after,
    .navbar .dropdown-toggle.show::after {
        transform: rotate(180deg);
    }
    .navbar .dropdown-toggle {
        display: flex;
        align-items: center;
        justify-content: space-between; /* pushes arrow to right */
        width: 100%;
    }

        .navbar .dropdown-toggle::after {
            margin-left: auto;
            transition: transform 0.3s ease;
        }

    .navbar .dropdown.show .dropdown-toggle::after {
        transform: rotate(180deg);
    }
}
/* ====== HERO SLIDER ====== */
/* =========================
   HERO CAROUSEL BASE
========================= */
.hero-slider {
    height: 100vh;
    min-height: 600px;
}

    .hero-slider .carousel-item {
        height: 100vh;
        min-height: 600px;
        transition: opacity 1s ease-in-out;
    }

/* Fade effect instead of slide */
.carousel-fade .carousel-item {
    opacity: 0;
    transition-property: opacity;
}

    .carousel-fade .carousel-item.active {
        opacity: 1;
        z-index: 1;
    }

.carousel-fade .carousel-item-next,
.carousel-fade .carousel-item-prev {
    opacity: 0;
}

/* =========================
   HERO SLIDE (IMAGE)
========================= */
.hero-slide {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    transform: scale(1);
    transition: transform 5.5s ease-in-out;
    will-change: transform;
}

    /* Overlay */
    .hero-slide::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient( 135deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.55) 60% );
    }

/* Zoom animation when active */
.hero-slider .carousel-item.active .hero-slide {
    transform: scale(1.12) translateY(-8px);
}

/* =========================
   HERO CONTENT (TEXT)
========================= */
.hero-content {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 20px);
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 820px;
    opacity: 0;
    transition: all 1s ease;
}

/* Animate text when slide active */
.hero-slider .carousel-item.active .hero-content {
    transform: translate(-50%, -50%);
    opacity: 1;
}

/* Badge */
.hero-badge {
    display: inline-block;
    background: var(--gold);
    color: #000;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 30px;
    margin-bottom: 18px;
    animation: fadeUp 1s ease forwards;
}

/* Heading */
.hero-content h1 {
    font-size: clamp(20px, 2vw, 30px);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 18px;
    text-shadow: 0 2px 24px rgba(0,0,0,0.3);
    animation: fadeUp 1.2s ease forwards;
}

/* Paragraph */
.hero-content p {
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    color: rgba(255,255,255,0.88);
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    animation: fadeUp 1.4s ease forwards;
}

/* Buttons */
.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeUp 1.6s ease forwards;
}

/* =========================
   ANIMATIONS
========================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(25px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================
   CONTROLS (OPTIONAL POLISH)
========================= */
.carousel-control-prev,
.carousel-control-next {
    width: 60px;
    opacity: 0.7;
    transition: 0.3s;
}

    .carousel-control-prev:hover,
    .carousel-control-next:hover {
        opacity: 1;
    }

    .carousel-control-prev i,
    .carousel-control-next i {
        font-size: 28px;
        color: #fff;
    }

/* =========================
   INDICATORS
========================= */
.carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.5);
    border: none;
    transition: 0.3s;
}

.carousel-indicators .active {
    background-color: var(--gold);
    transform: scale(1.2);
}

/* =========================
   MOBILE OPTIMIZATION
========================= */
@media (max-width: 768px) {
    .hero-slider,
    .hero-slider .carousel-item {
        height: 80vh;
    }

    .hero-content {
        transform: translate(-50%, -40%);
    }

        .hero-content h1 {
            font-size: 24px;
        }
}
.btn-primary-custom {
  background: var(--primary); color: #fff;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  border: 2px solid var(--primary);
  transition: var(--transition);
  display: inline-block;
}
.btn-primary-custom:hover {
  background: var(--primary-dark); color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(45,106,79,0.4);
}
.btn-outline-custom {
  background: transparent; color: #fff;
  padding: 14px 32px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.7);
  transition: var(--transition);
  display: inline-block;
}
.btn-outline-custom:hover {
  background: #fff; color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.2);
}
.carousel-indicators [data-bs-target] {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.5);
  border: none;
}
.carousel-indicators .active { background: var(--gold); width: 28px; border-radius: 5px; }
.carousel-control-prev, .carousel-control-next {
    width: 48px;
    height: 58px;
    background: #1b4332;
    border-radius: 0;
    opacity:1;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
    transition: var(--transition);
}
    .carousel-control-prev, .carousel-control-next i {
        margin-top: 3px;
    }
    .carousel-control-prev {
        left: 0px;
        font-size: 1.2rem;
        color: #fff;
    } .carousel-control-next {
    right: 0px;
    font-size: 1.2rem;
    color: #fff;
}
    .carousel-control-prev:hover, .carousel-control-next:hover {
        background: #f9db00;
        color: #1b4332;
        width:55px;
    }

/* ====== QUICK FEATURES BAR ====== */
.features-bar {
  background: var(--primary-dark);
  padding: 0; margin-top: -1px;
}
.feature-item {
  padding: 22px 24px; text-align: center;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--primary);transform:translateY(-10px);transition:.4s ease-in-out; }
.feature-item i { font-size: 1.8rem; color: var(--gold); margin-bottom: 8px; display: block; }
.feature-item p { color: #fff; font-size: 0.82rem; margin: 0; font-weight: 500; }

/* ====== SECTION COMMON ====== */
.section-tag {
  display: inline-block; font-size: 0.78rem; font-weight: 600;
  color: var(--primary); letter-spacing: 2.5px; text-transform: uppercase;
  padding: 5px 16px; background: #f9db00;
  border-radius: 30px; margin-bottom: 12px;
}
.section-title { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 700; line-height: 1.2; }
.section-title span { color: var(--primary); }
.section-title.light { color: #fff; }
.section-title.light span { color: var(--gold); }
.section-divider {
  width: 60px; height: 3px; background: var(--gold);
  margin: 14px auto 0; border-radius: 2px;
}
.section-divider.left { margin-left: 0; }

/* ====== ABOUT SECTION ====== */
.about-section { padding: 90px 0; background: var(--light-bg); }
.about-img-wrap { position: relative; }
.about-img-wrap img {
  border-radius: 12px; width: 100%;
  height: 480px; object-fit: cover;
  box-shadow: var(--shadow);
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--gold); color: #000;
  width: 120px; height: 120px; border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(45,106,79,0.4);
  text-align: center;
}
.about-badge span { font-size: 1.6rem; font-weight: 700; line-height: 1; }
.about-badge small { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 1px; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 24px; }
.about-feature-item {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border-radius: 10px; padding: 12px 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: var(--transition);
}
.about-feature-item:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
    .about-feature-item i {
        font-size: 1.4rem;
        color: var(--gold);
        flex-shrink: 0;
        background: var(--primary);
        padding: 3px 10px;
        border-radius: 50px;
    }
.about-feature-item p { font-size: 0.85rem; font-weight: 500; margin: 0; color: var(--dark); }

/* ====== HOTELS SECTION ====== */
.hotels-section { padding: 90px 0; }
.hotel-card {
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.09);
  transition: var(--transition); background: #fff;
  border: none;
}
.hotel-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,0,0,0.16); }
.hotel-card .img-wrap { overflow: hidden; height: 300px; }
.hotel-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.hotel-card:hover .img-wrap img { transform: scale(1.07); }
.hotel-card-body { padding: 24px; }
    .hotel-card-body h4 {
        font-size: 1.3rem;
        margin-bottom: 8px;
        font-weight: bold;
        color: #1b4332;
        margin-bottom:15px;
    }
.hotel-card-body p { font-size: 0.88rem; color: #666; line-height: 1.7; margin-bottom: 16px;text-align:justify }
.hotel-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 8px; }
    .hotel-stars span {
        background: var(--gold);
        color: #000;
        padding: 5px 15px;
        border-radius: 50px;
        font-size: 14px;
        position: absolute;
        margin-top: -40px;
    }
.hotel-amenities { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.amenity-tag {
  font-size: 0.75rem; background: rgba(45,106,79,0.08);
  color: var(--primary); padding: 4px 10px; border-radius: 20px;
  font-weight: 500;
}
.btn-gold {
    background: var(--gold);
    color: #1b4332;
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.88rem;
    border: none;
    display: inline-block;
    transition: var(--transition);
}
    .btn-gold:hover {
        background: #1b4332;
        color: var(--gold);
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(200,160,74,0.4);
    }
.btn-outline-primary-custom {
  background: transparent; color: var(--primary);
  padding: 10px 24px; border-radius: 30px;
  font-weight: 600; font-size: 0.88rem;
  border: 2px solid var(--primary);
  display: inline-block;
  transition: var(--transition);
}
.btn-outline-primary-custom:hover {
  background: var(--primary); color: #fff;
  transform: translateY(-2px);
}

/* ====== ABOUT MANALI ====== */
.manali-section { padding: 90px 0; background: var(--primary-dark); position: relative; overflow: hidden; }
.manali-section::before {
  content: ''; position: absolute;
  top: -100px; right: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,160,74,0.15) 0%, transparent 70%);
  border-radius: 50%;
}
.manali-section::after {
  content: ''; position: absolute;
  bottom: -80px; left: -80px; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(64,145,108,0.2) 0%, transparent 70%);
  border-radius: 50%;
}
.manali-img { border-radius: 14px; overflow: hidden;border-radius: 20px 20px 30% 20px; box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.manali-img img { width: 100%; height: 520px; object-fit: cover; }
.manali-text { color: rgba(255,255,255,0.85); font-size: 0.95rem; line-height: 1.8; }
.manali-highlight {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: 16px; padding: 16px;
  background: rgba(255,255,255,0.06);
  border-radius: 10px; border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.manali-highlight:hover { background: rgba(255,255,255,0.1); }
.manali-highlight i { font-size: 1.5rem; color: var(--gold); flex-shrink: 0; }
.manali-highlight div h6 { color: #fff; font-size: 0.95rem; margin-bottom: 3px; font-family: 'Poppins', sans-serif; }
.manali-highlight div p { color: rgba(255,255,255,0.7); font-size: 0.82rem; margin: 0; }

/* ====== PACKAGES ====== */
.packages-section { padding: 90px 0; background: var(--light-bg); }
.package-card {
  background: #fff; border-radius: 14px; overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08); transition: var(--transition);
  border: none;
  height:530px;
}
.package-card:hover { transform: translateY(-8px); box-shadow: 0 16px 40px rgba(0,0,0,0.14); }
.package-card .img-wrap { position: relative; overflow: hidden; height: 220px; }
.package-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.package-card:hover .img-wrap img { transform: scale(1.08); }
.package-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--primary); color: #fff;
  font-size: 0.72rem; font-weight: 600;
  padding: 5px 12px; border-radius: 20px;
  letter-spacing: 0.5px;
}
.package-price {
  position: absolute; top: 14px; right: 14px;
  background: var(--gold); color: #1b4332;
  font-size: 0.82rem; font-weight: 700;
  padding: 5px 12px; border-radius: 20px;
}
.package-body { padding: 22px; }
.package-body h5 { font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #1b4332;
    font-weight: bold; }
.package-meta { display: flex; gap: 14px; margin-bottom: 14px; }
.package-meta span { font-size: 0.78rem;
    color: #333;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: bold; }
.package-meta i { color: #000; }

/* ====== EXPERIENCE SECTION ====== */
.experience-section { padding: 90px 0; }
.experience-img { border-radius: 15px; overflow: hidden; box-shadow: var(--shadow); }
.experience-img img { width: 100%; height: 600px; object-fit: cover; }
.exp-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid #eee;
}
.exp-item:last-child { border-bottom: none; }
.exp-icon {
  width: 52px; height: 52px; flex-shrink: 0;
  background: rgba(45,106,79,0.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; color: var(--primary);
  transition: var(--transition);
}
.exp-item:hover .exp-icon { background: var(--primary); color: #fff; }
.exp-item h6 { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 0.95rem; margin-bottom: 4px; }
.exp-item p { font-size: 0.83rem; color: #777; margin: 0; line-height: 1.6; }

/* ====== COUNTER ====== */
.counter-section {
    padding: 70px 0;
    background: linear-gradient(rgba(27, 67, 50, 0.85), rgba(27, 67, 50, 0.85)), url('../images/bg-img.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment:fixed;
}
.counter-item { text-align: center; padding: 20px; }
.counter-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; font-weight: 700; color: #fff; display: block; line-height: 1;
}
.counter-suffix { color: var(--gold); font-size: 2rem; }
.counter-label { color: rgba(255,255,255,0.75); font-size: 0.85rem; margin-top: 15px; text-transform: uppercase; letter-spacing: 1px; }
.counter-divider { width: 1px; background: rgba(255,255,255,0.2); margin: 0 auto; }

/* ====== TESTIMONIALS ====== */
.testimonials-section { padding: 90px 0; background: var(--light-bg); }
.testimonial-card {
  background: #fff; border-radius: 14px; padding: 32px 28px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  transition: var(--transition); position: relative;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: 0 14px 36px rgba(0,0,0,0.12); }
.testimonial-card::before {
  content: '"'; font-size: 6rem; font-family: Georgia, serif;
  color: var(--primary); opacity: 0.1;
  position: absolute; top: 10px; left: 20px; line-height: 1;
}
.testimonial-text { font-size: 0.9rem; line-height: 1.8; color: #666; margin-bottom: 20px; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author img { width: 50px; height: 50px; border-radius: 50%; object-fit: cover; border: 2px solid var(--primary); }
.testimonial-author h6 { font-family: 'Poppins', sans-serif; font-size: 0.92rem; font-weight: 600; margin: 0; }
.testimonial-author span { font-size: 0.75rem; color: #999; }
.testimonial-stars { color: var(--gold); font-size: 0.8rem; margin-bottom: 10px; }

/* ====== CAMP SECTION ====== */
.camp-section { padding: 90px 0; }
.camp-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.camp-img-wrap {
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  position: relative; height: 240px;
}
.camp-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.camp-img-wrap:hover img { transform: scale(1.08); }
.camp-img-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff; font-size: 0.85rem; font-weight: 600;
}

/* ====== CONTACT FORM ====== */
.contact-section { padding: 90px 0; background: var(--primary-dark); position: relative; }
.contact-form-wrap {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 40px 36px;
}
.contact-form-wrap label { color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 500; margin-bottom: 6px; }
.contact-form-wrap .form-control {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; border-radius: 10px; padding: 12px 16px; font-size: 0.9rem;
}
.contact-form-wrap .form-control::placeholder { color: rgba(255,255,255,0.4); }
.contact-form-wrap .form-control:focus { background: rgba(255,255,255,0.12); border-color: var(--gold); box-shadow: none; color: #fff; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 28px; }
.contact-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: rgba(200,160,74,0.2); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; color: var(--gold);
}
.contact-info-item h6 { color: #fff; font-family: 'Poppins', sans-serif; font-size: 0.9rem; margin-bottom: 3px; }
.contact-info-item p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin: 0; }

/* ====== FOOTER ====== */
.footer-main {
    background: #1b4332;
    padding: 60px 0 30px;
}
.footer-logo span { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: #fff; }
.footer-desc { color: rgba(255,255,255,0.55); font-size: 0.85rem; line-height: 1.8; margin: 14px 0 20px; }
.footer-social { display: flex; gap: 10px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); font-size: 0.9rem;
  transition: var(--transition); text-decoration: none;
}
.social-btn:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }
.footer-heading { color: #fff; font-size: 1rem; font-weight: 600; font-family: 'Poppins', sans-serif; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55); font-size: 0.85rem;
  transition: var(--transition); display: flex; align-items: center; gap: 6px;
}
.footer-links a i { font-size: 0.65rem; color: var(--gold); }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
    background: #f9db00;
    padding: 16px 0;
}
.footer-bottom p { color: rgba(0,0,0,0.9); font-size: 0.8rem; margin: 0; }
.footer-bottom a { color: var(--dark); }

/* ====== WHATSAPP FLOAT ====== */
.whatsapp-float {
  position: fixed; bottom: 95px; right: 28px; z-index: 9999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
  animation: whatsapp-pulse 2.5s infinite;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.12); color: #fff; }
@keyframes whatsapp-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ====== PAGE HERO ====== */
.page-hero {
  height: 360px; display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center; position: relative;
  margin-top: 70px;
}
.page-hero::before { content: ''; position: absolute; inset: 0; background: rgba(27,67,50,0.72); }
.page-hero-content { position: relative; z-index: 1; text-align: center; }
.page-hero-content h1 { color: #fff; font-size: clamp(1.8rem, 5vw, 3rem); margin-bottom: 12px; }
.breadcrumb-custom a { color: var(--gold); text-decoration: none; }
.breadcrumb-custom span { color: rgba(255,255,255,0.7); font-size: 0.9rem; }
.breadcrumb-custom i { color: rgba(255,255,255,0.5); margin: 0 8px; }

/* ====== HOTEL DETAIL ====== */
.hotel-gallery { display: grid; grid-template-columns: 2fr 1fr; gap: 12px; border-radius: 14px; overflow: hidden; }
.hotel-gallery .main-img { height: 420px; overflow: hidden; }
.hotel-gallery .main-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.hotel-gallery .main-img:hover img { transform: scale(1.04); }
.hotel-gallery .side-imgs { display: flex; flex-direction: column; gap: 12px; }
.hotel-gallery .side-img { height: 204px; overflow: hidden; }
.hotel-gallery .side-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.hotel-gallery .side-img:hover img { transform: scale(1.05); }

.price-table { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
.price-table thead th { background: var(--primary); color: #fff; border: none; padding: 12px 16px; font-size: 0.85rem; }
.price-table tbody td { padding: 11px 16px; font-size: 0.85rem; border-color: #f0f0f0; }
.price-table tbody tr:hover td { background: rgba(45,106,79,0.04); }

.amenity-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; }
.amenity-item {
  display: flex; align-items: center; gap: 10px;
  background: #f9f9f9; border-radius: 10px; padding: 12px 14px;
  font-size: 0.85rem; color: var(--dark); font-weight: 500;
  transition: var(--transition);
}
.amenity-item i { color: var(--primary); font-size: 1.1rem; }
.amenity-item:hover { background: rgba(45,106,79,0.08); transform: translateY(-2px); }

.enquiry-form-card {
  background: var(--light-bg); border-radius: 14px; padding: 28px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06); position: sticky; top: 90px;
}
.enquiry-form-card .form-control {
  border-radius: 8px; border: 1px solid #ddd; padding: 11px 14px; font-size: 0.88rem;
}
.enquiry-form-card .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(45,106,79,0.1); }

/* ====== PACKAGE DETAIL ====== */
.itinerary-day {
  border-left: 3px solid var(--primary); padding-left: 24px;
  position: relative; margin-bottom: 24px;
}
.itinerary-day::before {
  content: ''; position: absolute; left: -9px; top: 4px;
  width: 16px; height: 16px; background: var(--primary);
  border: 3px solid #fff; border-radius: 50%;
  box-shadow: 0 0 0 3px var(--primary);
}
.itinerary-day h6 { font-size: 0.9rem; font-weight: 600; color: var(--primary); margin-bottom: 6px; font-family: 'Poppins', sans-serif; }
.itinerary-day p { font-size: 0.87rem; color: #666; line-height: 1.7; margin: 0; }

/* ====== MAP SECTION ====== */
.map-wrap { border-radius: 14px; overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { display: block; }

/* ====== ANIMATIONS ====== */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* ====== SCROLLBAR ====== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

/* ====== RESPONSIVE ====== */
@media (max-width: 991px) {
  .about-features { grid-template-columns: 1fr; }
  .camp-gallery { grid-template-columns: 1fr 1fr; }
  .hotel-gallery { grid-template-columns: 1fr; }
  .hotel-gallery .side-imgs { flex-direction: row; }
  .hotel-gallery .side-img { height: 160px; flex: 1; }
  .hero-content h1 { font-size: 2.2rem; }
}
@media (max-width: 767px) {
  .about-badge { width: 90px; height: 90px; bottom: -15px; right: -10px; }
  .about-badge span { font-size: 1.2rem; }
  .about-img-wrap img { height: 300px; }
  .camp-gallery { grid-template-columns: 1fr; }
  .features-bar .col-md-3 { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .feature-item { border-right: none; }
  .enquiry-form-card { position: static; }
  .hotel-gallery .side-imgs { flex-direction: column; }
  .hotel-gallery .side-img { height: 180px; }
  .contact-form-wrap { padding: 24px 20px; }
}
@media (max-width: 576px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary-custom, .btn-outline-custom { width: 100%; max-width: 260px; text-align: center; }
  .page-hero { height: 260px; }
}

/* ====== LOADING SCREEN ====== */
.page-loader {
  position: fixed; inset: 0; background: var(--primary-dark);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.page-loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-spinner {
  width: 56px; height: 56px; border: 3px solid rgba(255,255,255,0.2);
  border-top-color: var(--gold); border-radius: 50%;
  animation: spin 0.9s linear infinite; margin: 0 auto 16px;
}
.loader-inner p { color: rgba(255,255,255,0.8); font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; }
@keyframes spin { to { transform: rotate(360deg); } }
/* ====== PAGE HERO ====== */
.page-hero {
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-top: 0px;
}

    .page-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: rgba(27,67,50,0.72);
    }

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

    .page-hero-content h1 {
        color: #fff;
        font-size: clamp(1.8rem, 5vw, 3rem);
        margin-bottom: 12px;
    }

.breadcrumb-custom a {
    color: var(--gold);
    text-decoration: none;
}

.breadcrumb-custom span {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.breadcrumb-custom i {
    color: rgba(255,255,255,0.5);
    margin: 0 8px;
}

/* ====== HOTEL DETAIL ====== */
.hotel-gallery {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 12px;
    border-radius: 14px;
    overflow: hidden;
}

    .hotel-gallery .main-img {
        height: 420px;
        overflow: hidden;
    }

        .hotel-gallery .main-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .hotel-gallery .main-img:hover img {
            transform: scale(1.04);
        }

    .hotel-gallery .side-imgs {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .hotel-gallery .side-img {
        height: 204px;
        overflow: hidden;
    }

        .hotel-gallery .side-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .hotel-gallery .side-img:hover img {
            transform: scale(1.05);
        }

.price-table {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

    .price-table thead th {
        background: var(--primary);
        color: #fff;
        border: none;
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .price-table tbody td {
        padding: 11px 16px;
        font-size: 0.85rem;
        border-color: #f0f0f0;
    }

    .price-table tbody tr:hover td {
        background: rgba(45,106,79,0.04);
    }

.amenity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 12px;
}

.amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f9f9f9;
    border-radius: 10px;
    padding: 12px 14px;
    font-size: 0.85rem;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
}

    .amenity-item i {
        color: var(--primary);
        font-size: 1.1rem;
    }

    .amenity-item:hover {
        background: rgba(45,106,79,0.08);
        transform: translateY(-2px);
    }

.enquiry-form-card {
    background: var(--light-bg);
    border-radius: 14px;
    padding: 28px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
    position: sticky;
    top: 90px;
}

    .enquiry-form-card .form-control {
        border-radius: 8px;
        border: 1px solid #ddd;
        padding: 11px 14px;
        font-size: 0.88rem;
    }

        .enquiry-form-card .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(45,106,79,0.1);
        }

/* ====== PACKAGE DETAIL ====== */
.itinerary-day {
    border-left: 3px solid var(--primary);
    padding-left: 24px;
    position: relative;
    margin-bottom: 24px;
}

    .itinerary-day::before {
        content: '';
        position: absolute;
        left: -9px;
        top: 4px;
        width: 16px;
        height: 16px;
        background: var(--primary);
        border: 3px solid #fff;
        border-radius: 50%;
        box-shadow: 0 0 0 3px var(--primary);
    }

    .itinerary-day h6 {
        font-size: 0.9rem;
        font-weight: 600;
        color: var(--primary);
        margin-bottom: 6px;
        font-family: 'Poppins', sans-serif;
    }

    .itinerary-day p {
        font-size: 0.87rem;
        color: #666;
        line-height: 1.7;
        margin: 0;
    }

/* ====== MAP SECTION ====== */
.map-wrap {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

    .map-wrap iframe {
        display: block;
    }

/* ====== ANIMATIONS ====== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

.fade-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .fade-left.visible {
        opacity: 1;
        transform: translateX(0);
    }

.fade-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .fade-right.visible {
        opacity: 1;
        transform: translateX(0);
    }

.delay-1 {
    transition-delay: 0.1s !important;
}

.delay-2 {
    transition-delay: 0.2s !important;
}

.delay-3 {
    transition-delay: 0.3s !important;
}

.delay-4 {
    transition-delay: 0.4s !important;
}

/* ====== SCROLLBAR ====== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: var(--primary-dark);
    }

/* ====== RESPONSIVE ====== */
@media (max-width: 991px) {
    .about-features {
        grid-template-columns: 1fr;
    }

    .camp-gallery {
        grid-template-columns: 1fr 1fr;
    }

    .hotel-gallery {
        grid-template-columns: 1fr;
    }

        .hotel-gallery .side-imgs {
            flex-direction: row;
        }

        .hotel-gallery .side-img {
            height: 160px;
            flex: 1;
        }

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

@media (max-width: 767px) {
    .about-badge {
        width: 90px;
        height: 90px;
        bottom: -15px;
        right: -10px;
    }

        .about-badge span {
            font-size: 1.2rem;
        }

    .about-img-wrap img {
        height: 300px;
    }

    .camp-gallery {
        grid-template-columns: 1fr;
    }

    .features-bar .col-md-3 {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .feature-item {
        border-right: none;
    }

    .enquiry-form-card {
        position: static;
    }

    .hotel-gallery .side-imgs {
        flex-direction: column;
    }

    .hotel-gallery .side-img {
        height: 180px;
    }

    .contact-form-wrap {
        padding: 24px 20px;
    }
}

@media (max-width: 576px) {
    .hero-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary-custom, .btn-outline-custom {
        width: 100%;
        max-width: 260px;
        text-align: center;
    }

    .page-hero {
        height: 260px;
    }
}

/* ====== LIGHTBOX ====== */
.lightbox-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

    .lightbox-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    animation: lightboxZoom 0.3s ease;
}

.lightbox-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

    .lightbox-close:hover {
        color: var(--gold);
    }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: #fff;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

    .lightbox-nav:hover {
        background: rgba(255,255,255,0.4);
    }

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
}

@keyframes lightboxZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* ====== GALLERY GRID ====== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 14px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    transition: var(--transition);
    height: 240px;
}

    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(45,106,79,0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}

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

.gallery-overlay i {
    font-size: 2rem;
    color: #fff;
}

/* ====== ROOM CARD ====== */
.room-type-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-left: 4px solid var(--gold);
    transition: var(--transition);
}

    .room-type-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    }

    .room-type-card h5 {
        font-size: 1.1rem;
        margin-bottom: 10px;
        color: var(--primary);
    }

.room-features {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

    .room-features li {
        font-size: 0.85rem;
        color: #666;
        padding: 4px 0;
    }

        .room-features li::before {
            content: '✓ ';
            color: var(--gold);
            font-weight: bold;
            margin-right: 6px;
        }

/* ====== TARIFF TABLE ====== */
.tariff-table-wrap {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.tariff-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

    .tariff-table thead th {
        background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
        color: #fff;
        padding: 14px;
        text-align: left;
        font-weight: 600;
        font-size: 0.9rem;
    }

    .tariff-table tbody td {
        padding: 12px 14px;
        border-bottom: 1px solid #eee;
        font-size: 0.88rem;
    }

    .tariff-table tbody tr:hover {
        background: rgba(45,106,79,0.03);
    }

.tariff-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1rem;
}

.tariff-note {
    font-size: 0.75rem;
    color: #999;
    font-style: italic;
    padding-top: 8px;
}

/* ====== MAP SECTION ====== */
.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

    .map-container iframe {
        width: 100%;
        height: 420px;
        border: none;
    }

/* ====== LOCATION INFO ====== */
.location-card {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    color: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 20px rgba(45,106,79,0.3);
}

    .location-card h4 {
        font-size: 1.3rem;
        margin-bottom: 14px;
        color: #fff;
    }

.location-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

    .location-info i {
        font-size: 1.2rem;
        color: var(--gold);
        flex-shrink: 0;
    }

    .location-info p {
        margin: 0;
        font-size: 0.9rem;
        line-height: 1.6;
    }

/* ====== LOADING SCREEN ====== */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--primary-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

    .page-loader.hidden {
        opacity: 0;
        visibility: hidden;
    }

.loader-inner {
    text-align: center;
}

.loader-spinner {
    width: 56px;
    height: 56px;
    border: 3px solid rgba(255,255,255,0.2);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
    margin: 0 auto 16px;
}

.loader-inner p {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    background: #eab633;
    color: #000;
    border: none;
    border-radius: 50%;
    padding: 10px 15px;
    font-size: 20px;
    cursor: pointer;
    display: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

    .scroll-top:hover {
        background: #f9db00;
        transform: translateY(-3px);
    }

    .scroll-top.show {
        display: block;
    }
