/* ========================================
   HOME PAGE STYLES
   ======================================== */

/* Hero Section */
.hero-section {
    min-height: 100vh;
    padding-top: 120px;
    display: flex;
    align-items: center;
    position: relative;
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto auto;
    gap: 2rem;
}

.hero-card-large {
    grid-column: 1 / 4;
    grid-row: 1 / 3;
    padding: 3rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.hero-card {
    position: relative;
}

/* Hero Content */
.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.3);
    border-radius: 50px;
    font-size: 14px;
    color: var(--accent-gradient-end);
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.hero-badge span::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 2s ease-in-out infinite;
}

.hero-title {
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-name h2 {
    font-size: clamp(28px, 3vw, 42px);
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 1rem;
}

.hero-description {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 600px;
}

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

/* Hero Image */
.hero-image {
    flex-shrink: 0;
}

.hero-image-wrapper {
    width: 300px;
    height: 300px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.hero-image-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    opacity: 0.2;
}

.hero-avatar {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.05));
    color: var(--accent-gradient-end);
}

/* Small Hero Cards */
.hero-card h3 {
    font-size: 20px;
    margin-bottom: 0.5rem;
}

.hero-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-gradient-end);
    font-weight: 600;
    font-size: 14px;
    transition: all var(--transition-fast);
}

.card-link:hover {
    gap: 0.8rem;
}

.card-link i {
    transition: transform var(--transition-fast);
}

.card-link:hover i {
    transform: translateX(5px);
}

/* Services Icons */
.services-icons {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.services-icons span {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 10px;
    font-size: 20px;
    color: var(--accent-gradient-end);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.services-icons span:hover {
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    color: var(--text-primary);
    transform: translateY(-5px);
}

/* Profile Icons */
.profile-icons {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
}

.profile-icons a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 10px;
    font-size: 20px;
    color: var(--accent-gradient-end);
    transition: all var(--transition-fast);
}

.profile-icons a:hover {
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    color: var(--text-primary);
    transform: translateY(-5px);
}

/* Stats Section */
.stats-section {
    padding: 6rem 0;
}

.stats-grid {
    gap: 2rem;
}

.stat-card {
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-number {
    font-size: clamp(48px, 6vw, 64px);
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-gradient-start), var(--accent-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-number::after {
    content: '+';
    color: var(--accent-gradient-end);
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.stat-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 24px;
    color: var(--accent-gradient-end);
    opacity: 0.2;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
}

.cta-card {
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-headline {
    font-size: clamp(32px, 4vw, 48px);
    margin-bottom: 1rem;
}

.cta-subtext {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 18px;
}

.cta-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    display: flex;
    gap: 2rem;
    justify-content: flex-end;
    align-items: center;
    padding: 4rem;
    pointer-events: none;
    opacity: 0.1;
}

.cta-circle {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 2px solid var(--accent-gradient-end);
    animation: pulse 4s ease-in-out infinite;
}

.cta-circle:nth-child(2) {
    animation-delay: 1s;
}

.cta-circle:nth-child(3) {
    animation-delay: 2s;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-card-large {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-card-large {
        grid-column: 1 / 3;
    }
    
    .hero-image-wrapper {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .hero-card-large {
        grid-column: 1;
        grid-row: auto;
        padding: 2rem;
    }
    
    .hero-image-wrapper {
        width: 200px;
        height: 200px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .cta-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .services-icons,
    .profile-icons {
        gap: 0.5rem;
    }
    
    .services-icons span,
    .profile-icons a {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}
