/* =====================================================
   WELCOME LANDING PAGE - REUSABLE STYLES
   ===================================================== */

/* === GLOBAL RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* === BACKGROUND WITH IMAGE === */
.floating-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(135deg,
            rgba(168, 115, 186, 0.1) 0%,
            rgba(255, 255, 255, 0.95) 100%),
        url('../images/background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
}

.floating-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(168, 115, 186, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(196, 145, 212, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

/* === MODERN SUBSCRIPTION BANNER === */
.subscription-banner-modern {
    background: linear-gradient(135deg,
        rgba(168, 115, 186, 0.08) 0%,
        rgba(212, 165, 224, 0.12) 50%,
        rgba(168, 115, 186, 0.08) 100%);
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(168, 115, 186, 0.15);
    animation: slideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
}

.subscription-banner-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Banner Header */
.subscription-banner-header {
    margin-bottom: 2rem;
    text-align: center;
}

.banner-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.banner-icon-glow {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a873ba, #c491d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 30px rgba(168, 115, 186, 0.3);
    animation: gentle-pulse 3s ease-in-out infinite;
    position: relative;
}

.banner-icon-glow::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: linear-gradient(135deg, #a873ba, #c491d4);
    opacity: 0.3;
    animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

@keyframes gentle-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.banner-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #a873ba;
    margin: 0;
    text-align: right;
    background: linear-gradient(135deg, #a873ba, #8a5aa1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-subtitle {
    font-size: 1rem;
    color: #8a5aa1;
    margin: 0.5rem 0 0 0;
    text-align: right;
    font-weight: 500;
}

/* Subscriptions Grid */
.subscriptions-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Subscription Card */
.subscription-card-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(168, 115, 186, 0.15);
    border: 2px solid rgba(168, 115, 186, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.subscription-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #a873ba, #c491d4, #a873ba);
    background-size: 200% 100%;
    animation: gradient-slide 3s ease infinite;
}

@keyframes gradient-slide {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.subscription-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(168, 115, 186, 0.25);
    border-color: rgba(168, 115, 186, 0.3);
}

/* Status Badge */
.status-badge-modern {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.status-active .status-badge-modern {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.9), rgba(72, 187, 99, 0.9));
    color: white;
}

.status-exhausted .status-badge-modern {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.9), rgba(255, 152, 0, 0.9));
    color: white;
}

.status-expired .status-badge-modern {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.9), rgba(200, 35, 51, 0.9));
    color: white;
}

