/* ===== CSS Variables ===== */
:root {
    --primary-color: #1a1a1a;
    --primary-dark: #0d0d0d;
    --gold: #c9a227;
    --gold-light: #d4b13a;
    --gold-dark: #a8861e;
    --secondary-color: #c9a227;
    --accent-color: #2c2c2c;
    --text-dark: #333333;
    --text-light: #f5f5f5;
    --bg-light: #faf8f5;
    --bg-dark: #1a1a1a;
    --bg-darker: #0d0d0d;
    --border-color: #e0d5c7;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    color-scheme: light only;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Georgia', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h2 {
    color: var(--gold-dark);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: #b8921f;
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--primary-dark);
}

/* ===== Header & Navigation ===== */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(13, 13, 13, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(201, 162, 39, 0.15);
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(13, 13, 13, 0.97);
    border-bottom-color: rgba(201, 162, 39, 0.3);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

nav.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 55px;
    width: auto;
}

.logo h1 {
    font-size: 1.75rem;
    color: var(--gold);
    font-weight: 700;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.2;
}

.logo h1 span {
    display: block;
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(201, 162, 39, 0.7);
}

.logo h1 small {
    display: block;
    font-size: 0.65rem;
    font-weight: 300;
    letter-spacing: 1px;
    color: rgba(201, 162, 39, 0.5);
    font-style: italic;
}

.nav-links {
    display: flex;
    gap: 6px;
}

.nav-links a {
    color: rgba(245, 245, 245, 0.85);
    font-weight: 500;
    font-size: 1rem;
    letter-spacing: 0.3px;
    padding: 8px 16px;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a:hover {
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.08);
}

.nav-links a.active {
    color: var(--gold);
    background: rgba(201, 162, 39, 0.1);
}

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

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-light);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(13, 13, 13, 0.7) 0%,
        rgba(26, 26, 26, 0.6) 100%
    );
}

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

