/* ============================================
   HERO SECTION
============================================ */
#vuvita-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--vuvita-gradient-navy);
    padding-top: 80px;
}

/* Background Effects */
.vuvita-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.vuvita-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(0, 212, 255, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(201, 162, 39, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 100% 80% at 50% 100%, rgba(5, 10, 18, 0.9) 0%, transparent 50%);
}

.vuvita-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(201, 162, 39, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 162, 39, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.5) 30%, rgba(0, 0, 0, 0.5) 70%, transparent 100%);
}

.vuvita-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.vuvita-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--vuvita-gold-primary);
    border-radius: 50%;
    opacity: 0;
    animation: vuvita-float 8s infinite;
}

@keyframes vuvita-float {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateY(-100px) scale(1);
    }
}

/* Decorative Lines */
.vuvita-hero-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.vuvita-line-vertical {
    position: absolute;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(201, 162, 39, 0.2) 30%, rgba(201, 162, 39, 0.2) 70%, transparent 100%);
}

.vuvita-line-vertical:nth-child(1) {
    left: 10%;
}

.vuvita-line-vertical:nth-child(2) {
    left: 90%;
}

.vuvita-line-horizontal {
    position: absolute;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(201, 162, 39, 0.15) 20%, rgba(201, 162, 39, 0.15) 80%, transparent 100%);
}

.vuvita-line-horizontal:nth-child(3) {
    top: 20%;
}

.vuvita-line-horizontal:nth-child(4) {
    bottom: 20%;
}

/* Corner Accents */
.vuvita-corner-accent {
    position: absolute;
    width: 100px;
    height: 100px;
    z-index: 2;
}

.vuvita-corner-accent::before,
.vuvita-corner-accent::after {
    content: '';
    position: absolute;
    background: var(--vuvita-gold-primary);
}

.vuvita-corner-accent.top-left {
    top: 40px;
    left: 40px;
}

.vuvita-corner-accent.top-left::before {
    top: 0;
    left: 0;
    width: 60px;
    height: 2px;
}

.vuvita-corner-accent.top-left::after {
    top: 0;
    left: 0;
    width: 2px;
    height: 60px;
}

.vuvita-corner-accent.bottom-right {
    bottom: 40px;
    right: 40px;
}

.vuvita-corner-accent.bottom-right::before {
    bottom: 0;
    right: 0;
    width: 60px;
    height: 2px;
}

.vuvita-corner-accent.bottom-right::after {
    bottom: 0;
    right: 0;
    width: 2px;
    height: 60px;
}

/* Hero Content */
.vuvita-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.vuvita-hero-content {
    position: relative;
}

/* Badge */
.vuvita-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 30px;
    margin-bottom: 25px;
    animation: vuvita-fadeInUp 0.8s ease forwards;
    animation-delay: 0.2s;
    opacity: 0;
}

.vuvita-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--vuvita-gold-primary);
    border-radius: 50%;
    animation: vuvita-pulse 2s infinite;
}

@keyframes vuvita-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.vuvita-badge-text {
    font-family: 'Exo 2', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--vuvita-gold-primary);
}

/* Hero Title */
.vuvita-hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    animation: vuvita-fadeInUp 0.8s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.vuvita-title-line {
    display: block;
}

.vuvita-title-line:nth-child(1) {
    color: var(--vuvita-white);
}

.vuvita-title-line:nth-child(2) {
    background: var(--vuvita-gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vuvita-title-highlight {
    color: var(--vuvita-cyan);
    text-shadow: 0 0 30px var(--vuvita-cyan-glow);
}

/* Hero Description */
.vuvita-hero-desc {
    font-family: 'Rajdhani', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--vuvita-gray-light);
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 520px;
    animation: vuvita-fadeInUp 0.8s ease forwards;
    animation-delay: 0.6s;
    opacity: 0;
}

/* Hero CTA Buttons */
.vuvita-hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    animation: vuvita-fadeInUp 0.8s ease forwards;
    animation-delay: 0.8s;
    opacity: 0;
}

