﻿:root, body, html {
    scroll-behavior: smooth
}

.light-background, :root {
    --surface-color: #ffffff
}

.dark-background, :root {
    --contrast-color: #ffffff
}

.header, body {
    background-color: var(--background-color);
    color: var(--default-color)
}

body, html {
    margin: 0;
    padding: 0;
    overflow-x: hidden
}

:root {
    --default-font: "Roboto",system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --heading-font: "Montserrat",sans-serif;
    --nav-font: "Poppins",sans-serif;
    --background-color: #ffffff;
    --default-color: #666666;
    --heading-color: #000000;
    --accent-color: #313131;
    --nav-color: #999999;
    --nav-hover-color: #000000;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #666666;
    --nav-dropdown-hover-color: #313131
}

.light-background {
    --background-color: #f9f9f9
}

.dark-background {
    --background-color: #060606;
    --default-color: #e3e3e3;
    --heading-color: #ffffff;
    --accent-color: #bdb5b5;
    --surface-color: #252525
}

body {
    font-family: var(--default-font)
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: .3s
}

    a:hover {
        color: color-mix(in srgb,var(--accent-color),transparent 25%);
        text-decoration: none
    }

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-family: var(--heading-font)
}

.header {
    --background-color: rgba(255, 255, 255, 0)
}

    .header .logo img {
        transition: opacity .2s
    }

.hero-bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.35);
    z-index: 2
}

.hero-center-text {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%,-50%) !important;
    z-index: 996 !important;
    color: #fff !important;
    text-align: center !important;
    font-weight: 700;
    pointer-events: none;
    width: 100%
}

    .hero-center-text h1 {
        font-family: Birthstone,cursive;
        font-size: 4.5rem;
        font-weight: 400;
        letter-spacing: 1;
        color: #fff
    }

.header-on-hero #header-logo, .scrolled #header-logo {
    opacity: 1 !important;
    filter: none !important
}

@media (min-width:1200px) {
    .navmenu {
        padding: 0
    }

        .navmenu ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center
        }

        .navmenu li {
            position: relative
        }

        .navmenu a, .navmenu a:focus {
            color: var(--nav-color);
            padding: 18px 15px;
            font-size: 14px;
            font-family: var(--nav-font);
            font-weight: 400;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: .3s
        }

            .navmenu a i, .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                transition: .3s
            }

        .navmenu li:last-child a {
            padding-right: 0
        }

        .navmenu .active, .navmenu .active:focus, .navmenu li:hover > a {
            color: var(--nav-hover-color)
        }

        .navmenu .dropdown ul {
            margin: 0;
            padding: 10px 0;
            background: var(--nav-dropdown-background-color);
            display: block;
            position: absolute;
            visibility: hidden;
            left: 14px;
            top: 130%;
            opacity: 0;
            transition: .3s;
            border-radius: 4px;
            z-index: 99;
            box-shadow: 0 0 30px rgba(0,0,0,.1)
        }

            .navmenu .dropdown ul li {
                min-width: 200px
            }

            .navmenu .dropdown ul a {
                padding: 10px 20px;
                font-size: 15px;
                text-transform: none;
                color: var(--nav-dropdown-color)
            }

                .navmenu .dropdown ul a i {
                    font-size: 12px
                }

                .navmenu .dropdown ul .active:hover, .navmenu .dropdown ul a:hover, .navmenu .dropdown ul li:hover > a {
                    color: var(--nav-dropdown-hover-color)
                }

        .navmenu .dropdown:hover > ul {
            opacity: 1;
            top: 100%;
            visibility: visible
        }

        .navmenu .dropdown .dropdown ul {
            top: 0;
            left: -90%;
            visibility: hidden
        }

        .navmenu .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: -100%;
            visibility: visible
        }
}

@media (max-width:1199px) {
    .navmenu ul li, .navmenu ul li a {
        position: relative
    }

        .navmenu ul li a {
            padding: 18px 20px
        }

            .navmenu ul li a::after {
                content: "";
                position: absolute;
                left: 20px;
                right: 20px;
                bottom: 6px;
                height: 1px;
                background-color: rgba(0,0,0,.15);
                transition: .25s
            }

            .navmenu ul li a.active::after, .navmenu ul li a:hover::after {
                height: 2px;
                background-color: #000
            }

        .navmenu ul li:last-child a::after {
            display: none
        }

    .navmenu ul {
        max-height: calc(100vh - 140px);
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: .3s;
        z-index: 9998;
        box-shadow: 0 0 30px rgba(0,0,0,.1)
    }

        .navmenu ul li:last-child {
            margin-bottom: 0
        }

    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color .3s
    }

    .navmenu {
        padding: 0;
        z-index: 9997
    }

        .navmenu a, .navmenu a:focus {
            color: var(--nav-dropdown-color);
            padding: 10px 20px;
            font-family: var(--nav-font);
            font-size: 18px;
            font-weight: 300;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: .3s
        }

            .navmenu a i, .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: .3s;
                background-color: color-mix(in srgb,var(--accent-color),transparent 90%)
            }

                .navmenu a i:hover, .navmenu a:focus i:hover {
                    background-color: var(--accent-color);
                    color: var(--contrast-color)
                }

            .navmenu .active, .navmenu .active:focus, .navmenu a:hover {
                color: var(--nav-dropdown-hover-color)
            }

                .navmenu .active i, .navmenu .active:focus i {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                    transform: rotate(180deg)
                }

        .navmenu .dropdown ul {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            border: 1px solid color-mix(in srgb,var(--default-color),transparent 90%);
            box-shadow: none;
            transition: .5s ease-in-out
        }

            .navmenu .dropdown ul ul {
                background-color: rgba(33,37,41,.1)
            }

        .navmenu .dropdown > .dropdown-active {
            display: block;
            background-color: rgba(33,37,41,.03)
        }

    .mobile-nav-active {
        overflow: hidden
    }

        .mobile-nav-active .mobile-nav-toggle {
            color: #fff;
            position: absolute;
            font-size: 32px;
            top: 15px;
            right: 15px;
            margin-right: 0;
            z-index: 9999
        }

        .mobile-nav-active .navmenu {
            position: fixed;
            overflow: hidden;
            inset: 0;
            background: rgba(33,37,41,.8);
            transition: .3s
        }

            .mobile-nav-active .navmenu > ul {
                display: block
            }
}

