/* TechnoSoluce Campaign Pages - Shared Styles */
/* Aligned with main website theme */

:root {
    --tech-blue: #0891B2;
    --ermits-navy: #004B87;
    --ermits-gold: #F4B400;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
}

/* Campaign-specific overrides and enhancements */
.campaign-hero {
    background: linear-gradient(135deg, #004B87 0%, #0891B2 100%);
}

.dark .campaign-hero {
    background: linear-gradient(135deg, #1E3A5F 0%, #0EA5E9 100%);
}

.campaign-cta-primary {
    background-color: #F4B400;
    color: #004B87;
    transition: all 0.3s ease;
}

.campaign-cta-primary:hover {
    background-color: #FBBF24;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.campaign-cta-secondary {
    background-color: #0891B2;
    color: #ffffff;
    border: 1px solid #0891B2;
    transition: all 0.3s ease;
}

.campaign-cta-secondary:hover {
    background-color: #0EA5E9;
    transform: translateY(-2px);
}

/* Problem/Solution Cards */
.problem-card {
    border-left: 4px solid #ef4444;
}

.solution-card {
    border-left: 4px solid #10b981;
}

/* Feature Steps */
.feature-step {
    position: relative;
    padding-left: 4rem;
}

.feature-step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    background-color: #dbeafe;
    color: #1e40af;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.25rem;
}

/* Testimonial Cards */
.testimonial-card {
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

/* Stats Counter */
.stat-number {
    font-size: 3rem;
    font-weight: bold;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Form Styles */
.campaign-form {
    background: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.campaign-form input,
.campaign-form select,
.campaign-form textarea {
    border: 1px solid #cbd5e1;
    transition: border-color 0.3s ease;
}

.campaign-form input:focus,
.campaign-form select:focus,
.campaign-form textarea:focus {
    border-color: #3b82f6;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .feature-step {
        padding-left: 3rem;
    }
    
    .feature-step-number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

