/* Category Pages Styles */

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d72 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
}

.page-hero-content {
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.page-hero h1 i {
    font-size: 2.5rem;
}

.page-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    font-size: 1rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.breadcrumb a:hover {
    opacity: 0.8;
}

/* Services Section */
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5aa0;
}

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

.service-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #2c5aa0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-icon {
    font-size: 3.5rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-card p {
    color: #666;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: white;
}

.features-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c5aa0;
}

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

.features-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #333;
}

.features-list i {
    color: #28a745;
    font-size: 1.2rem;
}

.features-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed #2c5aa0;
}

.image-placeholder i {
    font-size: 4rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.image-placeholder p {
    color: #666;
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3d72 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-primary {
    background: #ff6b35;
    color: white;
}

.btn-primary:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #2c5aa0;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Page Hero */
    .page-hero {
        padding: 100px 0 60px;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .page-hero h1 i {
        font-size: 1.8rem;
    }
    
    .page-hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .breadcrumb {
        font-size: 0.9rem;
    }
    
    /* Services Section */
    .services-section {
        padding: 3rem 0;
    }
    
    .services-section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        font-size: 2.5rem;
    }
    
    /* Features Section */
    .features-section {
        padding: 3rem 0;
    }
    
    .features-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-text h2 {
        font-size: 1.8rem;
    }
    
    .features-list li {
        font-size: 1rem;
    }
    
    .image-placeholder {
        width: 100%;
        max-width: 250px;
        height: 250px;
    }
    
    /* CTA Section */
    .cta-section {
        padding: 3rem 0;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .btn-primary {
        width: 100%;
        max-width: 250px;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.5rem;
    }
    
    .page-hero p {
        font-size: 0.9rem;
    }
    
    .services-section h2,
    .features-text h2,
    .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .features-list li {
        font-size: 0.95rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 1rem;
    }
}


/* Single Service Layout */
.single-service-container {
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.service-card-large {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 700px;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-top: 5px solid #2c5aa0;
}

.service-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(44, 90, 160, 0.2);
}

.service-icon-large {
    font-size: 5rem;
    color: #2c5aa0;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.service-card-large h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c5aa0;
}

.service-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    text-align: left;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.feature-item i {
    color: #28a745;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.feature-item span {
    color: #333;
    font-size: 1rem;
    font-weight: 500;
}

/* Responsive for single service */
@media (max-width: 768px) {
    .single-service-container {
        padding: 0 15px;
    }
    
    .service-card-large {
        padding: 2rem 1.5rem;
    }
    
    .service-icon-large {
        font-size: 3.5rem;
    }
    
    .service-card-large h3 {
        font-size: 1.6rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
    
    .feature-item {
        padding: 0.8rem;
    }
    
    .feature-item i {
        font-size: 1.1rem;
    }
    
    .feature-item span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .service-card-large {
        padding: 1.5rem 1rem;
    }
    
    .service-icon-large {
        font-size: 3rem;
    }
    
    .service-card-large h3 {
        font-size: 1.4rem;
    }
    
    .service-description {
        font-size: 0.95rem;
    }
    
    .feature-item {
        padding: 0.7rem;
    }
    
    .feature-item span {
        font-size: 0.85rem;
    }
}
