:root {
    --primary-color: linear-gradient(to right, #aa771c, #fcf6ba);
    --primary-gradient: linear-gradient(to right, #aa771c, #fcf6ba);
    --secondary-color: #ffffff;
    --accent-color: #d5ba6f;
}

/* Landing Page Styles */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navbar .nav-link {
    color: var(--primary-color) !important;
}

.navbar .nav-link:hover {
    color: var(--secondary-color) !important;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
}

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

.hero-cta .btn-primary {
    background: var(--primary-gradient);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.section-title {
    color: var(--accent-color);
}

.section-subtitle {
    color: var(--accent-color);
}
    
.package-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-gradient);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 10px rgba(184, 134, 11, 0.2);
}
/* Package Card Buttons */
    .package-card .btn-detail {
            padding: 0.6rem 1.2rem;
            font-size: 0.9rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.4rem;
            transition: all 0.3s ease;
            border-radius: 8px;
            background: var(--primary-color);
            color: white;
            border: none;
            letter-spacing: 0.2px;
        }
.booking-card .btn-detail {
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}
 .package-card .price {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--secondary-color);
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
 .package-card .price {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--secondary-color);
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
.btn-detail {
    background: var(--primary-gradient);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.feature-card {
    border: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}

.feature-card .card-title {
    color: var(--primary-color);
}

.package-card {
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.package-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-5px);
}
.hero-title {
    color: var(--primary-color);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.btn-primary {
    background-color: var(--primary-gradient);
    color: #fff;
}

.btn-primary:hover {
    background-color: var(--accent-color);
    color: #fff;
}

.btn-outline-light {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.package-card .card-title {
    color: var(--primary-color);
}

.package-price {
    color: var(--secondary-color);
    font-weight: bold;
}

.testimonial-card {
    border: 1px solid var(--accent-color);
}

.testimonial-card .quote {
    color: var(--secondary-color);
}
 .help-section .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            position: relative;
        }
            .help-section .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--primary-gradient);
            border-radius: 2px;
        }
footer {
    background-color: var(--primary-gradient);
    color: #fff;
}

footer a {
    color: rgba(255,255,255,0.8);
}

footer a:hover {
    color: var(--accent-color);
}

.gradient-bg {
    background: var(--primary-gradient);
}

.gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Apply gradient to other elements if needed */
.btn-gold {
    background: var(--primary-gradient) !important;
    border: none;
    color: #fff;
    text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.btn-gold:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    color: #fff;
}