.footer .social-links a, .page-title .breadcrumbs .breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: color-mix(in srgb,var(--default-color),transparent 50%)
}

.navmenu a {
    font-family: Outfit,sans-serif !important;
    font-weight: 400;
    letter-spacing: .2px;
    transition: .25s !important;
    transform: scale(1)
}

.navmenu li:hover > a {
    font-weight: 500 !important;
    transform: scale(1.06);
    opacity: .9
}

.navmenu a.active {
    font-weight: 600 !important;
    transform: scale(1.1);
    opacity: 1
}

.footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    padding-bottom: 50px;
    position: relative
}

    .footer .footer-top {
        padding-top: 50px;
        border-top: 1px solid color-mix(in srgb,var(--default-color),transparent 90%)
    }

    .footer .footer-about .logo {
        line-height: 1;
        margin-bottom: 25px
    }

        .footer .footer-about .logo img {
            max-height: 58px;
            margin-right: 6px
        }

        .footer .footer-about .logo span {
            color: var(--heading-color);
            font-size: 30px;
            font-weight: 400;
            letter-spacing: 1px;
            font-family: var(--heading-font)
        }

    .footer .footer-about p {
        font-size: 14px;
        font-family: var(--heading-font)
    }

    .footer .social-links a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid color-mix(in srgb,var(--default-color),transparent 50%);
        font-size: 16px;
        margin-right: 10px;
        transition: .3s
    }

        .footer .social-links a:hover {
            color: var(--accent-color);
            border-color: var(--accent-color)
        }

    .footer h4 {
        font-size: 18px;
        font-weight: 400;
        position: relative;
        padding-bottom: 12px
    }

    .footer .footer-links {
        margin-bottom: 30px
    }

        .footer .footer-links ul, .service-details .service-sidebar .service-info .service-details-list {
            list-style: none;
            padding: 0;
            margin: 0
        }

            .footer .footer-links ul i {
                padding-right: 2px;
                font-size: 12px;
                line-height: 0
            }

            .footer .footer-links ul li {
                padding: 10px 0;
                display: flex;
                align-items: center
            }

                .footer .footer-links ul li:first-child {
                    padding-top: 0
                }

            .footer .footer-links ul a {
                color: color-mix(in srgb,var(--default-color),transparent 20%);
                display: inline-block;
                line-height: 1
            }

                .footer .footer-links ul a:hover, .page-title .breadcrumbs .breadcrumb .breadcrumb-item a:hover, .page-title .breadcrumbs .breadcrumb .breadcrumb-item.active, .services .service-item:hover .service-link {
                    color: var(--accent-color)
                }

    .footer .footer-contact p {
        margin-bottom: 5px
    }

    .footer .copyright {
        padding-top: 25px;
        padding-bottom: 25px;
        background-color: color-mix(in srgb,var(--default-color),transparent 95%)
    }

        .contact .contact-details .detail-item:last-child, .footer .copyright p {
            margin-bottom: 0
        }

    .footer .credits {
        margin-top: 6px;
        font-size: 13px
    }

#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: .6s ease-out
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #fff;
        border-color: var(--accent-color) transparent var(--accent-color) transparent;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: 1.5s linear infinite animate-preloader
    }

@keyframes animate-preloader {
    0% {
        transform: rotate(0)
    }

    100% {
        transform: rotate(360deg)
    }
}

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 90px;
    z-index: 5;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: .4s;
    color: #fff;
}

.header, .section, section {
    color: var(--default-color);
    background-color: var(--background-color)
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0
}

.scroll-top:hover {
    background-color: color-mix(in srgb,var(--accent-color),transparent 20%);
    color: var(--contrast-color)
}

.scroll-top.active {
    visibility: visible;
    opacity: 1
}

@media screen and (max-width:768px) {
    [data-aos-delay] {
        transition-delay: 0 !important
    }
}

.page-title {
    text-align: center;
    padding: 40px 0 20px;
    border-top: 1px solid color-mix(in srgb,var(--default-color),transparent 90%)
}

    .page-title .breadcrumbs {
        margin-bottom: 1.5rem
    }

        .page-title .breadcrumbs .breadcrumb {
            justify-content: center;
            margin: 0;
            padding: 0;
            background: 0 0
        }

            .page-title .breadcrumbs .breadcrumb .breadcrumb-item {
                font-size: .9rem;
                color: color-mix(in srgb,var(--default-color),transparent 30%)
            }

                .page-title .breadcrumbs .breadcrumb .breadcrumb-item a {
                    color: inherit;
                    text-decoration: none;
                    transition: color .3s
                }

                    .page-title .breadcrumbs .breadcrumb .breadcrumb-item a i {
                        font-size: .9rem;
                        margin-right: .2rem
                    }

    .page-title .title-wrapper {
        max-width: 800px;
        margin: 0 auto;
        padding: 1rem 0
    }

        .page-title .title-wrapper h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 400;
            color: var(--heading-color)
        }

        .page-title .title-wrapper p {
            font-size: 1.1rem;
            color: color-mix(in srgb,var(--default-color),transparent 20%);
            margin: 0;
            line-height: 1.6
        }

