/* ========================================
   CERAMIC COATING PAGE SPECIFIC STYLES
   ======================================== */

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--dark) 0%, rgba(0, 188, 212, 0.1) 100%);
    padding: 3rem 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 188, 212, 0.3);
    border: 2px solid var(--primary);
    text-align: center;
    margin: 20px 1vw;
}

.hero-section h2 {
    color: var(--primary);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-section p {
    color: var(--text-gray);
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    color: var(--primary);
    font-weight: bold;
    display: block;
}

.stat-label {
    color: var(--text-gray);
    font-size: 1rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-card {
    background: var(--gray);
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: rgba(0, 188, 212, 0.1);
    transform: translateY(-3px);
}

.benefit-card h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.benefit-card p {
    color: var(--light);
    font-size: 0.95rem;
}

/* Process Steps */
.process-steps {
    counter-reset: step-counter;
}

.process-step {
    background: var(--gray);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    position: relative;
    padding-left: 4rem;
}

.process-step:before {
    counter-increment: step-counter;
    content: counter(step-counter);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    color: var(--dark);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.process-step h4 {
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-gray);
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    background: var(--dark);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
    border: 1px solid var(--gray);
}

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

.pricing-card {
    background: var(--gray);
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid var(--gray);
    transition: all 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.pricing-card h4 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    color: var(--light);
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.price-note {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.pricing-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--light);
}

.pricing-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: var(--dark);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    z-index: 10;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--gray) 100%);
    padding: 3rem 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 188, 212, 0.3);
    border: 2px solid var(--primary);
    margin: 25px 1vw 25px 1vw;
}

.cta-section h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--text-gray);
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .hero-section h2 {
        font-size: 2rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}