.retreat-package-hero {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: rgba(0, 0, 0, 0.6);
    background-blend-mode: overlay;
    border-radius: 16px;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin: -60px 0 50px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.retreat-hero-location {
    font-size: 1.3rem;
    margin: 0 0 25px 0;
    opacity: 0.95;
    font-weight: 500;
    line-height: 1.6;
}

.retreat-hero-price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #f6e05e;
    margin: 0 0 35px 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.retreat-hero-button {
    display: inline-block;
    background: #f6e05e;
    color: #2d3748;
    padding: 18px 50px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    box-shadow: 0 6px 20px rgba(246, 224, 94, 0.4);
}

.retreat-hero-button:hover {
    background: #ecc94b;
    transform: scale(1.08) translateY(-2px);
    color: #1a202c;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(246, 224, 94, 0.6);
}

.retreat-hero-offer {
    font-size: 1.2rem;
    color: #f6e05e;
    font-weight: 600;
    margin: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Featured Packages Section (Homepage) */
.featured-packages-section {
    padding: 40px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.packages-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #2d3748;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    padding: 0 20px;
}

/* Package Card (Homepage) */
.package-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.package-image {
    position: relative;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.package-no-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}



.package-subtitle {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: white;
}

.package-duration {
    font-size: 1rem;
    margin: 0 0 12px 0;
    opacity: 0.9;
}

.package-date {
    font-size: 0.95rem;
    margin: 0 0 20px 0;
    opacity: 0.85;
}

.package-button {
    display: inline-block;
    background: #f6e05e;
    color: #2d3748;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.package-button:hover {
    background: #ecc94b;
    transform: scale(1.05);
    color: #1a202c;
    text-decoration: none;
}

/* Retreats Page Packages Section */
.retreats-packages-section {
    padding: 60px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.retreats-packages-section .packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

/* Retreat Package Card */
.retreat-package-card {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
}

.retreat-package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.retreat-package-image {
    position: relative;
    height: 450px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.retreat-package-no-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/*.retreat-package-overlay {*/
/*    position: absolute;*/
/*    bottom: 0;*/
/*    left: 0;*/
/*    right: 0;*/
/*    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 100%);*/
/*    padding: 35px 25px;*/
/*    color: white;*/
/*    text-align: center;*/
/*}*/

.retreat-package-subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 10px 0;
    color: white;
    line-height: 1.2;
}

.retreat-package-duration {
    font-size: 1.1rem;
    margin: 0 0 12px 0;
    opacity: 0.95;
    font-weight: 500;
}

.retreat-package-date {
    font-size: 1rem;
    margin: 0 0 25px 0;
    opacity: 0.9;
}

.retreat-package-button {
    display: inline-block;
    background: #f6e05e;
    color: #2d3748;
    padding: 14px 40px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.retreat-package-button:hover {
    background: #ecc94b;
    transform: scale(1.08);
    color: #1a202c;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(246, 224, 94, 0.4);
}

/* Package Detail Page */
.featured-package-detail {
    margin: 40px 0;
}

.package-hero {
    position: relative;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
    margin-bottom: 30px;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: overlay;
}

.package-location {
    font-size: 1.2rem;
    margin-bottom: 20px;
    opacity: 0.95;
}

.package-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f6e05e;
    margin-bottom: 30px;
}

.package-actions {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-apply,
.btn-admission {
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-apply {
    background: #f6e05e;
    color: #2d3748;
}

.btn-apply:hover {
    background: #ecc94b;
    transform: scale(1.05);
    color: #1a202c;
}

.btn-admission {
    background: transparent;
    color: white;
    border: 2px solid #f6e05e;
}

.btn-admission:hover {
    background: #f6e05e;
    color: #2d3748;
}

.package-offer {
    font-size: 1.1rem;
    color: #f6e05e;
    font-weight: 600;
}

.package-description {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px 20px;
    line-height: 1.8;
    font-size: 1.1rem;
    color: #4a5568;
}

/* Responsive Design */
@media (max-width: 768px) {
    .retreat-package-hero {
        min-height: 400px;
        padding: 50px 25px;
        margin: -40px 0 30px 0;
    }
    
    .retreat-hero-location {
        font-size: 1.1rem;
    }
    
    .retreat-hero-price {
        font-size: 2.2rem;
    }
    
    .retreat-hero-button {
        padding: 15px 40px;
        font-size: 1rem;
    }
    
    .packages-title {
        font-size: 2rem;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }
    
    .retreats-packages-section .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-image,
    .retreat-package-image {
        height: 350px;
    }
    
    .package-subtitle,
    .retreat-package-subtitle {
        font-size: 1.5rem;
    }
    
    .package-hero {
        min-height: 400px;
        padding: 40px 20px;
    }
    
    .package-price {
        font-size: 2rem;
    }
    
    .package-actions {
        flex-direction: column;
    }
    
    .btn-apply,
    .btn-admission {
        width: 100%;
        max-width: 300px;
    }
}