/* Modern Services Section Styling */
.services-modern {
    padding: 96px 0;
    background: white;
}

[data-theme="dark"] .services-modern {
    background: hsl(var(--card));
}

.section-header-center {
    text-align: center;
    margin-bottom: 80px;
}

.section-description-large {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: hsl(var(--muted-foreground));
    max-width: 1100px;
    margin: 32px auto 32px;
    font-weight: 500;
    line-height: 1.7;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 32px;
}

.service-card-modern {
    background: hsl(var(--card));
    padding: 32px;
    border-radius: 16px;
    border: 2px solid hsl(var(--border));
    transition: var(--transition-smooth);
    position: relative;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: hsl(var(--primary));
}

.service-number {
    position: absolute;
    top: -16px;
    left: -16px;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--shadow-lg);
}

.service-icon-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 56px;
    height: 56px;
    background: hsl(var(--primary) / 0.1);
    border-radius: 12px;
    margin-bottom: 20px;
}

.service-icon-modern svg {
    color: hsl(var(--primary));
}

.service-title-modern {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: hsl(var(--foreground));
}

.service-description {
    font-size: 16px;
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.service-features li {
    padding: 8px 0;
    color: hsl(var(--muted-foreground));
    position: relative;
    padding-left: 28px;
    font-size: 15px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: hsl(var(--primary));
    font-weight: 700;
    font-size: 18px;
}

/* Modern Process Section */
.process-section {
    padding: 96px 0;
    background: linear-gradient(to bottom right, hsl(var(--primary) / 0.05), hsl(var(--secondary) / 0.05));
}

[data-theme="dark"] .process-section {
    background: linear-gradient(to bottom right, hsl(var(--primary) / 0.1), hsl(var(--secondary) / 0.1));
}

.section-description {
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    color: hsl(var(--muted-foreground));
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 48px;
}

.process-item {
    text-align: center;
    transition: var(--transition-smooth);
}

.process-item:hover {
    transform: scale(1.05);
}

.process-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: white;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.process-item:hover .process-icon {
    box-shadow: var(--shadow-glow-lg);
    transform: scale(1.1);
}

.process-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: hsl(var(--foreground));
    transition: var(--transition-smooth);
}

.process-item:hover .process-title {
    color: hsl(var(--primary));
}

.process-description {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    font-size: 15px;
}

/* Legacy aliases */
.process-step {
    text-align: center;
    transition: var(--transition-smooth);
}

.process-step:hover {
    transform: scale(1.05);
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 900;
    color: white;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.process-step:hover .process-number {
    box-shadow: var(--shadow-glow-lg);
    transform: scale(1.1);
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: hsl(var(--foreground));
    transition: var(--transition-smooth);
}

.process-step:hover h3 {
    color: hsl(var(--primary));
}

.process-step p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    font-size: 15px;
}

/* Modern Why Choose Section */
.why-choose-section {
    padding: 96px 0;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.why-choose-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.why-choose-point {
    display: flex;
    align-items: flex-start;
    gap: 24px;
}

.why-choose-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.why-choose-icon svg {
    color: white;
}

.why-choose-point h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: hsl(var(--foreground));
}

.why-choose-point p {
    color: hsl(var(--muted-foreground));
    line-height: 1.6;
    font-size: 15px;
}

.why-choose-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-choose-image img {
    width: 100%;
    height: auto;
    display: block;
}

.why-choose-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0.2;
    border-radius: 16px;
}

/* Modern Testimonials Section */
.testimonials-section {
    padding: 96px 0;
    background: var(--gradient-subtle);
}

[data-theme="dark"] .testimonials-section {
    background: linear-gradient(180deg, hsl(var(--background)), hsl(var(--card)));
}

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

.testimonial-card {
    background: hsl(var(--card));
    padding: 32px;
    border-radius: 16px;
    border: 2px solid hsl(var(--border));
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: hsl(var(--primary) / 0.5);
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-rating svg {
    width: 20px;
    height: 20px;
    fill: hsl(var(--primary));
    color: hsl(var(--primary));
}

.testimonial-content {
    font-size: 16px;
    line-height: 1.6;
    color: hsl(var(--muted-foreground));
    margin-bottom: 24px;
}

.testimonial-author {
    font-weight: 600;
    font-size: 18px;
    color: hsl(var(--foreground));
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 14px;
    color: hsl(var(--muted-foreground));
}

/* Modern Final CTA Section */
.final-cta,
.final-cta-section {
    padding: 128px 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-gradient-overlay {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsl(var(--primary) / 0.5), hsl(var(--secondary) / 0.5), hsl(var(--accent) / 0.5));
    opacity: 0.2;
    z-index: 0;
}

.cta-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.badge-cta {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 32px;
}

.cta-heading {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.1;
}

.cta-subheading {
    color: white;
    display: block;
}

.cta-description {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.7;
}

.cta-buttons-container {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.cta-guarantees {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.guarantee-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.guarantee-item svg {
    flex-shrink: 0;
}

/* Legacy aliases */
.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, hsl(var(--primary) / 0.5), hsl(var(--secondary) / 0.5), hsl(var(--accent) / 0.5));
    opacity: 0.2;
}

.final-cta-content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 32px;
}

.final-cta h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.1;
}

.final-cta p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: 48px;
    color: rgba(255, 255, 255, 0.95);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .gmba-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-cta-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .gmba-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

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