/* ===== HERO SECTION ===== */
.hero {
    padding: 150px 0 100px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f9f5 0%, #ffffff 100%);
    margin-bottom: 40px;
}

.hero-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-decor {
    position: absolute;
    width: 30%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
}

.left-decor {
    left: 0;
    justify-content: flex-start;
    padding-left: 2%;
}

.right-decor {
    right: 0;
    justify-content: flex-end;
    padding-right: 2%;
}

.decor-element {
    max-width: 100%;
    height: auto;
    opacity: 0.7;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.hero-decor:hover .decor-element {
    transform: scale(1.05);
    opacity: 1;
}

.sketch-line {
    position: absolute;
    background: rgba(255, 107, 107, 0.3);
    z-index: -1;
    transition: all 0.5s ease;
}

.line-1 {
    width: 200px;
    height: 2px;
    top: 30%;
    left: 10%;
    transform: rotate(-15deg);
}

.line-2 {
    width: 250px;
    height: 2px;
    bottom: 25%;
    right: 15%;
    transform: rotate(15deg);
}

.sketch-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-color);
    opacity: 0.3;
    transition: all 0.5s ease;
}

.dot-1 {
    width: 15px;
    height: 15px;
    top: 40%;
    right: 5%;
}

.dot-2 {
    width: 20px;
    height: 20px;
    bottom: 30%;
    left: 8%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 50%;
    margin: 0 auto;
    text-align: center;
    padding: 40px 0;
}

.hero-decor:hover .sketch-line,
.hero-decor:hover .sketch-dot {
    opacity: 0.6;
    transform: scale(1.1);
}

/* Hero Content Styles */
.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    color: var(--dark-color);
    letter-spacing: -0.5px;
}

.hero-content h1 span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-content h1 span::after {
    content: '';
    position: absolute;
    bottom: 12px;
    left: 0;
    width: 100%;
    height: 18px;
    background: rgba(255, 230, 109, 0.5);
    z-index: -1;
    transform: rotate(-1deg);
    border-radius: 4px;
}

.hero-content p {
    font-size: 1.4rem;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 600px;
    line-height: 1.7;
    font-weight: 400;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Hero Shape */
.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-shape svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.hero-shape path {
    fill: #ffffff;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .hero-image {
        height: 400px;
        min-width: 350px;
    }
}

@media (max-width: 992px) {
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .hero-content {
        max-width: 100%;
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-image {
        margin-top: 2rem;
        height: 350px;
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content h1 span::after {
        height: 15px;
        bottom: 10px;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-image {
        height: 300px;
    }
}
