/* Optimisation GBP Page Styles */

/* Hero Section */
.service-hero {
    background: linear-gradient(135deg, #022447 0%, #034a7b 100%);
    color: white;
    padding: 80px 0 60px;
    text-align: center;
}

.service-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.9;
    font-weight: 500;
}

/* Service Intro */
.service-intro {
    padding: 60px 0;
    background-color: #fff;
}

.service-intro h2 {
    color: #022447;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.service-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}

/* Why Optimize Section */
.why-optimize {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.why-optimize h2 {
    color: #022447;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.why-content {
    max-width: 900px;
    margin: 0 auto;
}

.why-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.highlight-stat {
    background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 100%);
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #022447;
    font-size: 1.15rem;
}

.highlight-stat strong {
    color: #022447;
}

/* Our Services Detail */
.our-services-detail {
    padding: 60px 0;
    background-color: #fff;
}

.our-services-detail h2 {
    color: #022447;
    font-size: 2rem;
    margin-bottom: 50px;
    text-align: center;
}

.service-detail-block {
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.service-detail-block h3 {
    color: #022447;
    font-size: 1.6rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-detail-block h3 i {
    color: #034a7b;
    font-size: 1.4rem;
}

.service-detail-block h4 {
    color: #333;
    font-size: 1.2rem;
    margin: 25px 0 15px;
    font-weight: 600;
}

.service-detail-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

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

.checklist li {
    padding: 12px 0;
    font-size: 1.05rem;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checklist li i {
    color: #28a745;
    font-size: 1.1rem;
    margin-top: 3px;
    flex-shrink: 0;
}

/* Results Section */
.results-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #022447 0%, #034a7b 100%);
    color: white;
}

.results-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.results-section > .container > p {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.result-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
}

.result-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #FFD700;
}

.result-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #FFD700;
}

.result-card p {
    font-size: 1rem;
    opacity: 0.9;
    line-height: 1.6;
}

.results-section .highlight-stat {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-left-color: #FFD700;
}

.results-section .highlight-stat strong {
    color: #FFD700;
}

/* Reporting Section */
.reporting-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.reporting-section h2 {
    color: #022447;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.reporting-section > .container > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto 30px;
    text-align: center;
}

.reporting-section h3 {
    color: #022447;
    font-size: 1.4rem;
    margin-bottom: 20px;
    text-align: center;
}

.reporting-section .checklist {
    max-width: 700px;
    margin: 0 auto;
}

/* Why Choose Us */
.why-choose-us {
    padding: 60px 0;
    background-color: #fff;
}

.why-choose-us h2 {
    color: #022447;
    font-size: 2rem;
    margin-bottom: 50px;
    text-align: center;
}

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

.reason-card {
    padding: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.reason-icon {
    font-size: 3rem;
    color: #022447;
    margin-bottom: 20px;
}

.reason-card h3 {
    color: #022447;
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.reason-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Target Audience */
.target-audience {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.target-audience h2 {
    color: #022447;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.target-audience > .container > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.audience-item {
    padding: 20px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1rem;
    color: #555;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.audience-item:hover {
    transform: translateX(5px);
}

.audience-item i {
    color: #022447;
    font-size: 1.8rem;
    flex-shrink: 0;
}

/* Process Section */
.process-section {
    padding: 60px 0;
    background-color: #fff;
}

.process-section h2 {
    color: #022447;
    font-size: 2rem;
    margin-bottom: 50px;
    text-align: center;
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-step {
    padding: 30px;
    margin-bottom: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    position: relative;
    padding-left: 100px;
}

.step-number {
    position: absolute;
    left: 30px;
    top: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #022447 0%, #034a7b 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.process-step h3 {
    color: #022447;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Pricing Section */
.pricing-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.pricing-section h2 {
    color: #022447;
    font-size: 2rem;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-section > .container > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto 30px;
}

.pricing-card {
    padding: 40px 30px;
    background: white;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid #022447;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #022447;
    padding: 5px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
}

.pricing-card h3 {
    color: #022447;
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.pricing-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 25px;
    min-height: 80px;
}

.pricing-card .btn {
    margin-top: 10px;
}

.pricing-card .btn-primary {
    background-color: #022447;
    color: white;
    border: none;
}

.pricing-card .btn-primary:hover {
    background-color: #034a7b;
    color: white;
}

.pricing-note {
    text-align: center;
    font-size: 1rem;
    color: #555;
    font-style: italic;
    margin-top: 20px;
}

.guarantee-box {
    max-width: 700px;
    margin: 30px auto 0;
    padding: 25px;
    background: white;
    border-radius: 10px;
    border: 2px solid #28a745;
    text-align: center;
}

.guarantee-box h4 {
    color: #022447;
    font-size: 1.3rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.guarantee-box h4 i {
    color: #28a745;
}

.guarantee-box p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 30px auto 0;
}

.testimonial-card {
    padding: 30px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    color: #022447;
    font-weight: 600;
    font-size: 1rem;
}

/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background-color: #fff;
}

.faq-section h2 {
    color: #022447;
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 25px;
    background: #f9f9f9;
    border-radius: 10px;
    border-left: 4px solid #022447;
}

.faq-item h3 {
    color: #022447;
    font-size: 1.2rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-item h3 i {
    color: #034a7b;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin: 0;
}

/* Final CTA */
.final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #022447 0%, #034a7b 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.final-cta p {
    font-size: 1.15rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 15px;
    opacity: 0.95;
}

.cta-highlight {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 35px !important;
}

.final-cta .cta-buttons {
    margin-bottom: 40px;
}

.final-cta .pricing-note {
    color: white;
    font-size: 1.1rem;
    margin-top: 20px;
}

.final-cta .pricing-note strong {
    color: #FFD700;
    font-weight: 700;
}

.contact-info-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-info-cta p {
    margin: 0;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info-cta i {
    color: #FFD700;
    font-size: 1.2rem;
}

.contact-info-cta a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-cta a:hover {
    color: #FFD700;
}

/* Responsive */
@media (max-width: 768px) {
    .service-hero h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .service-intro h2,
    .why-optimize h2,
    .our-services-detail h2,
    .results-section h2,
    .reporting-section h2,
    .why-choose-us h2,
    .target-audience h2,
    .process-section h2,
    .pricing-section h2,
    .faq-section h2 {
        font-size: 1.6rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .process-step {
        padding-left: 30px;
    }

    .step-number {
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 15px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-cta {
        flex-direction: column;
        gap: 20px;
    }

    .final-cta h2 {
        font-size: 1.8rem;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .guarantee-box h4 {
        flex-direction: column;
        gap: 5px;
    }
}
