﻿/* ========================================
   PiyumLanka Enhanced Stylesheet - Mother & Baby Focused
   Soft, nurturing, and irresistibly attractive design
   ======================================== */

/* ========================================
   BRAND COLORS & VARIABLES
   ======================================== */
:root {
    /* Logo-inspired Brand Colors */
    --brand-primary: #D4A574;
    --brand-secondary: #E8B5A5;
    --brand-accent: #F5E6D3;
    --brand-text: #8B5A3C;
    --brand-light: #F9F4F0;
    --brand-rose: #E6C2B8;
    /* Mother-Focused Pastels */
    --soft-lavender: #E6D5E8;
    --powder-pink: #F7D5E0;
    --mint-cream: #E8F5E9;
    --peach-blossom: #FFDAB9;
    --baby-blue: #E3F2FD;
    --blush-pink: #FFE4E1;
    /* Emotional Colors */
    --joy-apricot: #FFE5B4;
    --trust-periwinkle: #B8D4E8;
    --hope-sage: #C8E6C9;
    --love-rose: #F8BBD0;
    /* Cultural Accents */
    --saffron-gold: #FFB347;
    --lotus-pink: #F4C2C2;
    --peacock-teal: #A5D6D6;
    /* Complementary UI Colors */
    --success-color: #A8C686;
    --info-color: #A5C9D4;
    --danger-color: #D4A5A5;
    /* Neutrals */
    --light-color: #FFF8F5;
    --dark-color: var(--brand-text);
    --muted-color: #A69080;
    /* Typography */
    --sinhala-font: 'Noto Sans Sinhala', sans-serif;
    --primary-font: 'Poppins', sans-serif;
    --transition-speed: 0.3s;
    /* Shadows & Effects */
    --box-shadow-soft: 0 4px 20px rgba(230, 194, 184, 0.15);
    --box-shadow-medium: 0 8px 30px rgba(230, 194, 184, 0.2);
    --box-shadow-strong: 0 15px 45px rgba(230, 194, 184, 0.25);
    --border-radius-sm: 16px;
    --border-radius-md: 20px;
    --border-radius-lg: 28px;
}

/* ========================================
   GLOBAL STYLES
   ======================================== */
body {
    background: linear-gradient(135deg, #FFF8F5 0%, #FFE4E1 50%, #E6D5E8 100%);
    background-attachment: fixed;
    color: var(--brand-text);
    font-family: var(--primary-font);
}

.sinhala-text {
    font-family: var(--sinhala-font);
    font-weight: 600;
    color: var(--brand-text);
}

/* ========================================
   HERO SECTION - Instagram-Worthy Gradient
   ======================================== */
.hero-section {
    background: linear-gradient(135deg, #FFD3E1 0%, /* Peachy pink */
    #F8B4D9 50%, /* Rose */
    #E8CAFF 100% /* Lavender */
    );
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

    /* Animated floating effect */
    .hero-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70% );
        animation: gentle-float 15s ease-in-out infinite;
        pointer-events: none;
    }

    .hero-section::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        height: 120px;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60 Q300,0 600,60 T1200,60 L1200,120 L0,120 Z" fill="%23FFF8F5"/></svg>');
        background-size: cover;
    }

@keyframes gentle-float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(30px, 30px) rotate(180deg);
    }
}

.hero-section h1 {
    text-shadow: 0 4px 15px rgba(139, 90, 60, 0.2);
    animation: fadeInUp 0.8s ease-out;
}

.hero-section .sinhala-text {
    color: white;
    text-shadow: 0 2px 10px rgba(139, 90, 60, 0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-section .lead {
    animation: fadeInUp 1.2s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   BUTTONS - Soft & Inviting
   ======================================== */

/* Base button styles for ALL buttons */
.btn {
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all var(--transition-speed) ease;
    position: relative;
}

    .btn:hover {
        text-decoration: none;
    }

    .btn:active {
        transform: translateY(-1px) scale(1);
    }

.btn-primary {
    background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 100%);
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 600;
    color: var(--brand-text);
    box-shadow: 0 6px 20px rgba(230, 213, 232, 0.4);
    overflow: hidden;
}

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }

    .btn-primary:hover::before {
        width: 300px;
        height: 300px;
    }

    .btn-primary:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 10px 30px rgba(230, 213, 232, 0.5);
        color: var(--brand-text);
    }

