/* Services Page Banner & Breadcrumbs Styles */

.page-banner {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 120px 0 80px;
    margin-top: 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="%23ffffff" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="10" cy="60" r="0.5" fill="%23ffffff" opacity="0.05"/><circle cx="90" cy="40" r="0.5" fill="%23ffffff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.4;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #45a049, #4CAF50);
    box-shadow: 0 2px 10px rgba(76, 175, 80, 0.3);
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-content h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    letter-spacing: -0.5px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 15px;
    margin-top: 15px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 15px;
    position: relative;
}

.breadcrumbs a:hover {
    color: #fff;
    background: rgba(76, 175, 80, 0.2);
    transform: translateY(-1px);
}

.breadcrumbs i {
    font-size: 12px;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 4px;
}

.breadcrumbs span {
    color: #4CAF50;
    font-weight: 600;
    background: rgba(76, 175, 80, 0.15);
    padding: 4px 12px;
    border-radius: 15px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

@media (max-width: 768px) {
    .page-banner {
        padding: 100px 0 60px;
    }
    .banner-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }
    .breadcrumbs {
        font-size: 14px;
        gap: 8px;
        padding: 10px 15px;
        flex-wrap: wrap;
    }
    .breadcrumbs i {
        font-size: 10px;
    }
    .breadcrumbs a,
    .breadcrumbs span {
        padding: 3px 6px;
    }
}

@media (max-width: 480px) {
    .page-banner {
        padding: 80px 0 50px;
    }
    .banner-content h1 {
        font-size: 24px;
        line-height: 1.3;
    }
    .breadcrumbs {
        font-size: 12px;
        gap: 6px;
        padding: 8px 12px;
        flex-direction: column;
        gap: 8px;
    }
    .breadcrumbs i {
        font-size: 9px;
        transform: rotate(90deg);
    }
    .breadcrumbs a,
    .breadcrumbs span {
        padding: 2px 4px;
    }
} 

/* --- Services Overview Section --- */
.services-overview-section {
    background: #fff;
    padding: 70px 0 40px;
}
.services-overview-section .section-header {
    text-align: center;
    margin-bottom: 30px;
}
.services-overview-section .section-header h2 {
    font-size: 30px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}
.services-overview-section .section-header p {
    font-size: 18px;
    color: #666;
    margin-bottom: 0;
}
.services-overview-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    text-align: center;
}
.services-overview-text span {
    color: #4CAF50;
    font-weight: 600;
}

/* --- Services Cards --- */
.services-section {
    background: #f8f9fa;
    padding: 80px 0 60px;
}
.service-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 40px;
    margin-top: 40px;
}
.service-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(76,175,80,0.07), 0 1.5px 6px rgba(0,0,0,0.04);
    padding: 40px 28px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.service-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 48px rgba(76,175,80,0.13), 0 2px 8px rgba(0,0,0,0.07);
}
.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4CAF50 60%, #45a049 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 22px;
    box-shadow: 0 4px 16px rgba(76,175,80,0.13);
}
.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    text-align: center;
}
.service-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 22px;
    text-align: center;
}
.service-card .btn {
    background: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 10px 28px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(76,175,80,0.13);
    cursor: pointer;
    text-decoration: none;
}
.service-card .btn:hover {
    background: #388e3c;
    color: #fff;
}

/* --- Why Choose Us Section --- */
.why-choose-us-section {
    background: #fff;
    padding: 80px 0 60px;
}
.why-choose-us-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}
.why-choose-us-section .section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}
.why-choose-us-section .section-header p {
    font-size: 17px;
    color: #666;
    margin-bottom: 0;
}
.why-choose-us-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}
.why-choose-card {
    background: #f8f9fa;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(76,175,80,0.07), 0 1px 4px rgba(0,0,0,0.04);
    padding: 36px 28px 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.why-choose-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 32px rgba(76,175,80,0.13), 0 2px 8px rgba(0,0,0,0.07);
}
.why-choose-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #4CAF50 60%, #45a049 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(76,175,80,0.13);
}
.why-choose-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}
.why-choose-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 14px;
}
.why-choose-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.why-choose-card ul li {
    font-size: 14px;
    color: #4CAF50;
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.why-choose-card ul li i {
    color: #4CAF50;
    font-size: 14px;
}

/* --- Process Timeline --- */
.our-process-section {
    background: #f8f9fa;
    padding: 80px 0 60px;
}
.our-process-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}
.our-process-section .section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}
.our-process-section .section-header p {
    font-size: 17px;
    color: #666;
    margin-bottom: 0;
}
.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
    margin-top: 30px;
}
.process-step {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 18px rgba(76,175,80,0.07), 0 1px 4px rgba(0,0,0,0.04);
    padding: 32px 22px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}
