/* Breadcrumb */

.breadcrumb {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 5%;
}


/* Services Grid */

.services-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 5% 100px;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 42px;
    color: #1a202c;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-title p {
    font-size: 18px;
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 35px;
}

.service-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(53, 209, 209, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #35D1D1 0%, #2bb8b8 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(53, 209, 209, 0.2);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.card-image-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .card-image {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
}

.card-content {
    padding: 32px;
}

.card-content h3 {
    font-size: 24px;
    color: #1a202c;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-content p {
    font-size: 15px;
    color: #718096;
    line-height: 1.7;
    margin-bottom: 24px;
}

.card-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #4a5568;
}

.feature-item::before {
    content: '✓';
    color: #35D1D1;
    font-weight: 700;
    font-size: 18px;
    min-width: 18px;
}

.learn-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #35D1D1;
    font-weight: 700;
    font-size: 15px;
    transition: gap 0.3s;
}

.learn-more span {
    transition: transform 0.3s;
}

.service-card:hover .learn-more {
    gap: 12px;
}

.service-card:hover .learn-more span {
    transform: translateX(3px);
}


/* Why Choose Section */

.why-choose {
    background: linear-gradient(135deg, #f7fffe 0%, #ffffff 100%);
    padding: 80px 5%;
    margin: 60px 0;
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose h2 {
    font-size: 42px;
    color: #1a202c;
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(53, 209, 209, 0.08);
    border: 1px solid rgba(53, 209, 209, 0.1);
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(53, 209, 209, 0.15);
}

.benefit-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 20px;
    color: #1a202c;
    font-weight: 600;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 15px;
    color: #718096;
    line-height: 1.6;
}


/* CTA Section */

.cta-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 60px 5%;
    text-align: center;
    background: linear-gradient(135deg, #35D1D1 0%, #2bb8b8 100%);
    border-radius: 24px;
    color: white;
}

.cta-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.btn-white {
    background: white;
    color: #35D1D1;
    padding: 16px 40px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}


/* Responsive */

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 38px;
    }
    .hero-content p {
        font-size: 17px;
    }
    .service-hero {
        height: 400px;
    }
    .section-title h2,
    .why-choose h2 {
        font-size: 32px;
    }
    .services-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .card-content {
        padding: 24px;
    }
    .cta-section h2 {
        font-size: 30px;
    }
}