@media (max-width:768px) {
    .page-title .title-wrapper h1 {
        font-size: 2rem
    }

    .page-title .title-wrapper p {
        font-size: 1rem
    }
}

.section, section {
    padding: 60px 0;
    scroll-margin-top: 87px;
    overflow: clip
}

@media (max-width:1199px) {
    .navmenu a {
        font-family: Outfit,sans-serif !important;
        font-weight: 300;
        transform: scale(1)
    }

    .navmenu li:hover > a {
        font-weight: 400 !important;
        transform: scale(1.04)
    }

    .navmenu a.active {
        font-weight: 600 !important;
        transform: scale(1.06)
    }

    .section, section {
        scroll-margin-top: 66px
    }
}

.section-title {
    text-align: center;
    padding-bottom: 60px;
    padding-top: 60px;
    position: relative
}

    .section-title h2 {
        font-size: 2.8rem;
        font-weight: 300;
        line-height: 1.2;
        color: var(--heading-color);
        margin-bottom: 1.5rem;
        letter-spacing: -1px
    }
    .section-title h1 {
        font-size: 2.8rem;
        font-weight: 300;
        line-height: 1.2;
        color: var(--heading-color);
        margin-bottom: 1.5rem;
        letter-spacing: -1px;
    }

    .section-title .subtitle {
        display: inline-block;
        font-size: .875rem;
        font-weight: 400;
        color: var(--accent-color);
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 1.5rem;
        position: relative
    }

        .section-title .subtitle::after {
            content: "";
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 1px;
            background: var(--accent-color)
        }

    .section-title p {
        font-size: 1.125rem;
        line-height: 1.8;
        color: color-mix(in srgb,var(--default-color),transparent 25%);
        max-width: 900px;
        margin: 0 auto;
        text-wrap: balance
    }

.header {
    --background-color: rgba(255, 255, 255, 0);
    padding: 15px 0;
    transition: .4s;
    z-index: 997;
    position: fixed;
    width: 100%;
    top: 0
}

    .header .logo img {
        max-height: 32px;
        margin-right: 8px
    }

@media (min-width:992px) {
    .header-on-hero .header, .header-on-hero .header .navmenu a, .header-on-hero .header a {
        color: #fff !important
    }
}

.scrolled .header {
    isolation: isolate;
    border-bottom: 1px solid rgba(0,0,0,.1)
}

    .scrolled .header::before {
        content: "";
        inset: 0;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(255,255,255,.85);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        pointer-events: none;
        z-index: -1
    }

    .scrolled .header .navmenu a, .scrolled .header a {
        color: #000 !important
    }

.full-video-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    margin: 0
}

    .full-video-hero .hero-bg-video {
        position: absolute;
        top: 50%;
        left: 50%;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform: translate(-50%,-50%);
        z-index: 1
    }

    .full-video-hero .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.45));
        z-index: 2
    }

.about {
    padding-top: 120px;
    padding-bottom: 120px
}

    .about .content h2 {
        font-size: 42px;
        font-weight: 300;
        line-height: 1.3;
        margin-bottom: 30px;
        font-family: var(--heading-font)
    }

    .about .content .lead {
        font-size: 20px;
        font-weight: 400;
        line-height: 1.7;
        margin-bottom: 40px;
        color: color-mix(in srgb,var(--default-color),transparent 15%)
    }

    .about .content p {
        font-size: 16px;
        line-height: 1.8;
        margin-bottom: 25px;
        color: color-mix(in srgb,var(--default-color),transparent 25%)
    }

.services .service-item p, .why-us .content p {
    color: color-mix(in srgb,var(--default-color),transparent 20%)
}

.about .stats-row {
    display: flex;
    gap: 40px;
    margin: 60px 0
}

    .about .stats-row .stat-item .stat-number {
        font-size: 48px;
        font-weight: 300;
        line-height: 1;
        color: var(--accent-color);
        font-family: var(--heading-font)
    }

    .about .stats-row .stat-item .stat-label {
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: color-mix(in srgb,var(--default-color),transparent 40%);
        margin-top: 8px
    }

