:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --secondary-color: #1e293b;
    --accent-color: #f59e0b;
    --bg-light: #f8fafc;
    --text-color: #334155;
    --text-muted: #64748b;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1)
}

body,
html {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw
}

body {
    font-family: Tajawal, system-ui, -apple-system, sans-serif;
    color: var(--text-color);
    background-color: var(--bg-light);
    padding-top: 90px
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--secondary-color);
    font-weight: 700
}

.custom-navbar {
    background-color: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    transition: var(--transition);
    box-shadow: 0 2px 15px rgba(0, 0, 0, .05)
}

.navbar-brand img {
    transition: var(--transition)
}

.navbar-brand:hover img {
    transform: scale(1.05)
}

.brand-name {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), #4f46e5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -.5px
}

.custom-navbar.scrolled {
    padding-top: 10px;
    padding-bottom: 10px
}

.custom-toggler {
    width: 40px;
    height: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 5px
}

.toggler-line {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transition: var(--transition)
}

.custom-toggler:hover .toggler-line {
    background-color: var(--primary-color)
}

.custom-toggler:hover .toggler-line:nth-child(2) {
    width: 18px
}

.nav-link {
    color: var(--secondary-color) !important;
    font-weight: 500;
    transition: var(--transition);
    position: relative
}

.nav-link.active,
.nav-link:hover {
    color: var(--primary-color) !important
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition)
}

.nav-link:hover::after {
    width: 100%
}

.dropdown-menu {
    border-radius: .5rem;
    padding: .5rem
}

.dropdown-toggle::after {
    display: none !important
}

.dropdown-item {
    border-radius: .25rem;
    transition: var(--transition)
}

.dropdown-item:hover {
    background-color: var(--bg-light);
    color: var(--primary-color)
}

.sidebar-nav {
    margin: 0;
    padding: 10px 0
}

.sidebar-nav li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    border-inline-start: 3px solid transparent
}

.sidebar-nav li a.active,
.sidebar-nav li a:hover {
    background: #f1f5f9;
    color: var(--primary-color);
    border-inline-start-color: var(--primary-color)
}

.sidebar-nav li a i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center
}

.sidebar-section-title {
    padding: 15px 20px 5px;
    font-size: .75rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px
}

.sidebar-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 8px 20px
}

.hero-section {
    padding: 0;
    min-height: 70vh;
    position: relative;
    background-color: var(--secondary-color)
}

.carousel-item {
    min-height: 70vh;
    transition: transform .6s ease-in-out
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, .3)
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    transition: var(--transition)
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    border-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(37, 99, 235, .3) !important
}

.btn-accent {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
    color: #fff;
    transition: var(--transition)
}

.btn-accent:hover {
    background-color: #d97706;
    border-color: #d97706;
    color: #fff;
    transform: translateY(-2px)
}

.transition-hover {
    transition: var(--transition)
}

.service-card:hover,
.transition-hover:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, .1) !important
}

.service-card {
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, .05)
}

.feature-box {
    border: 1px solid rgba(0, 0, 0, .05)
}

.floating-cta {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px
}

.cta-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    padding: 0;
    line-height: 0
}

.cta-btn i {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0
}

.cta-label {
    position: absolute;
    left: 68px;
    background: var(--secondary-color);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: .8rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: var(--transition);
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, .1)
}

.cta-btn:hover .cta-label {
    opacity: 1;
    visibility: visible;
    transform: translateX(0)
}

.whatsapp-btn {
    background-color: #25d366
}

.phone-btn {
    background-color: var(--primary-color)
}

.cta-btn:hover {
    transform: scale(1.1);
    color: #fff
}

.pulse-ring {
    animation: pulse-ring-anim 2s ease-out infinite
}

.pulse-ring::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-color);
    z-index: -1;
    animation: pulse-expand 2s ease-out infinite
}

@keyframes pulse-expand {
    0% {
        transform: scale(1);
        opacity: .5
    }

    100% {
        transform: scale(1.8);
        opacity: 0
    }
}

@keyframes pulse-ring-anim {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(37, 99, 235, .4)
    }

    50% {
        box-shadow: 0 0 0 15px rgba(37, 99, 235, 0)
    }
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9998;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    border: none;
    font-size: 1.2rem;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .2);
    cursor: pointer;
    transition: var(--transition)
}

.scroll-top-btn.show {
    display: flex
}

.scroll-top-btn:hover {
    background: #2563eb;
    transform: translateY(-3px)
}

.discount-banner {
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    position: relative;
    overflow: hidden
}

.discount-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, .1) 0, transparent 60%);
    animation: shimmer 3s ease-in-out infinite
}

@keyframes shimmer {

    0%,
    100% {
        transform: translateX(-30%)
    }

    50% {
        transform: translateX(30%)
    }
}