.hero h1 {
    font-size: 3.5rem;
    color: var(--text-light);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero h1 span {
    color: var(--secondary-color);
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== Page Header ===== */
.page-header {
    position: relative;
    height: 55vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    margin-top: 0;
}

.page-header .hero-bg::after {
    background: linear-gradient(
        to bottom,
        rgba(13, 13, 13, 0.8) 0%,
        rgba(26, 26, 26, 0.7) 100%
    );
}

.page-header h1 {
    color: var(--text-light);
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* ===== Sections ===== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.section-header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 20px auto 0;
}

/* ===== Services Grid ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card-content {
    padding: 25px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    margin-bottom: 20px;
}

/* ===== Features Grid ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--gold);
    font-size: 1.5rem;
}

.feature-item h4 {
    margin-bottom: 10px;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
}

/* ===== About Section ===== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 20px;
}

.about-text p {
    color: #555;
    margin-bottom: 15px;
}

.about-image img {
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

/* ===== Camp Section ===== */
.camp-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.camp-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.camp-feature-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===== Pricing Tables ===== */
.pricing-section {
    background-color: white;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.package-card {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.package-card.featured {
    border: 3px solid var(--secondary-color);
}

.package-header {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 25px;
    text-align: center;
}

.package-header h3 {
    color: var(--text-light);
    margin-bottom: 5px;
}

.package-header .duration {
    opacity: 0.9;
}

.package-price {
    padding: 20px 25px;
    text-align: center;
    background: var(--bg-darker);
    color: var(--text-light);
}

.package-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.package-price .per-person {
    font-size: 0.9rem;
    opacity: 0.9;
}

.package-details {
    padding: 25px;
}

.package-details h4 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.package-details ul {
    margin-bottom: 20px;
}

.package-details li {
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.package-details li:last-child {
    border-bottom: none;
}

.package-details li::before {
    content: '\2713';
    color: var(--gold);
    font-weight: bold;
}

/* Trophy Fees Table */
.trophy-table-container {
    overflow-x: auto;
}

.trophy-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
}

.trophy-table th,
.trophy-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.trophy-table th {
    background-color: var(--bg-dark);
    color: var(--gold);
    font-weight: 600;
}

.trophy-table tr:hover {
    background-color: rgba(44, 85, 48, 0.05);
}

.trophy-table tr:last-child td {
    border-bottom: none;
}

.trophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 30px;
}

.trophy-item {
    display: flex;
    justify-content: space-between;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.trophy-item .animal {
    font-weight: 500;
}

.trophy-item .price {
    color: var(--gold-dark);
    font-weight: 600;
}

/* ===== Gallery ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: #e0d5c7;
}

.gallery-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        #e0d5c7 0%,
        #f0ebe3 40%,
        #f0ebe3 60%,
        #e0d5c7 100%
    );
    background-size: 200% 100%;
    animation: gallery-shimmer 1.5s ease-in-out infinite;
    z-index: 1;
    transition: opacity 0.4s ease;
}

.gallery-item.loaded::before {
    opacity: 0;
    pointer-events: none;
}

@keyframes gallery-shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition), opacity 0.4s ease;
    opacity: 0;
}

.gallery-item.loaded img {
    opacity: 1;
}

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(13, 13, 13, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay span {
    color: var(--text-light);
    font-size: 2rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

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

.lightbox img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
}

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

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 20px;
    transition: var(--transition);
}

.lightbox-nav:hover {
    color: var(--secondary-color);
}

.lightbox-prev {
    left: 20px;
}

.lightbox-next {
    right: 20px;
}

/* ===== Contact Section ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h3 {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--bg-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-text h4 {
    margin-bottom: 5px;
}

.contact-text p, .contact-text a {
    color: #666;
}

.contact-text a:hover {
    color: var(--primary-color);
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--gold);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

/* ===== Footer ===== */
footer {
    background-color: var(--bg-dark);
    color: var(--text-light);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-col p {
    opacity: 0.8;
    margin-bottom: 10px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    opacity: 0.8;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

/* ===== CTA Section ===== */
.cta-section {
    background: linear-gradient(rgba(13, 13, 13, 0.9), rgba(13, 13, 13, 0.9)),
                url('../images/hero.jpeg') center/cover no-repeat;
    color: var(--text-light);
    text-align: center;
    padding: 80px 0;
}

.cta-section h2 {
    color: var(--text-light);
    margin-bottom: 20px;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.95;
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .hero h1 { font-size: 2.75rem; }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 84px;
        left: 0;
        right: 0;
        background: rgba(13, 13, 13, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        flex-direction: column;
        padding: 20px;
        gap: 5px;
        transform: translateY(-150%);
        opacity: 0;
        transition: var(--transition);
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero h1 { font-size: 2.25rem; }
    .hero p { font-size: 1rem; }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    section {
        padding: 60px 0;
    }

    .page-header {
        min-height: 300px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }

    .container {
        padding: 0 20px;
    }

    .hero h1 { font-size: 1.75rem; }

    .btn {
        padding: 10px 24px;
        font-size: 0.85rem;
    }

    .contact-form {
        padding: 25px;
    }
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

/* ===== Animations ===== */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

/* What to Bring Section */
.prepare-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.prepare-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.prepare-card h4 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.prepare-card ul {
    list-style: disc;
    padding-left: 20px;
}

.prepare-card li {
    margin-bottom: 8px;
    color: #555;
}

/* Daily Rates */
.daily-rates {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.rate-card {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 25px;
    border-radius: 8px;
    text-align: center;
}

.rate-card h4 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.rate-card .price {
    font-size: 1.75rem;
    font-weight: 700;
}

.rate-card .note {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 5px;
}

/* ========================================
   AWESOME ANIMATIONS & EFFECTS
   ======================================== */

/* ===== Page Load Animation ===== */
body {
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.loaded {
    opacity: 1;
}

/* ===== Reveal Animations ===== */
.reveal-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-element.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Hero Animations ===== */
.hero-content.hero-animate h1 {
    animation: heroTitle 1s ease-out 0.3s both;
}

.hero-content.hero-animate p {
    animation: heroFade 1s ease-out 0.6s both;
}

.hero-content.hero-animate .hero-buttons {
    animation: heroFade 1s ease-out 0.9s both;
}

@keyframes heroTitle {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.95);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

@keyframes heroFade {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== Hero Background - Fixed (no parallax) ===== */
.hero-bg {
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .hero-bg {
        background-attachment: scroll;
    }
}

/* ===== Golden Shimmer Text Effect ===== */
.hero h1 span {
    background: linear-gradient(
        120deg,
        var(--gold) 0%,
        #e8d48a 25%,
        var(--gold) 50%,
        #e8d48a 75%,
        var(--gold) 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* ===== Enhanced Button Effects ===== */
.btn {
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    box-shadow: 0 4px 15px rgba(201, 162, 39, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.5);
    transform: translateY(-3px);
}

.btn-outline:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

/* ===== Card Hover Effects ===== */
.service-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.service-card img {
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover img {
    transform: scale(1.1);
}

/* ===== Feature Items Animation ===== */
.feature-item {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-item:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--gold);
    color: var(--bg-dark);
}

/* ===== Package Card Effects ===== */
.package-card {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.package-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.package-card.featured {
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(201, 162, 39, 0);
    }
}

/* ===== Gallery Effects ===== */
.gallery-item {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover {
    z-index: 10;
}

.gallery-overlay {
    background: linear-gradient(
        135deg,
        rgba(13, 13, 13, 0.9) 0%,
        rgba(201, 162, 39, 0.3) 100%
    );
}

.gallery-overlay span {
    font-size: 3rem;
    color: var(--gold);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay span {
    transform: scale(1.2) rotate(90deg);
}

/* ===== Trophy Item Hover ===== */
.trophy-item {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 3px solid transparent;
}

.trophy-item:hover {
    transform: translateX(10px);
    border-left-color: var(--gold);
    background: white;
}

/* ===== Rate Card Hover ===== */
.rate-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.rate-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--gold);
    box-shadow: 0 20px 40px rgba(201, 162, 39, 0.2);
}

/* ===== Prepare Card Hover ===== */
.prepare-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 3px solid transparent;
}

.prepare-card:hover {
    transform: translateY(-8px);
    border-bottom-color: var(--gold);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ===== Contact Icon Hover ===== */
.contact-icon {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-item:hover .contact-icon {
    transform: scale(1.1) rotate(-10deg);
    background: var(--gold);
    color: var(--bg-dark);
}

/* ===== Form Animations ===== */
.form-group {
    position: relative;
    transition: all 0.3s ease;
}

.form-group.focused label {
    color: var(--gold);
}

.form-group input,
.form-group textarea,
.form-group select {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201, 162, 39, 0.15);
}

/* ===== Section Header Animation ===== */
.section-header::after {
    transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 0;
}

.section-header.revealed::after {
    width: 60px;
}

/* ===== Navigation Link Effects ===== */
.nav-links a::before {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    width: auto;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover::before {
    transform: scaleX(1);
}

.nav-links a.active::before {
    transform: scaleX(1);
}

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

/* ===== Logo Hover Effect ===== */
.logo {
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo:hover h1 {
    text-shadow: 0 0 20px rgba(201, 162, 39, 0.5);
}

/* ===== Footer Animation ===== */
.footer-col {
    transition: all 0.4s ease;
}

.footer-col:hover {
    transform: translateY(-5px);
}

.social-links a {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.social-links a:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 20px rgba(201, 162, 39, 0.3);
}

/* ===== CTA Section Enhancement ===== */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(201, 162, 39, 0.1) 0%,
        transparent 50%
    );
    animation: ctaPulse 10s linear infinite;
}

@keyframes ctaPulse {
    0% { transform: translate(0, 0); }
    50% { transform: translate(25%, 25%); }
    100% { transform: translate(0, 0); }
}

/* ===== Camp Feature Hover ===== */
.camp-feature {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.camp-feature:hover {
    transform: translateX(10px);
    background: var(--gold);
}

.camp-feature:hover .camp-feature-icon {
    background: var(--bg-dark);
}

/* ===== About Image Hover ===== */
.about-image {
    overflow: hidden;
    border-radius: 8px;
}

.about-image img {
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ===== Lightbox Animations ===== */
.lightbox img {
    animation: lightboxZoom 0.4s ease-out;
}

@keyframes lightboxZoom {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== Floating Animation for Hero Elements ===== */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-content .btn {
    animation: float 4s ease-in-out infinite;
}

.hero-content .btn:nth-child(2) {
    animation-delay: 0.5s;
}

/* ===== Page Header Text Glow ===== */
.page-header h1 {
    animation: textGlow 3s ease-in-out infinite alternate;
}

@keyframes textGlow {
    0% { text-shadow: 0 0 10px rgba(201, 162, 39, 0.3); }
    100% { text-shadow: 0 0 30px rgba(201, 162, 39, 0.6), 0 0 60px rgba(201, 162, 39, 0.3); }
}

/* ===== Smooth Scroll Behavior ===== */
html {
    scroll-behavior: smooth;
}

/* ===== Selection Color ===== */
::selection {
    background: var(--gold);
    color: var(--bg-dark);
}

/* ===== Loading Spinner for Images ===== */
img {
    opacity: 1;
    transition: opacity 0.5s ease;
}

img.loading {
    opacity: 0;
}

/* ===== Disable Animations for Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
