/* Modern CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FF6B6B;
    --secondary-color: #4ECDC4;
    --accent-color: #45B7D1;
    --gradient-1: linear-gradient(135deg, #FF6B6B 0%, #FF8E53 100%);
    --gradient-2: linear-gradient(135deg, #4ECDC4 0%, #45B7D1 100%);
    --gradient-3: linear-gradient(135deg, #FF8E53 0%, #FF6B6B 100%);
    --text-color: #2D3436;
    --light-bg: #F5F6FA;
    --white: #ffffff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--light-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--gradient-1);
    color: var(--white);
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
    animation: backgroundMove 20s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.1) 100%);
}

@keyframes backgroundMove {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transform: translateY(0);
    transition: all 0.5s ease;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero-content:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-content .tagline {
    font-size: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-description {
    font-size: 1.2rem;
    margin-top: 1rem;
    animation: fadeInUp 1s ease 0.6s;
    opacity: 0;
    animation-fill-mode: forwards;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom right, var(--white) 49%, var(--light-bg) 51%);
}

.services h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 0 1rem;
}

.service-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    animation: fadeInUp 0.6s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow);
}

.service-card i {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.service-card:hover i {
    transform: scale(1.1) rotate(5deg);
    color: var(--secondary-color);
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--text-color);
    position: relative;
    z-index: 2;
    font-weight: 600;
    margin-bottom: 1rem;
}

.service-description {
    color: #666;
    margin: 1rem 0;
    position: relative;
    z-index: 2;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.learn-more:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

.learn-more i {
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(5px);
}

/* Add these styles after the service-card styles and before the requirements section */

.validity-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0.5rem 0;
    padding: 0.5rem 1rem;
    background: rgba(78, 205, 196, 0.1);
    border-radius: 20px;
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.5s ease-out;
}

.validity-badge i {
    color: var(--secondary-color);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.validity-badge:hover {
    background: rgba(78, 205, 196, 0.2);
    transform: translateX(5px);
}

.validity-badge:hover i {
    transform: scale(1.2);
}

.requirement-badge {
    background: rgba(255, 107, 107, 0.1);
    color: var(--primary-color);
}

.requirement-badge i {
    color: var(--primary-color);
}

.requirement-badge:hover {
    background: rgba(255, 107, 107, 0.2);
}

.price-badge {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin: 1rem 0;
    padding: 0.8rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.price-badge i {
    color: var(--white);
}

.price-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

/* Requirements Section */
.requirements {
    padding: 8rem 0;
    background: var(--light-bg);
    position: relative;
}

.requirements h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.requirements h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.requirements-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    padding: 0 1rem;
}

.requirement-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s ease-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 300px;
}

.requirement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.requirement-card:hover::before {
    opacity: 0.05;
}

.requirement-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow);
}

.requirement-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.requirement-card:hover i {
    transform: scale(1.1) rotate(5deg);
    color: var(--secondary-color);
}

.requirement-card h3 {
    font-size: 1.4rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.requirement-card p {
    font-size: 1.2rem;
    color: var(--text-color);
    position: relative;
    z-index: 2;
}

.requirement-description {
    margin-top: 1rem;
    color: #666;
    font-size: 1rem;
    position: relative;
    z-index: 2;
}

/* Pricing Section */
.pricing {
    padding: 8rem 0;
    background: var(--white);
    position: relative;
}

.pricing h2 {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 4rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.pricing-content {
    display: flex;
    justify-content: center;
    padding: 0 1rem;
}

.price-card {
    background: var(--gradient-2);
    padding: 4rem;
    border-radius: 40px;
    text-align: center;
    color: var(--white);
    box-shadow: var(--shadow);
    transform: scale(1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: float 6s ease-in-out infinite;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="20" height="20" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><rect width="1" height="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.1;
}

.price-card:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.price-card i {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.price-card h3 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    background: linear-gradient(45deg, #fff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.price-card p {
    font-size: 1.4rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    margin-bottom: 2rem;
}

.price-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 1rem 0 2rem;
    padding: 0 1rem;
    opacity: 0.95;
}

.price-features {
    margin: 2rem 0;
    text-align: left;
}

.price-features ul {
    list-style: none;
}

.price-features li {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
}

.price-features i {
    font-size: 1.2rem;
    color: var(--white);
    text-shadow: none;
}

.price-features .validity-badge {
    margin: 1rem 0;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--light-bg);
    text-align: center;
    position: relative;
}

.contact h2 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.contact h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.contact-content p {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: var(--text-color);
    font-weight: 500;
}

.contact-description {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #666;
    font-size: 1.1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    font-size: 3rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
    position: relative;
    display: inline-block;
}

.social-link .tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1rem;
    background: var(--text-color);
    color: var(--white);
    border-radius: 5px;
    font-size: 0.9rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.social-link:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.social-link:hover {
    color: var(--secondary-color);
    transform: translateY(-5px) scale(1.1);
}

.discord-link {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add animation for badges */
@keyframes badgeAppear {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.validity-badge {
    animation: badgeAppear 0.5s ease-out forwards;
    opacity: 0;
}

.validity-badge:nth-child(1) { animation-delay: 0.1s; }
.validity-badge:nth-child(2) { animation-delay: 0.2s; }
.validity-badge:nth-child(3) { animation-delay: 0.3s; }

/* Add hover effect to cards with badges */
.service-card:hover .validity-badge,
.requirement-card:hover .validity-badge {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-content h2 {
        font-size: 2.2rem;
    }

    .hero-content .tagline {
        font-size: 1.4rem;
    }

    .services-grid,
    .requirements-content {
        grid-template-columns: 1fr;
    }

    .price-card {
        padding: 3rem;
    }

    .service-card,
    .requirement-card {
        padding: 2rem;
        min-height: auto;
    }

    .validity-badge {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
} 