/* Shared Service Detail Page Styles - Minimal */

/* Service Hero */
.service-hero {
    background: var(--gradient-start);
    padding: 4rem 1rem;
    text-align: center;
    color: #e4e4e7;
}

@media (min-width: 640px) {
    .service-hero {
        padding: 5rem 2rem;
    }
}

.service-hero-content {
    max-width: 720px;
    margin: 0 auto;
}

.service-hero .hero-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
}

.service-hero .hero-title {
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .service-hero .hero-title {
        font-size: 2.25rem;
    }
}

.service-hero .hero-subtitle {
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.6;
}

/* Content Section */
.content-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 1rem 3rem;
}

@media (min-width: 640px) {
    .content-section {
        padding: 2rem 2rem 3rem;
    }
}

/* Service Detail Container */
.service-detail-container {
    max-width: 900px;
    margin: 0 auto;
}

/* Introduction Section */
.intro-section {
    margin: 1.5rem 0 2.5rem;
}

.intro-section h2 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

@media (min-width: 640px) {
    .intro-section h2 {
        font-size: 1.5rem;
    }
}

.intro-text {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
}

/* Section Title Center */
.section-title-center {
    font-size: 1.25rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

@media (min-width: 640px) {
    .section-title-center {
        font-size: 1.5rem;
    }
}

/* Features/Benefits Grid */
.features-benefits-grid,
.features-detail-section .features-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 640px) {
    .features-benefits-grid,
    .features-detail-section .features-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Detail Cards */
.detail-card {
    background: var(--card-bg);
    padding: 1.25rem;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.2s ease;
}

@media (min-width: 640px) {
    .detail-card {
        padding: 1.5rem;
    }
}

.detail-card:hover {
    box-shadow: var(--shadow-hover);
}

.detail-card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Detail Lists */
.detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.85rem;
}

.detail-list li:last-child {
    border-bottom: none;
}

.detail-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--text-color);
    font-weight: bold;
    font-size: 0.8rem;
}

/* Process/Steps Section */
.process-section {
    margin: 2.5rem 0;
    padding: 1.5rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 480px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-item {
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--gradient-start);
    color: #e4e4e7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 auto 0.75rem;
}

.step-item h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.step-item p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.8rem;
}

/* Why Section */
.why-section {
    margin: 2.5rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 480px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.why-item {
    text-align: center;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.2s ease;
}

.why-item:hover {
    box-shadow: var(--shadow-hover);
}

.why-icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.5rem;
}

.why-item h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.why-item p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.8rem;
}

/* CTA Section */
.service-cta-section {
    margin: 2.5rem 0;
    padding: 2.5rem 1.5rem;
    background: var(--gradient-start);
    border-radius: 8px;
    text-align: center;
    color: #e4e4e7;
}

.cta-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

@media (min-width: 640px) {
    .cta-title {
        font-size: 1.5rem;
    }
}

.cta-description {
    font-size: 0.875rem;
    max-width: 560px;
    margin: 0 auto 1.5rem;
    line-height: 1.7;
    opacity: 0.85;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 480px) {
    .cta-buttons {
        flex-direction: row;
    }
}

.cta-button {
    padding: 0.75rem 1.75rem;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s ease;
    font-size: 0.875rem;
    text-align: center;
}

.cta-primary {
    background: #fff;
    color: var(--gradient-start);
}

.cta-primary:hover {
    opacity: 0.9;
}

.cta-secondary {
    background: transparent;
    color: #e4e4e7;
    border: 1px solid rgba(255,255,255,0.3);
}

.cta-secondary:hover {
    border-color: rgba(255,255,255,0.6);
}

/* Additional grids */
.included-grid,
.services-included-section .included-grid,
.campaign-types-section .features-benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 480px) {
    .included-grid,
    .services-included-section .included-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .included-grid,
    .services-included-section .included-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.included-item {
    text-align: center;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: box-shadow 0.2s ease;
}

.included-item:hover {
    box-shadow: var(--shadow-hover);
}

.included-icon {
    font-size: 1.75rem;
    display: block;
    margin-bottom: 0.5rem;
}

.included-item h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.included-item p {
    color: var(--text-secondary);
    line-height: 1.5;
    font-size: 0.8rem;
}

/* Features Detail Section */
.features-detail-section {
    margin: 2.5rem 0;
}

/* Campaign Types Section */
.campaign-types-section {
    margin: 2.5rem 0;
}

/* Services Included Section */
.services-included-section {
    margin: 2.5rem 0;
}

/* Solar specific - product grid */
.products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 480px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    background: var(--card-bg);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    transition: box-shadow 0.2s ease;
}

.product-card:hover {
    box-shadow: var(--shadow-hover);
}

.product-card img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    padding: 1rem;
}

.product-card .product-info {
    padding: 0.75rem 1rem 1rem;
}

.product-card h3 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

.product-card p {
    color: var(--text-secondary);
    font-size: 0.8rem;
    line-height: 1.5;
}

/* Section subtitle */
.section-subtitle {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}
