/* ===== USLUŽNA PRODAJA SPECIFIC STYLES ===== */

.prodaja-page {
    background: #050505 !important;
    color: white;
}

.prodaja-page .service-detail-page {
    background: #050505 !important;
}

/* Hero Enhancements */
.prodaja-page .service-hero {
    height: 100vh;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.prodaja-page .service-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 102, 204, 0.2) 0%, transparent 70%);
    z-index: 2;
}

.prodaja-page .hero-content {
    max-width: 1200px !important;
    text-align: center;
}

.prodaja-page .scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0;
}

/* Methodology Section */
.sales-process-section {
    padding: 12rem 0;
    background: #080808;
    position: relative;
    overflow: hidden;
}

.sales-process-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 102, 204, 0.2), transparent);
    z-index: 1;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 2;
    justify-content: center;
}

.process-step {
    background: rgba(20, 20, 20, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 4px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    text-align: center;
}

.process-step:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(0, 102, 204, 0.4);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.process-step .step-num {
    font-size: 6rem;
    font-weight: 900;
    color: rgba(0, 102, 204, 0.1);
    position: absolute;
    top: -2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    transition: all 0.5s ease;
}

.process-step:hover .step-num {
    color: rgba(0, 102, 204, 0.2);
    transform: translateX(-50%) translateY(-10px);
}

.process-step h4 {
    font-size: 1.25rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: #fff;
}

.process-step p {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.7;
}

/* Benefits Overhaul */
.benefits-section {
    padding: 12rem 0;
    background: #050505;
}

.benefits-content h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    line-height: 1;
    letter-spacing: -2px;
    text-transform: uppercase;
    margin-bottom: 4rem;
}

.benefit-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 4rem;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 4px;
    border-left: 2px solid #0066CC;
    transition: all 0.4s ease;
}

.benefit-item:hover {
    background: rgba(0, 102, 204, 0.05);
    transform: translateX(15px);
}

.benefit-icon {
    font-size: 2.5rem;
    color: #0066CC;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.benefits-visual {
    position: relative;
    width: 100%;
    height: 100%;
}

.benefits-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.5);
}

.benefits-visual::after {
    content: '';
    position: absolute;
    inset: -20px;
    border: 1px solid rgba(0, 102, 204, 0.2);
    z-index: -1;
    border-radius: 8px;
}

/* Stats Section */
.sales-stats-section {
    padding: 10rem 0;
    background: #030303;
}

.sales-stats-section .content-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    /* Reduced from 4rem for better fit */
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-box {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #fff;
    margin-top: 1rem;
    font-weight: 800;
    opacity: 0.8 !important;
    transform: none !important;
}

.stat-value {
    display: block;
    font-size: 4rem;
    font-weight: 900;
    color: #0066CC;
    line-height: 1;
}



/* Contact Form Enhancements */
.sales-contact-section {
    padding: 12rem 8% 8rem 8%;
    background: #050505;
}

.contact-focus-container {
    background: #0a0a0a !important;
    border-color: rgba(255, 255, 255, 0.05) !important;
}

.contact-focus-info {
    background: linear-gradient(135deg, rgba(0, 102, 204, 0.1) 0%, transparent 100%) !important;
}

.contact-focus-info h2 {
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 2rem;
    line-height: 1;
}

.contact-method {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.contact-method i {
    color: #0066CC;
    font-size: 1.2rem;
}

/* Shapes & Decorations */
.floating-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 204, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
}

.glow-1 {
    top: -10%;
    right: -10%;
}

.glow-2 {
    bottom: -10%;
    left: -10%;
}

/* Mobile Adaptations */
@media (max-width: 1024px) {

    .sales-process-section,
    .benefits-section,
    .sales-contact-section {
        padding: 8rem 5%;
    }

    .process-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .prodaja-page .service-hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem) !important;
        margin-bottom: 1.5rem;
    }

    .prodaja-page .service-hero p {
        font-size: 1rem !important;
        padding: 0 5%;
    }

    .sales-stats-section {
        padding: 4rem 3% !important;
        /* Smaller padding */
    }

    .sales-stats-section .content-container {
        gap: 0.5rem !important;
        /* Minimal gap to keep them in one row */
    }

    .stat-value {
        font-size: 1.8rem !important;
        /* Reduced size */
    }

    .stat-label {
        font-size: 0.7rem !important;
        letter-spacing: 1px !important;
        margin-top: 0.5rem !important;
        line-height: 1.2 !important;
        display: block !important;
        opacity: 0.8 !important;
        transform: none !important;
        overflow: visible !important;
    }

    .process-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .process-step {
        padding: 3rem 2rem !important;
        text-align: center;
    }

    .process-step .step-num {
        font-size: 5rem !important;
        margin-bottom: 0 !important;
        position: absolute !important;
        top: -1rem !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        opacity: 0.1 !important;
        z-index: -1 !important;
        display: block !important;
    }

    .process-step h4 {
        font-size: 1.25rem !important;
        margin-bottom: 1.5rem !important;
        line-height: 1.4 !important;
        min-height: auto !important;
        display: block !important;
    }

    .process-step p {
        font-size: 0.9rem !important;
        line-height: 1.7 !important;
        opacity: 0.8 !important;
    }

    .sales-process-section {
        padding: 6rem 5% !important;
    }

    .sales-process-section .section-header {
        margin-bottom: 4rem !important;
    }

    .sales-process-section h2 {
        font-size: 2.2rem !important;
    }

    .benefits-section {
        padding: 6rem 5% !important;
    }

    .benefits-content h2 {
        font-size: 2.5rem !important;
        margin-bottom: 3rem;
    }

    .benefit-item {
        padding: 1.5rem !important;
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        align-items: center;
    }

    .benefit-icon {
        font-size: 2rem;
    }

    .sales-contact-section {
        padding: 4rem 5% !important;
    }

    .contact-focus-container {
        grid-template-columns: 1fr !important;
    }

    .contact-focus-info {
        padding: 3rem 1.5rem !important;
        text-align: center;
    }

    .contact-focus-info h2 {
        font-size: 2.5rem !important;
    }

    .contact-method {
        justify-content: center;
        font-size: 0.9rem;
    }

    .contact-focus-form {
        padding: 3rem 1.5rem !important;
    }

    .contact-actions {
        gap: 1rem !important;
    }

    .action-btn {
        padding: 1.5rem 1rem !important;
    }

    .btn-value {
        font-size: 1.1rem !important;
        white-space: nowrap !important;
    }
}

@media (max-width: 480px) {
    .sales-stats-section .content-container {
        gap: 0.3rem !important;
    }

    .stat-label {
        font-size: 0.5rem !important;
        text-align: center;
    }

    .stat-value {
        font-size: 1.8rem !important;
    }
}