.bounce-badge {
    animation: bounce-soft 2s ease-in-out infinite
}

@keyframes bounce-soft {

    0%,
    100% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.1)
    }
}

.service-card .btn-primary {
    background-color: var(--primary-color);
    border: none;
    transition: var(--transition)
}

.service-card .btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, .1)
}

.footer img {
    transition: var(--transition)
}

.footer img:hover {
    filter: brightness(1.1)
}

.footer-links a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    transition: var(--transition);
    display: block;
    margin-bottom: .5rem
}

.footer-links a:hover {
    color: #fff;
    transform: translateX(-5px)
}

.section-padding {
    padding: 80px 0
}

.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 1rem
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px
}

.section-title.text-start::after {
    right: 0;
    transform: none
}

.content-text p {
    line-height: 1.8;
    color: var(--text-color)
}

@media (max-width:768px) {

    .carousel-item,
    .hero-section {
        min-height: 60vh
    }

    .hero-section .container {
        padding-top: 2rem;
        padding-bottom: 2rem
    }

    .hero-title {
        font-size: 2.2rem !important
    }

    .floating-cta {
        bottom: 20px;
        left: 20px
    }

    .cta-btn {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        padding: 0;
        line-height: 0
    }

    .cta-label {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        left: 55px;
        padding: 15px 12px;
        font-size: .75rem
    }

    .brand-name {
        font-size: 1rem
    }
}

.service-hero {
    min-height: 600px;
    padding: 120px 0 80px;
    position: relative;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    margin-top: -90px
}

.service-hero::before {
    display: none
}

.service-hero .container {
    position: relative;
    z-index: 2
}

.service-hero-card {
    background: 0 0;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    padding: 0;
    max-width: 850px;
    border: none;
    box-shadow: none;
    animation: heroSlideIn .8s cubic-bezier(.16, 1, .3, 1);
    text-align: center;
    margin: 0 auto
}

.service-hero .badge {
    background-color: rgba(0, 0, 255, .744) !important;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, .4);
    color: #fff !important
}

.service-hero h1 {
    color: #fff;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 15px rgba(0, 0, 0, .6)
}

.service-hero .lead {
    color: rgba(255, 255, 255, .9);
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .5);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto
}

.service-cta-btns {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 420px;
    margin: 0 auto 40px
}

.btn-whatsapp-solid {
    background-color: #25d366;
    color: #fff !important;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, .3)
}

.btn-call-solid {
    background-color: #ff8a00;
    color: #fff !important;
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(255, 138, 0, .3)
}

.trust-badges-clean {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, .2)
}

.trust-badge-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px
}

.trust-badge-col i {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .3)
}

.trust-badge-col span {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5)
}

@media (max-width:768px) {
    .service-hero {
        min-height: 500px;
        padding: 100px 0 60px;
        text-align: center
    }

    .service-hero-card {
        padding: 30px 20px;
        border-radius: 20px
    }

    .trust-badges-clean {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px
    }

    .trust-badge-col {
        width: auto
    }
}

.step-card {
    position: relative;
    padding: 30px;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, .05);
    transition: var(--transition)
}

.step-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px)
}

.step-number {
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(37, 99, 235, .3)
}

.offer-box {
    background: linear-gradient(45deg, var(--primary-color), #4f46e5);
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    position: relative;
    overflow: hidden
}

.offer-box::after {
    content: '%';
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 8rem;
    font-weight: 900;
    opacity: .1;
    color: #fff
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    background: #fff;
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .03);
    margin-bottom: 10px;
    margin-inline-end: 10px
}

.feature-pill i {
    width: 32px;
    height: 32px;
    background: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    margin-inline-end: 10px
}

.accordion-button:not(.collapsed) {
    background-color: rgba(37, 99, 235, .05);
    color: var(--primary-color);
    box-shadow: none
}

.accordion-button:focus {
    box-shadow: none;
    border-color: transparent
}

.accordion-button {
    font-size: 1.05rem
}

.service-card-wrapper {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 1rem;
    border-top-right-radius: 1rem
}

.card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 15px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 800;
    color: #fff;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .15);
    text-transform: uppercase;
    letter-spacing: .5px
}

.badge-offer {
    background: linear-gradient(45deg, #f59e0b, #fbbf24)
}

.badge-discount {
    background: linear-gradient(45deg, #ef4444, #f87171)
}

.badge-popular {
    background: linear-gradient(45deg, #3b82f6, #60a5fa)
}

.animate-shine {
    position: relative;
    overflow: hidden
}

.animate-shine::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to bottom right, rgba(255, 255, 255, 0) 0, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, .4) 50%, rgba(255, 255, 255, 0) 60%, rgba(255, 255, 255, 0) 100%);
    transform: rotate(-45deg);
    animation: shine-anim 3s infinite
}

