@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@200;300;400;500;700;800;900&display=swap');

/* ============================================
   Target Line - Theme Overrides
   ONLY overrides that are needed beyond Beeko
============================================ */

/* Colors & Font Override */
:root {
    --tg-body-font-family: "Tajawal", sans-serif;
    --tg-heading-font-family: "Tajawal", sans-serif;
    --tg-theme-primary: #463989;
    --tg-theme-secondary: #01022E;
    --tg-color-red-light: #900000;
}

/* ============================================
   Slider - Dark overlay + White text
============================================ */
.slider__bg-five {
    position: relative;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

.slider__bg-five::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(1, 2, 46, 0.85) 0%, rgba(1, 2, 46, 0.4) 100%);
    z-index: 1;
}

.slider__bg-five .container {
    position: relative;
    z-index: 2;
}

.slider__content-four .sub-title {
    color: rgba(255, 255, 255, 0.8) !important;
    letter-spacing: 3px;
}

.slider__content-four .title {
    color: #fff;
}

.slider__content-four p {
    color: rgba(255, 255, 255, 0.85);
}

.slider__content-four .tg-btn {
    background: var(--tg-theme-primary);
    border-color: var(--tg-theme-primary);
    color: #fff;
}

.slider__content-four .tg-btn:hover {
    background: var(--tg-color-red-light);
    border-color: var(--tg-color-red-light);
}

.slider__nav-two {
    z-index: 3;
}

/* Slider pagination - hidden on desktop, visible on mobile */
.slider__pagination {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 5;
    display: none;
}

@media (max-width: 991px) {
    .slider__pagination {
        display: block;
    }
}

.slider__pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    margin: 0 6px !important;
    border-radius: 12px;
    transition: all 0.3s ease;
    vertical-align: middle;
}

.slider__pagination .swiper-pagination-bullet-active {
    background: #fff;
    width: 35px;
    border-radius: 6px;
}

/* ============================================
   Header - White links on transparent
============================================ */
.transparent-header .tg-header__area-two .navigation > li > a {
    color: #fff;
}

/* Nav links spacing */
.tgmenu__navbar-wrap ul li a {
    padding: 15px !important;
}

.tg-header__area-two {
    padding: 10px 0;
}

.tg-header__area.sticky-menu {
    padding: 10px 0;
}

/* Dropdown arrow fix - hide all default arrows, use only one */
.navigation .menu-item-has-children > .dropdown-btn {
    display: none !important;
}

.tgmenu__main-menu .navigation .menu-item-has-children > a::after {
    display: none !important;
}

.tgmenu__main-menu .navigation > li.menu-item-has-children > a {
    display: inline-flex;
    align-items: center;
    flex-direction: row-reverse;
}

.tgmenu__main-menu .navigation .menu-item-has-children > a::before {
    content: '\f107';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 6px;
    font-size: 11px;
    transition: transform 0.3s;
    display: inline-block;
}

.tgmenu__main-menu .navigation .menu-item-has-children:hover > a::before {
    transform: rotate(180deg);
}

/* Nav links underline effect */
.navigation > li > a {
    position: relative;
}

.navigation > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: #fff;
    transition: width 0.3s ease;
}

.navigation > li > a:hover::after,
.navigation > li.active > a::after {
    width: 100%;
}

/* Transparent header - white underline */
.transparent-header .tg-header__area-two:not(.sticky-menu) .navigation > li > a:hover,
.transparent-header .tg-header__area-two:not(.sticky-menu) .navigation > li.active > a {
    color: #fff;
}

/* Sticky header - primary underline */
.tg-header__area.sticky-menu .navigation > li > a::after {
    background: var(--tg-theme-primary);
}

.tg-header__area.sticky-menu .navigation > li > a:hover,
.tg-header__area.sticky-menu .navigation > li.active > a {
    color: var(--tg-theme-primary);
}

.transparent-header .tg-header__area-two .header-btn-two .tg-btn {
    background: var(--tg-theme-primary);
    border-color: var(--tg-theme-primary);
    color: #fff;
}

.transparent-header .tg-header__area-two .header-btn-two .tg-btn:hover {
    background: var(--tg-color-red-light);
    border-color: var(--tg-color-red-light);
}

.transparent-header .tg-header__area-two .mobile-nav-toggler i {
    color: #fff;
}

/* Logo white when transparent (not sticky) */
.transparent-header .tg-header__area-two:not(.sticky-menu) .logo img {
    filter: brightness(0) invert(1);
}

/* When header becomes sticky - dark text */
.tg-header__area.sticky-menu .navigation > li > a {
    color: var(--tg-heading-color);
}

.tg-header__area.sticky-menu .navigation > li > a:hover,
.tg-header__area.sticky-menu .navigation > li.active > a {
    color: var(--tg-theme-primary);
}

.tg-header__area.sticky-menu .mobile-nav-toggler i {
    color: var(--tg-heading-color);
}

body,
h1, h2, h3, h4, h5, h6,
.title, .tg-btn, .navigation li a,
.sub-menu li a, .footer__widget-title,
.section__title .sub-title,
.section__title .title,
.accordion-button,
.odometer {
    font-family: "Tajawal", sans-serif;
}

/* ============================================
   Header - only what Beeko doesn't cover
============================================ */
.tgmenu__nav .logo img {
    max-height: 55px;
    width: auto;
}

