﻿/* ===================================
   PiyumLanka Gift Packages CSS
   Attractive design for mothers & gift givers
   =================================== */

:root {
    /* Primary Gift Colors */
    --gift-primary: #E6D5E8;
    --gift-primary-dark: #D4A5D8;
    --gift-accent: #F7D5E0;
    --gift-accent-dark: #F4C2C2;
    /* Soft Pastels */
    --soft-lavender: #E6D5E8;
    --powder-pink: #F7D5E0;
    --mint-cream: #E8F5E9;
    --peach-blossom: #FFDAB9;
    --baby-blue: #E3F2FD;
    /* Cultural Colors */
    --saffron-gold: #FFB347;
    --lotus-pink: #F4C2C2;
    --peacock-teal: #A5D6D6;
    /* Neutrals */
    --gift-white: #FFFFFF;
    --gift-cream: #FFF9F5;
    --gift-gray: #F5F5F5;
    --gift-text: #4A4A4A;
    --gift-text-light: #7A7A7A;
}

/* ===================================
   Hero Section
   =================================== */
.gifts-hero {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--soft-lavender) 0%, var(--powder-pink) 50%, var(--peach-blossom) 100%);
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.gifts-hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50px;
    color: var(--gift-primary-dark);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

    .hero-badge i {
        color: var(--saffron-gold);
    }

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--gift-text);
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, #D4A5D8 0%, #F4C2C2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gift-text-light);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    font-weight: 600;
    color: var(--gift-text);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

    .hero-feature i {
        color: var(--saffron-gold);
        font-size: 1.2rem;
    }

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-gifts-primary,
.btn-gifts-secondary {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.btn-gifts-primary {
    background: linear-gradient(135deg, #D4A5D8 0%, #F4C2C2 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 165, 216, 0.4);
}

    .btn-gifts-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(212, 165, 216, 0.5);
        color: white;
    }

.btn-gifts-secondary {
    background: white;
    color: var(--gift-text);
    border: 2px solid var(--gift-primary-dark);
}

    .btn-gifts-secondary:hover {
        background: var(--gift-primary);
        color: var(--gift-text);
    }

/* Hero Visual */
.gifts-hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ===================================
   Why Gift Section
   =================================== */
.gifts-why {
    padding: 80px 0;
    background: var(--gift-cream);
}

.section-header {
    margin-bottom: 48px;
}

.section-gift-image {
    margin-bottom: 24px;
}

.gift-box-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    animation: gentleFloat 4s ease-in-out infinite;
}

@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gift-text);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--gift-text-light);
    max-width: 700px;
    margin: 0 auto;
}

.why-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .why-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

.why-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--soft-lavender) 0%, var(--powder-pink) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

    .why-icon i {
        font-size: 1.8rem;
        color: white;
    }

.why-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gift-text);
    margin-bottom: 16px;
}

.why-card p {
    color: var(--gift-text-light);
    line-height: 1.7;
    margin: 0;
}

/* ===================================
   Gift Packages Section
   =================================== */
.gifts-packages {
    padding: 80px 0;
    background: white;
}

.gift-package-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    height: 100%;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

    .gift-package-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }

.package-premium {
    border-color: var(--powder-pink);
}

    .package-premium:hover {
        border-color: var(--gift-accent-dark);
        background: linear-gradient(to bottom, white 0%, #FFF5F8 100%);
    }

.package-plus {
    border-color: var(--soft-lavender);
}

    .package-plus:hover {
        border-color: var(--gift-primary-dark);
        background: linear-gradient(to bottom, white 0%, #F9F5FB 100%);
    }

.package-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, var(--saffron-gold) 0%, #FF9A3D 100%);
    box-shadow: 0 4px 12px rgba(255, 179, 71, 0.4);
}

    .package-badge.recommended {
        background: linear-gradient(135deg, #D4A5D8 0%, #F4C2C2 100%);
    }

.package-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 2px dashed #E0E0E0;
}

.package-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--soft-lavender) 0%, var(--powder-pink) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .package-icon i {
        font-size: 2rem;
        color: white;
    }

.package-header h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gift-text);
    margin-bottom: 16px;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-bottom: 8px;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gift-text-light);
    margin-right: 4px;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--gift-text);
}

.package-subtitle {
    color: var(--gift-text-light);
    font-size: 0.95rem;
}

.package-includes,
.package-features {
    margin-bottom: 24px;
}

    .package-includes h4,
    .package-features h4 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--gift-text);
        margin-bottom: 16px;
    }

    .package-includes ul,
    .package-features ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .package-includes ul li,
        .package-features ul li {
            padding: 10px 0;
            color: var(--gift-text-light);
            display: flex;
            align-items: center;
            gap: 12px;
        }

            .package-includes ul li i {
                color: var(--saffron-gold);
                font-size: 1.1rem;
            }

            .package-features ul li i {
                color: var(--gift-primary-dark);
                font-size: 1.1rem;
            }