@keyframes shine-anim {
    0% {
        transform: translateX(-100%) rotate(-45deg)
    }

    20% {
        transform: translateX(100%) rotate(-45deg)
    }

    100% {
        transform: translateX(100%) rotate(-45deg)
    }
}

.animate-pulse-soft {
    animation: pulse-soft 2s infinite
}

@keyframes pulse-soft {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.05)
    }

    100% {
        transform: scale(1)
    }
}

.service-card .btn-whatsapp-small {
    background-color: #25d366;
    border: none;
    color: #fff !important
}

.service-card .btn-whatsapp-small:hover {
    background-color: #1ebc5a;
    transform: translateY(-2px)
}

.service-card .btn-call-small {
    background-color: var(--primary-color);
    border: none;
    color: #fff !important
}

.service-card .btn-call-small:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px)
}

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, .95);
    backdrop-filter: blur(12px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    transition: opacity .4s ease
}

.lightbox-overlay.show {
    display: flex;
    opacity: 1
}

.lightbox-img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .5);
    transform: scale(.9) translateY(20px);
    transition: all .5s cubic-bezier(.34, 1.56, .64, 1);
    border: 4px solid rgba(255, 255, 255, .1)
}

.lightbox-overlay.show .lightbox-img {
    transform: scale(1) translateY(0)
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    background: rgba(255, 255, 255, .1);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .2);
    transition: all .3s ease
}

.lightbox-close:hover {
    background: #ef4444;
    transform: rotate(90deg) scale(1.1);
    border-color: transparent
}

.img-expand,
.premium-card-img,
.service-card img {
    cursor: zoom-in
}

.premium-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem
}

@media (max-width:768px) {
    .premium-gallery {
        grid-template-columns: 1fr
    }
}

.premium-card {
    position: relative;
    border-radius: 1.2rem;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: all .5s cubic-bezier(.165, .84, .44, 1);
    cursor: pointer;
    border: 3px solid #fff
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, .25)
}

.premium-card-img {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform .8s ease
}

.premium-card:hover .premium-card-img {
    transform: scale(1.1)
}

.premium-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .8) 0, rgba(0, 0, 0, 0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem
}

.premium-card:hover .premium-card-overlay {
    background: linear-gradient(to top, rgba(37, 99, 235, .85) 0, rgba(0, 0, 0, .2) 80%)
}

.premium-card-title {
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 0;
    transform: translateY(10px);
    transition: transform .4s ease
}

.premium-card:hover .premium-card-title {
    transform: translateY(0)
}

.premium-card-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.8rem;
    color: #fff;
    opacity: 0;
    transform: scale(.5) rotate(-45deg);
    transition: all .4s cubic-bezier(.165, .84, .44, 1)
}

.premium-card:hover .premium-card-icon {
    opacity: 1;
    transform: scale(1) rotate(0)
}

.lightbox-overlay {
    flex-direction: column !important
}

.lightbox-icon-container {
    color: var(--primary-color, #3b82f6);
    font-size: 3.5rem;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(-30px);
    transition: all .6s cubic-bezier(.34, 1.56, .64, 1);
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, .5))
}

.lightbox-title-container {
    color: #fff;
    font-size: 1.8rem;
    margin-top: 25px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(30px);
    transition: all .6s cubic-bezier(.34, 1.56, .64, 1);
    text-align: center;
    text-shadow: 0 4px 15px rgba(0, 0, 0, .6);
    letter-spacing: .5px
}

.lightbox-overlay.show .lightbox-icon-container {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.2s
}

.lightbox-overlay.show .lightbox-title-container {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s
}

.lightbox-top-bar {
    width: 100%;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    opacity: 0;
    transform: translateY(-20px);
    transition: all .5s ease .1s
}

.lightbox-brand {
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .5)
}

.lightbox-close {
    position: static !important;
    margin: 0
}

.lightbox-content-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 20px
}

.lightbox-bottom-bar {
    width: 100%;
    padding: 20px 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all .5s ease .4s
}

.lightbox-prompt {
    color: rgba(255, 255, 255, .9);
    font-size: 1rem;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, .5)
}

.lightbox-actions {
    display: flex;
    gap: 15px
}

.lightbox-btn {
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
    transition: all .3s ease;
    border: 1px solid rgba(255, 255, 255, .2);
    backdrop-filter: blur(5px)
}

.lightbox-btn.whatsapp {
    background: rgba(37, 211, 102, .2);
    color: #25d366;
    border-color: rgba(37, 211, 102, .5)
}

.lightbox-btn.whatsapp:hover {
    background: #25d366;
    color: #fff
}

.lightbox-btn.call {
    background: rgba(37, 99, 235, .2);
    color: #3b82f6;
    border-color: rgba(37, 99, 235, .5)
}

