:root {
    --primary-pink: #ec4899;
    --primary-purple: #8b5cf6;
    --primary-indigo: #6366f1;
    --text-white: #ffffff;
    --text-purple-light: #e9d5ff;
    --bg-gradient: linear-gradient(135deg, #581c87 0%, #3730a3 50%, #be185d 100%);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    overflow-x: hidden;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease-out;
}

.loading-screen.fade-out {
    opacity: 0;
    pointer-events: none;
}

.heart-pulse {
    animation: pulse 2s infinite;
}

.heart-ping {
    animation: ping 1s cubic-bezier(0, 0, 0, 0.2, 1) infinite;
}

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

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Main Background */
.main-bg {
    min-height: 100vh;
    background: var(--bg-gradient);
    position: relative;
}

.main-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.main-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
}

/* Floating Hearts */
.floating-hearts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-heart {
    position: absolute;
    color: #f9a8d4;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

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

/* Content */
.content-wrapper {
    position: relative;
    z-index: 10;
}

/* Header */
.header {
    padding: 1.5rem;
    position: relative;
    z-index: 20;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    padding: 0.5rem;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #f9a8d4, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 1s ease;
}

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

/* Buttons */
.btn-gradient-pink {
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-gradient-pink:hover {
    background: linear-gradient(135deg, #db2777, #7c3aed);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

.btn-gradient-blue {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    border: none;
    color: white;
    transition: all 0.3s ease;
}

.btn-gradient-blue:hover {
    background: linear-gradient(135deg, #2563eb, #0891b2);
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

/* Cards */
.gradient-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    transition: all 0.3s ease;
}

.gradient-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Step Cards */
.step-card {
    position: relative;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.step-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 2rem;
    height: 2rem;
    background: white;
    color: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.875rem;
}

/* Type Cards */
.type-card {
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.type-card .btn-start {
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    transition: all 0.3s ease;
}

.type-card .btn-start:hover {
    background: rgba(255, 255, 255, 0.3);
    color: white;
}

/* Testimonial Cards */
.testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Music Player */
.music-player {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

/* Photo Memory */
.photo-memory {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.photo-memory:hover {
    transform: scale(1.05);
}

.photo-memory img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.photo-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem;
    color: white;
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    position: relative;
    padding: 2rem 0;
    display: flex;
    align-items: center;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
}

.timeline-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-left: 2rem;
    flex: 1;
}

.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-pink), var(--primary-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    z-index: 2;
}

/* Modal */
.modal-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    display: none;
}

.modal-content {
    width: 100%;
    height: 100%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: white;
    color: black;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: bold;
    z-index: 10000;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .timeline-item::before {
        left: 1rem;
    }
    
    .timeline-icon {
        left: 1rem;
        transform: none;
    }
    
    .timeline-content {
        margin-left: 4rem;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: bold;
    color: #fff !important;
    margin-bottom: 1rem;
    background: none !important;
    -webkit-background-clip: initial !important;
    -webkit-text-fill-color: #fff !important;
    background-clip: initial !important;
    transition: all 1s ease;
  }
  @media (max-width: 768px) {
    .hero-title {
      font-size: 2.5rem;
    }
  }

/* Footer Styles - Override any conflicting styles */
footer.footer-index {
    background: transparent !important;
    backdrop-filter: none !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 2rem 0 !important;
    margin-top: 0 !important;
    position: relative !important;
    z-index: 10 !important;
    width: 100% !important;
    clear: both !important;
}

.footer-index {
    background: transparent !important;
    backdrop-filter: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: 0;
    position: relative;
    z-index: 10;
    width: 100%;
    clear: both;
}

.footer-index a:hover {
    color: #ec4899 !important;
    transition: color 0.3s ease;
}

.footer-index .bi-heart {
    animation: pulse 2s infinite;
}

.footer-index .text-purple-light {
    color: #e9d5ff !important;
}

.footer-index .text-white {
    color: #ffffff !important;
}

.footer-index .text-pink-400 {
    color: #f472b6 !important;
}

.footer-index .btn-success {
    background: #25d366 !important;
    border-color: #25d366 !important;
    color: white !important;
    font-size: 0.8rem;
    padding: 0.25rem 0.5rem;
    transition: all 0.3s ease;
}

.footer-index .btn-success:hover {
    background: #128c7e !important;
    border-color: #128c7e !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 211, 102, 0.3);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-index {
        padding: 0.75rem 0;
        margin-top: 1rem;
    }
    
    .footer-index .col-md-6:first-child {
        margin-bottom: 0.5rem;
    }
    
    .footer-index .d-flex.justify-content-md-end {
        justify-content: flex-start !important;
    }
    
    .footer-index .btn-success {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }
}

@media (max-width: 576px) {
    .footer-index {
        padding: 0.5rem 0;
        margin-top: 0.75rem;
    }
    
    .footer-index .d-flex.gap-3 {
        flex-direction: column;
        gap: 0.5rem !important;
    }
    
    .footer-index .d-flex.gap-3 a {
        font-size: 0.8rem;
    }
    
    .footer-index .btn-success {
        font-size: 0.7rem;
        padding: 0.15rem 0.3rem;
    }
}

@media (max-width: 375px) {
    .footer-index {
        padding: 0.5rem 0;
        margin-top: 0.5rem;
    }
    
    .footer-index .btn-success {
        font-size: 0.65rem;
        padding: 0.1rem 0.25rem;
    }
}

/* Call to Action Section */
.call-to-action-section {
    position: relative;
    z-index: 5;
    margin-bottom: 3rem !important;
}

.call-to-action-section .btn-gradient-pink {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border: none;
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.call-to-action-section .btn-gradient-pink:hover {
    background: linear-gradient(135deg, #db2777, #7c3aed);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(236, 72, 153, 0.4);
}