/* Hero Section - AllAssignmentHelp Style Design */

.hero {
    background: linear-gradient(135deg, #0a0a0f 0%, #0f0a15 50%, #0a0a0f 100%);
    padding: 40px 20px 20px 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.35) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
    filter: blur(40px);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 10s ease-in-out infinite reverse;
    z-index: 0;
    filter: blur(40px);
}

/* Header with logo, reviews, phone */
.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    padding: 0 20px;
}

.hero-logo {
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-reviews {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #d1d5db;
}

.hero-reviews-stars {
    color: #fbbf24;
    font-size: 1.2rem;
}

.hero-phone {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.15));
    border: 2px solid rgba(168, 85, 247, 0.5);
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-phone:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(236, 72, 153, 0.3));
    border-color: rgba(236, 72, 153, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.3);
}

/* Main container - left and right */
.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    padding: 20px 20px 40px 20px;
    max-width: 1400px;
    margin: 0 auto;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

/* Left side - headline, subheading, stats */
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 20px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.1));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #a855f7;
    width: fit-content;
    margin-bottom: 10px;
}

.hero-headline {
    line-height: 1.2;
}

.hero-h1 {
    font-size: 3rem;
    font-weight: 900;
    color: #ffffff;
    margin: 0;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.hero-h1-accent {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: underline;
    text-decoration-color: #ec4899;
    text-decoration-thickness: 3px;
    text-underline-offset: 5px;
}

.hero-subheading {
    font-size: 1.1rem;
    color: #d1d5db;
    margin: 0 0 25px 0;
    line-height: 1.6;
    font-weight: 500;
}

.hero-subheading strong {
    font-weight: 700;
    color: #ffffff;
}

/* Benefits Container */
.hero-benefits-container {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(236, 72, 153, 0.1));
    border: 1.5px solid rgba(168, 85, 247, 0.4);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.1), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

.hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: row;
    gap: 20px;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #d1d5db;
    font-weight: 500;
}

.hero-checkmark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: white;
    border-radius: 50%;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.hero-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    border-radius: 50%;
    flex-shrink: 0;
    padding: 4px;
}

.hero-icon svg {
    width: 100%;
    height: 100%;
    fill: white;
}

/* Trust Badges Container */
.hero-trust-badges-container {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.12), rgba(168, 85, 247, 0.08));
    border: 1.5px solid rgba(236, 72, 153, 0.35);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(236, 72, 153, 0.08), inset 0 1px 1px rgba(255, 255, 255, 0.1);
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badge-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all var(--transition-base);
}

.trust-badge-item:hover {
    transform: translateY(-2px);
}

.trust-badge-logo {
    height: 50px;
    width: 50px;
    object-fit: contain;
    flex-shrink: 0;
}

.trust-badge-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trust-badge-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
}

.trust-badge-stars {
    font-size: 0.75rem;
    color: #fbbf24;
    letter-spacing: 1px;
}

.trust-badge-rating {
    font-size: 1.1rem;
    font-weight: 800;
    color: #a855f7;
}

/* Stats boxes */
.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.08), rgba(236, 72, 153, 0.05));
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(168, 85, 247, 0.1);
    backdrop-filter: blur(10px);
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 12px 40px rgba(168, 85, 247, 0.15);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(236, 72, 153, 0.08));
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 10px 0;
}

.stat-label {
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.5;
    margin: 0;
}

/* Right side - form card */
.hero-right {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.hero-form-card {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.18), rgba(236, 72, 153, 0.12));
    border-radius: 24px;
    padding: 45px;
    box-shadow: 0 20px 60px rgba(168, 85, 247, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.15);
    width: 100%;
    max-width: 480px;
    border: 1.5px solid rgba(168, 85, 247, 0.45);
    backdrop-filter: blur(30px);
}

.form-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 12px 0;
    text-align: center;
    line-height: 1.3;
}

.form-description {
    font-size: 0.9rem;
    color: #9ca3af;
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.5;
}

.hero-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #a78bfa;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: none;
}

.form-group input,
.form-group select {
    padding: 12px 14px;
    border: 1.5px solid rgba(168, 85, 247, 0.25);
    border-radius: 6px;
    background: rgba(168, 85, 247, 0.06);
    font-size: 0.9rem;
    color: #ffffff;
    transition: all 0.3s ease;
    font-family: inherit;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group select::placeholder {
    color: #9ca3af;
}

.form-group input:hover,
.form-group select:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.4);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    background: rgba(168, 85, 247, 0.12);
    border-color: rgba(236, 72, 153, 0.6);
    box-shadow: 0 0 0 3px rgba(168, 85, 247, 0.15);
}

.form-cta {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    width: 100%;
    box-shadow: 0 8px 20px rgba(168, 85, 247, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(168, 85, 247, 0.5);
    background: linear-gradient(135deg, #9333ea, #db2777);
}

.form-cta:active {
    transform: translateY(-1px);
}

.form-guarantee {
    text-align: center;
    margin-top: 14px;
    font-size: 0.8rem;
    color: #9ca3af;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-guarantee::before {
    content: '✓';
    color: #10b981;
    font-weight: 700;
    font-size: 0.9rem;
}

.form-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    color: #9ca3af;
}

.form-footer-name {
    font-weight: 700;
    color: #ffffff;
}

.form-footer-company {
    color: #6b7280;
    font-size: 0.8rem;
}

.form-footer-text {
    margin-top: 8px;
    line-height: 1.4;
}

/* Bottom banner */
.hero-bottom {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px;
    margin-top: 40px;
    position: relative;
    z-index: 1;
}

.whatsapp-badge {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

.whatsapp-badge:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 30px rgba(16, 185, 129, 0.4);
}

.discount-banner {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.08));
    border: 2px dashed rgba(168, 85, 247, 0.4);
    border-radius: 8px;
    padding: 15px 20px;
    flex-grow: 1;
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.discount-text {
    font-size: 0.9rem;
    color: #d1d5db;
}

.discount-text strong {
    font-weight: 700;
    color: #ffffff;
}

.discount-link {
    background: linear-gradient(135deg, #a855f7, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.discount-link:hover {
    text-decoration: underline;
}

.close-banner {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #6b7280;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

.close-banner:hover {
    color: #ffffff;
}

/* Responsive */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-h1 {
        font-size: 2.2rem;
    }

    .hero-form-card {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 20px;
        min-height: auto;
    }

    .hero-header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        margin-bottom: 20px;
    }

    .hero-container {
        padding: 10px 0 30px 0;
        gap: 30px;
        align-items: flex-start;
    }

    .hero-left {
        padding-top: 10px;
    }

    .hero-h1 {
        font-size: 1.8rem;
    }

    .hero-benefits-container {
        padding: 15px;
        margin-bottom: 15px;
    }

    .hero-bullets {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        justify-content: center;
    }

    .hero-trust-badges-container {
        padding: 12px;
    }

    .hero-trust-badges {
        gap: 12px;
        flex-wrap: wrap;
    }

    .hero-icon {
        width: 20px;
        height: 20px;
        padding: 2px;
    }

    .trust-badge-item {
        gap: 8px;
        flex: 0 1 calc(50% - 6px);
        justify-content: center;
    }

    .trust-badge-logo {
        height: 32px;
        width: 32px;
        min-width: 32px;
    }

    .trust-badge-name {
        font-size: 0.7rem;
    }

    .trust-badge-stars {
        font-size: 0.65rem;
    }

    .trust-badge-rating {
        font-size: 0.9rem;
    }

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

    .hero-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .discount-banner {
        width: 100%;
    }
}