.vuvita-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: transparent;
    color: var(--vuvita-white);
    text-decoration: none;
    font-family: 'Exo 2', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
    transition: var(--vuvita-transition-medium);
}

.vuvita-btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(-100%);
    transition: var(--vuvita-transition-medium);
}

.vuvita-btn-secondary:hover {
    border-color: var(--vuvita-cyan);
    color: var(--vuvita-cyan);
    box-shadow: var(--vuvita-shadow-cyan);
}

.vuvita-btn-secondary:hover::before {
    transform: translateX(0);
}

.vuvita-btn-secondary svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Stats */
.vuvita-hero-stats {
    display: flex;
    gap: 40px;
    animation: vuvita-fadeInUp 0.8s ease forwards;
    animation-delay: 1s;
    opacity: 0;
}

.vuvita-stat-item {
    position: relative;
    padding-left: 15px;
}

.vuvita-stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--vuvita-gradient-gold);
    border-radius: 2px;
}

.vuvita-stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--vuvita-white);
    line-height: 1;
}

.vuvita-stat-number span {
    color: var(--vuvita-gold-primary);
}

.vuvita-stat-label {
    font-family: 'Exo 2', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--vuvita-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

/* Hero Visual */
.vuvita-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vuvita-visual-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    animation: vuvita-fadeIn 1.2s ease forwards;
    animation-delay: 0.5s;
    opacity: 0;
}

/* Main Image Frame */
.vuvita-image-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--vuvita-shadow-dark);
}

.vuvita-image-frame::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--vuvita-gold-primary), var(--vuvita-cyan), var(--vuvita-gold-primary));
    border-radius: 14px;
    z-index: -1;
    opacity: 0.5;
    animation: vuvita-borderGlow 3s ease infinite;
}

@keyframes vuvita-borderGlow {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

.vuvita-hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.vuvita-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, transparent 50%, rgba(201, 162, 39, 0.1) 100%);
    pointer-events: none;
}

/* Floating Service Cards */
.vuvita-floating-card {
    position: absolute;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--vuvita-shadow-dark);
    animation: vuvita-floatCard 4s ease-in-out infinite;
}

.vuvita-floating-card.card-1 {
    top: 10%;
    left: -30px;
    animation-delay: 0s;
}

.vuvita-floating-card.card-2 {
    bottom: 20%;
    right: -40px;
    animation-delay: 1s;
}

.vuvita-floating-card.card-3 {
    bottom: 5%;
    left: 10%;
    animation-delay: 2s;
}

@keyframes vuvita-floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.vuvita-card-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.2), rgba(201, 162, 39, 0.05));
    border-radius: 10px;
    border: 1px solid rgba(201, 162, 39, 0.3);
}

.vuvita-card-icon svg {
    width: 22px;
    height: 22px;
    fill: var(--vuvita-gold-primary);
}

.vuvita-card-content {
    display: flex;
    flex-direction: column;
}

.vuvita-card-title {
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--vuvita-white);
}

.vuvita-card-subtitle {
    font-size: 12px;
    color: var(--vuvita-gray);
}

/* Promo Banner */
.vuvita-promo-banner {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--vuvita-gradient-gold);
    padding: 10px 20px;
    border-radius: 6px;
    transform: rotate(3deg);
    box-shadow: var(--vuvita-shadow-gold);
    animation: vuvita-promoPulse 2s ease-in-out infinite;
}

@keyframes vuvita-promoPulse {

    0%,
    100% {
        transform: rotate(3deg) scale(1);
    }

    50% {
        transform: rotate(3deg) scale(1.05);
    }
}

.vuvita-promo-text {
    font-family: 'Orbitron', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: var(--vuvita-navy-deep);
}

.vuvita-promo-discount {
    font-size: 22px;
}

