/**
 * Taenprowiz Elementor Custom Styles
 * 
 * @package Taenprowiz
 * @version 1.0.0
 */

/* ===========================
   Elementor Widget Styles
   =========================== */

/* Aquaculture Statistics Widget */
.taenprowiz-stats-widget {
    padding: 2rem 0;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: center;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--aqua-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-teal);
    margin-bottom: 0.5rem;
}

.stat-suffix {
    font-size: 2rem;
    color: var(--orange-accent);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 600;
}

/* Program Card Widget */
.taenprowiz-program-card {
    margin-bottom: 2rem;
}

.program-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
}

.program-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.program-header {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--light-green) 100%);
    padding: 2rem;
    text-align: center;
    border-bottom: 3px solid var(--accent-teal);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--aqua-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.program-title {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.program-description {
    color: var(--text-dark);
    margin-bottom: 0;
}

.program-details {
    padding: 1.5rem 2rem;
    background: var(--gray-100);
}

.program-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}

.program-meta:last-child {
    margin-bottom: 0;
    border-bottom: none;
}

.meta-label {
    font-weight: 600;
    color: var(--primary-blue);
}

.meta-value {
    color: var(--accent-teal);
    font-weight: 500;
}

.program-features {
    padding: 1.5rem 2rem;
}

.program-features h6 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 600;
}

.program-features ul {
    list-style: none;
    padding: 0;
}

.program-features ul li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.program-features ul li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: var(--accent-teal);
    position: absolute;
    left: 0;
    top: 0.5rem;
}

.program-action {
    padding: 1.5rem 2rem 2rem;
    text-align: center;
}

.program-button {
    background: linear-gradient(135deg, var(--orange-accent) 0%, #f97316 100%);
    color: var(--white);
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: var(--shadow-medium);
}

.program-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
    background: linear-gradient(135deg, #dc2626 0%, var(--orange-accent) 100%);
    color: var(--white);
    text-decoration: none;
}

/* Contact Info Widget */
.taenprowiz-contact-info {
    padding: 2rem 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.contact-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: flex-start;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--light-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    color: var(--accent-teal);
    font-size: 1.5rem;
}

.contact-details h6 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-details a {
    color: var(--accent-teal);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--secondary-blue);
    text-decoration: underline;
}

.contact-details span {
    color: var(--text-dark);
}

/* Training Protocols Widget */
.taenprowiz-protocols-widget {
    padding: 2rem 0;
}

.protocols-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.protocol-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: flex-start;
}

.protocol-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-heavy);
}

.protocol-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-teal) 0%, var(--aqua-green) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    flex-shrink: 0;
    color: var(--white);
    font-size: 1.5rem;
}

.protocol-content h5 {
    color: var(--primary-blue);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.protocol-content p {
    color: var(--text-dark);
    margin-bottom: 0;
    font-size: 0.95rem;
}

/* ===========================
   Responsive Design
   =========================== */

@media (max-width: 768px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .stat-item {
        padding: 1.5rem 1rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .contact-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
    }
    
    .protocols-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .protocol-item {
        padding: 1.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .protocol-icon {
        margin-right: 0;
        margin-bottom: 1rem;
        align-self: center;
    }
    
    .program-header,
    .program-details,
    .program-features,
    .program-action {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .program-meta {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}