.about .cta-section {
    display: flex;
    gap: 20px;
    margin-top: 50px
}

    .about .cta-section .btn-primary {
        display: inline-flex;
        align-items: center;
        padding: 16px 32px;
        background-color: var(--accent-color);
        color: var(--contrast-color);
        text-decoration: none;
        border-radius: 6px;
        font-weight: 500;
        transition: .3s
    }

    .about .cta-section .btn-outline, .error-404 .error-content .error-actions .btn-secondary {
        border: 2px solid color-mix(in srgb,var(--default-color),transparent 80%);
        text-decoration: none
    }

    .about .cta-section .btn-primary:hover {
        background-color: color-mix(in srgb,var(--accent-color),#000 10%);
        transform: translateY(-2px);
        color: var(--contrast-color)
    }

    .about .cta-section .btn-outline {
        display: inline-flex;
        align-items: center;
        padding: 16px 32px;
        background-color: transparent;
        color: var(--heading-color);
        border-radius: 6px;
        font-weight: 500;
        transition: .3s
    }

        .about .cta-section .btn-outline:hover, .error-404 .error-content .error-actions .btn-secondary:hover {
            border-color: var(--accent-color);
            color: var(--accent-color);
            transform: translateY(-2px)
        }

.about .image-wrapper, .why-us .image-wrapper {
    position: relative
}

    .about .image-wrapper img {
        border-radius: 12px;
        box-shadow: 0 20px 60px color-mix(in srgb,var(--default-color),transparent 90%)
    }

    .about .image-wrapper .floating-card {
        position: absolute;
        bottom: -30px;
        right: -30px;
        background-color: var(--surface-color);
        border-radius: 12px;
        padding: 30px;
        box-shadow: 0 15px 40px color-mix(in srgb,var(--default-color),transparent 85%);
        max-width: 280px
    }

        .about .image-wrapper .floating-card .card-content {
            display: flex;
            align-items: center;
            gap: 20px
        }

            .about .image-wrapper .floating-card .card-content .icon {
                width: 60px;
                height: 60px;
                background-color: color-mix(in srgb,var(--accent-color),transparent 90%);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                flex-shrink: 0
            }

                .about .image-wrapper .floating-card .card-content .icon i, .contact .info-item .info-icon i {
                    font-size: 24px;
                    color: var(--accent-color)
                }

            .about .image-wrapper .floating-card .card-content .text h4 {
                font-size: 18px;
                font-weight: 600;
                margin: 0 0 5px;
                color: var(--heading-color)
            }

            .about .image-wrapper .floating-card .card-content .text p {
                font-size: 14px;
                margin: 0;
                color: color-mix(in srgb,var(--default-color),transparent 30%);
                line-height: 1.6
            }

.service-card, .services .service-item {
    flex-direction: column;
    overflow: hidden
}

.services {
    background-color: color-mix(in srgb,var(--background-color),var(--accent-color) 2%)
}

    .services .service-item {
        padding: 60px 40px;
        background-color: var(--surface-color);
        border-radius: 8px;
        transition: .4s ease-in-out;
        height: 100%;
        display: flex;
        position: relative
    }

        .services .service-item::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg,var(--accent-color),color-mix(in srgb,var(--accent-color),var(--heading-color) 30%));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .4s ease-in-out
        }

.service-card:hover, .why-us .image-wrapper img:hover {
    transform: translateY(-8px)
}

.services .service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px color-mix(in srgb,var(--default-color),transparent 90%)
}

    .services .service-item:hover::before {
        transform: scaleX(1)
    }

    .service-card:hover .service-card-image, .services .service-item:hover .service-icon {
        transform: scale(1.1)
    }

    .services .service-item:hover .service-link i {
        transform: translateX(8px)
    }

.services .service-item .service-icon {
    color: #fff;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg,var(--accent-color),color-mix(in srgb,var(--accent-color),var(--heading-color) 20%));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    transition: transform .4s ease-in-out;
    flex-shrink: 0
}

    .services .service-item .service-icon i {
        font-size: 32px;
        color: var(--contrast-color)
    }

.services .service-item h3 {
    font-size: 24px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 1.3
}

.services .service-item p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 32px;
    flex-grow: 1
}

.services .service-item .service-link {
    color: var(--heading-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .3s ease-in-out;
    align-self: flex-start
}

    .services .service-item .service-link i {
        font-size: 16px;
        transition: transform .3s ease-in-out
    }

.why-us {
    padding: 100px 0
}

    .why-us .content {
        margin-bottom: 60px
    }

        .why-us .content h2 {
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 30px;
            line-height: 1.2
        }

        .why-us .content p {
            font-size: 1.125rem;
            line-height: 1.7;
            margin: 0
        }

    .why-us .image-wrapper img {
        border-radius: 8px;
        box-shadow: 0 20px 40px color-mix(in srgb,var(--default-color),transparent 85%);
        transition: transform .4s ease-in-out
    }

    .why-us .features-grid {
        margin-top: 80px
    }

    .why-us .feature-item {
        display: flex;
        gap: 25px;
        padding: 40px 0;
        transition: transform .3s ease-in-out
    }

        .why-us .feature-item:hover {
            transform: translateY(-5px)
        }

            .why-us .feature-item:hover .icon-wrapper {
                background-color: var(--accent-color);
                color: var(--contrast-color);
                transform: scale(1.1)
            }

    .why-us .icon-wrapper {
        flex-shrink: 0;
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background-color: color-mix(in srgb,var(--accent-color),transparent 90%);
        color: var(--accent-color);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.75rem;
        transition: .4s ease-in-out
    }

    .contact .contact-details .detail-item .detail-content, .why-us .feature-content {
        flex: 1
    }

        .why-us .feature-content h3 {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 15px;
            line-height: 1.3
        }

        .why-us .feature-content p {
            font-size: 1rem;
            line-height: 1.7;
            color: color-mix(in srgb,var(--default-color),transparent 25%);
            margin: 0
        }

.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill,minmax(350px,1fr));
    gap: 30px;
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(350px,1fr));
    gap: 40px;
    margin: 40px 0 60px
}