/* Package Icon */
.package-icon-modern {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-emoji {
    font-size: 3rem;
    position: relative;
    z-index: 2;
    animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(168, 115, 186, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

/* Package Name */
.package-name-modern {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 700;
    color: #6d4480;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.package-name-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #a873ba, transparent);
    border-radius: 2px;
}

/* Stats Grid */
.stats-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.stat-item-modern {
    background: linear-gradient(135deg,
        rgba(168, 115, 186, 0.05) 0%,
        rgba(196, 145, 212, 0.08) 100%);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.stat-item-modern.full-width {
    grid-column: 1 / -1;
}

.stat-item-modern:hover {
    background: linear-gradient(135deg,
        rgba(168, 115, 186, 0.1) 0%,
        rgba(196, 145, 212, 0.12) 100%);
    transform: translateY(-2px);
}

.stat-icon-modern {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #a873ba, #c491d4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(168, 115, 186, 0.3);
}

.stat-content {
    flex: 1;
    text-align: right;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: #8a5aa1;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.stat-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #a873ba, #6d4480);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-value-small {
    display: block;
    font-size: 0.9rem;
    color: #6d4480;
    font-weight: 600;
    margin-top: 0.25rem;
}

/* Action Button */
.subscription-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #a873ba, #b584c7);
    color: white;
    text-decoration: none;
    border-radius: 15px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(168, 115, 186, 0.3);
    position: relative;
    overflow: hidden;
}

.subscription-action-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.subscription-action-btn:hover::before {
    left: 100%;
}

.subscription-action-btn:hover {
    background: linear-gradient(135deg, #9d64b2, #a873ba);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(168, 115, 186, 0.4);
    color: white;
    text-decoration: none;
}

.subscription-action-btn .arrow-icon {
    transition: transform 0.3s ease;
}

.subscription-action-btn:hover .arrow-icon {
    transform: translateX(-5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .subscriptions-grid-modern {
        grid-template-columns: 1fr;
    }

    .banner-title {
        font-size: 1.4rem;
    }

    .banner-subtitle {
        font-size: 0.9rem;
    }

    .subscription-card-modern {
        padding: 1.5rem;
    }

    .stats-grid-modern {
        grid-template-columns: 1fr;
    }
}

/* === HERO SECTION === */
.hero-section {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: white;
    padding: 3rem 2rem;
    min-height: 100vh;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    width: 100%;
    gap: 4rem;
}

.hero-text-side {
    flex: 1;
    text-align: right;
    padding-right: 2rem;
}

.hero-logo-side {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo {
    width: 500px;
    height: auto;
    max-width: 100%;
    filter: drop-shadow(0 15px 30px rgba(168, 115, 186, 0.2));
    transition: all 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05) rotate(2deg);
    filter: drop-shadow(0 20px 40px rgba(168, 115, 186, 0.3));
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--primary-color, #a873ba);
    margin-bottom: 1.5rem;
    font-family: 'Cairo', sans-serif;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.hero-title:hover {
    transform: translateX(-10px);
    text-shadow: 2px 2px 10px rgba(168, 115, 186, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 180px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent);
    transition: left 0.6s ease;
}

.hero-btn:hover::before {
    left: 100%;
}

.hero-btn.primary {
    background: linear-gradient(135deg, #a873ba, #b584c7);
    color: white;
    box-shadow: 0 8px 25px rgba(168, 115, 186, 0.4);
}

.hero-btn.primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(168, 115, 186, 0.5);
    background: linear-gradient(135deg, #9d64b2, #a873ba);
    text-decoration: none;
    color: white;
}

.hero-btn.secondary {
    background: transparent;
    color: #a873ba;
    border: 2px solid #a873ba;
    box-shadow: 0 5px 20px rgba(168, 115, 186, 0.2);
}

.hero-btn.secondary:hover {
    background: linear-gradient(135deg, #a873ba, #b584c7);
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(168, 115, 186, 0.4);
    text-decoration: none;
    border-color: transparent;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    font-size: 2rem;
    color: #a873ba;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-indicator:hover span {
    color: #9d64b2;
    transform: scale(1.3);
    animation-play-state: paused;
}

/* === CONTAINER === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* === SECTIONS === */
section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color, #a873ba);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    transition: all 0.3s ease;
}

.section-title:hover {
    transform: translateY(-5px);
    text-shadow: 0 5px 15px rgba(168, 115, 186, 0.2);
}

.section-title.center {
    display: block;
    text-align: center;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #a873ba, #b584c7);
    border-radius: 2px;
    transition: width 0.3s ease;
}

.section-title:hover::after {
    width: 100px;
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-description {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 3rem;
}

/* === STATS SECTION === */
.stats-section {
    background: linear-gradient(135deg, rgba(168, 115, 186, 0.08) 0%, rgba(212, 165, 224, 0.12) 50%, rgba(168, 115, 186, 0.08) 100%);
    padding: 3rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(168, 115, 186, 0.1);
    transition: all 0.4s ease;
    border: 2px solid rgba(168, 115, 186, 0.1);
    cursor: pointer;
}

.stat-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(168, 115, 186, 0.2);
    border-color: rgba(168, 115, 186, 0.3);
}

.stat-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.2) rotateY(360deg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #a873ba;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #666;
}

/* === GALLERY SECTION === */
.gallery-section {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(168, 115, 186, 0.1);
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 20px 40px rgba(168, 115, 186, 0.25);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(168, 115, 186, 0.8) 0%,
        rgba(181, 132, 199, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    font-size: 4rem;
    animation: heartBeat 1s infinite;
}

/* === PACKAGES SECTION === */
.packages-section {
    background: linear-gradient(135deg, rgba(168, 115, 186, 0.08) 0%, rgba(212, 165, 224, 0.12) 50%, rgba(168, 115, 186, 0.08) 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.package-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(168, 115, 186, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(168, 115, 186, 0.1);
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(168, 115, 186, 0.05),
        transparent);
    transition: left 0.8s ease;
    z-index: 0;
}

.package-card:hover::before {
    left: 100%;
}

.package-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(168, 115, 186, 0.25);
    border-color: rgba(168, 115, 186, 0.3);
}

.package-card.featured {
    border-color: #a873ba;
    box-shadow: 0 15px 40px rgba(168, 115, 186, 0.3);
    transform: scale(1.05);
}

.package-card.featured:hover {
    transform: translateY(-15px) scale(1.1);
}

.package-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ddd;
    color: #666;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.package-badge.popular {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
}

.package-badge.premium {
    background: linear-gradient(135deg, #a873ba, #b584c7);
    color: white;
}

.package-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.package-card:hover .package-icon {
    transform: scale(1.3) rotateY(360deg);
    text-shadow: 0 0 20px rgba(168, 115, 186, 0.5);
}

.package-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #a873ba;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.package-price {
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: #a873ba;
}

.price-currency {
    font-size: 1.2rem;
    color: #666;
    margin-right: 0.5rem;
}

.package-features {
    list-style: none;
    text-align: right;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.package-features li {
    padding: 0.75rem 0;
    color: #555;
    border-bottom: 1px solid rgba(168, 115, 186, 0.1);
}

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

.package-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #a873ba, #b584c7);
    color: white;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.package-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(168, 115, 186, 0.4);
    text-decoration: none;
    color: white;
}

/* === TEMPLATES SECTION === */
.templates-section {
    background: white;

}

.templates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.template-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(168, 115, 186, 0.1);
    transition: all 0.4s ease;
    border: 2px solid rgba(168, 115, 186, 0.1);
}

.template-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(168, 115, 186, 0.25);
    border-color: rgba(168, 115, 186, 0.3);
}

.template-image {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}

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

.template-card:hover .template-image img {
    transform: scale(1.1);
}

.template-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(168, 115, 186, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.template-card:hover .template-overlay {
    opacity: 1;
}

.template-btn {
    background: white;
    color: #a873ba;
    padding: 0.75rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.template-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-decoration: none;
}

.template-info {
    padding: 1.5rem;
    text-align: center;
}

.template-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #a873ba;
    margin-bottom: 0.5rem;
}

.template-description {
    font-size: 0.9rem;
    color: #666;
}

.templates-cta {
    text-align: center;
    margin-top: 3rem;
}

.view-all-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #a873ba, #b584c7);
    color: white;
    border-radius: 30px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s ease;
    font-size: 1.1rem;
}

.view-all-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(168, 115, 186, 0.5);
    text-decoration: none;
    color: white;
}

/* === FEATURES SECTION === */
.features-section {
    background: linear-gradient(135deg, rgba(168, 115, 186, 0.08) 0%, rgba(212, 165, 224, 0.12) 50%, rgba(168, 115, 186, 0.08) 100%);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(168, 115, 186, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(168, 115, 186, 0.1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(168, 115, 186, 0.1),
        transparent);
    transition: left 0.8s ease;
    z-index: 0;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-15px) scale(1.05);
    box-shadow: 0 25px 50px rgba(168, 115, 186, 0.25);
    border-color: rgba(168, 115, 186, 0.3);
}

.feature-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.3) rotateY(360deg);
    text-shadow: 0 0 20px rgba(168, 115, 186, 0.5);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #a873ba;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-title {
    color: #9d64b2;
    transform: translateY(-5px);
}

.feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-description {
    color: #555;
    transform: translateY(-3px);
}

/* === TESTIMONIALS SECTION === */
.testimonials-section {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.9) 0%,
        rgba(248, 250, 252, 0.95) 100%);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(168, 115, 186, 0.15);
    transition: all 0.4s ease;
    border: 2px solid rgba(168, 115, 186, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(168, 115, 186, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    transition: all 0.6s ease;
    z-index: 0;
}

.testimonial-card:hover::after {
    width: 300px;
    height: 300px;
}

.testimonial-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 20px 60px rgba(168, 115, 186, 0.25);
    border-color: rgba(168, 115, 186, 0.3);
}

.testimonial-stars {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.author-avatar {
    font-size: 2.5rem;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.2) rotate(10deg);
}

.author-info {
    text-align: right;
}

.author-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: #a873ba;
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
}

/* === FINAL CTA SECTION === */
.final-cta-section {
    background: linear-gradient(135deg, rgba(168, 115, 186, 0.08) 0%, rgba(212, 165, 224, 0.12) 50%, rgba(168, 115, 186, 0.08) 100%);
    position: relative;
    overflow: hidden;
}


.cta-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(168, 115, 186, 0.2);
    border: 2px solid rgba(168, 115, 186, 0.1);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    text-align: center;
}

