/* Custom styles for the portfolio zigzag layout and other enhancements */

/* Centered testimonial section with text styling */
.testimonials .section-subtitle {
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
}

/* Image size increase by 20% */
.about-img img {
    width: 120%; /* Increased by 20% from original size */
    max-width: 120%;
    transition: transform 0.5s ease;
}

.about-images {
    display: flex;
    justify-content: center;
    overflow: hidden;
}

/* Portfolio & Services ZigZag Layout with equal heights */
.zigzag-layout {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 60px;
    gap: 30px;
}

.zigzag-layout:nth-child(even) {
    flex-direction: row-reverse;
}

.zigzag-content, 
.zigzag-image {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.zigzag-content {
    padding: 30px;
}

.zigzag-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

/* Enhanced testimonials layout */
.testimonials-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 40px auto;
    max-width: 1200px;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.testimonial-card .stars {
    color: #FFD700;
    margin-bottom: 15px;
}

/* Contact page enhancements */
.contact-cta {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 700;
}

.contact-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

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

.contact-btn {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 10px;
}

.whatsapp-btn {
    background-color: #25D366;
    color: white;
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.email-btn {
    background-color: var(--secondary-color);
    color: white;
}

.email-btn:hover {
    background-color: var(--secondary-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.email-btn {
    background-color: var(--secondary-color);
    color: white;
}

.email-btn:hover {
    background-color: var(--secondary-color-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(16, 185, 129, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .zigzag-layout, 
    .zigzag-layout:nth-child(even) {
        flex-direction: column;
    }
    
    .zigzag-content, 
    .zigzag-image {
        width: 100%;
    }
    
    .testimonials-row {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonial-card {
        width: 100%;
    }
}
