/* Professional Hero Section */
.hero-professional {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 0;
    margin-top: -70px;
    padding-top: 140px;
    overflow: hidden;
}

.hero-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-image-side {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    z-index: 1;
}

.hero-img-wrapper.active {
    opacity: 1;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-sparks {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.spark {
    position: absolute;
    bottom: -10px;
    width: 3px;
    height: 20px;
    background: linear-gradient(to top, #ff6600, #ffcc33, transparent);
    border-radius: 50% 50% 0 0;
    opacity: 0;
    animation: rise var(--d) linear infinite;
    filter: blur(1px);
    box-shadow: 0 0 15px #ff6600, 0 0 30px #ffcc33;
}

@keyframes rise {
    0% {
        transform: translateY(0) translateX(0) scaleY(1);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        opacity: 1;
        transform: translateY(-50vh) translateX(calc(var(--x) * 0.5)) scaleY(0.8);
    }
    90% {
        opacity: 0.8;
    }
    100% {
        transform: translateY(-95vh) translateX(var(--x)) scaleY(0.3);
        opacity: 0;
    }
}

.hero-text-side {
    padding: 60px 80px;
    position: relative;
    z-index: 10;
    width: 100%;
    pointer-events: auto;
    min-height: 500px;
}

.hero-text-wrapper {
    max-width: 700px;
    position: absolute;
    top: 60px;
    left: 80px;
    right: 80px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 0s 1s;
    pointer-events: none;
}

.hero-text-wrapper.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 1s ease-in-out, visibility 0s 0s;
    pointer-events: auto;
}

.hero-heading {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.5;
    margin-bottom: 30px;
}

.text-dark {
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.text-orange {
    color: #fd8535;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-para {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 40px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-orange {
    background: #fd8535;
    color: white;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s;
}

.btn-orange:hover {
    background: #e67422;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(253, 133, 53, 0.3);
    color: white;
    text-decoration: none;
}

.btn-white {
    background: white;
    color: #fd8535;
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    border: 2px solid white;
    transition: all 0.3s;
}

.btn-white:hover {
    background: #fd8535;
    color: white;
    border-color: #fd8535;
    transform: translateY(-2px);
    text-decoration: none;
}

.hero-nav-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #fd8535;
    border-color: #fd8535;
    transform: scale(1.3);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-text-side {
        padding: 60px 40px;
    }
    
    .hero-text-wrapper {
        top: 60px;
        left: 40px;
        right: 40px;
    }
    
    .hero-heading {
        font-size: 3rem;
    }
    
    .hero-para {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .hero-professional {
        min-height: 100vh;
        min-height: 100dvh;
    }
    
    .hero-img-wrapper {
        height: 100vh;
        height: 100dvh;
    }
    
    .hero-text-side {
        margin-top: -10%;
        padding: 40px 20px;
    }
    
    .hero-text-wrapper {
        top: 40px;
        left: 20px;
        right: 20px;
    }
    
    .hero-heading {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .hero-para {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }
    
    .btn-orange,
    .btn-white {
        width: auto;
        justify-content: center;
        padding: 12px 24px;
        font-size: 0.85rem;
    }
}
