/*
 *  CORPORATE-GIFTING.CSS
 *  Styles for the Corporate Gifting page
*/

/* =============================================
   1. PHOTO GALLERY SECTION
   ============================================= */
.photo-gallery-section {
    background-color: white;
}

.gallery-item {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
}

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

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

.gallery-item-main {
    min-height: 400px;
}

.gallery-item-main img {
    min-height: 400px;
}

/* Side gallery items */
.col-lg-3 .gallery-item {
    min-height: 190px;
}

.col-lg-3 .gallery-item img {
    min-height: 190px;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(15, 45, 38, 0.9), transparent);
    color: var(--color-cream);
    font-weight: 500;
    font-size: 0.9rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile adjustments for gallery */
@media (max-width: 991.98px) {
    .gallery-item-main {
        min-height: 300px;
    }
    
    .gallery-item-main img {
        min-height: 300px;
    }
    
    .col-lg-3 .gallery-item {
        min-height: 180px;
    }
    
    .col-lg-3 .gallery-item img {
        min-height: 180px;
    }
}

@media (max-width: 767.98px) {
    .gallery-item-main {
        min-height: 250px;
    }
    
    .col-lg-3 .gallery-item {
        min-height: 150px;
    }
}

/* =============================================
   2. INTRODUCTION SECTION
   ============================================= */
.badge-feature {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-forest);
    color: var(--color-cream);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
}

/* =============================================
   3. WHY CHOOSE US / FEATURE CARDS
   ============================================= */
.feature-card {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    height: 100%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.12);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-gold);
    color: var(--color-forest);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    color: var(--color-cream);
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: rgba(247, 243, 234, 0.75);
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.6;
}

/* =============================================
   4. GIFT PACKAGES SECTION
   ============================================= */
.package-card {
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 1rem;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.package-card.package-featured {
    border: 2px solid var(--color-gold);
    box-shadow: 0 10px 30px rgba(199, 165, 90, 0.15);
}

.package-badge {
    background-color: var(--color-forest);
    color: var(--color-cream);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.package-badge-featured {
    background-color: var(--color-gold);
    color: var(--color-forest);
}

.package-header {
    padding: 1.5rem 1.5rem 0;
}

.package-header h4 {
    color: var(--color-dark-green);
    margin-bottom: 0.5rem;
}

.package-ideal {
    color: var(--color-charcoal-75);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.package-body {
    padding: 1.5rem;
    flex-grow: 1;
}

.package-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.package-includes li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 0.9rem;
    color: var(--color-charcoal);
}

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

.package-includes i {
    color: var(--color-garden);
    margin-top: 0.2rem;
}

.package-moq {
    background-color: var(--color-cream);
    padding: 0.75rem;
    border-radius: 0.5rem;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-forest);
}

.package-footer {
    padding: 0 1.5rem 1.5rem;
}

/* Custom Package CTA */
.custom-package-cta {
    background-color: white;
    border: 2px dashed var(--color-gold);
    border-radius: 1rem;
    padding: 2rem;
}

.custom-package-cta h4 {
    color: var(--color-dark-green);
}

.custom-package-cta p {
    color: var(--color-charcoal-75);
    font-size: 0.95rem;
}

/* =============================================
   5. OCCASIONS SECTION
   ============================================= */
.occasion-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--color-cream);
    border-radius: 1rem;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.occasion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.occasion-icon {
    width: 70px;
    height: 70px;
    background-color: var(--color-forest);
    color: var(--color-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1rem;
}

.occasion-card h5 {
    color: var(--color-dark-green);
    margin-bottom: 0.5rem;
}

.occasion-card p {
    color: var(--color-charcoal-75);
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* =============================================
   6. FORM SECTION ENHANCEMENTS
   ============================================= */
#enquiry-form-section .content-block {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

#enquiry-form .form-label {
    font-weight: 500;
    color: var(--color-forest);
    font-size: 0.9rem;
}

/* =============================================
   7. RESPONSIVE ADJUSTMENTS
   ============================================= */
@media (max-width: 991.98px) {
    .feature-card {
        padding: 1.25rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .package-header,
    .package-body,
    .package-footer {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    
    .custom-package-cta {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    .badge-feature {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .occasion-card {
        padding: 1.5rem 1rem;
    }
    
    .occasion-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}