/* Original Layout Fix for Zam Top Website */

/* Our Services Section - 2 cards on top, 1 at bottom */
.our-services-section {
    padding: 80px 0;
    background: white;
}

.our-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.our-services-grid .service-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 600px;
    margin: 0 auto;
}

/* Professional Excellence Section - Full width with background */
.professional-excellence-section {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.9), rgba(118, 75, 162, 0.9)),
                url('/Images/professional-bg.jpg') center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.professional-excellence-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.professional-excellence-section p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Trusted Partnership Section - Full width with background */
.trusted-partnership-section {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9), rgba(59, 130, 246, 0.9)),
                url('/Images/partnership-bg.jpg') center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

.trusted-partnership-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.trusted-partnership-section p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Why Choose Zam-Top Section - Own section with cards */
.why-choose-zamtop-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.why-choose-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.why-choose-card .icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.why-choose-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 15px;
}

.why-choose-card p {
    color: #6b7280;
    line-height: 1.6;
}

/* Get Started Today Section */
.get-started-section {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.get-started-section h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.get-started-section p {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.get-started-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.get-started-buttons .btn-primary {
    background: white;
    color: #667eea;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.get-started-buttons .btn-primary:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.get-started-buttons .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.get-started-buttons .btn-secondary:hover {
    background: white;
    color: #667eea;
}

/* Responsive Design */
@media (max-width: 768px) {
    .our-services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .our-services-grid .service-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
        margin: 0;
    }
    
    .professional-excellence-section h2,
    .trusted-partnership-section h2,
    .get-started-section h2 {
        font-size: 2rem;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .get-started-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .professional-excellence-section,
    .trusted-partnership-section,
    .get-started-section {
        padding: 60px 0;
    }
}