/* Car Brands Slider */
.vuvita-brands-section {
    position: relative;
    width: 100%;
    z-index: 20;
    padding: 30px 0;
}

.vuvita-brands-title {
    text-align: center;
    margin-bottom: 25px;
}

.vuvita-brands-title span {
    font-family: 'Exo 2', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--vuvita-gray);
    position: relative;
    padding: 0 20px;
}

.vuvita-brands-title span::before,
.vuvita-brands-title span::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3));
}

.vuvita-brands-title span::before {
    right: 100%;
    background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.3));
}

.vuvita-brands-title span::after {
    left: 100%;
    background: linear-gradient(90deg, rgba(201, 162, 39, 0.3), transparent);
}

.vuvita-brands-slider {
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.vuvita-brands-track {
    display: flex;
    gap: 60px;
    animation: scrollBrands 25s linear infinite;
    width: max-content;
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.vuvita-brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 50px;
    opacity: 0.7;
    transition: all 0.4s ease;
    flex-shrink: 0;
}

.vuvita-brand-item:hover {
    opacity: 1;
    transform: scale(1.15);
}

.vuvita-brand-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.vuvita-brand-item svg {
    width: 80px;
    height: 40px;
    fill: var(--vuvita-white);
}

/* Animations */
@keyframes vuvita-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes vuvita-fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 1366px) {
    .vuvita-hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        padding: 0 30px;
    }

    .vuvita-hero-title {
        font-size: 42px;
        line-height: 1.1;
    }

    .vuvita-hero-subtitle {
        font-size: 14px;
        margin: 15px 0;
    }

    .vuvita-visual-container {
        max-width: 450px;
    }

    .vuvita-hero-stats {
        gap: 20px;
        margin-top: 30px;
    }

    .vuvita-stat-item {
        padding: 15px;
    }

    .vuvita-stat-number {
        font-size: 32px;
    }

    .vuvita-stat-label {
        font-size: 11px;
    }

    .vuvita-brands-section {
        position: relative;
        bottom: auto;
        margin-top: 40px;
        padding: 20px 0;
    }

    .vuvita-brand-item {
        width: 60px;
        height: 30px;
    }

    .vuvita-brands-track {
        gap: 40px;
    }

    .vuvita-hero-cta {
        gap: 15px;
        margin-top: 30px;
    }

    .vuvita-btn-primary,
    .vuvita-btn-secondary {
        padding: 14px 28px;
        font-size: 13px;
    }
}

@media (max-width: 992px) {
    .vuvita-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 140px;
    }

    .vuvita-hero-desc {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .vuvita-hero-cta {
        justify-content: center;
    }

    .vuvita-hero-stats {
        justify-content: center;
    }

    .vuvita-hero-visual {
        order: -1;
        margin-bottom: 30px;
    }

    .vuvita-visual-container {
        max-width: 500px;
    }

    .vuvita-floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    #vuvita-hero {
        padding-top: 100px;
    }

    .vuvita-hero-container {
        padding: 40px 20px 60px;
    }

    .vuvita-hero-title {
        font-size: 32px;
    }

    .vuvita-hero-desc {
        font-size: 16px;
    }

    .vuvita-hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
        align-items: flex-start;
    }

    .vuvita-stat-item {
        text-align: left;
        flex: 0 0 calc(33.333% - 10px);
        min-width: 90px;
    }

    .vuvita-stat-number {
        font-size: 24px;
    }

    .vuvita-stat-label {
        font-size: 10px;
    }

    .vuvita-corner-accent {
        display: none;
    }

    .vuvita-promo-banner {
        right: 10px;
        padding: 8px 15px;
    }

    .vuvita-promo-text {
        font-size: 12px;
    }

    .vuvita-promo-discount {
        font-size: 18px;
    }

    .vuvita-brands-section {
        display: block;
        padding: 15px 0;
    }
}