.contact {
    padding: 120px 0 100px
}

    .contact .info-item, .error-404 .error-content, .service-details .service-content .service-description, .service-details .service-content .service-features {
        margin-bottom: 80px
    }

        .contact .info-item .info-icon {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            background: color-mix(in srgb,var(--accent-color),transparent 90%);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 32px
        }

        .contact .info-item .info-content h4 {
            font-size: 24px;
            font-weight: 400;
            margin-bottom: 16px;
            color: var(--heading-color);
            letter-spacing: -.3px
        }

        .contact .info-item .info-content p {
            font-size: 16px;
            line-height: 1.7;
            color: color-mix(in srgb,var(--default-color),transparent 25%);
            margin: 0
        }

    .contact .contact-details .detail-item {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 48px
    }

        .contact .contact-details .detail-item .detail-icon {
            width: 40px;
            height: 40px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center
        }

            .contact .contact-details .detail-item .detail-icon i {
                font-size: 18px;
                color: var(--accent-color)
            }

        .contact .contact-details .detail-item .detail-content .detail-label {
            display: block;
            font-size: 13px;
            font-weight: 500;
            color: color-mix(in srgb,var(--default-color),transparent 40%);
            text-transform: uppercase;
            letter-spacing: .8px;
            margin-bottom: 6px
        }

        .contact .contact-details .detail-item .detail-content .detail-value {
            display: block;
            font-size: 16px;
            color: var(--default-color);
            line-height: 1.6
        }

    .contact .form-header {
        margin-bottom: 48px
    }

        .contact .form-header h3 {
            font-size: 32px;
            font-weight: 300;
            color: var(--heading-color);
            margin: 0;
            letter-spacing: -.4px
        }

    .contact .form-wrapper {
        background-color: var(--surface-color);
        padding: 20px 30px;
        border-radius: 10px
    }

        .contact .form-wrapper .form-group {
            margin-bottom: 32px
        }

            .contact .form-wrapper .form-group label {
                display: block;
                font-size: 14px;
                font-weight: 500;
                color: var(--heading-color);
                margin-bottom: 12px;
                letter-spacing: .2px
            }

            .contact .form-wrapper .form-group input, .contact .form-wrapper .form-group select, .contact .form-wrapper .form-group textarea {
                width: 100%;
                border: 1px solid color-mix(in srgb,var(--default-color),transparent 85%);
                border-radius: 8px;
                padding: 16px 20px;
                font-size: 15px;
                color: var(--default-color);
                background-color: var(--surface-color);
                transition: .3s;
                font-family: inherit
            }

                .contact .form-wrapper .form-group input:focus, .contact .form-wrapper .form-group select:focus, .contact .form-wrapper .form-group textarea:focus {
                    outline: 0;
                    border-color: var(--accent-color);
                    box-shadow: 0 0 0 3px color-mix(in srgb,var(--accent-color),transparent 90%)
                }

                .contact .form-wrapper .form-group input::placeholder, .contact .form-wrapper .form-group select::placeholder, .contact .form-wrapper .form-group textarea::placeholder {
                    color: color-mix(in srgb,var(--default-color),transparent 60%)
                }

            .contact .form-wrapper .form-group select {
                cursor: pointer
            }

                .contact .form-wrapper .form-group select option {
                    padding: 10px
                }

            .contact .form-wrapper .form-group textarea {
                resize: vertical;
                min-height: 120px;
                line-height: 1.6
            }

        .contact .form-wrapper .submit-btn {
            background: var(--accent-color);
            color: var(--contrast-color);
            border: none;
            border-radius: 8px;
            padding: 18px 36px;
            font-size: 15px;
            font-weight: 500;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: .3s;
            letter-spacing: .3px
        }

            .contact .form-wrapper .submit-btn i {
                font-size: 16px;
                transition: transform .3s
            }

            .contact .form-wrapper .submit-btn:hover {
                background: color-mix(in srgb,var(--accent-color),transparent 10%);
                transform: translateY(-2px);
                box-shadow: 0 8px 25px color-mix(in srgb,var(--accent-color),transparent 70%)
            }

                .contact .form-wrapper .submit-btn:hover i, .service-link:hover iconify-icon {
                    transform: translateX(4px)
                }

.service-details {
    padding-bottom: 60px;
    padding-top: 120px;
    background: linear-gradient(180deg,#f8f9fa 0,#fff 100%)
}

    .service-details .service-content .service-hero {
        margin-bottom: 20px;
        position: relative;
        overflow: hidden
    }

        .service-details .service-content .service-hero .service-image {
            width: 100%;
            height: 500px;
            object-fit: contain;
            box-shadow: 0 25px 50px rgba(0,0,0,.5);
            transition: transform .6s cubic-bezier(.16, 1, .3, 1)
        }

        .service-details .service-content .service-hero:hover .service-image {
            transform: scale(1.02)
        }

.service-card {
    background: #fff;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0,0,0,.08);
    transition: .5s cubic-bezier(.16, 1, .3, 1);
    border: 1px solid #e9ecef;
    display: flex;
    max-width: 420px;
    width: 100%;
    margin: 0 auto
}

    .service-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg,#ff6b6b,#4ecdc4,#45b7d1);
        opacity: 0;
        transition: opacity .3s
    }

    .service-card:hover {
        box-shadow: 0 20px 60px rgba(0,0,0,.12)
    }

        .service-card:hover::before {
            opacity: 1
        }

.service-card-image-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 280px;
    background: #f8f9fa
}

.service-card-image {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform .6s cubic-bezier(.16, 1, .3, 1)
}

