/* Additional styles for CloudTransition website */

/* About Hero Image Section */
.about-hero-image {
    padding: var(--space-xl) 0 var(--space-xxl);
}

/* Spacer Section */
.spacer {
    padding: var(--space-md) 0;
}

/* Services Section */
.services {
    padding: var(--space-xxl) 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.service-card {
    background-color: var(--white);
    padding: var(--space-lg);
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: var(--space-md);
}

.service-card h3 {
    margin-bottom: var(--space-sm);
}

/* Why Choose Us Section */
.why-us {
    padding: var(--space-xxl) 0;
    background-color: var(--neutral-light);
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.why-us-list {
    list-style: none;
    margin: var(--space-lg) 0;
}

.why-us-list li {
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
}

.why-us-list li i {
    color: var(--success);
    margin-right: var(--space-sm);
}

/* Call to Action Section */
.cta {
    padding: var(--space-xl) 0;
    background-color: var(--primary);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.cta p {
    margin-bottom: var(--space-lg);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.faq {
    padding: var(--space-xxl) 0;
}

.faq-item {
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid #eee;
}

.faq-question {
    margin-bottom: var(--space-sm);
    color: var(--primary);
    font-weight: 600;
}

.faq-answer {
    color: var(--neutral-dark);
}

/* Section Title */
.section-title {
    text-align: center;
    margin-bottom: var(--space-xl);
    position: relative;
    padding-bottom: var(--space-sm);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary);
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-xl);
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .why-us-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}