<?php
/**
 * Single service page (iliya_service CPT).
 *
 * @package Iliya
 */

get_header();

while (have_posts()) :
    the_post();
    $icon = get_post_meta(get_the_ID(), '_iliya_icon', true);
    ?>
    <article <?php post_class(); ?>>
        <!-- Hero -->
        <section class="relative overflow-hidden bg-dark text-white">
            <?php if (has_post_thumbnail()) : ?>
                <div class="absolute inset-0" aria-hidden="true">
                    <?php the_post_thumbnail('large', ['class' => 'duo h-full w-full object-cover opacity-30']); ?>
                    <div class="absolute inset-0 bg-gradient-to-t from-dark via-dark/85 to-dark/60"></div>
                </div>
            <?php endif; ?>
            <div class="bg-grid pointer-events-none absolute inset-0 opacity-30" aria-hidden="true"></div>
            <div class="container relative mx-auto max-w-[1200px] py-20 md:py-24">
                <span class="eyebrow mb-5 block text-gold-light"><?php esc_html_e('خدمات تخصصی', 'iliya'); ?></span>
                <div class="flex items-center gap-4">
                    <?php if ($icon) : ?>
                        <span class="shrink-0 text-gold"><?php echo iliya_icon($icon, 44); ?></span>
                    <?php endif; ?>
                    <h1 class="display-xl text-white"><?php the_title(); ?></h1>
                </div>
            </div>
        </section>

        <!-- Body -->
        <section class="section bg-paper">
            <div class="container mx-auto max-w-[820px]">
                <?php get_template_part('template-parts/breadcrumb'); ?>

                <div class="prose-iliya leading-9 text-body">
                    <?php
                    if (trim(get_the_content()) !== '') {
                        the_content();
                    } else {
                        echo '<p>' . esc_html__('برای دریافت اطلاعات بیشتر درباره این خدمت با کارشناسان ما در تماس باشید.', 'iliya') . '</p>';
                    }
                    ?>
                </div>

                <div class="mt-10 flex flex-wrap gap-4">
                    <a href="<?php echo esc_url(home_url('/#contact')); ?>" class="btn-primary lnk-arrow">
                        <?php esc_html_e('درخواست مشاوره', 'iliya'); ?>
                        <?php echo iliya_icon('arrow-start', 18); ?>
                    </a>
                    <a href="<?php echo esc_url(home_url('/#services')); ?>" class="btn-line"><?php esc_html_e('سایر خدمات', 'iliya'); ?></a>
                </div>
            </div>
        </section>
    </article>
<?php
endwhile;

get_footer();