.service-card-content {
    padding: 32px;
    background: #fff;
    display: flex;
    flex-direction: column;
    flex: 1
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#667eea 0,#764ba2 100%);
    border-radius: 12px;
    margin-bottom: 20px
}

    .service-details .service-content .service-features .feature-item .feature-icon i, .service-icon i, .service-icon svg {
        font-size: 28px;
        color: #fff
    }

.service-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 12px;
    line-height: 1.3
}

.service-card-subtitle {
    font-size: .95rem;
    color: #6c757d;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.6;
    flex: 1
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #667eea;
    font-weight: 600;
    font-size: .95rem;
    text-decoration: none;
    transition: .3s;
    padding: 10px 20px;
    border-radius: 8px;
    background: rgba(102,126,234,.1);
    align-self: flex-start
}

    .service-link:hover {
        color: #764ba2;
        transform: translateX(4px);
        background: rgba(102,126,234,.15)
    }

    .service-link iconify-icon {
        transition: transform .3s
    }

.decorative-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    top: 0;
    left: 0;
    z-index: 0
}

.service-card-content {
    position: relative;
    z-index: 0
}

.shape {
    position: absolute;
    opacity: .1
}

.shape-triangle {
    width: 0;
    height: 0;
    border-left: 150px solid transparent;
    border-right: 150px solid transparent;
    border-bottom: 260px solid currentColor
}

.shape-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: currentColor
}

.service-details .service-content .service-description .service-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.2;
    color: #000;
    background-clip: text
}

.service-details .service-content .service-description .lead {
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 40px
}

.service-details .service-content .service-description p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 28px;
    color: #495057
}

.service-details .service-content .service-features h3, .service-details .service-content .service-process h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 48px;
    color: #2c3e50
}

.service-details .service-content .service-features .feature-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    padding: 32px;
    background: #fff;
    border-radius: 16px;
    margin-bottom: 24px;
    border: 1px solid #e9ecef;
    transition: .3s
}

    .service-details .service-content .service-features .feature-item:hover {
        background: #f8f9fa;
        transform: translateX(8px);
        border-color: #dee2e6
    }

    .service-details .service-content .service-features .feature-item .feature-icon {
        flex-shrink: 0;
        width: 64px;
        height: 64px;
        background: linear-gradient(135deg,#667eea 0,#764ba2 100%);
        border-radius: 16px;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 10px 30px rgba(102,126,234,.3)
    }

    .service-details .service-content .service-features .feature-item .feature-content h4 {
        font-size: 1.4rem;
        font-weight: 600;
        margin-bottom: 12px;
        color: #2c3e50
    }

    .service-details .service-content .service-features .feature-item .feature-content p {
        font-size: 1rem;
        line-height: 1.7;
        color: #6c757d;
        margin: 0
    }

.service-details .service-content .service-process .process-timeline .process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative
}

    .service-details .service-content .service-process .process-timeline .process-step:not(:last-child)::after {
        content: "";
        position: absolute;
        left: 31px;
        top: 64px;
        width: 3px;
        height: calc(100% - 16px);
        background: linear-gradient(180deg,rgba(102,126,234,.5),rgba(118,75,162,.5))
    }

    .service-details .service-content .service-process .process-timeline .process-step .step-number {
        flex-shrink: 0;
        width: 64px;
        height: 64px;
        border-radius: 50%;
        background: linear-gradient(135deg,#667eea 0,#764ba2 100%);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-size: 1.5rem;
        box-shadow: 0 10px 30px rgba(102,126,234,.4);
        position: relative;
        z-index: 1
    }

    .service-details .service-content .service-process .process-timeline .process-step .step-content {
        flex: 1;
        padding-top: 8px
    }

        .service-details .service-content .service-process .process-timeline .process-step .step-content h4 {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 16px;
            color: #2c3e50
        }

        .service-details .service-content .service-process .process-timeline .process-step .step-content p {
            font-size: 1.05rem;
            line-height: 1.8;
            color: #6c757d;
            margin: 0
        }

.service-details .service-sidebar .sidebar-widget {
    background: #fff;
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 32px;
    border: 1px solid #e9ecef;
    transition: .3s
}

    .service-details .service-sidebar .sidebar-widget:hover {
        background: #f8f9fa;
        border-color: #dee2e6
    }

    .service-details .service-sidebar .sidebar-widget h4 {
        font-size: 1.5rem;
        font-weight: 600;
        margin-bottom: 28px;
        color: #2c3e50
    }

.service-details .service-sidebar .service-info .service-details-list li {
    padding: 16px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d
}

    .service-details .service-sidebar .service-info .service-details-list li:last-child {
        border-bottom: none
    }

    .service-details .service-sidebar .service-info .service-details-list li strong {
        color: #2c3e50;
        font-weight: 600
    }

.service-details .service-sidebar .cta-widget {
    color: var(--contrast-color)
}

    .service-details .service-sidebar .cta-widget .cta-content {
        text-align: center
    }

        .service-details .service-sidebar .cta-widget .cta-content h4 {
            color: var(--contrast-color);
            margin-bottom: 16px
        }

        .service-details .service-sidebar .cta-widget .cta-content p {
            color: color-mix(in srgb,var(--contrast-color),transparent 15%);
            margin-bottom: 24px;
            line-height: 1.6
        }

        .service-details .service-sidebar .cta-widget .cta-content .btn-cta {
            display: inline-block;
            background-color: var(--contrast-color);
            color: var(--accent-color);
            padding: 12px 24px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 500;
            transition: .3s
        }

.error-404 .error-content .error-actions .btn-primary:hover, .error-404 .error-content .search-section .search-form .search-input-group .search-btn:hover {
    background-color: color-mix(in srgb,var(--accent-color),#000 10%)
}

.service-details .service-sidebar .cta-widget .cta-content .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px color-mix(in srgb,var(--default-color),transparent 85%);
    color: var(--accent-color)
}

.service-details .service-sidebar .video-widget {
    padding: 0 !important;
    background: 0 0 !important;
    border: none !important;
    box-shadow: none !important
}

    .service-details .service-sidebar .video-widget .cta-content {
        padding: 0 !important;
        text-align: initial !important
    }

.youtube-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    border-radius: 20px
}

    .youtube-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: 0
    }

