/* Modern Professional Hero Section */

.dlm-hero-section {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dlm-hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dlm-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    margin-bottom: 25px;
    animation: fadeIn 1s ease-out 0.3s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.dlm-hero-badge i {
    color: #ffd700;
    font-size: 18px;
}

.dlm-hero-badge span {
    color: white;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.dlm-hero-content h1 {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.dlm-hero-tagline {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin-bottom: 35px;
    font-weight: 400;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.dlm-hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.dlm-hero-stat {
    text-align: center;
    padding: 15px 25px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.dlm-hero-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.dlm-hero-stat strong {
    display: block;
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffd700;
    line-height: 1;
    margin-bottom: 5px;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}

.dlm-hero-stat span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
}

.dlm-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.dlm-btn-primary,
.dlm-btn-secondary {
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: inline-block;
}

.dlm-btn-primary {
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
}

.dlm-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.5);
    background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
    color: white;
}

.dlm-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.dlm-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: white;
}

/* Modern Hero Navigation Links */
.dlm-hero-nav {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    animation: fadeIn 1s ease-out 1s both;
}

.dlm-hero-nav-link {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dlm-hero-nav-link i {
    font-size: 1rem;
    opacity: 0.9;
}

.dlm-hero-nav-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dlm-hero-nav-link span {
    position: relative;
}

/* Responsive Design */
@media (max-width: 992px) {
    .dlm-hero-content h1 {
        font-size: 3rem;
    }
    
    .dlm-hero-tagline {
        font-size: 1.15rem;
    }
    
    .dlm-hero-stat strong {
        font-size: 1.8rem;
    }
    
    .dlm-hero-stats {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .dlm-hero-section {
        min-height: 75vh;
    }
    
    .dlm-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .dlm-hero-tagline {
        font-size: 1.1rem;
    }
    
    .dlm-hero-stats {
        gap: 15px;
    }
    
    .dlm-hero-stat {
        padding: 12px 20px;
    }
    
    .dlm-hero-stat strong {
        font-size: 1.6rem;
    }
    
    .dlm-hero-stat span {
        font-size: 0.85rem;
    }
    
    .dlm-hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .dlm-btn-primary,
    .dlm-btn-secondary {
        width: 100%;
        max-width: 300px;
    }
    
    .dlm-hero-nav {
        gap: 10px;
        margin-top: 30px;
    }
    
    .dlm-hero-nav-link {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .dlm-hero-nav-link i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .dlm-hero-content h1 {
        font-size: 2rem;
    }
    
    .dlm-hero-badge {
        padding: 8px 16px;
    }
    
    .dlm-hero-badge span {
        font-size: 13px;
    }
    
    .dlm-hero-stat {
        padding: 10px 15px;
    }
    
    .dlm-btn-primary,
    .dlm-btn-secondary {
        padding: 14px 30px;
        font-size: 1rem;
    }
}