.process-step:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 12px 32px rgba(76,175,80,0.13), 0 2px 8px rgba(0,0,0,0.07);
}
.process-step-number {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #4CAF50 60%, #45a049 100%);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(76,175,80,0.13);
}
.process-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
    text-align: center;
}
.process-content p {
    font-size: 14px;
    color: #666;
    text-align: center;
}

/* --- CTA Section --- */
.cta-section {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: #fff;
    padding: 70px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-content h2 {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 18px;
    color: #fff;
}
.cta-content p {
    font-size: 18px;
    margin-bottom: 28px;
    color: #e0ffe0;
}
.cta-content .btn {
    background: #fff;
    color: #4CAF50;
    border: none;
    border-radius: 25px;
    padding: 12px 36px;
    font-size: 17px;
    font-weight: 700;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(76,175,80,0.13);
    cursor: pointer;
    text-decoration: none;
}
.cta-content .btn:hover {
    background: #388e3c;
    color: #fff;
}

/* --- FAQ Section --- */
.faq-section {
    background: #fff;
    padding: 80px 0 60px;
}
.faq-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}
.faq-section .section-header h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}
.faq-section .section-header p {
    font-size: 17px;
    color: #666;
    margin-bottom: 0;
}
.faq-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.faq-item {
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(76,175,80,0.07);
    padding: 0;
    overflow: hidden;
    transition: box-shadow 0.3s;
}
.faq-item.active {
    box-shadow: 0 8px 24px rgba(76,175,80,0.13);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 22px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
    background: #fff;
    border: none;
    outline: none;
    transition: background 0.3s;
}
.faq-question:hover {
    background: #e8f5e9;
}
.faq-toggle {
    margin-left: 18px;
    color: #4CAF50;
    font-size: 18px;
    transition: transform 0.3s;
}
.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #f8f9fa;
    color: #555;
    font-size: 15px;
    padding: 0 28px;
    transition: max-height 0.3s ease-out, padding 0.3s;
}
.faq-item.active .faq-answer {
    padding: 18px 28px 22px;
    max-height: 300px;
}

/* --- Footer --- */
.footer {
    background: #333;
    color: #fff;
    padding: 60px 0 20px;
    margin-top: 0;
}
.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}
.footer-column h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #4CAF50;
}
.footer-column p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 20px;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
}
.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #4CAF50;
}
.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-column ul li {
    margin-bottom: 10px;
}
.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}
.footer-column ul li a:hover {
    color: #4CAF50;
}
.footer-column .footer-form {
    display: flex;
    gap: 8px;
    margin-top: 10px;
}
.footer-column .footer-form input[type=email] {
    flex: 1;
    padding: 10px 14px;
    border-radius: 20px;
    border: none;
    font-size: 15px;
    outline: none;
}
.footer-column .footer-form button {
    background: #4CAF50;
    color: #fff;
    border: none;
    border-radius: 20px;
    padding: 10px 22px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}
.footer-column .footer-form button:hover {
    background: #388e3c;
}
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-top: 1px solid #444;
    padding-top: 18px;
}
.footer-bottom p {
    color: #fff;
    font-size: 15px;
    margin: 0;
}
.footer-bottom-links {
    display: flex;
    gap: 18px;
}
.footer-bottom-links a {
    color: #46cbff;
    text-decoration: underline;
    font-size: 15px;
    transition: color 0.3s;
}
.footer-bottom-links a:hover {
    color: #4CAF50;
}

/* --- Back to Top Button --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    background: #4CAF50;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    box-shadow: 0 4px 16px rgba(76,175,80,0.13);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s, background 0.3s;
    z-index: 9999;
}
.back-to-top.active {
    opacity: 1;
    pointer-events: auto;
}
.back-to-top:hover {
    background: #388e3c;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .service-cards, .why-choose-us-container, .process-timeline, .footer-content {
        gap: 24px;
    }
}
@media (max-width: 768px) {
    .services-overview-section, .services-section, .why-choose-us-section, .our-process-section, .faq-section {
        padding: 50px 0 30px;
    }
    .service-cards, .why-choose-us-container, .process-timeline, .footer-content {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .service-card, .why-choose-card, .process-step {
        padding: 28px 14px 18px;
    }
    .footer-content {
        margin-bottom: 24px;
    }
}
@media (max-width: 480px) {
    .services-overview-section, .services-section, .why-choose-us-section, .our-process-section, .faq-section {
        padding: 30px 0 18px;
    }
    .service-card, .why-choose-card, .process-step {
        padding: 18px 6px 12px;
    }
    .footer-content {
        gap: 12px;
    }
    .footer-column h3 {
        font-size: 17px;
    }
    .footer-bottom-links {
        gap: 8px;
    }
} 