.error-404 {
    padding: 120px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg,var(--surface-color) 0,color-mix(in srgb,var(--surface-color),var(--accent-color) 3%) 100%)
}

    .error-404 .error-content .error-number {
        font-size: 8rem;
        font-weight: 300;
        color: var(--accent-color);
        margin-bottom: 20px;
        letter-spacing: -.02em;
        opacity: .8
    }

@media (max-width:768px) {
    .section-title h2, .service-details .service-content .service-description .service-title {
        font-size: 2.5rem
    }

    .full-video-hero {
        height: 90vh;
        padding-top: 100px
    }

    .about .content h2 {
        font-size: 32px
    }

    .services .service-item {
        padding: 40px 24px
    }

        .services .service-item .service-icon {
            width: 64px;
            height: 64px;
            margin-bottom: 24px
        }

            .services .service-item .service-icon i {
                font-size: 28px
            }

        .services .service-item h3 {
            font-size: 20px;
            margin-bottom: 16px
        }

        .services .service-item p {
            font-size: 15px;
            margin-bottom: 24px
        }

    .why-us .content h2 {
        font-size: 2rem
    }

    .why-us .feature-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 0
    }

    .why-us .icon-wrapper {
        margin: 0 auto
    }

    .why-us .feature-content h3 {
        font-size: 1.25rem
    }

    .contact {
        padding: 80px 0 60px
    }

        .contact .info-item {
            margin-bottom: 50px
        }

            .contact .info-item .info-icon {
                width: 56px;
                height: 56px;
                margin-bottom: 24px
            }

                .contact .info-item .info-icon i {
                    font-size: 20px
                }

            .contact .info-item .info-content h4 {
                font-size: 20px;
                margin-bottom: 12px
            }

        .contact .contact-details .detail-item, .contact .form-header {
            margin-bottom: 32px
        }

            .contact .form-header h3 {
                font-size: 24px
            }

        .contact .modern-form .form-group {
            margin-bottom: 24px
        }

    .service-details {
        padding: 60px 0
    }

    .service-cards-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .service-card {
        border-radius: 16px
    }

    .service-card-image-wrapper {
        height: 240px
    }

    .service-card-content {
        padding: 24px
    }

    .service-card-title {
        font-size: 1.3rem
    }

    .service-card-subtitle {
        font-size: .9rem
    }

    .service-details .service-content .service-hero .service-image {
        height: 300px;
        border-radius: 16px
    }

    .service-details .service-sidebar .sidebar-widget {
        padding: 28px
    }

    .error-404 .error-content .error-number {
        font-size: 6rem
    }
}

.error-404 .error-content .error-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--heading-color);
    margin-bottom: 30px;
    letter-spacing: -.01em
}

@media (max-width:768px) {
    .error-404 .error-content .error-title {
        font-size: 2.5rem
    }
}

.error-404 .error-content .error-description {
    font-size: 1.125rem;
    line-height: 1.8;
    color: color-mix(in srgb,var(--default-color),transparent 20%);
    margin-bottom: 50px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto
}

.error-404 .error-content .error-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap
}

    .error-404 .error-content .error-actions .btn-primary {
        display: inline-flex;
        align-items: center;
        padding: 16px 32px;
        background-color: var(--accent-color);
        color: var(--contrast-color);
        border: none;
        border-radius: 6px;
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        transition: .3s
    }

        .error-404 .error-content .error-actions .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px color-mix(in srgb,var(--accent-color),transparent 70%)
        }

    .error-404 .error-content .error-actions .btn-secondary {
        display: inline-flex;
        align-items: center;
        padding: 16px 32px;
        background-color: transparent;
        color: var(--heading-color);
        border-radius: 6px;
        font-weight: 500;
        font-size: 1rem;
        transition: .3s
    }

@media (max-width:576px) {
    .page-title .title-wrapper h1 {
        font-size: 1.75rem
    }

    .about .stats-row {
        flex-direction: column;
        gap: 30px
    }

    .about .cta-section {
        flex-direction: column
    }

    .error-404 .error-content .error-number {
        font-size: 4.5rem
    }

    .error-404 .error-content .error-title {
        font-size: 2rem
    }

    .error-404 .error-content .error-actions {
        flex-direction: column;
        align-items: center
    }

        .error-404 .error-content .error-actions .btn-primary, .error-404 .error-content .error-actions .btn-secondary {
            width: 100%;
            max-width: 280px;
            justify-content: center
        }
}

.error-404 .error-content .search-section .search-label {
    font-size: 1rem;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 500
}