/* Language Switcher (not in Beeko) */
.language-switcher-wrap {
    display: flex;
    align-items: center;
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-left: 15px;
}

.language-switcher a {
    color: var(--tg-heading-color);
    font-weight: 600;
    font-size: 14px;
    padding: 4px 10px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.language-switcher a:hover {
    color: var(--tg-theme-primary);
}

/* ============================================
   Scroll to top - move to RIGHT side
============================================ */
.scroll__top {
    left: auto !important;
    right: 30px !important;
}

/* ============================================
   Header hide on scroll down, show on scroll up
============================================ */
#sticky-header.sticky-menu {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

#sticky-header.sticky-menu.header-hidden {
    transform: translateY(-100%);
}

#sticky-header.sticky-menu:not(.header-hidden) {
    transform: translateY(0);
}

/* ============================================
   WhatsApp Bounce Animation
============================================ */
.whatsapp-float {
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    animation: none;
    transform: scale(1.15);
}

@keyframes whatsapp-pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); transform: scale(1); }
    50% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); transform: scale(1.05); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); transform: scale(1); }
}

/* ============================================
   Custom Cursor Effect
============================================ */
.tl-cursor {
    position: fixed;
    width: 35px;
    height: 35px;
    background: rgba(70, 57, 137, 0.15);
    border: none;
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transition: transform 0.15s ease, opacity 0.15s ease, background 0.15s ease, width 0.15s ease, height 0.15s ease;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.tl-cursor.active {
    opacity: 1;
}

.tl-cursor-dot {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--tg-theme-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: transform 0.08s ease, background 0.15s ease;
    opacity: 0;
}

.tl-cursor-dot.active {
    opacity: 1;
}

/* Cursor hover on links/buttons */
.tl-cursor.hover {
    transform: translate(-50%, -50%) scale(1.5);
    background: rgba(70, 57, 137, 0.25);
}

.tl-cursor-dot.hover {
    opacity: 0;
}

/* Cursor on dark/primary backgrounds */
.tl-cursor.on-dark {
    background: rgba(255, 255, 255, 0.2);
}

.tl-cursor.on-dark.hover {
    background: rgba(255, 255, 255, 0.35);
}

.tl-cursor-dot.on-dark {
    background: #fff;
}

/* Hide custom cursor on mobile */
@media (max-width: 991px) {
    .tl-cursor, .tl-cursor-dot {
        display: none !important;
    }
}

/* ============================================
   Mobile Responsive
============================================ */
@media (max-width: 991px) {
    /* Mobile menu icon - keep original Beeko icon */
    .mobile-nav-toggler {
        display: flex !important;
        align-items: center;
        justify-content: center;
    }

    /* Slider mobile */
    .slider__content-four .title {
        font-size: 28px !important;
        line-height: 1.3;
    }

    .slider__content-four .sub-title {
        font-size: 12px !important;
        letter-spacing: 1px;
    }

    .slider__content-four p {
        font-size: 14px !important;
        margin-bottom: 20px;
    }

    .slider__content-four .tg-btn {
        padding: 10px 22px;
        font-size: 14px;
    }

    .slider__bg-five {
        min-height: 550px !important;
        padding: 130px 0 80px !important;
    }

    .slider__content-four {
        text-align: center;
    }

    .slider__content-four p {
        width: 100% !important;
    }

    /* Hide arrows on mobile, pagination already visible */
    .slider__nav-two {
        display: none !important;
    }

    /* Footer shapes hide on mobile */
    .footer__shape-wrap {
        display: none !important;
    }

    /* Center content on mobile */
    .footer__widget {
        text-align: center;
        margin-bottom: 35px;
    }

    .footer__social ul {
        justify-content: center;
    }

    .footer__contact-list {
        align-items: center;
    }

    .footer__contact-item {
        justify-content: center;
    }

    .copyright__content {
        text-align: center;
    }

    /* About section center */
    .about__content-two {
        text-align: center;
        margin-top: 30px;
    }

    .about__inner-wrap-two {
        justify-content: center;
    }

    .about__list-item-two {
        text-align: right;
    }

    /* Section titles center */
    .section__title {
        text-align: center;
    }

    .section__title .sub-title::after {
        display: none;
    }

    /* Services center */
    .services__item-two {
        text-align: center;
    }

    .services__icon-two {
        margin-left: auto;
        margin-right: auto;
    }

    /* Counter center */
    .counter__item-two {
        justify-content: center;
    }

    /* CTA center */
    .cta__content-three {
        text-align: center;
        margin-bottom: 20px;
    }

    .cta__content-right {
        justify-content: center;
    }

    /* Breadcrumb center */
    .breadcrumb__content {
        text-align: center;
    }

    .breadcrumb__content .breadcrumb {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .slider__content-four .title {
        font-size: 24px !important;
    }

    .slider__bg-five {
        min-height: 480px !important;
    }

    .cta__inner-wrap-two {
        padding: 30px 20px !important;
    }
}

/* Hide default cursor on desktop when custom cursor active */
@media (min-width: 992px) {
    body.custom-cursor-active {
        cursor: none;
    }

    body.custom-cursor-active a,
    body.custom-cursor-active button,
    body.custom-cursor-active input,
    body.custom-cursor-active textarea,
    body.custom-cursor-active select {
        cursor: none;
    }
}

/* ============================================
   Footer - Dark Background
============================================ */
.footer__area {
    background: var(--tg-theme-secondary) !important;
}

.footer__top {
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer__widget-title {
    color: #fff !important;
}

.footer__content p {
    color: rgba(255, 255, 255, 0.65);
}

.footer__widget-link li a {
    color: rgba(255, 255, 255, 0.65) !important;
}

.footer__widget-link li a:hover {
    color: #fff !important;
}

.footer__bottom {
    background: var(--tg-color-white-default) !important;
    border-top: none !important;
    padding: 20px 0;
}

.copyright__content p {
    color: var(--tg-theme-primary);
}

/* Footer Logo white */
.footer__logo img {
    filter: brightness(0) invert(1);
    max-height: 50px;
}

/* Footer Social - Font Awesome icons */
.footer__social ul {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer__social li a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: rgba(255, 255, 255, 0.6);
    font-size: 15px;
}

.footer__social li a:hover {
    background: var(--tg-theme-primary);
    border-color: var(--tg-theme-primary);
    color: #fff;
}

/* Footer shapes */
.footer__shape-wrap img {
    opacity: 0.04;
}

/* Footer Contact Items */
.footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer__contact-item .icon {
    width: 42px;
    height: 42px;
    background: rgba(70, 57, 137, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.footer__contact-item .icon i {
    color: #fff;
    font-size: 16px;
}

.footer__contact-item .content p,
.footer__contact-item .content a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    font-size: 14px;
    margin: 0;
    transition: color 0.3s;
}

.footer__contact-item .content a:hover {
    color: #fff;
}

/* ============================================
   WhatsApp Float (not in Beeko)
============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    color: #fff;
    font-size: 30px;
}

/* ============================================
   Breadcrumb
============================================ */
.breadcrumb__content .breadcrumb > * {
    color: #fff;
}

.breadcrumb__content .breadcrumb > * a {
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb__content .breadcrumb > * a:hover {
    color: #fff;
}

.breadcrumb__content .breadcrumb .breadcrumb-separator {
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb__content {
    margin-top: 50px;
}

@media (max-width: 991px) {
    .breadcrumb__content {
        margin-top: 20px;
    }
}

/* ============================================
   Contact Area overlay
============================================ */
.contact__area {
    position: relative;
}

.contact__area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(1, 2, 46, 0.85) 0%, rgba(1, 2, 46, 0.5) 100%);
    z-index: 0;
}

.contact__area > .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   Contact Page (custom elements)
============================================ */
.contact__info-item {
    background: var(--tg-color-white-default);
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
}

.contact__info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(70, 57, 137, 0.12);
}

.contact__info-icon {
    width: 80px;
    height: 80px;
    background: rgba(70, 57, 137, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.contact__info-icon i {
    font-size: 30px;
    color: var(--tg-theme-primary);
}

.contact__info-content .title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.contact__info-content p,
.contact__info-content a {
    color: var(--tg-body-color);
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.contact__info-content a:hover {
    color: var(--tg-theme-primary);
}

.contact__area {
    background-size: cover;
    background-position: center;
}

.contact__form-wrap {
    background: var(--tg-color-white-default);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.contact__form-wrap > .title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
}

.contact__form-shape {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.05;
    z-index: 0;
}

.contact__form-wrap .title,
.contact__form {
    position: relative;
    z-index: 1;
}

/* ============================================
   FAQ Accordion
============================================ */
.faq__wrap .accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq__wrap .accordion-item {
    border: none !important;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    transition: box-shadow 0.3s ease;
}

.faq__wrap .accordion-item:hover {
    box-shadow: 0 5px 25px rgba(70, 57, 137, 0.1);
}

.faq__wrap .accordion-button {
    padding: 30px;
    font-size: 16px;
    font-weight: 700;
    color: var(--tg-heading-color);
    background: #fff;
    border: none;
    justify-content: space-between;
}

[dir='rtl'] .faq__wrap .accordion-button {
    flex-direction: row;
}

.faq__wrap .accordion-button:not(.collapsed) {
    background: var(--tg-theme-primary);
    color: #fff;
    box-shadow: none;
}

.faq__wrap .accordion-button::before {
    display: none !important;
}

.faq__wrap .accordion-button::after {
    content: '\f067' !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900;
    font-size: 13px;
    background: none !important;
    background-image: none !important;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    transform: none !important;
    background-color: rgba(70, 57, 137, 0.08) !important;
    color: var(--tg-theme-primary);
    margin: 0;
}

.faq__wrap .accordion-button:not(.collapsed)::after {
    content: '\f068' !important;
    background-color: rgba(255, 255, 255, 0.2) !important;
    color: #fff;
}

.faq__wrap .accordion-button:focus {
    box-shadow: none;
}

.faq__wrap .accordion-body {
    padding: 0 25px 20px;
    color: var(--tg-body-color);
    line-height: 1.8;
    font-size: 15px;
    background: #fff;
}

.faq__wrap .accordion-body p {
    margin: 0;
}

.faq__wrap .accordion-collapse {
    background: #fff;
}

.contact__form .form-grp {
    margin-bottom: 20px;
}

.contact__form input,
.contact__form textarea {
    width: 100%;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 14px 20px;
    font-family: "Tajawal", sans-serif;
    font-size: 15px;
    transition: border-color 0.3s;
    background: #f9f9f9;
}

.contact__form input:focus,
.contact__form textarea:focus {
    border-color: var(--tg-theme-primary);
    outline: none;
    background: var(--tg-color-white-default);
}

.contact__form textarea {
    height: 120px;
    resize: none;
}

/* Form messages */
.form-message {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-message-success {
    background: rgba(37, 211, 102, 0.1);
    color: #1a8a4a;
    border: 1px solid rgba(37, 211, 102, 0.3);
}

.form-message-error {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

.contact-map {
    line-height: 0;
}

.contact-map iframe {
    width: 100%;
    height: 450px;
    border: 0;
}

/* ============================================
   Call Back / CTA with overlay (for pages)
============================================ */
.call__back-area {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.call__back-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #01022E 0%, rgba(1, 2, 46, 0.7) 102.5%);
    z-index: 0;
}

.call__back-content {
    position: relative;
    z-index: 1;
}

.call__back-phone {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: center;
    margin: 20px 0;
}

.call__back-phone .icon {
    width: 55px;
    height: 55px;
    background: var(--tg-theme-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.call__back-phone .icon i {
    color: var(--tg-color-white-default);
    font-size: 22px;
}

.call__back-phone a {
    font-size: 28px;
    font-weight: 800;
    color: var(--tg-color-white-default);
    text-decoration: none;
}

.call__back-shape {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 0;
}

.call__back-shape img {
    position: absolute;
    opacity: 0.08;
}

.call__back-shape img:nth-child(1) { top: 10%; right: 5%; }
.call__back-shape img:nth-child(2) { bottom: 10%; left: 5%; }
.call__back-shape img:nth-child(3) { top: 30%; left: 15%; }
.call__back-shape img:nth-child(4) { bottom: 20%; right: 15%; }
.call__back-shape img:nth-child(5) { top: 50%; right: 50%; }

/* ============================================
   404 Page
============================================ */
.error__title {
    font-size: 150px;
    font-weight: 900;
    color: var(--tg-theme-primary);
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 0;
}

/* ============================================
   Services Button (used in taxonomy pages)
============================================ */
.services__btn {
    color: var(--tg-theme-primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    margin-top: 10px;
}

.services__btn:hover {
    color: var(--tg-color-red-light);
    gap: 12px;
}

.services__btn img.injectable {
    width: 14px;
}

/* ============================================
   Blog Details (extra styles)
============================================ */
.blog__details-author {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--tg-color-gray-1);
    border-radius: 12px;
    padding: 25px;
    margin-top: 30px;
}

.blog__details-author-thumb img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
}

.blog__details-author-content .name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.blog__details-nav {
    margin-top: 30px;
}

.blog__details-nav .post-nav a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--tg-heading-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.blog__details-nav .post-nav a:hover {
    color: var(--tg-theme-primary);
}

.blog__details-nav .post-nav span {
    font-size: 14px;
}

/* ============================================
   Recent Posts sidebar (rc-post)
============================================ */
.rc-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--tg-color-gray-3);
}

.rc-post-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.rc-post-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.rc-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rc-post-content .date {
    font-size: 13px;
    color: var(--tg-body-color);
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.rc-post-content .date i {
    color: var(--tg-theme-primary);
}

.rc-post-content .title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

.rc-post-content .title a {
    color: var(--tg-heading-color);
    text-decoration: none;
}

.rc-post-content .title a:hover {
    color: var(--tg-theme-primary);
}

/* ============================================
   Blog Search
============================================ */
.blog__search {
    position: relative;
}

.blog__search input {
    width: 100%;
    border: 1px solid var(--tg-color-gray-3);
    border-radius: 8px;
    padding: 14px 50px 14px 20px;
    font-family: "Tajawal", sans-serif;
    font-size: 15px;
}

.blog__search input:focus {
    border-color: var(--tg-theme-primary);
    outline: none;
}

.blog__search button {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--tg-body-color);
    cursor: pointer;
}

/* ============================================
   Categories List (bs-cat-list)
============================================ */
.bs-cat-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bs-cat-list li {
    border-bottom: 1px solid var(--tg-color-gray-3);
}

.bs-cat-list li:last-child {
    border-bottom: none;
}

.bs-cat-list a {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    color: var(--tg-body-color);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.bs-cat-list a:hover {
    color: var(--tg-theme-primary);
}

.bs-cat-list span {
    color: var(--tg-theme-primary);
    font-weight: 600;
}

/* ============================================
   Blog Cards
============================================ */
.tl-blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    height: 100%;
}

.tl-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(70, 57, 137, 0.1);
}

.tl-blog-card__thumb {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.tl-blog-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tl-blog-card:hover .tl-blog-card__thumb img {
    transform: scale(1.05);
}

.tl-blog-card__tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--tg-theme-primary);
    color: #fff;
    padding: 4px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
}

.tl-blog-card__content {
    padding: 22px;
}

.tl-blog-card__meta {
    display: flex;
    gap: 15px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.tl-blog-card__meta span {
    font-size: 13px;
    color: var(--tg-body-color);
}

.tl-blog-card__meta i {
    color: var(--tg-theme-primary);
    margin-left: 5px;
}

.tl-blog-card__title {
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
}

.tl-blog-card__title a {
    color: var(--tg-heading-color);
    text-decoration: none;
    transition: color 0.3s;
}

.tl-blog-card__title a:hover {
    color: var(--tg-theme-primary);
}

.tl-blog-card__content p {
    font-size: 14px;
    color: var(--tg-body-color);
    margin-bottom: 12px;
    line-height: 1.7;
}

.tl-blog-card__link {
    color: var(--tg-theme-primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s;
}

.tl-blog-card__link:hover {
    gap: 12px;
    color: var(--tg-color-red-light);
}

/* ============================================
   Single Article
============================================ */
.tl-article {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    margin-bottom: 30px;
}

.tl-article__thumb {
    overflow: hidden;
    max-height: 450px;
}

.tl-article__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tl-article__meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    padding: 25px 30px 0;
}

.tl-article__meta span {
    font-size: 13px;
    color: var(--tg-body-color);
}

.tl-article__meta i {
    color: var(--tg-theme-primary);
    margin-left: 5px;
}

.tl-article__content {
    padding: 20px 30px 30px;
    line-height: 1.9;
    font-size: 16px;
    color: var(--tg-body-color);
}

.tl-article__content h2,
.tl-article__content h3,
.tl-article__content h4 {
    color: var(--tg-heading-color);
    margin: 25px 0 15px;
}

.tl-article__content ul,
.tl-article__content ol {
    padding-right: 20px;
    margin-bottom: 20px;
}

.tl-article__content li {
    margin-bottom: 8px;
}

.tl-article__content img {
    border-radius: 12px;
    margin: 15px 0;
}

.tl-article__tags {
    padding: 0 30px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tl-article__tags-label {
    font-weight: 700;
    color: var(--tg-heading-color);
}

.tl-article__tags-label i {
    color: var(--tg-theme-primary);
    margin-left: 5px;
}

.tl-article__tags a {
    background: var(--tg-color-gray-1);
    color: var(--tg-body-color);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
}

.tl-article__tags a:hover {
    background: var(--tg-theme-primary);
    color: #fff;
}

.tl-article__share {
    padding: 20px 30px;
    border-top: 1px solid var(--tg-color-gray-3);
    display: flex;
    align-items: center;
    gap: 15px;
}

.tl-article__share-label {
    font-weight: 700;
    color: var(--tg-heading-color);
}

.tl-article__share-links {
    display: flex;
    gap: 8px;
}

.tl-article__share-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--tg-color-gray-1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tg-body-color);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.tl-article__share-links a:hover {
    background: var(--tg-theme-primary);
    color: #fff;
}

/* Author Box */
.tl-author-box {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    margin-bottom: 30px;
}

.tl-author-box__avatar img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.tl-author-box__info h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
}

.tl-author-box__info p {
    font-size: 14px;
    color: var(--tg-body-color);
    margin: 0;
}

/* Post Navigation */
.tl-post-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.tl-post-nav__item {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    text-decoration: none;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s;
}

.tl-post-nav__item:hover {
    box-shadow: 0 5px 20px rgba(70, 57, 137, 0.1);
}

.tl-post-nav__next {
    text-align: left;
}

.tl-post-nav__label {
    font-size: 13px;
    color: var(--tg-theme-primary);
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.tl-post-nav__label i {
    font-size: 11px;
}

.tl-post-nav__title {
    font-size: 15px;
    font-weight: 700;
    color: var(--tg-heading-color);
    display: block;
}

@media (max-width: 575px) {
    .tl-post-nav {
        flex-direction: column;
    }
    .tl-article__content {
        padding: 15px 20px 20px;
    }
    .tl-article__meta {
        padding: 20px 20px 0;
    }
    .tl-article__tags,
    .tl-article__share {
        padding-right: 20px;
        padding-left: 20px;
    }
}

/* ============================================
   Search Results
============================================ */
.tl-search-box {
    text-align: center;
}

.tl-search-box__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.tl-search-box__title span {
    color: var(--tg-theme-primary);
}

.tl-search-box__form {
    position: relative;
    max-width: 500px;
    margin: 0 auto 15px;
}

.tl-search-box__form input {
    width: 100%;
    border: 2px solid var(--tg-color-gray-3);
    border-radius: 50px;
    padding: 14px 55px 14px 25px;
    font-family: "Tajawal", sans-serif;
    font-size: 16px;
    transition: border-color 0.3s;
}

.tl-search-box__form input:focus {
    border-color: var(--tg-theme-primary);
    outline: none;
}

.tl-search-box__form button {
    position: absolute;
    left: 5px;
    top: 5px;
    width: 44px;
    height: 44px;
    background: var(--tg-theme-primary);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
}

.tl-search-box__form button:hover {
    background: var(--tg-color-red-light);
}

.tl-search-box__count {
    color: var(--tg-body-color);
    font-size: 14px;
}

/* Search Result Items */
.tl-search-item {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 14px;
    padding: 25px;
    margin-bottom: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.tl-search-item:hover {
    box-shadow: 0 5px 25px rgba(70, 57, 137, 0.1);
    transform: translateY(-2px);
}

.tl-search-item__icon {
    width: 50px;
    height: 50px;
    background: rgba(70, 57, 137, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tl-search-item__icon i {
    font-size: 20px;
    color: var(--tg-theme-primary);
}

.tl-search-item__type {
    font-size: 12px;
    color: var(--tg-body-color);
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.tl-search-item__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}

.tl-search-item__title a {
    color: var(--tg-heading-color);
    text-decoration: none;
    transition: color 0.3s;
}

.tl-search-item__title a:hover {
    color: var(--tg-theme-primary);
}

.tl-search-item__content p {
    font-size: 14px;
    color: var(--tg-body-color);
    margin-bottom: 10px;
    line-height: 1.7;
}

.tl-search-item__link {
    color: var(--tg-theme-primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.3s;
}

.tl-search-item__link:hover {
    gap: 10px;
    color: var(--tg-color-red-light);
}

/* Search Empty */
.tl-search-empty {
    padding: 60px 20px;
}

.tl-search-empty__icon {
    width: 100px;
    height: 100px;
    background: var(--tg-color-gray-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.tl-search-empty__icon i {
    font-size: 40px;
    color: var(--tg-body-color);
    opacity: 0.4;
}

.tl-search-empty h3 {
    font-size: 22px;
    margin-bottom: 10px;
}

.tl-search-empty p {
    color: var(--tg-body-color);
}

@media (max-width: 575px) {
    .tl-search-item {
        flex-direction: column;
        gap: 12px;
    }
}

/* ============================================
   Sidebar
============================================ */
.tl-sidebar__widget {
    background: #fff;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    margin-bottom: 25px;
}

.tl-sidebar__title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--tg-theme-primary);
    display: inline-block;
}

.tl-sidebar__search {
    position: relative;
}

.tl-sidebar__search input {
    width: 100%;
    border: 1px solid var(--tg-color-gray-3);
    border-radius: 10px;
    padding: 14px 50px 14px 20px;
    font-family: "Tajawal", sans-serif;
    font-size: 15px;
    transition: border-color 0.3s;
}

.tl-sidebar__search input:focus {
    border-color: var(--tg-theme-primary);
    outline: none;
}

.tl-sidebar__search button {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--tg-theme-primary);
    cursor: pointer;
    font-size: 16px;
}

/* Sidebar Recent Posts */
.tl-sidebar__post {
    display: flex;
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid var(--tg-color-gray-3);
}

.tl-sidebar__post:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.tl-sidebar__post-thumb {
    width: 75px;
    height: 75px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.tl-sidebar__post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tl-sidebar__post-date {
    font-size: 12px;
    color: var(--tg-body-color);
    display: block;
    margin-bottom: 5px;
}

.tl-sidebar__post-date i {
    color: var(--tg-theme-primary);
    margin-left: 4px;
}

.tl-sidebar__post-content h5 {
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.tl-sidebar__post-content h5 a {
    color: var(--tg-heading-color);
    text-decoration: none;
    transition: color 0.3s;
}

.tl-sidebar__post-content h5 a:hover {
    color: var(--tg-theme-primary);
}

/* Sidebar Categories */
.tl-sidebar__cats {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tl-sidebar__cats li {
    border-bottom: 1px solid var(--tg-color-gray-3);
}

.tl-sidebar__cats li:last-child {
    border-bottom: none;
}

.tl-sidebar__cats a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: var(--tg-body-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.tl-sidebar__cats a:hover {
    color: var(--tg-theme-primary);
}

.tl-sidebar__cats span {
    background: var(--tg-color-gray-1);
    color: var(--tg-theme-primary);
    font-weight: 700;
    font-size: 13px;
    padding: 3px 10px;
    border-radius: 15px;
}

/* ============================================
   Scrollbar
============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--tg-theme-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--tg-color-red-light);
}

/* ============================================
   WordPress Specific
============================================ */
.admin-bar .transparent-header {
    top: 32px;
}

@media (max-width: 782px) {
    .admin-bar .transparent-header {
        top: 46px;
    }
}

.alignleft { float: right; margin: 0 0 1em 1.5em; }
.alignright { float: left; margin: 0 1.5em 1em 0; }
.aligncenter { display: block; margin: 1em auto; }

img {
    max-width: 100%;
    height: auto;
}

/* ============================================
   About Page - Image Layout (no shapes)
============================================ */
.tl-about-imgs {
    position: relative;
    margin-bottom: 30px;
}

.tl-about-imgs__main {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.tl-about-imgs__main img {
    width: 100%;
    height: auto;
    display: block;
}

.tl-about-imgs__secondary {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 55%;
    border-radius: 16px;
    overflow: hidden;
    border: 5px solid #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.tl-about-imgs__secondary img {
    width: 100%;
    height: auto;
    display: block;
}

.tl-about-imgs__badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: var(--tg-theme-primary);
    color: #fff;
    padding: 20px 25px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(70, 57, 137, 0.35);
}

.tl-about-imgs__badge h2 {
    font-size: 36px;
    font-weight: 800;
    margin: 0;
    line-height: 1;
}

.tl-about-imgs__badge span {
    font-size: 13px;
    opacity: 0.85;
}

@media (max-width: 991px) {
    .tl-about-imgs__secondary {
        position: static;
        width: 100%;
        border: none;
        margin-top: 15px;
    }

    .tl-about-imgs__badge {
        top: 15px;
        left: 15px;
        padding: 15px 18px;
    }

    .tl-about-imgs__badge h2 {
        font-size: 28px;
    }
}

/* ============================================
   About Page - Mission/Vision Cards
============================================ */
.tl-mv-card {
    padding: 30px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.tl-mv-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
}

.tl-mv-card__icon {
    width: 60px;
    height: 60px;
    background: var(--tg-theme-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tl-mv-card__icon i {
    font-size: 26px;
    color: #fff;
}

.tl-mv-card__title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.tl-mv-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   About Page - Combined Why + Counter + CTA
============================================ */
.tl-why-counter {
    position: relative;
    background-size: cover;
    background-position: center;
}

.tl-why-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(1, 2, 46, 0.92) 0%, rgba(1, 2, 46, 0.96) 100%);
    z-index: 0;
}

.tl-why-counter > div {
    position: relative;
    z-index: 1;
}

.tl-why-counter .section__title .sub-title {
    color: rgba(255, 255, 255, 0.7);
}

.tl-why-counter .section__title .sub-title::after {
    background: rgba(255, 255, 255, 0.3);
}

.tl-why-counter .section__title .title {
    color: #fff;
}

/* Feature Cards */
.tl-feature-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px 28px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.tl-feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(70, 57, 137, 0.4);
}

.tl-feature-card__icon {
    width: 70px;
    height: 70px;
    background: var(--tg-theme-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.tl-feature-card__icon i {
    font-size: 28px;
    color: #fff;
}

.tl-feature-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.tl-feature-card p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

/* Counter Row */
.tl-why-counter__counter {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.tl-counter-item__icon {
    width: 55px;
    height: 55px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.tl-counter-item__icon i {
    font-size: 22px;
    color: #fff;
}

.tl-counter-item__count {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.tl-counter-item p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 14px;
}

/* CTA Row */
.tl-why-counter__cta {
    padding: 50px 0;
}

.tl-why-counter__cta-title {
    font-size: 30px;
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.tl-why-counter__cta-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.tl-why-counter__cta-phone {
    display: flex;
    align-items: center;
    gap: 12px;
}

.tl-why-counter__cta-phone .icon {
    width: 50px;
    height: 50px;
    background: var(--tg-theme-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tl-why-counter__cta-phone .icon i {
    font-size: 18px;
    color: #fff;
}

.tl-why-counter__cta-phone .content span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    display: block;
}

.tl-why-counter__cta-phone .content a {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
}

.tl-why-counter .tg-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.tl-why-counter .tg-btn:hover {
    background: var(--tg-theme-primary);
    border-color: var(--tg-theme-primary);
}

@media (max-width: 991px) {
    .tl-why-counter__cta-title {
        font-size: 24px;
        text-align: center;
        margin-bottom: 20px;
    }
    .tl-why-counter__cta-actions {
        justify-content: center;
    }
    .tl-mv-card {
        margin-bottom: 15px;
    }
}

@media (max-width: 575px) {
    .tl-why-counter__cta-actions {
        flex-direction: column;
    }
    .tl-counter-item__count {
        font-size: 28px;
    }
}

/* ============================================
   Service Cards (Services Page)
============================================ */
/* Service Card with Image */
.tl-service-card {
    background: #fff;
    border-radius: 16px;
    height: 100%;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.tl-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(70, 57, 137, 0.12);
}

.tl-service-card__thumb {
    height: 200px;
    overflow: visible;
    position: relative;
}

.tl-service-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tl-service-card:hover .tl-service-card__thumb img {
    transform: scale(1.08);
}

.tl-service-card__thumb-icon {
    position: absolute;
    bottom: -25px;
    right: 25px;
    width: 50px;
    height: 50px;
    background: var(--tg-theme-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 5px 15px rgba(70, 57, 137, 0.3);
}

.tl-service-card__thumb-icon i {
    font-size: 22px;
    color: #fff;
}

.tl-service-card__body {
    padding: 35px 25px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.tl-service-card__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.tl-service-card__title a {
    color: var(--tg-heading-color);
    text-decoration: none;
    transition: color 0.3s;
}

.tl-service-card__title a:hover {
    color: var(--tg-theme-primary);
}

.tl-service-card__desc {
    color: var(--tg-body-color);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.tl-service-card__count {
    display: inline-block;
    width: max-content;
    background: rgba(70, 57, 137, 0.06);
    color: var(--tg-theme-primary);
    font-size: 13px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 18px;
}

.tl-service-card__link {
    display: block;
    background: var(--tg-theme-primary);
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: auto;
}

.tl-service-card__link:hover {
    background: var(--tg-color-red-light);
    color: #fff;
}

.tl-service-card__link i {
    font-size: 12px;
    margin-right: 6px;
}

/* ============================================
   Single Service Page
============================================ */
.tl-service-hero {
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    margin-top: -80px;
    padding-top: 80px;
}

.tl-service-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(1, 2, 46, 0.9) 0%, rgba(70, 57, 137, 0.7) 100%);
}

.tl-service-hero .container {
    position: relative;
    z-index: 1;
}

.tl-service-hero__content {
    max-width: 650px;
    padding: 60px 0;
}

.tl-service-hero__icon {
    width: 65px;
    height: 65px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.tl-service-hero__icon i {
    font-size: 28px;
    color: #fff;
}

.tl-service-hero__content h1 {
    font-size: 38px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
}

.tl-service-hero__content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Service Detail Blocks */
.tl-sd-block {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.04);
}

.tl-sd-block__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--tg-heading-color);
    position: relative;
    padding-bottom: 12px;
}

.tl-sd-block__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 3px;
    background: var(--tg-theme-primary);
    border-radius: 2px;
}

.tl-sd-block__text {
    color: var(--tg-body-color);
    line-height: 1.9;
    font-size: 15px;
}

/* Features List */
.tl-sd-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.tl-sd-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: 500;
    color: var(--tg-heading-color);
    font-size: 15px;
    padding: 12px 15px;
    background: var(--tg-color-gray-1);
    border-radius: 10px;
}

.tl-sd-features .icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: var(--tg-theme-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.tl-sd-features .icon svg {
    width: 12px;
    color: #fff;
}

/* Pricing Cards */
.tl-price-card {
    background: #fff;
    border: 2px solid var(--tg-color-gray-3);
    border-radius: 16px;
    padding: 30px 22px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.tl-price-card:hover {
    border-color: var(--tg-theme-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(70, 57, 137, 0.1);
}

.tl-price-card--popular {
    border-color: var(--tg-theme-primary);
    background: linear-gradient(135deg, rgba(70, 57, 137, 0.03), rgba(70, 57, 137, 0.08));
}

.tl-price-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--tg-theme-primary);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 20px;
    white-space: nowrap;
}

.tl-price-card__name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--tg-heading-color);
}

.tl-price-card__price {
    font-size: 32px;
    font-weight: 800;
    color: var(--tg-theme-primary);
    margin-bottom: 12px;
}

.tl-price-card__details {
    font-size: 14px;
    color: var(--tg-body-color);
    line-height: 1.6;
    margin-bottom: 12px;
}

.tl-price-card__duration {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: var(--tg-body-color);
    margin-bottom: 18px;
}

.tl-price-card__duration i {
    color: var(--tg-theme-primary);
}

.tl-price-card__btn {
    display: block;
    background: var(--tg-theme-primary);
    color: #fff;
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.3s;
    margin-top: auto;
}

.tl-price-card__btn:hover {
    background: var(--tg-color-red-light);
    color: #fff;
}

/* Service Detail CTA */
.tl-sd-cta {
    background: var(--tg-theme-primary);
    border-radius: 16px;
    padding: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
    margin-top: 10px;
}

.tl-sd-cta h3 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
}

.tl-sd-cta p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 14px;
}

.tl-sd-cta .tg-btn {
    background: #fff;
    color: var(--tg-theme-primary);
    border-color: #fff;
    flex-shrink: 0;
}

.tl-sd-cta .tg-btn:hover {
    background: var(--tg-color-red-light);
    color: #fff;
    border-color: var(--tg-color-red-light);
}

/* Service Steps (ordered list) */
.tl-sd-steps {
    padding: 0;
    margin: 0;
    counter-reset: step-counter;
    list-style: none;
}

.tl-sd-steps li {
    counter-increment: step-counter;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    margin-bottom: 10px;
    background: var(--tg-color-gray-1);
    border-radius: 10px;
    font-weight: 500;
    color: var(--tg-heading-color);
    font-size: 15px;
}

.tl-sd-steps li::before {
    content: counter(step-counter);
    min-width: 32px;
    height: 32px;
    background: var(--tg-theme-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

/* Extra Services */
.tl-sd-extras {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tl-sd-extras__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 18px;
    background: var(--tg-color-gray-1);
    border-radius: 10px;
    transition: all 0.3s;
}

.tl-sd-extras__item:hover {
    background: rgba(70, 57, 137, 0.06);
}

.tl-sd-extras__name {
    font-weight: 600;
    color: var(--tg-heading-color);
    font-size: 15px;
}

.tl-sd-extras__price {
    font-weight: 700;
    color: var(--tg-theme-primary);
    font-size: 15px;
    white-space: nowrap;
}

/* Sidebar Service List */
.tl-sidebar__service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tl-sidebar__service-list li {
    border-bottom: 1px solid var(--tg-color-gray-3);
}

.tl-sidebar__service-list li:last-child {
    border-bottom: none;
}

.tl-sidebar__service-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    color: var(--tg-body-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s;
}

.tl-sidebar__service-list a:hover {
    color: var(--tg-theme-primary);
    padding-right: 5px;
}

.tl-sidebar__service-list i {
    font-size: 14px;
    color: var(--tg-theme-primary);
    opacity: 0.6;
}

/* Sidebar CTA */
.tl-sidebar__cta {
    background: var(--tg-theme-secondary) !important;
    text-align: center;
}

.tl-sidebar__cta h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 8px;
}

.tl-sidebar__cta p {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    margin-bottom: 15px;
}

.tl-sidebar__cta-icon {
    width: 60px;
    height: 60px;
    background: var(--tg-theme-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.tl-sidebar__cta-icon i {
    font-size: 24px;
    color: #fff;
}

.tl-sidebar__cta-phone {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    margin-bottom: 15px;
}

.tl-sidebar__cta-phone:hover {
    color: var(--tg-theme-primary);
}

@media (max-width: 991px) {
    .tl-service-hero__content h1 {
        font-size: 28px;
    }
    .tl-sd-features {
        grid-template-columns: 1fr;
    }
    .tl-sd-cta {
        flex-direction: column;
        text-align: center;
    }
    .tl-service-hero {
        min-height: 350px;
    }
}

/* Fix unwanted hover scale */
a:hover, button:hover {
    transform: none;
}

/* Fix WP custom logo in header */
.logo .custom-logo-link {
    display: inline-block;
}

.logo .custom-logo {
    max-height: 55px;
    width: auto;
}