.btn-warning {
    background: linear-gradient(135deg, #FFB347 0%, #FFDAB9 100%);
    border: none;
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 600;
    color: white;
    box-shadow: 0 6px 20px rgba(255, 179, 71, 0.4);
}

    .btn-warning:hover {
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 10px 30px rgba(255, 179, 71, 0.5);
        color: white;
        background: linear-gradient(135deg, #FFDAB9 0%, #FFB347 100%);
    }

.btn-light {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50px;
    padding: 14px 32px;
    font-weight: 600;
    color: var(--brand-text);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

    .btn-light:hover {
        background: rgba(255, 255, 255, 1);
        transform: translateY(-3px) scale(1.02);
        box-shadow: 0 10px 30px rgba(255, 255, 255, 0.6);
        border-color: rgba(255, 255, 255, 1);
        color: var(--brand-text);
    }

/* Large button size adjustments */
.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 50px;
}

    .btn-lg:hover {
        transform: translateY(-3px) scale(1.02);
    }

/* Small button size adjustments */
.btn-sm {
    padding: 10px 24px;
    font-size: 0.9rem;
    border-radius: 30px;
}

    .btn-sm:hover {
        transform: translateY(-2px) scale(1.05);
    }

.btn-outline-primary {
    border: 2px solid var(--powder-pink);
    color: var(--brand-text);
    background: transparent;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
}

    .btn-outline-primary:hover {
        background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 100%);
        color: var(--brand-text);
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 6px 20px rgba(247, 213, 224, 0.4);
    }

/* ========================================
   TRUST INDICATORS - Reassuring
   ======================================== */
.bg-white {
    background: linear-gradient(to bottom, white 0%, #FFF8F5 100%) !important;
}

.border-top {
    border-top: 1px solid rgba(230, 194, 184, 0.2) !important;
}

.text-success {
    color: var(--hope-sage) !important;
}

/* ========================================
   STATS SECTION - Soft & Impressive
   ======================================== */
.bg-light {
    background: linear-gradient(135deg, #E8F5E9 0%, #E3F2FD 50%, #FFE4E1 100%) !important;
}

.stats-counter {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 50%, #A5C9D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    animation: gentle-pulse 3s ease-in-out infinite;
}

@keyframes gentle-pulse {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* ========================================
   FEATURE CARDS - Warm & Welcoming
   ======================================== */
.feature-card {
    background: white;
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-soft);
    transition: all var(--transition-speed) ease;
    overflow: hidden;
    position: relative;
}

    .feature-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        background: linear-gradient(90deg, #F7D5E0 0%, #E6D5E8 25%, #A5C9D4 50%, #C8E6C9 75%, #FFDAB9 100% );
    }

    .feature-card:hover {
        transform: translateY(-10px) scale(1.02);
        box-shadow: var(--box-shadow-strong);
    }

    .feature-card:nth-child(1) {
        background: linear-gradient(to bottom, white 0%, #E8F5E9 100%);
    }

    .feature-card:nth-child(2) {
        background: linear-gradient(to bottom, white 0%, #E3F2FD 100%);
    }

    .feature-card:nth-child(3) {
        background: linear-gradient(to bottom, white 0%, #FFE5B4 100%);
    }

    .feature-card:nth-child(4) {
        background: linear-gradient(to bottom, white 0%, #F8BBD0 100%);
    }

    .feature-card:nth-child(5) {
        background: linear-gradient(to bottom, white 0%, #E6D5E8 100%);
    }

    .feature-card:nth-child(6) {
        background: linear-gradient(to bottom, white 0%, #A5D6D6 100%);
    }

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.1));
    animation: gentle-bounce 2s ease-in-out infinite;
}

@keyframes gentle-bounce {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* ========================================
   TESTIMONIALS - Heartfelt & Authentic
   ======================================== */
.testimonial-card {
    background: white;
    border: none;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--box-shadow-soft);
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-speed) ease;
}

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: -20px;
        left: 20px;
        font-size: 6rem;
        color: var(--powder-pink);
        font-family: Georgia, serif;
        opacity: 0.2;
    }

    .testimonial-card::after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 150px;
        height: 150px;
        background: radial-gradient(circle, var(--powder-pink) 0%, transparent 70%);
        opacity: 0.1;
    }

    .testimonial-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--box-shadow-medium);
    }

    .testimonial-card:nth-child(1) {
        background: linear-gradient(to bottom right, white 0%, #FFE4E1 100%);
    }

    .testimonial-card:nth-child(2) {
        background: linear-gradient(to bottom right, white 0%, #E6D5E8 100%);
    }

    .testimonial-card:nth-child(3) {
        background: linear-gradient(to bottom right, white 0%, #E8F5E9 100%);
    }

.fa-star.text-warning {
    color: #FFB347 !important;
    filter: drop-shadow(0 2px 4px rgba(255, 179, 71, 0.3));
}

/* ========================================
   POPULAR NAMES - Gender-Friendly Colors
   ======================================== */
.card.border-primary {
    border: none !important;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(168, 218, 255, 0.3);
    background: white;
    transition: all var(--transition-speed) ease;
}

    .card.border-primary:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(168, 218, 255, 0.4);
    }

    .card.border-primary .card-header {
        background: linear-gradient(135deg, #A8DAFF 0%, #B8C5FF 100%);
        border: none;
        padding: 1.5rem;
    }

    .card.border-primary .card-body {
        background: white;
        padding: 2rem;
    }

        .card.border-primary .card-body .mb-3 {
            padding: 0.75rem;
            border-radius: 10px;
            transition: all 0.2s ease;
        }

            .card.border-primary .card-body .mb-3:hover {
                background: rgba(168, 218, 255, 0.08);
                transform: translateX(5px);
            }

.card.border-danger {
    border: none !important;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(255, 179, 217, 0.3);
    background: white;
    transition: all var(--transition-speed) ease;
}

    .card.border-danger:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(255, 179, 217, 0.4);
    }

    .card.border-danger .card-header {
        background: linear-gradient(135deg, #FFB3D9 0%, #FFC4E8 100%);
        border: none;
        padding: 1.5rem;
    }

    .card.border-danger .card-body {
        background: white;
        padding: 2rem;
    }

        .card.border-danger .card-body .mb-3 {
            padding: 0.75rem;
            border-radius: 10px;
            transition: all 0.2s ease;
        }

            .card.border-danger .card-body .mb-3:hover {
                background: rgba(255, 179, 217, 0.08);
                transform: translateX(5px);
            }

    .card.border-primary .card-header h5,
    .card.border-danger .card-header h5 {
        color: white;
        font-weight: 700;
        margin: 0;
        display: flex;
        align-items: center;
    }

    .card.border-primary .card-header i,
    .card.border-danger .card-header i {
        font-size: 1.3rem;
        vertical-align: middle;
    }

    .card.border-primary .sinhala-text,
    .card.border-danger .sinhala-text {
        font-size: 1.1rem;
        color: var(--brand-text);
        font-weight: 600;
    }

    .card.border-primary .text-muted,
    .card.border-danger .text-muted {
        font-size: 0.9rem;
    }

.btn-primary.btn-sm {
    background: linear-gradient(135deg, #A8DAFF 0%, #B8C5FF 100%);
    border: none;
    border-radius: 30px;
    padding: 10px 24px;
    font-weight: 600;
    cursor: pointer;
    color: white;
    transition: all var(--transition-speed) ease;
    text-decoration: none;
    display: inline-block;
}

    .btn-primary.btn-sm:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 8px 20px rgba(168, 218, 255, 0.4);
        background: linear-gradient(135deg, #B8C5FF 0%, #A8DAFF 100%);
        color: white;
        text-decoration: none;
    }

.btn-danger.btn-sm {
    background: linear-gradient(135deg, #FFB3D9 0%, #FFC4E8 100%);
    border: none;
    border-radius: 30px;
    padding: 10px 24px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    text-decoration: none;
    display: inline-block;
}

    .btn-danger.btn-sm:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 8px 20px rgba(255, 179, 217, 0.4);
        background: linear-gradient(135deg, #FFC4E8 0%, #FFB3D9 100%);
        color: white;
        text-decoration: none;
    }

/* ========================================
   PRICING CARDS - Clear & Attractive
   ======================================== */
.card h-100 {
    border-radius: var(--border-radius-lg);
    transition: all var(--transition-speed) ease;
    border: 2px solid rgba(230, 213, 232, 0.3);
}

    .card h-100:hover {
        transform: translateY(-8px);
        box-shadow: var(--box-shadow-medium);
    }

.card.border-primary {
    border: 3px solid var(--soft-lavender) !important;
    background: linear-gradient(to bottom, white 0%, #F7D5E0 100%);
    position: relative;
}

    .card.border-primary .card-header {
        background: linear-gradient(135deg, #E6D5E8 0%, #F7D5E0 100%);
    }

.card.border-danger {
    border: 2px solid var(--love-rose) !important;
}

.display-6 {
    font-weight: 800;
    background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary {
    color: #E6D5E8 !important;
}

.text-warning {
    color: #FFB347 !important;
}

.text-danger {
    color: #F8BBD0 !important;
}

/* ========================================
   CTA SECTION - Compelling & Warm
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 25%, #A5C9D4 50%, #C8E6C9 75%, #FFDAB9 100% );
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    color: white;
}

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.2) 0%, transparent 50%), radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.15) 0%, transparent 50%);
        animation: gentle-float 25s ease-in-out infinite;
    }

    .cta-section h2 {
        text-shadow: 0 4px 15px rgba(139, 90, 60, 0.2);
    }

    /* CTA Section Specific Button Overrides */
    .cta-section .btn-light {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        border: 2px solid rgba(255, 255, 255, 0.9);
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
        font-weight: 700;
    }

        .cta-section .btn-light:hover {
            background: rgba(255, 255, 255, 1);
            box-shadow: 0 12px 35px rgba(255, 255, 255, 0.7);
            border-color: rgba(255, 255, 255, 1);
            transform: translateY(-5px) scale(1.03);
        }

    .cta-section .btn-outline-primary {
        background: rgba(255, 255, 255, 0.25);
        backdrop-filter: blur(10px);
        border: 3px solid rgba(255, 255, 255, 1);
        color: white;
        font-weight: 700;
        box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    }

        .cta-section .btn-outline-primary:hover {
            background: rgba(255, 255, 255, 0.98);
            color: var(--brand-text);
            border-color: rgba(255, 255, 255, 1);
            box-shadow: 0 12px 35px rgba(255, 255, 255, 0.6);
            transform: translateY(-5px) scale(1.03);
        }

/* ========================================
   FLOATING ELEMENTS - Subtle Presence
   ======================================== */
.live-users {
    background: linear-gradient(135deg, #C8E6C9 0%, #A8C686 100%);
    border: none;
    box-shadow: 0 6px 20px rgba(168, 198, 134, 0.4);
}

/* ========================================
   BANNERS & ALERTS - Soft Notifications
   ======================================== */
.alert-info {
    background: linear-gradient(135deg, #E3F2FD 0%, #B8D4E8 100%);
    border: none;
    border-radius: var(--border-radius-md);
    color: var(--brand-text);
}

.alert-primary {
    background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 100%);
    border: none;
    border-radius: var(--border-radius-md);
    color: var(--brand-text);
}

.alert-warning {
    background: linear-gradient(135deg, #FFE5B4 0%, #FFDAB9 100%);
    border: none;
    border-radius: var(--border-radius-md);
    color: var(--brand-text);
}

/* ========================================
   ANIMATIONS - Gentle & Natural
   ======================================== */
.animate-in {
    animation: smoothSlideUp 0.8s ease-out forwards;
}

@keyframes smoothSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   RESPONSIVE - Mobile Mothers
   ======================================== */
@media (max-width: 768px) {
    .hero-section {
        padding: 80px 0 60px;
    }

        .hero-section h1 {
            font-size: 2rem;
        }

    .stats-counter {
        font-size: 2.5rem;
    }

    .feature-icon {
        font-size: 3rem;
    }

    .cta-section {
        padding: 60px 0;
    }
}

/* ========================================
   ACCESSIBILITY - Inclusive Design
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   SPECIAL TOUCHES - Mother's Love
   ======================================== */
.heart-glow {
    animation: heartbeat 2s ease-in-out infinite;
}

@keyframes heartbeat {
    0%, 100% {
        transform: scale(1);
    }

    10% {
        transform: scale(1.1);
    }

    20% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.1);
    }

    40% {
        transform: scale(1);
    }
}

/* Add sparkle effect to important elements */
.sparkle::after {
    content: '✨';
    margin-left: 8px;
    display: inline-block;
    animation: gentle-rotate 3s linear infinite;
}

@keyframes gentle-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   CONTACT US PAGE STYLES
   Add this section to your PiyumLankaStyles.css file
   ======================================== */

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 50%, #FFE4E1 100%);
    padding: 80px 0 60px;
    color: var(--brand-text);
    position: relative;
    overflow: hidden;
}

    .contact-hero::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: gentle-float 15s ease-in-out infinite;
        pointer-events: none;
    }

    .contact-hero h1 {
        color: white;
        text-shadow: 0 4px 15px rgba(139, 90, 60, 0.2);
    }

    .contact-hero .lead {
        color: white;
        opacity: 0.95;
    }

/* Hero Badges */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.badge-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--brand-text);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

    .badge-item:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

    .badge-item i {
        color: var(--lotus-pink);
    }

/* Contact Cards */
.contact-card {
    background: white;
    border: none;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-soft);
    transition: all var(--transition-speed) ease;
    position: relative;
    overflow: hidden;
}

    .contact-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #F7D5E0 0%, #E6D5E8 50%, #A5C9D4 100%);
    }

    .contact-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--box-shadow-strong);
    }

/* Featured Contact Card */
.contact-card-featured {
    border: 3px solid var(--saffron-gold);
}

    .contact-card-featured::before {
        background: linear-gradient(90deg, #FFB347 0%, #FFDAB9 100%);
        height: 5px;
    }

/* Contact Icons */
.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Contact Icon Color Variants */
.contact-icon-pink {
    background: linear-gradient(135deg, #F7D5E0 0%, #FFB3D9 100%);
    color: white;
}

.contact-icon-lavender {
    background: linear-gradient(135deg, #E6D5E8 0%, #D4B5E8 100%);
    color: white;
}

.contact-icon-mint {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    color: var(--brand-text);
}

.contact-icon-peach {
    background: linear-gradient(135deg, #FFDAB9 0%, #FFE5B4 100%);
    color: var(--brand-text);
}

.contact-icon-blue {
    background: linear-gradient(135deg, #E3F2FD 0%, #B8D4E8 100%);
    color: var(--brand-text);
}

.contact-icon-gold {
    background: linear-gradient(135deg, #FFB347 0%, #FFDAB9 100%);
    color: white;
}

/* Contact List */
.contact-list li {
    padding: 0.5rem 0;
    color: var(--brand-text);
}

.contact-list .fa-check-circle {
    color: var(--hope-sage) !important;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 3rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-soft);
}

    .contact-form h3 {
        color: var(--brand-text);
        margin-bottom: 2rem;
    }

/* Form Controls */
.form-floating > .form-control,
.form-floating > .form-select {
    border: 2px solid rgba(230, 194, 184, 0.3);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

    .form-floating > .form-control:focus,
    .form-floating > .form-select:focus {
        border-color: var(--powder-pink);
        box-shadow: 0 0 0 0.25rem rgba(247, 213, 224, 0.25);
    }

.form-floating > label {
    color: var(--muted-color);
    padding: 1rem 1.25rem;
}

/* Form Validation States */
.form-control.is-valid,
.form-select.is-valid {
    border-color: var(--hope-sage);
    background-image: none;
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: var(--danger-color);
    background-image: none;
}

/* Form Success/Error Messages */
.form-success,
.form-error {
    display: none;
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-success {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    color: #2E7D32;
    border-left: 5px solid var(--hope-sage);
}

.form-error {
    background: linear-gradient(135deg, #FFEBEE 0%, #FFCDD2 100%);
    color: #C62828;
    border-left: 5px solid var(--danger-color);
}

/* Baby Info Card */
.baby-info-card {
    background: linear-gradient(135deg, #FFF8F5 0%, #FFE4E1 100%);
    border: 2px dashed var(--powder-pink);
    border-radius: var(--border-radius-md);
    padding: 1.5rem;
}

    .baby-info-card .card-title {
        color: var(--brand-text);
        font-size: 1.1rem;
    }
    /* ========================================
   BABY INFORMATION SECTION - SPACING FIX
   Add this to your Contact Page CSS section
   ======================================== */

    /* Ensure consistent height for all baby info fields */
    .baby-info-card .form-floating > .form-control,
    .baby-info-card .form-floating > .form-select {
        height: 58px;
        padding: 1rem 0.75rem;
        line-height: 1.25;
    }

    /* Ensure labels are positioned consistently */
    .baby-info-card .form-floating > label {
        padding: 1rem 0.75rem;
    }

    /* Fix select dropdown appearance to match inputs */
    .baby-info-card .form-select {
        padding-top: 1.625rem;
        padding-bottom: 0.625rem;
    }

    /* When label floats up (has value selected) */
    .baby-info-card .form-floating > .form-select:focus,
    .baby-info-card .form-floating > .form-select:not(:placeholder-shown) {
        padding-top: 1.625rem;
        padding-bottom: 0.625rem;
    }

    /* Ensure date input matches */
    .baby-info-card .form-floating > input[type="date"] {
        height: 58px;
        padding: 1.625rem 0.75rem 0.625rem 0.75rem;
    }

    /* Fix label positioning when field has value */
    .baby-info-card .form-floating > .form-control:focus ~ label,
    .baby-info-card .form-floating > .form-control:not(:placeholder-shown) ~ label,
    .baby-info-card .form-floating > .form-select:focus ~ label,
    .baby-info-card .form-floating > .form-select:not([value=""]) ~ label {
        opacity: 0.65;
        transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
    }

/* Response Time Badge */
.response-time {
    background: linear-gradient(135deg, #E3F2FD 0%, #B8D4E8 100%);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    color: var(--brand-text);
}

/* Business Hours Card */
.business-hours {
    background: white;
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-soft);
}

    .business-hours h4 {
        color: var(--brand-text);
        margin-bottom: 1.5rem;
    }

.hours-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(230, 194, 184, 0.2);
    color: var(--brand-text);
}

    .hours-list li:last-child {
        border-bottom: none;
    }

.status-badge {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    padding: 0.75rem;
    border-radius: 8px;
    text-align: center;
}

/* Contact Info Card */
.contact-info-card,
.location-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-soft);
}

    .contact-info-card .card-body,
    .location-card .card-body {
        padding: 2rem;
    }

    .contact-info-card .card-title,
    .location-card .card-title {
        color: var(--brand-text);
        margin-bottom: 1.5rem;
        font-weight: 700;
    }

.contact-details {
    color: var(--brand-text);
    line-height: 2;
}

    .contact-details a {
        color: var(--brand-primary);
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .contact-details a:hover {
            color: var(--powder-pink);
        }

/* Contact Action Buttons */
.btn-contact {
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-contact:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    }

/* FAQ Section */
.faq-section {
    background: linear-gradient(to bottom, white 0%, #FFF8F5 100%);
}

/* ========================================
   FAQ ACCORDION STYLES
   Replace the existing .faq-item styles with these
   ======================================== */

/* FAQ Accordion Item */
.faq-item-accordion {
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-soft);
    overflow: hidden;
    transition: all 0.3s ease;
}

    .faq-item-accordion:hover {
        box-shadow: var(--box-shadow-medium);
        transform: translateY(-2px);
    }

/* FAQ Question (Clickable) */
.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    background: white;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

    .faq-question:hover {
        background: linear-gradient(to right, #FFF8F5 0%, white 100%);
        border-left-color: var(--powder-pink);
    }

    .faq-question h5 {
        color: var(--brand-text);
        margin: 0;
        display: flex;
        align-items: center;
        font-size: 1.1rem;
    }

/* FAQ Icon */
.faq-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 100%);
    border-radius: 50%;
    color: white;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-question:hover .faq-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, #FFB3D9 0%, #D4B5E8 100%);
}

/* Rotate icon when expanded */
.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
    background: linear-gradient(135deg, #FFB3D9 0%, #D4B5E8 100%);
}

.faq-question[aria-expanded="true"] {
    background: linear-gradient(to right, #FFF8F5 0%, white 100%);
    border-left-color: var(--powder-pink);
}

/* FAQ Answer */
.faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--muted-color);
    animation: fadeInAnswer 0.3s ease-in-out;
}

@keyframes fadeInAnswer {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.faq-answer p {
    line-height: 1.7;
    margin-bottom: 0;
}

/* Active FAQ Item */
.faq-item-accordion:has(.faq-question[aria-expanded="true"]) {
    box-shadow: var(--box-shadow-medium);
    border: 2px solid rgba(247, 213, 224, 0.3);
}

/* Responsive Adjustments for FAQ */
@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem 1.5rem;
    }

        .faq-question h5 {
            font-size: 1rem;
        }

    .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
        font-size: 0.7rem;
    }
}

/* Floating Support Button (Mobile) */
.floating-support {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.support-phone {
    background: linear-gradient(135deg, #4CAF50 0%, #45A049 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

    .support-phone:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(76, 175, 80, 0.5);
        color: white;
    }

/* Business Status Indicator */
.business-status-indicator {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 999;
}

.status-card {
    background: white;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.business-hours-status {
    color: var(--brand-text);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0 40px;
    }

        .contact-hero h1 {
            font-size: 2rem;
        }

    .hero-badges {
        flex-direction: column;
        align-items: stretch;
    }

    .badge-item {
        justify-content: center;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .business-hours,
    .contact-info-card .card-body,
    .location-card .card-body {
        padding: 1.5rem;
    }
}

/* Animation for form submission */
@keyframes pulse-success {
    0%, 100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.form-success {
    animation: pulse-success 0.5s ease-in-out;
}


/* ========================================
   ABOUT US PAGE - ENHANCED STYLES
   
   ======================================== */

/* ========================================
   ABOUT HERO SECTION
   ======================================== */
.about-hero-gradient {
    background: linear-gradient(135deg, #FFB3D9 0%, /* Soft pink */
    #E6D5E8 25%, /* Lavender */
    #FFD3E1 50%, /* Peachy pink */
    #F8B4D9 75%, /* Rose */
    #E8CAFF 100% /* Purple lavender */
    );
    position: relative;
    overflow: hidden;
    min-height: 600px;
}

/* Sparkle Badge */
.sparkle-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 8px 20px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    animation: gentle-pulse 3s ease-in-out infinite;
}

/* Gradient Text Effects */
.gradient-text {
    background: linear-gradient(135deg, #FFFFFF 0%, #FFE4E1 50%, #FFFFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 800;
}

.gradient-text-secondary {
    background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 50%, #FFB3D9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    font-weight: 800;
}

/* Stat Bubbles */
.stat-bubble {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .stat-bubble:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    }

.stat-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-label {
    color: var(--muted-color);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    animation: float-gentle 6s ease-in-out infinite;
}

.hero-logo {
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

@keyframes float-gentle {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    animation: float-around 8s ease-in-out infinite;
}

.floating-1 {
    top: 10%;
    right: 10%;
    animation-delay: 0s;
}

.floating-2 {
    bottom: 20%;
    left: 5%;
    animation-delay: 2s;
}

.floating-3 {
    top: 50%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes float-around {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(10px, -10px) rotate(90deg);
    }

    50% {
        transform: translate(20px, 10px) rotate(180deg);
    }

    75% {
        transform: translate(-10px, 20px) rotate(270deg);
    }
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 120"><path d="M0,60 Q300,0 600,60 T1200,60 L1200,120 L0,120 Z" fill="%23FFFFFF"/></svg>');
    background-size: cover;
}

/* ========================================
   TRUST BANNER
   ======================================== */
.trust-banner {
    background: linear-gradient(to bottom, white 0%, #FFF8F5 100%);
    border-bottom: 1px solid rgba(230, 194, 184, 0.2);
}

.trust-item {
    transition: all 0.3s ease;
}

    .trust-item:hover {
        transform: translateY(-3px);
    }

    .trust-item i {
        font-size: 2rem;
        background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

/* ========================================
   SECTION BACKGROUNDS
   ======================================== */
.section-soft-bg {
    background: linear-gradient(to bottom, #FFF8F5 0%, #FFE4E1 50%, #FFF8F5 100%);
}

.section-gradient-soft {
    background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 25%, #A5C9D4 50%, #C8E6C9 75%, #FFDAB9 100% );
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(230, 213, 232, 0.4);
}

/* ========================================
   MISSION CARDS
   ======================================== */
.mission-image-wrapper {
    position: relative;
}

.image-decoration {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    opacity: 0.3;
    z-index: -1;
}

.decoration-1 {
    top: -30px;
    left: -30px;
    background: linear-gradient(135deg, #F7D5E0 0%, #FFB3D9 100%);
}

.decoration-2 {
    bottom: -30px;
    right: -30px;
    background: linear-gradient(135deg, #E6D5E8 0%, #D4B5E8 100%);
}

.mission-image {
    position: relative;
    z-index: 1;
}

.mission-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    box-shadow: var(--box-shadow-soft);
    transition: all 0.3s ease;
}

    .mission-card:hover {
        transform: translateY(-5px);
        box-shadow: var(--box-shadow-strong);
    }

.card-cultural {
    border-left: 5px solid var(--hope-sage);
}

.card-innovation {
    border-left: 5px solid var(--trust-periwinkle);
}

.mission-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border-radius: 50%;
    color: white;
}

.card-cultural .mission-icon {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    color: var(--hope-sage);
}

.card-innovation .mission-icon {
    background: linear-gradient(135deg, #E3F2FD 0%, #B8D4E8 100%);
    color: var(--trust-periwinkle);
}

.mission-content h4 {
    color: var(--brand-text);
}

.mission-highlight {
    background: linear-gradient(to right, #FFF8F5 0%, transparent 100%);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    border-left: 3px solid var(--brand-primary);
    font-size: 0.95rem;
}

/* ========================================
   STORY TIMELINE
   ======================================== */
.story-timeline {
    position: relative;
}

    .story-timeline::before {
        content: '';
        position: absolute;
        left: 60px;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(to bottom, #F7D5E0 0%, #E6D5E8 50%, #FFB3D9 100% );
    }

.timeline-item {
    position: relative;
    padding-left: 140px;
    margin-bottom: 3rem;
}

.timeline-marker {
    position: absolute;
    left: 30px;
    top: 0;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.marker-inner {
    font-size: 1.8rem;
}

.timeline-content {
    position: relative;
}

.timeline-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--box-shadow-soft);
    transition: all 0.3s ease;
}

    .timeline-card:hover {
        transform: translateX(10px);
        box-shadow: var(--box-shadow-medium);
    }

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.team-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.badge-soft {
    background: rgba(247, 213, 224, 0.2);
    color: var(--brand-text);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.achievement-row {
    display: flex;
    justify-content: space-around;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 2px dashed rgba(230, 213, 232, 0.3);
}

.achievement-item {
    text-align: center;
}

    .achievement-item strong {
        display: block;
        font-size: 1.8rem;
        margin-bottom: 0.25rem;
    }

    .achievement-item small {
        color: var(--muted-color);
        font-size: 0.85rem;
    }

/* ========================================
   VALUE CARDS
   ======================================== */
.value-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--box-shadow-soft);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

    .value-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 5px;
        transition: all 0.3s ease;
    }

.value-card-1::before {
    background: linear-gradient(90deg, #E8F5E9 0%, #C8E6C9 100%);
}

.value-card-2::before {
    background: linear-gradient(90deg, #F7D5E0 0%, #FFB3D9 100%);
}

.value-card-3::before {
    background: linear-gradient(90deg, #FFE5B4 0%, #FFDAB9 100%);
}

.value-card-4::before {
    background: linear-gradient(90deg, #E3F2FD 0%, #B8D4E8 100%);
}

.value-card-5::before {
    background: linear-gradient(90deg, #A5D6D6 0%, #A5C9D4 100%);
}

.value-card-6::before {
    background: linear-gradient(90deg, #F8BBD0 0%, #FFB3D9 100%);
}

.value-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--box-shadow-strong);
}

    .value-card:hover::before {
        height: 8px;
    }

.value-emoji {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
    animation: bounce-gentle 2s ease-in-out infinite;
}

@keyframes bounce-gentle {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.value-card h4 {
    color: var(--brand-text);
    margin-bottom: 1rem;
}

.value-badge {
    display: inline-block;
    background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* ========================================
   TEAM CARDS
   ======================================== */
.team-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--box-shadow-soft);
    transition: all 0.3s ease;
    height: 100%;
}

    .team-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--box-shadow-strong);
    }

.team-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.team-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.team-icon-cultural {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    color: var(--hope-sage);
}

.team-icon-tech {
    background: linear-gradient(135deg, #E3F2FD 0%, #B8D4E8 100%);
    color: var(--trust-periwinkle);
}

.team-description {
    color: var(--muted-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.team-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.team-stat {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right, #FFF8F5 0%, white 100%);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-text);
}

    .team-stat i {
        color: var(--brand-primary);
    }

/* ========================================
   IMPACT CARDS
   ======================================== */
.impact-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow-soft);
    transition: all 0.4s ease;
}

    .impact-card:hover {
        transform: translateY(-10px) rotate(2deg);
        box-shadow: var(--box-shadow-strong);
    }

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.impact-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 50%, #FFB3D9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 0.5rem;
}

.impact-card h6 {
    color: var(--brand-text);
    margin-bottom: 0.75rem;
}

/* ========================================
   STORY CARDS (TESTIMONIALS)
   ======================================== */
.story-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--box-shadow-soft);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    .story-card::before {
        content: '"';
        position: absolute;
        top: -20px;
        right: 20px;
        font-size: 8rem;
        color: rgba(247, 213, 224, 0.1);
        font-family: Georgia, serif;
        line-height: 1;
    }

    .story-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--box-shadow-strong);
    }

.story-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.story-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--powder-pink);
}

.story-info h6 {
    margin-bottom: 0.25rem;
    color: var(--brand-text);
}

.story-info small {
    display: block;
    margin-bottom: 0.5rem;
}

.star-rating {
    color: #FFB347;
    font-size: 0.9rem;
}

.story-quote {
    font-style: italic;
    color: var(--muted-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.story-tag {
    display: inline-block;
    background: linear-gradient(to right, #FFF8F5 0%, white 100%);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--brand-text);
    border: 2px solid rgba(247, 213, 224, 0.3);
}

    .story-tag i {
        color: var(--love-rose);
    }

/* ========================================
   PROMISE SECTION
   ======================================== */
.promise-card {
    background: linear-gradient(135deg, white 0%, #FFF8F5 100%);
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--box-shadow-medium);
    border: 3px solid rgba(247, 213, 224, 0.3);
}

.promise-badge {
    display: inline-block;
    background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 100%);
    color: white;
    padding: 10px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(230, 213, 232, 0.4);
}

.promise-content {
    color: var(--brand-text);
    line-height: 1.8;
}

.promise-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    transition: all 0.3s ease;
}

    .promise-item:hover {
        transform: translateX(5px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

    .promise-item i {
        color: var(--hope-sage);
        font-size: 1.5rem;
        flex-shrink: 0;
        margin-top: 0.25rem;
    }

    .promise-item strong {
        display: block;
        color: var(--brand-text);
        margin-bottom: 0.25rem;
    }

    .promise-item small {
        color: var(--muted-color);
        font-size: 0.85rem;
    }

/* ========================================
   CTA ENHANCEMENTS
   ======================================== */
.cta-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 12px;
    color: white;
}

    .cta-feature i {
        font-size: 2rem;
        flex-shrink: 0;
    }

    .cta-feature h6 {
        margin-bottom: 0.25rem;
        font-weight: 700;
    }

    .cta-feature small {
        opacity: 0.9;
    }

.cta-box {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.offer-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFB347 0%, #FFDAB9 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 179, 71, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 5px rgba(255, 179, 71, 0.2);
    }
}

.trust-indicators {
    color: var(--muted-color);
    padding-top: 1rem;
    border-top: 1px solid rgba(230, 194, 184, 0.2);
}

    .trust-indicators i {
        color: var(--brand-primary);
    }

/* Sparkle effect */
.sparkle::after {
    content: '✨';
    margin-left: 8px;
    display: inline-block;
    animation: rotate-sparkle 3s linear infinite;
}

@keyframes rotate-sparkle {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 768px) {
    .about-hero-gradient {
        min-height: auto;
        padding: 60px 0 40px;
    }

    .story-timeline::before {
        left: 30px;
    }

    .timeline-item {
        padding-left: 90px;
    }

    .timeline-marker {
        left: 0;
        width: 50px;
        height: 50px;
    }

    .marker-inner {
        font-size: 1.5rem;
    }

    .value-card {
        padding: 2rem 1.5rem;
    }

    .value-emoji {
        font-size: 2.5rem;
    }

    .impact-number {
        font-size: 2.5rem;
    }

    .mission-card {
        flex-direction: column;
        text-align: center;
    }

    .achievement-row {
        flex-direction: column;
        gap: 1rem;
    }

    .cta-feature {
        flex-direction: column;
        text-align: center;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }

    .hero-caption {
        font-size: 0.85rem;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .floating-element,
    .hero-image-container,
    .value-emoji,
    .sparkle::after {
        animation: none !important;
    }
}

/* Focus states for accessibility */
.value-card:focus-within,
.team-card:focus-within,
.impact-card:focus-within,
.story-card:focus-within {
    outline: 3px solid var(--powder-pink);
    outline-offset: 3px;
}



/* ========================================
   PRICING PAGE - ENHANCED STYLES
   Add these to your PiyumLankaStyles.css file
   ======================================== */

/* ========================================
   PRICING HERO SECTION
   ======================================== */
.pricing-hero-gradient {
    background: linear-gradient(135deg, #FFB3D9 0%, /* Soft pink */
    #E6D5E8 25%, /* Lavender */
    #A5C9D4 50%, /* Trust blue */
    #C8E6C9 75%, /* Hope green */
    #FFDAB9 100% /* Peach */
    );
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
    color: white;
}

.pricing-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    padding: 10px 24px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

    .trust-badge-item i {
        font-size: 1.2rem;
    }

/* ========================================
   POPULAR CHOICE BANNER
   ======================================== */
.popular-choice-banner {
    background: linear-gradient(135deg, #FFE5B4 0%, #FFDAB9 100%);
    color: var(--brand-text);
    padding: 1rem 2rem;
    border-radius: 50px;
    display: inline-block;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(255, 179, 71, 0.3);
    animation: gentle-pulse 3s ease-in-out infinite;
}

/* ========================================
   PRICING CARDS
   ======================================== */
.pricing-card {
    background: white;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--box-shadow-soft);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: var(--box-shadow-strong);
    }

/* Card Header */
.pricing-card-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    position: relative;
}

.package-emoji {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce-gentle 2s ease-in-out infinite;
}

.package-name {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand-text);
    margin-bottom: 0.5rem;
}

.package-subtitle {
    color: var(--muted-color);
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Card Body */
.pricing-card-body {
    padding: 1.5rem 2rem 2rem;
}

/* Price Display */
.price-display {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(to bottom, #FFF8F5 0%, white 100%);
    border-radius: 16px;
}

.price-starting {
    font-size: 0.85rem;
    color: var(--muted-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--brand-text);
    vertical-align: top;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--brand-text);
    line-height: 1;
}

    .price-amount.highlight {
        background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 50%, #FFB3D9 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.price-period {
    font-size: 0.9rem;
    color: var(--muted-color);
    margin-top: 0.5rem;
}

.savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, #C8E6C9 0%, #A8C686 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 0.75rem;
}

/* Feature List */
.feature-list-modern {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

    .feature-list-modern li {
        display: flex;
        align-items: start;
        gap: 0.75rem;
        padding: 0.75rem 0;
        border-bottom: 1px solid rgba(230, 194, 184, 0.1);
    }

        .feature-list-modern li:last-child {
            border-bottom: none;
        }

    .feature-list-modern i {
        font-size: 1.2rem;
        flex-shrink: 0;
        margin-top: 0.1rem;
    }

.feature-included i {
    color: var(--hope-sage);
}

.feature-excluded i {
    color: var(--danger-color);
    opacity: 0.5;
}

.feature-excluded span {
    color: var(--muted-color);
    text-decoration: line-through;
}

/* Pricing Buttons */
.btn-pricing {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
}

.btn-pricing-free {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    color: var(--brand-text);
    box-shadow: 0 4px 15px rgba(168, 198, 134, 0.3);
}

    .btn-pricing-free:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(168, 198, 134, 0.4);
        background: linear-gradient(135deg, #C8E6C9 0%, #A8C686 100%);
    }

.btn-pricing-premium {
    background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(230, 213, 232, 0.4);
}

    .btn-pricing-premium:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(230, 213, 232, 0.5);
        background: linear-gradient(135deg, #FFB3D9 0%, #D4B5E8 100%);
        color: white;
    }

.btn-pricing-plus {
    background: linear-gradient(135deg, #FFB347 0%, #FFDAB9 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(255, 179, 71, 0.4);
}

    .btn-pricing-plus:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(255, 179, 71, 0.5);
        background: linear-gradient(135deg, #FFDAB9 0%, #FFB347 100%);
        color: white;
    }

.btn-pricing-gift {
    background: linear-gradient(135deg, #F8BBD0 0%, #FFB3D9 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(248, 187, 208, 0.4);
}

    .btn-pricing-gift:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(248, 187, 208, 0.5);
        background: linear-gradient(135deg, #FFB3D9 0%, #F8BBD0 100%);
        color: white;
    }

.pricing-note {
    text-align: center;
    margin-top: 1rem;
}

    .pricing-note small {
        color: var(--muted-color);
        font-size: 0.85rem;
    }

/* Card Badges */
.popular-badge,
.value-badge,
.gift-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.popular-badge {
    background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 100%);
}

.value-badge {
    background: linear-gradient(135deg, #FFB347 0%, #FFDAB9 100%);
}

.gift-badge {
    background: linear-gradient(135deg, #F8BBD0 0%, #FFB3D9 100%);
}

/* Card Variants */
.pricing-card-free {
    border-top: 5px solid var(--hope-sage);
}

.pricing-card-premium {
    border-top: 5px solid var(--powder-pink);
    transform: scale(1.05);
    z-index: 2;
}

.pricing-card-plus {
    border-top: 5px solid var(--saffron-gold);
}

.pricing-card-gift {
    border-top: 5px solid var(--love-rose);
}

/* ========================================
   CREDIT CALCULATOR SECTION
   ======================================== */
.calculator-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 3rem;
    box-shadow: var(--box-shadow-medium);
}

.calculator-section h5 {
    color: var(--brand-text);
    font-weight: 700;
}

.credit-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.credit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(to right, #FFF8F5 0%, white 100%);
    border-radius: 12px;
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
}

    .credit-item:hover {
        transform: translateX(5px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    }

.credit-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.credit-icon-ai {
    background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 100%);
}

.credit-icon-lagna {
    background: linear-gradient(135deg, #FFE5B4 0%, #FFDAB9 100%);
}

.credit-icon-combo {
    background: linear-gradient(135deg, #E3F2FD 0%, #B8D4E8 100%);
}

.credit-icon-surname {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
}

.credit-icon-history {
    background: linear-gradient(135deg, #F8BBD0 0%, #FFB3D9 100%);
}

.credit-content strong {
    display: block;
    color: var(--brand-text);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.credit-content small {
    color: var(--muted-color);
    font-size: 0.85rem;
}

/* Usage Chart */
.usage-chart {
    margin-bottom: 2rem;
}

.usage-bar {
    display: flex;
    height: 60px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.usage-segment {
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

    .usage-segment:hover {
        filter: brightness(1.1);
    }

.usage-ai {
    background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 100%);
}

.usage-lagna {
    background: linear-gradient(135deg, #FFE5B4 0%, #FFDAB9 100%);
}

.usage-combo {
    background: linear-gradient(135deg, #E3F2FD 0%, #B8D4E8 100%);
}

.usage-other {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
}

/* Usage Insight */
.usage-insight {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #FFF8F5 0%, #FFE4E1 100%);
    border-radius: 12px;
    border-left: 4px solid var(--saffron-gold);
}

.insight-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.insight-content strong {
    display: block;
    color: var(--brand-text);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.insight-content p {
    color: var(--brand-text);
    line-height: 1.6;
}

/* ========================================
   FAMILY DISCOUNT SECTION
   ======================================== */
.family-discount-visual {
    padding: 2rem;
}

.discount-emoji {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.discount-comparison {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
    justify-content: center;
}

.discount-box {
    flex: 1;
    min-width: 200px;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--box-shadow-soft);
    transition: all 0.3s ease;
}

    .discount-box:hover {
        transform: translateY(-5px);
        box-shadow: var(--box-shadow-medium);
    }

.discount-first {
    background: linear-gradient(to bottom, white 0%, #FFF8F5 100%);
}

.discount-second {
    background: linear-gradient(to bottom, white 0%, #E8F5E9 100%);
    border: 3px solid var(--hope-sage);
}

.discount-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--brand-text);
    margin-bottom: 1rem;
}

.discount-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-text);
    margin-bottom: 0.5rem;
}

    .discount-price.highlight {
        background: linear-gradient(135deg, #C8E6C9 0%, #A8C686 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.discount-box small {
    color: var(--muted-color);
    display: block;
}

.savings-star {
    display: inline-block;
    background: var(--hope-sage);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-top: 1rem;
}

.discount-arrow {
    font-size: 2rem;
    color: var(--hope-sage);
    animation: bounce-horizontal 2s ease-in-out infinite;
}

@keyframes bounce-horizontal {
    0%, 100% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(10px);
    }
}

.family-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    box-shadow: var(--box-shadow-soft);
    transition: all 0.3s ease;
}

    .benefit-item:hover {
        transform: translateX(5px);
        box-shadow: var(--box-shadow-medium);
    }

    .benefit-item i {
        font-size: 1.5rem;
        color: var(--hope-sage);
        flex-shrink: 0;
        margin-top: 0.25rem;
    }

    .benefit-item strong {
        display: block;
        color: var(--brand-text);
        margin-bottom: 0.25rem;
    }

    .benefit-item small {
        color: var(--muted-color);
        font-size: 0.85rem;
    }

/* ========================================
   VALUE PROPOSITION CARDS
   ======================================== */
.value-prop-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--box-shadow-soft);
    transition: all 0.3s ease;
    height: 100%;
}

    .value-prop-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--box-shadow-strong);
    }

.value-prop-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.value-icon-cultural,
.value-icon-trust,
.value-icon-support,
.value-icon-ai,
.value-icon-family,
.value-icon-mobile {
    display: inline-block;
    animation: bounce-gentle 2s ease-in-out infinite;
}

.value-prop-card h5 {
    color: var(--brand-text);
    margin-bottom: 1rem;
}

.value-prop-card p {
    color: var(--muted-color);
    line-height: 1.7;
}

/* ========================================
   TESTIMONIAL PRICING CARDS
   ======================================== */
.testimonial-pricing-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    box-shadow: var(--box-shadow-soft);
    transition: all 0.3s ease;
    height: 100%;
}

    .testimonial-pricing-card:hover {
        transform: translateY(-8px);
        box-shadow: var(--box-shadow-strong);
    }

.testimonial-rating {
    color: #FFB347;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-pricing-card blockquote {
    font-style: italic;
    color: var(--muted-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--powder-pink);
    padding-left: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--powder-pink);
}

.testimonial-author strong {
    display: block;
    color: var(--brand-text);
    margin-bottom: 0.25rem;
}

.package-tag {
    display: inline-block;
    background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.package-tag-plus {
    background: linear-gradient(135deg, #FFB347 0%, #FFDAB9 100%);
}

.package-tag-gift {
    background: linear-gradient(135deg, #F8BBD0 0%, #FFB3D9 100%);
}

/* ========================================
   PRICING FAQ
   ======================================== */
.pricing-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-faq-item {
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-soft);
    overflow: hidden;
    transition: all 0.3s ease;
}

    .pricing-faq-item:hover {
        box-shadow: var(--box-shadow-medium);
    }

.pricing-faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
}

    .pricing-faq-question:hover {
        background: linear-gradient(to right, #FFF8F5 0%, white 100%);
    }

    .pricing-faq-question.collapsed .faq-arrow {
        transform: rotate(0deg);
    }

    .pricing-faq-question:not(.collapsed) .faq-arrow {
        transform: rotate(180deg);
    }

.faq-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 100%);
    border-radius: 50%;
    color: white;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-text {
    flex: 1;
    color: var(--brand-text);
    font-weight: 700;
    font-size: 1.1rem;
}

.faq-arrow {
    font-size: 1.2rem;
    color: var(--brand-primary);
    transition: transform 0.3s ease;
}

.pricing-faq-answer {
    padding: 0 2rem 2rem 2rem;
    color: var(--muted-color);
    line-height: 1.8;
}

    .pricing-faq-answer ul {
        margin: 1rem 0;
        padding-left: 1.5rem;
    }

    .pricing-faq-answer li {
        margin-bottom: 0.75rem;
    }

    .pricing-faq-answer a {
        color: var(--brand-primary);
        text-decoration: none;
        font-weight: 600;
    }

        .pricing-faq-answer a:hover {
            color: var(--powder-pink);
            text-decoration: underline;
        }

/* ========================================
   FINAL CTA SECTION
   ======================================== */
.pricing-final-cta {
    background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 25%, #A5C9D4 50%, #C8E6C9 75%, #FFDAB9 100% );
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

    .pricing-final-cta::before {
        content: '';
        position: absolute;
        top: -50%;
        left: -50%;
        width: 200%;
        height: 200%;
        background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
        animation: gentle-float 25s ease-in-out infinite;
    }

.cta-feature-small {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    color: white;
}

    .cta-feature-small i {
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    .cta-feature-small strong {
        display: block;
        font-size: 0.95rem;
        margin-bottom: 0.25rem;
    }

    .cta-feature-small small {
        font-size: 0.85rem;
        opacity: 0.9;
    }

.final-cta-box {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 2.5rem;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
}

.cta-box-badge {
    display: inline-block;
    background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-package-info {
    text-align: center;
    margin-bottom: 2rem;
}

    .cta-package-info h4 {
        color: var(--brand-text);
        margin-bottom: 1rem;
    }

.cta-price {
    margin: 1rem 0;
}

.cta-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--brand-text);
}

.cta-amount {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 50%, #FFB3D9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-period {
    font-size: 0.9rem;
    color: var(--muted-color);
}

.cta-value small {
    color: var(--muted-color);
}

.btn-cta-final {
    background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 100%);
    border: none;
    border-radius: 50px;
    padding: 16px 32px;
    font-weight: 700;
    font-size: 1.1rem;
    color: white;
    box-shadow: 0 8px 25px rgba(230, 213, 232, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .btn-cta-final:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 35px rgba(230, 213, 232, 0.5);
        background: linear-gradient(135deg, #FFB3D9 0%, #D4B5E8 100%);
        color: white;
        text-decoration: none;
    }

.cta-trust-line {
    text-align: center;
    color: var(--muted-color);
    padding-top: 1rem;
    border-top: 1px solid rgba(230, 194, 184, 0.2);
}

    .cta-trust-line i {
        color: var(--hope-sage);
        margin-right: 0.5rem;
    }

/* ========================================
   TRUST FOOTER
   ======================================== */
.trust-footer {
    background: linear-gradient(to bottom, white 0%, #FFF8F5 100%);
    border-top: 1px solid rgba(230, 194, 184, 0.2);
}

.trust-footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

    .trust-footer-item i {
        font-size: 2rem;
        color: var(--brand-primary);
    }

    .trust-footer-item small {
        color: var(--muted-color);
        font-weight: 600;
    }

/* ========================================
   COMPARISON TABLE
   ======================================== */
.comparison-table-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 2rem;
}

.comparison-table {
    width: 100%;
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--box-shadow-soft);
    border-collapse: separate;
    border-spacing: 0;
}

    .comparison-table thead tr {
        background: linear-gradient(135deg, #F7D5E0 0%, #E6D5E8 100%);
    }

    .comparison-table th {
        padding: 1.5rem 1rem;
        text-align: center;
        color: white;
        font-weight: 700;
        font-size: 1rem;
        border-bottom: 3px solid rgba(255, 255, 255, 0.3);
    }

        .comparison-table th.feature-col {
            text-align: left;
            width: 40%;
            padding-left: 2rem;
        }

        .comparison-table th.package-col {
            width: 15%;
        }

        .comparison-table th.package-col-featured {
            background: linear-gradient(135deg, #FFB347 0%, #FFDAB9 100%);
            position: relative;
        }

            .comparison-table th.package-col-featured::after {
                content: '⭐ Most Popular';
                position: absolute;
                top: -10px;
                left: 50%;
                transform: translateX(-50%);
                background: white;
                color: var(--brand-text);
                padding: 4px 12px;
                border-radius: 50px;
                font-size: 0.75rem;
                font-weight: 700;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
                white-space: nowrap;
            }

    .comparison-table tbody tr {
        border-bottom: 1px solid rgba(230, 194, 184, 0.1);
        transition: all 0.2s ease;
    }

        .comparison-table tbody tr:hover {
            background: rgba(247, 213, 224, 0.05);
        }

    .comparison-table td {
        padding: 1.25rem 1rem;
        text-align: center;
        vertical-align: middle;
    }

        .comparison-table td.feature-name {
            text-align: left;
            font-weight: 600;
            color: var(--brand-text);
            padding-left: 2rem;
        }

        .comparison-table td.featured-col {
            background: linear-gradient(to bottom, rgba(255, 179, 71, 0.05) 0%, rgba(255, 218, 185, 0.05) 100%);
        }

/* Category Rows */
.category-row {
    background: linear-gradient(to right, #FFF8F5 0%, #FFE4E1 100%);
}

    .category-row td {
        padding: 1rem 2rem;
    }

.category-header {
    font-weight: 700;
    color: var(--brand-text);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: left !important;
}

    .category-header i {
        color: var(--brand-primary);
    }

/* Icons in Table */
.comparison-table i.fa-check {
    font-size: 1.5rem;
    color: var(--hope-sage);
}

.comparison-table i.fa-times {
    font-size: 1.5rem;
    color: var(--danger-color);
    opacity: 0.4;
}

/* Feature Details */
.feature-detail {
    display: inline-block;
    background: linear-gradient(135deg, #E3F2FD 0%, #B8D4E8 100%);
    color: var(--brand-text);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.credit-badge {
    display: inline-block;
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
    color: var(--brand-text);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

/* Responsive Table */
@media (max-width: 992px) {
    .comparison-table th,
    .comparison-table td {
        padding: 1rem 0.5rem;
        font-size: 0.9rem;
    }

        .comparison-table th.feature-col,
        .comparison-table td.feature-name {
            padding-left: 1rem;
        }

        .comparison-table th.package-col-featured::after {
            font-size: 0.7rem;
            padding: 3px 10px;
        }
}

@media (max-width: 768px) {
    .comparison-table-wrapper {
        border-radius: var(--border-radius-md);
    }

    .comparison-table {
        font-size: 0.85rem;
    }

        .comparison-table th,
        .comparison-table td {
            padding: 0.75rem 0.5rem;
        }

        .comparison-table i.fa-check,
        .comparison-table i.fa-times {
            font-size: 1.2rem;
        }

    .feature-detail,
    .credit-badge {
        padding: 4px 10px;
        font-size: 0.75rem;
    }
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 992px) {
    .pricing-card-premium {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .pricing-hero-gradient {
        padding: 60px 0 40px;
    }

    .pricing-trust-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

    .trust-badge-item {
        justify-content: center;
    }

    .package-emoji {
        font-size: 3rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }

    .calculator-card {
        padding: 2rem 1.5rem;
    }

    .usage-bar {
        height: 80px;
        flex-direction: column;
    }

    .usage-segment {
        font-size: 0.75rem;
    }

    .discount-comparison {
        flex-direction: column;
    }

    .discount-arrow {
        transform: rotate(90deg);
    }

    .discount-box {
        width: 100%;
    }

    .faq-text {
        font-size: 1rem;
    }

    .pricing-final-cta {
        padding: 60px 0;
    }

    .cta-amount {
        font-size: 3rem;
    }

    .final-cta-box {
        padding: 2rem 1.5rem;
    }
}

/* ========================================
   ACCESSIBILITY
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .package-emoji,
    .discount-arrow,
    .popular-choice-banner {
        animation: none !important;
    }
}

/* Focus states */
.btn-pricing:focus,
.pricing-faq-question:focus {
    outline: 3px solid var(--powder-pink);
    outline-offset: 3px;
}

/* Family Offer Link Styling */
.family-discount-visual .btn-pricing {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

    .family-discount-visual .btn-pricing:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
    }

/* ========================================
   HOME PAGE - POPULAR NAMES ENHANCEMENTS
   Add this to your PiyumLankaStyles.css file
   ======================================== */

/* Popular Feature Card - Special Styling */
.feature-card-popular {
    background: linear-gradient(to bottom, white 0%, #FFE4E1 100%) !important;
    border: 2px solid #FFB3D9 !important;
    position: relative;
}

    .feature-card-popular::before {
        background: linear-gradient(90deg, #FFB3D9 0%, #FFC4E8 50%, #FFB3D9 100%) !important;
        height: 6px !important;
    }

    .feature-card-popular:hover {
        transform: translateY(-12px) scale(1.03);
        box-shadow: 0 15px 50px rgba(255, 179, 217, 0.4);
    }

    .feature-card-popular .feature-icon {
        animation: fire-pulse 2s ease-in-out infinite;
    }

@keyframes fire-pulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 4px 10px rgba(255, 179, 71, 0.3));
    }

    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 6px 15px rgba(255, 179, 71, 0.5));
    }
}

/* Popular Button Styling */
.btn-outline-danger {
    border: 2px solid #FFB3D9;
    color: #C44569;
    background: transparent;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-outline-danger:hover {
        background: linear-gradient(135deg, #FFB3D9 0%, #FFC4E8 100%);
        color: white;
        transform: translateY(-2px) scale(1.02);
        box-shadow: 0 6px 20px rgba(255, 179, 217, 0.4);
        border-color: transparent;
    }

/* Large Popular Names Button */
.btn-popular-gradient {
    background: linear-gradient(135deg, #FFB3D9 0%, #FFC4E8 50%, #FFB3D9 100%);
    background-size: 200% 200%;
    border: none;
    border-radius: 50px;
    padding: 18px 40px;
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(255, 179, 217, 0.4);
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.btn-popular-gradient:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 179, 217, 0.5);
    color: white;
    text-decoration: none;
}

.btn-popular-gradient:active {
    transform: translateY(-2px) scale(1.03);
}

/* Enhanced Popular Names Preview Section */
.card.border-primary .card-body .btn-primary.btn-sm {
    background: linear-gradient(135deg, #A8DAFF 0%, #B8C5FF 100%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .card.border-primary .card-body .btn-primary.btn-sm:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 6px 20px rgba(168, 218, 255, 0.4);
        background: linear-gradient(135deg, #B8C5FF 0%, #A8DAFF 100%);
        color: white;
        text-decoration: none;
    }

.card.border-danger .card-body .btn-danger.btn-sm {
    background: linear-gradient(135deg, #FFB3D9 0%, #FFC4E8 100%);
    border: none;
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

    .card.border-danger .card-body .btn-danger.btn-sm:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 6px 20px rgba(255, 179, 217, 0.4);
        background: linear-gradient(135deg, #FFC4E8 0%, #FFB3D9 100%);
        color: white;
        text-decoration: none;
    }

/* Fire icon for Popular buttons */
.btn-primary .fa-fire,
.btn-danger .fa-fire {
    animation: fire-flicker 1.5s ease-in-out infinite;
}

@keyframes fire-flicker {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

/* Popular Names Card Hover Effects */
.card.border-primary:hover,
.card.border-danger:hover {
    transform: translateY(-8px);
    transition: all 0.3s ease;
}

.card.border-primary .mb-3:hover,
.card.border-danger .mb-3:hover {
    background: rgba(255, 179, 217, 0.1);
    transform: translateX(5px);
    transition: all 0.2s ease;
    border-radius: 8px;
}

/* Trending Badge Animation */
@keyframes trending-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 179, 217, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(255, 179, 217, 0);
    }
}

.feature-card-popular::after {
    content: '🔥 TRENDING';
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #FFB347 0%, #FF6B9D 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.4);
    animation: trending-pulse 2s infinite;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .btn-popular-gradient {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .feature-card-popular::after {
        top: -10px;
        right: 10px;
        padding: 5px 12px;
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .btn-popular-gradient {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}