.heroservice {
    background: var(--gradient);
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.heroservice-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.service-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: glowFloat 10s ease-in-out infinite;
}

.glow-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-gold) 0%, transparent 70%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.glow-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-cream) 0%, transparent 70%);
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

.service-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.heroservice-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.heroservice-content {
    flex: 1;
    max-width: 600px;
}

.content-header {
    margin-bottom: 3rem;
}

.service-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    position: relative;
    overflow: hidden;
}

.service-badge span {
    color: var(--accent-gold);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    z-index: 2;
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.service-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.title-line {
    display: block;
}

.title-line.accent {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-description {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.service-buttons {
    position: relative;
}

.button-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.service-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.service-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--accent-gold);
}

.service-btn.active {
    background: var(--gold-gradient);
    border-color: transparent;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.service-btn.active .btn-icon {
    background: rgba(255, 255, 255, 0.2);
}

.service-btn.active .btn-icon i {
    color: var(--white);
}

.btn-icon {
    width: 40px;
    height: 40px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-icon i {
    color: var(--accent-gold);
    font-size: 1.2rem;
    transition: var(--transition);
}

.service-btn span {
    font-weight: 600;
    color: var(--text-dark);
    transition: var(--transition);
}

.service-btn.active span {
    color: var(--white);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: var(--transition);
}

.service-btn:hover .btn-glow {
    left: 100%;
}

.heroservice-visual {
    flex: 1;
    position: relative;
}

.visual-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.visual-container .main-image-wrapper {
    transform: perspective(1000px) rotateY(0) rotateX(0);
}

.main-image-wrapper {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    transition: var(--transition);
}

.image-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition);
    mix-blend-mode: overlay;
}

.visual-container:hover .image-glow {
    opacity: 0.3;
}

.image-reflection {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
    filter: blur(10px);
    transform: scaleY(-1);
    opacity: 0.5;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    animation: floatCard 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition);
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.card-icon {
    width: 50px;
    height: 50px;
    background: var(--gold-gradient);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.card-icon i {
    color: var(--white);
    font-size: 1.5rem;
}

.card-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.card-title {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.card-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gold-gradient);
    opacity: 0;
    border-radius: 20px;
    transition: var(--transition);
    z-index: -1;
}

.floating-card:hover .card-glow {
    opacity: 0.1;
}

.card-1 {
    top: -20%;
    left: -10%;
    animation-delay: 0s;
}

.card-2 {
    bottom: -10%;
    right: -5%;
    animation-delay: 3s;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-light);
    font-size: 0.9rem;
    z-index: 2;
}

.scroll-line {
    width: 2px;
    height: 60px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}

.scroll-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 30px;
    background: var(--gold-gradient);
    border-radius: 1px;
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes glowFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.2);
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes scrollLine {
    0% {
        transform: translateY(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateY(200%);
        opacity: 0;
    }
}

@media screen and (max-width: 968px) {
    .heroservice {
        padding: 7rem 1.5rem 3rem;
        text-align: center;
    }

    .heroservice-container {
        flex-direction: column;
        gap: 3rem;
    }

    .service-title {
        font-size: 2.8rem;
    }

    .button-group {
        justify-content: center;
    }

    .service-btn {
        flex: 1;
        min-width: 200px;
        justify-content: center;
    }

    .floating-card {
        display: none;
    }
}

@media screen and (max-width: 640px) {
    .button-group {
        flex-direction: column;
    }

    .service-btn {
        width: 100%;
    }
}