/* Service Pages Styling */

/* Hero Section */
.service-hero {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
}

.service-hero .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
}

.service-hero .hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

/* Overview Section */
.service-overview {
    padding: 80px 0;
    background: #f9fafb;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.content-wrapper h2 {
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.lead {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #6b7280;
}

/* Methodology Section */
.methodology {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #1f2937;
    margin-bottom: 60px;
    font-weight: 700;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 40px;
}

.methodology-card {
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.methodology-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.methodology-card h3 {
    font-size: 1.4rem;
    color: #1f2937;
    margin-bottom: 1rem;
    font-weight: 600;
}

.methodology-card p {
    color: #6b7280;
    line-height: 1.7;
}

/* Offerings Section */
.offerings {
    padding: 80px 0;
    background: #f9fafb;
}

.offerings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.offering-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.offering-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.offering-card h3 {
    font-size: 1.5rem;
    color: #1f2937;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.offering-card ul {
    list-style: none;
    padding: 0;
}

.offering-card ul li {
    padding: 0.7rem 0;
    color: #6b7280;
    border-bottom: 1px solid #e5e7eb;
    position: relative;
    padding-left: 1.5rem;
}

.offering-card ul li:last-child {
    border-bottom: none;
}

.offering-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

/* Best Practices Section */
.best-practices {
    padding: 80px 0;
    background: white;
}

.practices-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
}

.practice-item {
    background: #f9fafb;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.practice-item h4 {
    font-size: 1.3rem;
    color: #1f2937;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.practice-item p {
    color: #6b7280;
    line-height: 1.7;
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background: #f9fafb;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.benefit-item h4 {
    font-size: 1.2rem;
    color: #2563eb;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.benefit-item p {
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #2563eb;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background: #f9fafb;
}

/* Inquiry Form Section */
.inquiry-section {
    padding: 80px 0;
    background: #f9fafb;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-container h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-subtitle {
    text-align: center;
    color: #6b7280;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.inquiry-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.inquiry-form .form-group {
    margin-bottom: 1rem;
}

.inquiry-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1f2937;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.inquiry-form textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    margin: 2rem 0;
}

.checkbox-container {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    position: relative;
    padding-left: 35px;
}

.checkbox-container input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    width: 0;
    height: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: white;
    border: 2px solid #e5e7eb;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.checkbox-container:hover .checkmark {
    border-color: #2563eb;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #2563eb;
    border-color: #2563eb;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-label {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.5;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .methodology-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .service-hero .hero-content h1 {
        font-size: 2rem;
    }

    .service-hero .hero-content p {
        font-size: 1.1rem;
    }

    .content-wrapper h2,
    .section-title {
        font-size: 1.8rem;
    }

    .methodology-grid,
    .offerings-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .inquiry-form .form-row {
        grid-template-columns: 1fr;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-hero {
        padding: 120px 0 60px;
    }

    .methodology-card,
    .offering-card,
    .benefit-item {
        padding: 1.5rem;
    }

    .form-container h2 {
        font-size: 1.6rem;
    }
}
