/* =============================================
   DDIGITAL PLUGIN - Public CSS
   ============================================= */

/* Reset za plugin elemente */
.ddigital-faq-widget *,
.ddigital-contact-wrap *,
.ddigital-portfolio-section * {
    box-sizing: border-box;
}

/* =============================================
   TOUR KARTICE
   ============================================= */
.tour-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.14);
}

/* =============================================
   PORTFOLIO AKCIJE DUGMAD
   ============================================= */
.ddigital-portfolio-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.featured-project-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: #fff !important;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none !important;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    cursor: pointer;
    border: none;
    box-shadow: 0 4px 20px rgba(37,99,235,0.3);
}

.featured-project-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37,99,235,0.5);
    opacity: 0.92;
    color: #fff !important;
    text-decoration: none !important;
}

/* =============================================
   FAQ WIDJET
   ============================================= */
.ddigital-faq-widget {
    width: 100%;
}

.ddigital-cat-btn:hover {
    border-color: #93c5fd !important;
    background: #f0f9ff !important;
    transform: translateY(-2px);
}

.ddigital-faq-form-wrap {
    animation: ddSlideUp 0.35s ease;
}

@keyframes ddSlideUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* =============================================
   KONTAKT FORMA
   ============================================= */
.ddigital-contact-form input:focus,
.ddigital-contact-form textarea:focus,
.ddigital-contact-form select:focus {
    border-color: #2563eb !important;
    background: #fff !important;
    outline: none;
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}

/* =============================================
   RESPONZIVNOST
   ============================================= */
@media (max-width: 768px) {
    .ddigital-cat-grid {
        grid-template-columns: 1fr 1fr !important;
    }
    
    .ddigital-faq-form-wrap {
        padding: 24px !important;
    }
    
    .ddigital-faq-form-wrap form > div:first-of-type {
        grid-template-columns: 1fr !important;
    }
    
    .ddigital-contact-wrap form {
        padding: 24px !important;
    }
}

@media (max-width: 480px) {
    .ddigital-cat-grid {
        grid-template-columns: 1fr !important;
    }
}
