/* Advertise Page Styles */

/* Hero Section */
.advertise-hero {
    background-color: #f8f4f3;
}

.hero-stats {
    border: 1px solid #dee2e6;
}

.stat-number {
    color: #f84525;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
}

/* Benefits Section */
.benefit-card {
    border-radius: 0.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    opacity: 0.9;
}

/* Ad Formats Section */
.ad-format-card {
    border: 1px solid #dee2e6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ad-format-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.1);
}

.format-icon {
    opacity: 0.9;
}

.ad-format-card ul li {
    font-size: 0.9rem;
}

/* Pricing Section */
.pricing-card {
    border: 1px solid #dee2e6;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
}

.pricing-featured {
    border: 2px solid #f84525;
    transform: scale(1.05);
}

.pricing-featured:hover {
    transform: scale(1.08);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f84525;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.price {
    padding: 1rem 0;
}

.pricing-card ul li {
    font-size: 0.9rem;
}

/* Demographics Section */
.demo-card {
    border: 1px solid #dee2e6;
}

.progress {
    background-color: #e9ecef;
}

.demo-item .text-muted {
    font-size: 0.9rem;
}

/* Contact Section */
.contact-info a:hover {
    color: #f84525 !important;
}

.contact-form {
    border: 1px solid #dee2e6;
}

.contact-form .form-label {
    font-weight: 500;
    font-size: 0.9rem;
    color: #212529;
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #dee2e6;
    padding: 0.625rem 0.875rem;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: #f84525;
    box-shadow: 0 0 0 0.2rem rgba(248, 69, 37, 0.15);
}

/* CTA Section */
.cta-section {
    background-color: #f84525;
}

.cta-section .btn-light {
    background-color: white;
    color: #f84525;
    border-color: white;
}

.cta-section .btn-light:hover {
    background-color: #f8f4f3;
}

.cta-section .btn-outline-light:hover {
    background-color: white;
    color: #f84525;
}

/* Responsive */
@media (max-width: 991px) {
    .pricing-featured {
        transform: scale(1);
    }
    
    .pricing-featured:hover {
        transform: translateY(-5px);
    }
    
    .hero-stats {
        margin-top: 2rem;
    }
}

@media (max-width: 767px) {
    .advertise-hero h1 {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .benefit-card,
    .ad-format-card,
    .demo-card {
        margin-bottom: 1rem;
    }
}