.cta-content:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(168, 115, 186, 0.3);
    border-color: rgba(168, 115, 186, 0.3);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color, #a873ba);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.cta-content:hover .cta-title {
    transform: scale(1.05);
    text-shadow: 0 5px 15px rgba(168, 115, 186, 0.2);
}

.cta-text {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 180px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent);
    transition: left 0.6s ease;
}

.cta-btn:hover::before {
    left: 100%;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #a873ba, #b584c7);
    color: white;
    box-shadow: 0 8px 25px rgba(168, 115, 186, 0.4);
}

.cta-btn.primary:hover {
    transform: translateY(-5px) scale(1.05) rotateX(10deg);
    box-shadow: 0 15px 40px rgba(168, 115, 186, 0.5);
    background: linear-gradient(135deg, #9d64b2, #a873ba);
    text-decoration: none;
    color: white;
}

.cta-btn.secondary {
    background: transparent;
    color: #a873ba;
    border: 2px solid #a873ba;
    box-shadow: 0 5px 20px rgba(168, 115, 186, 0.2);
}

.cta-btn.secondary:hover {
    background: linear-gradient(135deg, #a873ba, #b584c7);
    color: white;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(168, 115, 186, 0.4);
    text-decoration: none;
    border-color: transparent;
}

/* === ANIMATIONS === */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-15px); }
    60% { transform: translateY(-8px); }
}

@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.1); }
    50% { transform: scale(1); }
    75% { transform: scale(1.15); }
}

@keyframes subtle-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-60px, -60px); }
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
    .subscription-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .subscription-info {
        text-align: center;
    }

    .subscription-info h3 {
        font-size: 1.1rem;
    }

    .manage-subscription-btn {
        width: 100%;
    }

    .hero-section {
        min-height: auto;
        padding: 2rem 1rem;
    }

    .hero-content {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
    }

    .hero-text-side {
        text-align: center;
        padding-right: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-logo {
        width: 250px;
    }

    .hero-buttons {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-grid,
    .gallery-grid,
    .packages-grid,
    .templates-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .container {
        padding: 0 1rem;
    }

    section {
        padding: 3rem 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn,
    .hero-btn {
        width: 100%;
        max-width: 300px;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .feature-card:hover,
    .package-card:hover,
    .template-card:hover,
    .testimonial-card:hover {
        transform: translateY(-8px) scale(1.02);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-logo {
        width: 200px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}