.error-404 .error-content .search-section .search-form {
    max-width: 400px;
    margin: 0 auto
}

    .error-404 .error-content .search-section .search-form .search-input-group {
        position: relative;
        display: flex;
        align-items: center
    }

        .error-404 .error-content .search-section .search-form .search-input-group .search-input {
            width: 100%;
            padding: 16px 60px 16px 20px;
            border: 2px solid color-mix(in srgb,var(--default-color),transparent 80%);
            border-radius: 8px;
            font-size: 1rem;
            background-color: var(--surface-color);
            color: var(--default-color);
            transition: .3s
        }

            .error-404 .error-content .search-section .search-form .search-input-group .search-input:focus {
                outline: 0;
                border-color: var(--accent-color);
                box-shadow: 0 0 0 3px color-mix(in srgb,var(--accent-color),transparent 85%)
            }

            .error-404 .error-content .search-section .search-form .search-input-group .search-input::placeholder {
                color: color-mix(in srgb,var(--default-color),transparent 50%)
            }

        .error-404 .error-content .search-section .search-form .search-input-group .search-btn {
            position: absolute;
            right: 8px;
            background: var(--accent-color);
            border: none;
            border-radius: 6px;
            padding: 12px;
            color: var(--contrast-color);
            cursor: pointer;
            transition: .3s
        }

            .error-404 .error-content .search-section .search-form .search-input-group .search-btn i {
                font-size: 1rem
            }

.error-404 .helpful-links .links-title {
    font-size: 2rem;
    font-weight: 300;
    color: var(--heading-color);
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -.01em
}

.error-404 .helpful-links .link-item {
    text-align: center;
    padding: 40px 20px;
    height: 100%;
    transition: .3s
}

    .error-404 .helpful-links .link-item:hover {
        transform: translateY(-10px)
    }

    .error-404 .helpful-links .link-item .link-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: linear-gradient(135deg,var(--accent-color) 0,color-mix(in srgb,var(--accent-color),#000 20%) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 30px;
        transition: .3s
    }

        .error-404 .helpful-links .link-item .link-icon i {
            font-size: 1.75rem;
            color: var(--contrast-color)
        }

    .error-404 .helpful-links .link-item h4 {
        font-size: 1.5rem;
        font-weight: 400;
        color: var(--heading-color);
        margin-bottom: 20px
    }

    .error-404 .helpful-links .link-item p {
        font-size: 1rem;
        line-height: 1.7;
        color: color-mix(in srgb,var(--default-color),transparent 20%);
        margin-bottom: 25px
    }

    .error-404 .helpful-links .link-item .link-cta {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: var(--accent-color);
        text-decoration: none;
        font-weight: 500;
        font-size: 1rem;
        transition: .3s
    }

        .error-404 .helpful-links .link-item .link-cta:hover {
            color: color-mix(in srgb,var(--accent-color),#000 15%);
            gap: 12px
        }

        .error-404 .helpful-links .link-item .link-cta i {
            font-size: .875rem;
            transition: transform .3s
        }

        .error-404 .helpful-links .link-item .link-cta:hover i {
            transform: translateX(3px)
        }

    .error-404 .helpful-links .link-item:hover .link-icon {
        transform: scale(1.1);
        box-shadow: 0 15px 35px color-mix(in srgb,var(--accent-color),transparent 65%)
    }

@media (max-width:992px) {
    .header-on-hero .header .navmenu a, .navmenu a {
        color: #000 !important
    }

    .about .image-wrapper .floating-card {
        position: static;
        margin-top: 30px;
        max-width: none
    }

    .about .row {
        text-align: center
    }

    .about .content {
        margin-bottom: 60px
    }

    .about .stats-row {
        justify-content: center
    }

    .why-us .content {
        margin-bottom: 40px;
        text-align: center
    }

    .why-us .features-grid {
        margin-top: 60px
    }

    .error-404 {
        padding: 80px 0
    }

        .error-404 .helpful-links .link-item {
            margin-bottom: 40px
        }
}

@media (max-width:768px) {
    .error-404 .error-content .error-description {
        font-size: 1rem;
        margin-bottom: 40px
    }

    .error-404 .helpful-links .links-title {
        font-size: 1.75rem;
        margin-bottom: 40px
    }

    .error-404 {
        padding: 60px 0;
        min-height: auto
    }

        .error-404 .error-content {
            margin-bottom: 60px
        }
}
/* =======================
   GALERİ GRID – NET 4'LÜ
======================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.image-zoom-wrapper {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 10px;
}

    .image-zoom-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .25s ease;
    }

    .image-zoom-wrapper:hover img {
        transform: scale(1.06);
    }

    .image-zoom-wrapper .zoom-icon {
        position: absolute;
        inset: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(0,0,0,.45);
        color: #fff;
        font-size: 42px;
        opacity: 0;
        transition: opacity .25s ease;
        pointer-events: none;
    }

    .image-zoom-wrapper:hover .zoom-icon {
        opacity: 1;
    }

/* GLIGHTBOX FIX */
.glightbox-container {
    z-index: 99999 !important;
}
    .glightbox-container button {
        display: flex !important;
    }


.glightbox-close,
.glightbox-prev,
.glightbox-next {
    opacity: 1 !important;
    display: flex !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.glightbox-prev,
.glightbox-next {
    color: #fff !important;
}

    .glightbox-close svg,
    .glightbox-prev svg,
    .glightbox-next svg {
        fill: #fff !important;
    }

/* =======================
   RESPONSIVE BREAKPOINTS
======================= */

/* Large tablet / küçük laptop */
@media (max-width: 1200px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Tablet */
@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobil */
@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .image-zoom-wrapper {
        border-radius: 8px;
    }

        .image-zoom-wrapper .zoom-icon {
            font-size: 32px;
        }
}
