/*
 * Software: 5GCMS
 * Version: 1.1.9
 * Developer: 5GCMS Team
 * Website: https://www.5gcms.com
 *
 * License Type: Dual License
 *
 * Freeware Version:
 * - Includes all features of the paid version.
 * - The copyright notice in the footer must remain visible.
 * - This license header must not be removed or modified.
 *
 * Paid Version:
 * - Includes all features of the freeware version.
 * - Removal of the footer copyright notice is permitted.
 * - This license header must remain unchanged.
 *
 * Redistribution:
 * - This file may be redistributed freely.
 * - No changes or modifications are allowed.
 *
 * Any violation of these terms voids the license.
 */

/* Page Sections Styles */

.page-section {
    padding: 60px 0;
}

.page-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Four Card Grid */
.four-card-grid .card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.four-card-grid .card-item {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.four-card-grid .card-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.four-card-grid .card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.four-card-grid .card-icon img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 8px;
}

.four-card-grid .icon-emoji {
    font-size: 48px;
}

.four-card-grid h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #1f2937;
}

.four-card-grid p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 15px;
}

.four-card-grid .card-button {
    display: inline-block;
    padding: 10px 20px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.3s;
}

.four-card-grid .card-button:hover {
    background: #5568d3;
}

/* Text Block */
.text-block {
    text-align: center;
}

.text-block h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1f2937;
}

.text-block .text-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.8;
    color: #4b5563;
}

/* Two Column */
.two-column .two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.two-column .text-column h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1f2937;
}

.two-column .text-column p {
    font-size: 16px;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 20px;
}

.two-column .image-column img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-section .cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section .cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-section .cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.3s;
}

.cta-section .cta-button:hover {
    transform: scale(1.05);
}

/* Icon Grid */
.icon-grid .icon-grid-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.icon-grid .icon-item .icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.icon-grid .icon-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1f2937;
}

.icon-grid .icon-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* Feature Cards */
.feature-cards .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-cards .feature-card {
    padding: 30px;
    background: #f9fafb;
    border-radius: 12px;
    transition: background 0.3s;
}

.feature-cards .feature-card:hover {
    background: white;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.feature-cards .feature-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.feature-cards .feature-icon img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
}

.feature-cards h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1f2937;
}

.feature-cards p {
    color: #6b7280;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    background: #f9fafb;
}

.testimonials .testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonials .testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonials .testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.testimonials .testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonials .testimonial-author {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
}

.testimonials .testimonial-position {
    font-size: 14px;
    color: #6b7280;
}

/* Logo Grid */
.logo-grid {
    background: #f9fafb;
}

.logo-grid .logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    align-items: center;
}

.logo-grid .logo-item {
    text-align: center;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.logo-grid .logo-item:hover {
    opacity: 1;
}

.logo-grid .logo-item img {
    max-width: 120px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s;
}

.logo-grid .logo-item:hover img {
    filter: grayscale(0%);
}

/* Services List */
.services-list .services {
    display: grid;
    gap: 30px;
}

.services-list .service-item {
    display: flex;
    gap: 30px;
    padding: 30px;
    background: #f9fafb;
    border-radius: 12px;
    transition: background 0.3s;
}

.services-list .service-item:hover {
    background: white;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.services-list .service-icon {
    font-size: 48px;
    flex-shrink: 0;
}

.services-list .service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1f2937;
}

.services-list .service-content p {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 15px;
}

.services-list .service-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.services-list .service-link:hover {
    color: #5568d3;
}

/* Team Members */
.team-members .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.team-members .team-member {
    padding: 20px;
}

.team-members .team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.team-members h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1f2937;
}

.team-members .team-role {
    font-size: 14px;
    color: #667eea;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-members .team-bio {
    color: #6b7280;
    line-height: 1.6;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .four-card-grid .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .two-column .two-col-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .page-section {
        padding: 40px 0;
    }
    
    .four-card-grid .card-grid {
        grid-template-columns: 1fr;
    }
    
    .two-column .two-col-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .icon-grid .icon-grid-items {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-cards .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .logo-grid .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-list .service-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .team-members .team-grid {
        grid-template-columns: 1fr;
    }
    
    .text-block h2 {
        font-size: 28px;
    }
    
    .two-column .text-column h2 {
        font-size: 24px;
    }
    
    .cta-section .cta-content h2 {
        font-size: 28px;
    }
}