.btn-package-select {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-premium {
    background: linear-gradient(135deg, var(--powder-pink) 0%, var(--gift-accent-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(247, 213, 224, 0.4);
}

    .btn-premium:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(247, 213, 224, 0.6);
    }

.btn-plus {
    background: linear-gradient(135deg, var(--soft-lavender) 0%, var(--gift-primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(230, 213, 232, 0.4);
}

    .btn-plus:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(230, 213, 232, 0.6);
    }

.package-note {
    margin-top: 16px;
    padding: 12px;
    background: var(--mint-cream);
    border-radius: 8px;
    text-align: center;
    color: var(--gift-text);
    font-weight: 600;
}

    .package-note i {
        color: #66BB6A;
    }

/* Group Gifting Banner */
.group-gifting-banner {
    margin-top: 48px;
    padding: 40px;
    background: linear-gradient(135deg, var(--peacock-teal) 0%, var(--baby-blue) 100%);
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(165, 214, 214, 0.3);
}

    .group-gifting-banner h3 {
        font-size: 1.8rem;
        font-weight: 700;
        color: white;
        margin-bottom: 12px;
    }

    .group-gifting-banner p {
        color: rgba(255, 255, 255, 0.95);
        margin: 0;
        line-height: 1.6;
    }

.btn-group-gift {
    padding: 12px 28px;
    background: white;
    color: var(--gift-text);
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

    .btn-group-gift:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        color: var(--gift-text);
    }

/* ===================================
   How It Works Section
   =================================== */
.gifts-how-it-works {
    padding: 80px 0;
    background: var(--gift-gray);
}

.step-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

    .step-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

.step-number {
    position: absolute;
    top: -16px;
    right: 20px;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--saffron-gold) 0%, #FF9A3D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(255, 179, 71, 0.4);
}

.step-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--soft-lavender) 0%, var(--powder-pink) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .step-icon i {
        font-size: 1.8rem;
        color: white;
    }

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gift-text);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--gift-text-light);
    line-height: 1.6;
    margin: 0;
}

/* ===================================
   Testimonials Section
   =================================== */
.gifts-testimonials {
    padding: 80px 0;
    background: white;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

    .testimonial-card:hover {
        border-color: var(--powder-pink);
        transform: translateY(-8px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

.testimonial-image-wrapper {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-image {
    transform: scale(1.05);
}

.testimonial-stars {
    margin-bottom: 16px;
}

    .testimonial-stars i {
        color: var(--saffron-gold);
        margin-right: 4px;
    }

.testimonial-text {
    color: var(--gift-text-light);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid #F0F0F0;
}

.author-info {
    width: 100%;
}

    .author-info h4 {
        font-size: 1rem;
        font-weight: 700;
        color: var(--gift-text);
        margin: 0 0 4px 0;
    }

    .author-info p {
        font-size: 0.9rem;
        color: var(--gift-text-light);
        margin: 0;
    }

/* ===================================
   FAQ Section
   =================================== */
.gifts-faq {
    padding: 80px 0;
    background: var(--gift-cream);
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    background: white;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gift-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

    .faq-question:hover {
        background: var(--gift-gray);
    }

    .faq-question i {
        color: var(--gift-primary-dark);
        transition: transform 0.3s ease;
    }

    .faq-question:not(.collapsed) i {
        transform: rotate(180deg);
    }

.faq-answer {
    padding: 0 28px 24px;
    color: var(--gift-text-light);
    line-height: 1.7;
}

/* ===================================
   CTA Section
   =================================== */
.gifts-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--soft-lavender) 0%, var(--powder-pink) 50%, var(--peach-blossom) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--gift-text);
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--gift-text-light);
    max-width: 700px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.btn-cta-primary,
.btn-cta-secondary {
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.btn-cta-primary {
    background: white;
    color: var(--gift-text);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

    .btn-cta-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 25px rgba(0, 0, 0, 0.2);
        color: var(--gift-text);
    }

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: var(--gift-text);
    border: 2px solid white;
}

    .btn-cta-secondary:hover {
        background: white;
        color: var(--gift-text);
    }

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .gifts-hero-visual {
        height: 400px;
        margin-top: 40px;
    }

    .hero-image {
        max-width: 500px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-features {
        flex-direction: column;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn-gifts-primary,
    .btn-gifts-secondary {
        width: 100%;
        justify-content: center;
    }

    .gifts-hero {
        padding: 80px 0 60px;
    }

    .gifts-hero-visual {
        height: 300px;
    }

    .hero-image {
        max-width: 100%;
    }

    .gift-box-image {
        width: 100px;
        height: 100px;
    }

    .testimonial-image-wrapper {
        height: 180px;
    }

    .gifts-why,
    .gifts-packages,
    .gifts-how-it-works,
    .gifts-testimonials,
    .gifts-faq {
        padding: 60px 0;
    }

    .gifts-cta {
        padding: 60px 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }

    .group-gifting-banner {
        padding: 30px 20px;
    }

        .group-gifting-banner h3 {
            font-size: 1.5rem;
        }

    .btn-group-gift {
        width: 100%;
        justify-content: center;
        margin-top: 16px;
    }
}

/* ===================================
   Print Styles
   =================================== */
@media print {
    .gifts-hero,
    .gifts-cta {
        background: white !important;
    }

    .gift-package-card {
        page-break-inside: avoid;
    }
}