.lightbox-btn.call:hover {
    background: #3b82f6;
    color: #fff
}

.lightbox-overlay.show .lightbox-bottom-bar,
.lightbox-overlay.show .lightbox-top-bar {
    opacity: 1;
    transform: translateY(0)
}

@media (max-width:768px) {
    .lightbox-top-bar {
        padding: 15px 20px
    }

    .lightbox-bottom-bar {
        padding: 15px 20px 25px
    }

    .lightbox-actions {
        flex-direction: column;
        width: 100%
    }

    .lightbox-btn {
        width: 100%;
        justify-content: center
    }
}

.home-service-card {
    height: 300px;
    border-radius: 1.5rem
}

.home-service-card .premium-card-overlay {
    justify-content: center;
    align-items: center;
    text-align: center;
    background: rgba(15, 23, 42, .5);
    padding: 2rem
}

.home-service-card:hover .premium-card-overlay {
    background: rgba(37, 99, 235, .85)
}

.home-service-title {
    color: #fff;
    font-weight: 800;
    font-size: 1.8rem;
    transform: translateY(20px);
    transition: all .4s cubic-bezier(.165, .84, .44, 1);
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, .3)
}

.home-service-icon {
    font-size: 3rem;
    color: #fff;
    margin-bottom: 15px;
    transform: translateY(20px);
    transition: all .4s cubic-bezier(.165, .84, .44, 1);
    text-shadow: 0 2px 10px rgba(0, 0, 0, .3)
}

.home-service-btn {
    opacity: 0;
    transform: translateY(20px);
    transition: all .4s cubic-bezier(.165, .84, .44, 1);
    margin-top: 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, .2)
}

.home-service-card:hover .home-service-icon,
.home-service-card:hover .home-service-title {
    transform: translateY(-10px)
}

.home-service-card:hover .home-service-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.1s
}

.home-service-card .card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 10
}

.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, .95);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 99999;
    opacity: 0;
    visibility: hidden;
    transition: all .4s cubic-bezier(.16, 1, .3, 1)
}

.search-overlay.active {
    opacity: 1;
    visibility: visible
}

.btn-close-search {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, .1);
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2
}

.btn-close-search:hover {
    background: rgba(255, 255, 255, .2);
    transform: rotate(90deg)
}

.search-input-wrapper {
    position: relative;
    transform: translateY(30px);
    opacity: 0;
    transition: all .5s cubic-bezier(.16, 1, .3, 1) .1s
}

.search-overlay.active .search-input-wrapper {
    transform: translateY(0);
    opacity: 1
}

.search-input-wrapper .search-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--primary-color)
}

.search-input-wrapper input {
    width: 100%;
    height: 70px;
    padding: 10px 65px 10px 25px;
    font-size: 1.5rem;
    border-radius: 35px;
    border: 2px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .05);
    color: #fff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
    transition: var(--transition)
}

.search-input-wrapper input:focus {
    background: rgba(255, 255, 255, .1);
    border-color: var(--primary-color);
    outline: 0;
    box-shadow: 0 0 0 5px rgba(37, 99, 235, .2), 0 10px 30px rgba(0, 0, 0, .3)
}

.search-input-wrapper input::placeholder {
    color: rgba(255, 255, 255, .5)
}

.search-results-container {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
    transform: translateY(20px);
    opacity: 0;
    transition: all .5s cubic-bezier(.16, 1, .3, 1) .2s
}

.search-overlay.active .search-results-container {
    transform: translateY(0);
    opacity: 1
}

.search-results-container::-webkit-scrollbar {
    width: 6px
}

.search-results-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, .05);
    border-radius: 10px
}

.search-results-container::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, .2);
    border-radius: 10px
}

.search-results-container::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, .4)
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    border-radius: 15px;
    background: rgba(255, 255, 255, .03);
    margin-bottom: 10px;
    text-decoration: none;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .05);
    transition: var(--transition);
    animation: fadeInResult .3s ease forwards;
    opacity: 0;
    transform: translateY(10px)
}

.search-result-item:hover {
    background: rgba(37, 99, 235, .1);
    border-color: rgba(37, 99, 235, .3);
    transform: translateX(-5px);
    color: #fff
}

.search-result-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, .1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-color);
    transition: var(--transition)
}

.search-result-item:hover .search-result-icon {
    background: var(--primary-color);
    color: #fff
}

.search-result-info {
    flex: 1
}

.search-result-title {
    margin: 0 0 5px 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff !important
}

.search-result-desc {
    margin: 0;
    font-size: .85rem;
    color: rgba(255, 255, 255, .6)
}

@keyframes fadeInResult {
    to {
        opacity: 1;
        transform: translateY(0)
    }
}