/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: #050505;
    color: #ffffff;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    background-image: url('hero_background.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Dark Overlay for Readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.3),
            rgba(20, 0, 10, 0.6));
    z-index: 1;
}

/* Glassmorphism Content Container */
.content-wrapper {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 3rem 4rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(255, 0, 127, 0.2);
    animation: fadeInUp 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* Typography */
.main-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #fff, #ff69b4, #fff);
    /* White to Pink to White */
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 30px rgba(255, 105, 180, 0.5);
    letter-spacing: 2px;
}

.subtitle {
    font-size: 1.2rem;
    color: #eccce2;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 1px;
}

/* Premium Button Styling */
.cta-button {
    position: relative;
    display: inline-block;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(90deg, #ff0080, #7928ca);
    border-radius: 50px;
    overflow: hidden;
    transition: 0.5s;
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.4);
}

.cta-button.line-btn {
    background: linear-gradient(90deg, #06C755, #00B900);
    box-shadow: 0 0 20px rgba(6, 199, 85, 0.4);
}

.cta-button.line-btn:hover {
    box-shadow: 0 0 40px rgba(6, 199, 85, 0.7);
    background: linear-gradient(90deg, #06C755, #00E000);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 40px rgba(255, 0, 128, 0.7);
    background: linear-gradient(90deg, #ff0080, #ff00cc);
}

.cta-button span {
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Notification Container & Button */
.notification-container {
    margin-top: 1.5rem;
    animation: fadeInUp 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.secondary-button {
    background: linear-gradient(90deg, #ff0080, #7928ca);
    border: none;
    color: #fff;
    padding: 16px 40px; /* Adjusted to match CTA button */
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem; /* Adjusted to match CTA button */
    font-weight: 600; /* Adjusted to match CTA button */
    text-transform: uppercase;
    letter-spacing: 2px; /* Adjusted to match CTA button */
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 20px rgba(255, 0, 128, 0.4);
}

.secondary-button:hover {
    background: linear-gradient(90deg, #ff0080, #ff00cc);
    box-shadow: 0 0 40px rgba(255, 0, 128, 0.7);
    transform: translateY(-2px);
}

.secondary-button .icon {
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px rgba(255, 0, 128, 0.5));
}

/* Modal Overlay (Matching the site's dark luxury feel) */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.4s ease;
}

/* Modal Card (Matching .content-wrapper style) */
.modal-card {
    background: rgba(20, 20, 20, 0.8);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 420px;
    border-radius: 28px;
    padding: 2.5rem;
    position: relative;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(255, 0, 128, 0.15);
    text-align: center;
    animation: modalPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalPop {
    from { transform: scale(0.8) translateY(30px); opacity: 0; }
    to { transform: scale(1) translateY(0); opacity: 1; }
}

.modal-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(45deg, #fff, #ff69b4);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.8rem;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    color: #ff0080;
}

.modal-body p {
    color: #eccce2;
    font-size: 0.95rem;
    font-weight: 300;
    margin-bottom: 2rem;
}

/* Steps Styling */
.steps {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
    text-align: left;
}

.step {
    display: flex;
    align-items: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 16px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-num {
    background: linear-gradient(135deg, #ff0080, #7928ca);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
    box-shadow: 0 0 10px rgba(255, 0, 128, 0.4);
}

.step p {
    margin-bottom: 0;
    color: #fff;
    font-size: 0.9rem;
}

.step strong {
    color: #ff69b4;
}

.modal-cta {
    width: 100%;
    padding: 16px;
    border-radius: 50px;
    border: none;
    background: linear-gradient(90deg, #ff0080, #7928ca);
    color: white;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(255, 0, 128, 0.3);
    transition: 0.3s;
}

.modal-cta:hover {
    box-shadow: 0 8px 25px rgba(255, 0, 128, 0.5);
    transform: translateY(-2px);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .main-title {
        font-size: 3rem;
    }

    .content-wrapper {
        padding: 2rem;
        margin: 0 1rem;
        width: 90%;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 1rem;
    }
}