/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity 0.5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

/*** Back to Top Start ***/
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}
/*** Back to Top End ***/

/*** CSS Custom Properties - Color & Shadow Definitions ***/
:root {
    --primary: #107c10;
    --primary-dark: #0a5c0a;
    --primary-light: #e8f5e9;
    --dark: #1f2937;
    --gray: #6b7280;
    --light-gray: #f5f5f5;
    --lighter-gray: #fafafa;
    --border: #efefef;
    --border-light: #f0f0f0;
    --white: #ffffff;
    --orange: #ff9900;
    --red: #dc2626;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/*** Global Animations ***/
@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes glow {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(16, 124, 16, 0),
            0 8px 16px rgba(0, 0, 0, 0.12);
    }
    50% {
        box-shadow: 0 0 30px rgba(16, 124, 16, 0.3),
            0 12px 24px rgba(0, 0, 0, 0.18);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes image-efects {
    0% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        border-radius: 35% 65% 27% 73% / 71% 25% 75% 29%;
    }
    50% {
        border-radius: 41% 59% 45% 55% / 32% 21% 79% 68%;
    }
    75% {
        border-radius: 69% 31% 39% 61% / 70% 83% 17% 30%;
    }
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: 0.5s;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-xl-square {
    width: 66px;
    height: 66px;
}

.btn.btn-primary {
    color: var(--bs-white);
    border: none;
}

.btn.btn-primary:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.btn.btn-light {
    color: var(--bs-primary);
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.btn.btn-dark {
    color: var(--bs-white);
    border: none;
}

.btn.btn-dark:hover {
    color: var(--bs-primary);
    background: var(--bs-light);
}
/*** Button End ***/

/*** Topbar Start ***/
.topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: var(--bs-primary);
}

.topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 10px;
    border: 0;
    transition: 0.5s;
    opacity: 1;
}

.topbar .dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}
/*** Topbar End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(1, 95, 201, 0.9), rgba(0, 0, 0, 0.2)),
        url("{{ asset('assets/img/bg-breadcrumb.jpg') }}");
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

/*** Feature Start ***/
.feature .feature-item {
    border-radius: 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

.feature .feature-item:hover {
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    position: relative;
    width: 100px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon i {
    z-index: 9;
    color: var(--bs-white);
}

.feature .feature-item .feature-icon::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-dark);
    transition: 0.5s;
    z-index: 1;
}

.feature .feature-item:hover .feature-icon::after {
    height: 100%;
}

.feature .feature-item h4,
.feature .feature-item p {
    transition: 0.5s;
}

.feature .feature-item:hover h4,
.feature .feature-item:hover p {
    color: var(--bs-white);
}

.feature .feature-item:hover a.btn {
    background: var(--bs-white);
    color: var(--bs-primary);
}

.feature .feature-item:hover a.btn:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Feature End ***/

/*** Service Start ***/
.service-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service .service-item {
    border-radius: 10px;
}

.service .service-item .service-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.service .service-item .service-img img {
    transition: 0.5s;
}

.service .service-item:hover .service-img img {
    transform: scale(1.1);
}

.service .service-item .service-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, 0.2);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-img::after {
    height: 100%;
}

.service .service-item .service-img .service-icon {
    position: absolute;
    width: 70px;
    bottom: 0;
    right: 25px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: var(--bs-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 9;
}

.service .service-item .service-img .service-icon i {
    color: var(--bs-primary);
    transition: 0.5s;
}

.service .service-item:hover .service-img .service-icon i {
    transform: rotateX(360deg);
    color: var(--bs-white);
}

.service .service-item:hover .service-img .service-icon {
    bottom: 0;
    color: var(--bs-white);
    background: var(--bs-primary);
}

.service .service-content {
    position: relative;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.service .service-item .service-content .service-content-inner {
    position: relative;
    z-index: 9;
}

.service .service-item .service-content .service-content-inner .h4,
.service .service-item .service-content .service-content-inner p {
    transition: 0.5s;
}

.service .service-item:hover .service-content .service-content-inner .h4,
.service .service-item:hover .service-content .service-content-inner p {
    color: var(--bs-white);
}

.service
    .service-item:hover
    .service-content
    .service-content-inner
    .btn.btn-primary {
    color: var(--bs-primary);
    background: var(--bs-white);
}

.service
    .service-item:hover
    .service-content
    .service-content-inner
    .btn.btn-primary:hover {
    color: var(--bs-white);
    background: var(--bs-dark);
}

.service .service-item:hover .service-content .service-content-inner .h4:hover {
    color: var(--bs-dark);
}

.service .service-item .service-content::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    bottom: 0;
    left: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-primary);
    transition: 0.5s;
    z-index: 1;
}

.service .service-item:hover .service-content::after {
    height: 100%;
}
/*** Service End ***/

/*** FAQs Start ***/
.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: #107c10 !important;
    font-size: 18px;
}
/*** FAQs End ***/

/*** Blog Start ***/
.blog .blog-item {
    border-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item:hover {
    box-shadow: 0 0 45px rgba(0, 0, 0, 0.1);
}

.blog .blog-item:hover .blog-content {
    background: var(--bs-white);
}

.blog .blog-item .blog-img {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: relative;
    overflow: hidden;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item:hover .blog-img img {
    transform: scale(1.2);
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    background: rgba(1, 95, 201, 0.2);
    transition: 0.5s;
    z-index: 1;
}

.blog .blog-item:hover .blog-img::after {
    height: 100%;
}

.blog .blog-item .blog-img .blog-categiry {
    position: absolute;
    bottom: 0;
    right: 0;
    border-top-left-radius: 10px;
    display: inline-flex;
    color: var(--bs-white);
    background: var(--bs-primary);
    z-index: 9;
}

.blog .blog-item .blog-content {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    background: var(--bs-light);
}

.blog .blog-item .blog-content a.btn {
    color: var(--bs-dark);
}

.blog .blog-item:hover .blog-content a.btn:hover {
    color: var(--bs-primary);
}
/*** Blog End ***/

/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item:hover .team-img::after {
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    margin-bottom: -100%;
    transition: 0.5s;
    z-index: 9;
}

.team .team-item:hover .team-img .team-icon {
    margin-bottom: 0;
}

.team .team-item .team-title {
    color: var(--bs-white);
    background: var(--bs-primary);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-title h4 {
    color: var(--bs-white);
}

.team .team-item:hover .team-title {
    background: var(--bs-dark);
}
/*** Team End ***/

/*** Testimonial Start ***/
.testimonial-carousel .owl-stage-outer {
    margin-top: 58px;
    margin-right: -1px;
}

.testimonial .owl-nav .owl-prev {
    position: absolute;
    top: -58px;
    left: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-prev:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}

.testimonial .owl-nav .owl-next {
    position: absolute;
    top: -58px;
    right: 0;
    background: var(--bs-primary);
    color: var(--bs-white);
    padding: 5px 30px;
    border-radius: 30px;
    transition: 0.5s;
}

.testimonial .owl-nav .owl-next:hover {
    background: var(--bs-dark);
    color: var(--bs-white);
}
/*** Testimonial End ***/

/*** Contact Start ***/
.contact-img {
    position: relative;
    height: 100%;
}

.contact-img-inner {
    position: absolute;
    top: 80%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 100%;
}

.contact .contact-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    background: rgba(255, 255, 255, 0.9);
    z-index: 1;
    animation-name: image-efects;
    animation-duration: 10s;
    animation-delay: 1s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    transition: 0.5s;
}

.contact .contact-img .contact-img-inner {
    position: relative;
    z-index: 9;
}

@media (max-width: 768px) {
    .contact-img-inner {
        top: 50%;
        max-width: 100%;
    }
}
/*** Contact End ***/

/*** Footer Start ***/
.footer {
    background: var(--bs-dark);
}

.footer .footer-item {
    display: flex;
    flex-direction: column;
}

.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-body);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a,
.footer .footer-item .footer-btn a i {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-primary);
}

.footer .footer-item .footer-instagram {
    position: relative;
    overflow: hidden;
}

.footer .footer-item .footer-instagram img {
    transition: 0.5s;
}

.footer .footer-item .footer-instagram:hover img {
    transform: scale(1.2);
}

.footer .footer-item .footer-instagram .footer-search-icon {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    opacity: 0;
}

.footer .footer-item .footer-instagram:hover .footer-search-icon {
    opacity: 1;
    background: rgba(0, 0, 0, 0.6);
}

.footer .footer-item .footer-btn a {
    background: var(--bs-light);
    color: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-primary);
}

.footer .footer-item .footer-btn a:hover i {
    color: var(--bs-white);
}
/*** Footer End ***/

/*** Copyright Start ***/
.copyright {
    background: var(--bs-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}
/*** Copyright End ***/

/*** Utility Classes Start ***/
@media (max-width: 768px) {
    .larger-mobile {
        width: 95% !important;
        margin: 0 auto;
        padding: 20px;
    }

    .btn-switch-auth {
        min-width: 200px !important;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
/*** Utility Classes End ***/

/*** Brand & Partner Section Start ***/
.brand-section {
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.brand-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 20% 50%,
            rgba(16, 124, 16, 0.05) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            rgba(16, 124, 16, 0.05) 0%,
            transparent 50%
        );
    pointer-events: none;
}

.brand-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.brand-header h4 {
    color: #107c10;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 15px;
    opacity: 0;
    animation: fadeInDown 0.8s ease forwards;
}

.brand-header h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #1f2937 0%, #107c10 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.brand-header p {
    color: #6b7280;
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.brand-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

.brand-item-wrapper {
    perspective: 1000px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    position: relative;
}

.brand-item-wrapper:nth-child(1) {
    animation-delay: 0.5s;
}
.brand-item-wrapper:nth-child(2) {
    animation-delay: 0.6s;
}
.brand-item-wrapper:nth-child(3) {
    animation-delay: 0.7s;
}
.brand-item-wrapper:nth-child(4) {
    animation-delay: 0.8s;
}
.brand-item-wrapper:nth-child(5) {
    animation-delay: 0.9s;
}
.brand-item-wrapper:nth-child(6) {
    animation-delay: 1s;
}
.brand-item-wrapper:nth-child(7) {
    animation-delay: 1.1s;
}
.brand-item-wrapper:nth-child(8) {
    animation-delay: 1.2s;
}

.brand-item {
    background: transparent;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    position: relative;
    min-width: 160px;
    min-height: 160px;
}

.brand-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(
        135deg,
        rgba(16, 124, 16, 0.1) 0%,
        rgba(16, 124, 16, 0) 100%
    );
    -webkit-mask: linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.brand-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-12px) scale(1.05);
    border-color: transparent;
    animation: float 3s ease-in-out infinite;
}

.brand-item:hover::before {
    opacity: 1;
}

.brand-logo {
    max-height: 140px;
    max-width: 140px;
    object-fit: contain;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.12)) brightness(1);
    position: relative;
    z-index: 1;
}

.brand-logo::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 30px;
    background: radial-gradient(
        ellipse 80px 20px at center,
        rgba(0, 0, 0, 0.25),
        rgba(0, 0, 0, 0)
    );
    filter: blur(20px);
    pointer-events: none;
    opacity: 0.8;
    transition: all 0.4s ease;
}

.brand-item-wrapper::after {
    content: "";
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 40px;
    background: radial-gradient(
        ellipse 100px 25px at center,
        rgba(16, 124, 16, 0.15),
        rgba(16, 124, 16, 0)
    );
    filter: blur(15px);
    pointer-events: none;
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 0;
}

.brand-item:hover ~ ::after,
.brand-item-wrapper:hover::after {
    opacity: 1;
    bottom: -35px;
    background: radial-gradient(
        ellipse 120px 35px at center,
        rgba(16, 124, 16, 0.25),
        rgba(16, 124, 16, 0)
    );
    filter: blur(25px);
}

.brand-item:hover .brand-logo {
    transform: scale(1.15) rotate(-2deg);
    filter: drop-shadow(0 15px 30px rgba(16, 124, 16, 0.25)) brightness(1.05);
}

.brand-item a {
    display: block;
    width: 100%;
    text-align: center;
    text-decoration: none;
    position: relative;
    z-index: 2;
}

@media (max-width: 1200px) {
    .brand-section {
        padding: 60px 0;
    }

    .brand-header h1 {
        font-size: 2.3rem;
    }

    .brand-logo {
        max-height: 120px;
        max-width: 120px;
    }

    .brand-item {
        padding: 30px 20px;
        min-width: 140px;
        min-height: 140px;
    }
}

@media (max-width: 768px) {
    .brand-section {
        padding: 50px 0;
    }

    .brand-header h1 {
        font-size: 2rem;
    }

    .brand-header p {
        font-size: 0.95rem;
    }

    .brand-item {
        padding: 25px 15px;
        min-width: 120px;
        min-height: 120px;
    }

    .brand-logo {
        max-height: 100px;
        max-width: 100px;
    }

    .brand-row {
        gap: 16px;
    }

    .brand-item-wrapper::after {
        width: 90px;
        height: 30px;
        bottom: -20px;
        background: radial-gradient(
            ellipse 80px 20px at center,
            rgba(16, 124, 16, 0.12),
            rgba(16, 124, 16, 0)
        );
        filter: blur(12px);
    }
}

@media (max-width: 576px) {
    .brand-section {
        padding: 40px 0;
    }

    .brand-header h1 {
        font-size: 1.5rem;
    }

    .brand-header h4 {
        font-size: 12px;
    }

    .brand-header p {
        font-size: 0.9rem;
    }

    .brand-item {
        padding: 20px 10px;
        min-width: 100px;
        min-height: 100px;
    }

    .brand-logo {
        max-height: 80px;
        max-width: 80px;
    }

    .brand-row {
        gap: 12px;
    }

    .brand-item-wrapper::after {
        width: 70px;
        height: 25px;
        bottom: -15px;
        background: radial-gradient(
            ellipse 60px 18px at center,
            rgba(16, 124, 16, 0.1),
            rgba(16, 124, 16, 0)
        );
        filter: blur(10px);
    }
}
/*** Brand & Partner Section End ***/

/* Tambahan untuk project detail page */
:root {
    --primary-green: #107c10;
    --primary-dark: #0a5c0a;
    --primary-light: #e8f5e9;
    --color-navy: #0f1419;
    --color-dark: #1a1d23;
    --color-gray-900: #2d3748;
    --color-gray-800: #374151;
    --color-gray-700: #4a5568;
    --color-gray-600: #6b7280;
    --color-gray-500: #718096;
    --color-gray-400: #9ca3af;
    --color-gray-300: #cbd5e0;
    --color-gray-200: #e5e7eb;
    --color-gray-100: #f7fafc;
    --color-white: #ffffff;
    --status-ongoing: #107c10;
    --status-completed: #64748b;
    --status-upcoming: #3b82f6;
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-3xl: 32px;
    --radius-full: 9999px;
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
    --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.detail-hero-premium {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-navy);
    margin-top: -20px;
}

.hero-carousel-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.swiper-slide {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.swiper-slide:hover img {
    transform: scale(1.05);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--color-white);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all var(--transition-base);
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4);
    width: 12px;
    height: 12px;
    transition: all var(--transition-base);
}

.swiper-pagination-bullet-active {
    background: var(--color-white);
    width: 32px;
    border-radius: 6px;
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 20, 25, 0.88) 0%,
        rgba(15, 20, 25, 0.8) 50%,
        rgba(15, 20, 25, 0.88) 100%
    );
    z-index: 1;
}

.hero-content-wrapper {
    position: relative;
    z-index: 2;
    padding: 140px 0 100px;
    width: 100%;
}

.btn-back-hero {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-5);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--color-white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: var(--space-6);
    transition: all var(--transition-base);
}

.btn-back-hero:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(-4px);
    color: var(--color-white);
}

.breadcrumb-modern {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-8);
}

.breadcrumb-modern a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb-modern a:hover {
    color: var(--color-white);
}

.breadcrumb-modern i.fa-chevron-right {
    font-size: 10px;
    opacity: 0.5;
}

.hero-main-content {
    max-width: 900px;
}

.status-badge-premium {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(16, 124, 16, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(16, 124, 16, 0.3);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-6);
    animation: slideInDown 0.5s ease;
}

.status-badge-premium.completed {
    background: rgba(100, 116, 139, 0.15);
    border-color: rgba(100, 116, 139, 0.3);
}

.status-badge-premium.completed .status-dot {
    background: var(--status-completed);
}

.status-badge-premium.completed .status-text {
    color: var(--status-completed);
}

.status-badge-premium.upcoming {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.3);
}

.status-badge-premium.upcoming .status-dot {
    background: var(--status-upcoming);
}

.status-badge-premium.upcoming .status-text {
    color: var(--status-upcoming);
}

.status-dot {
    width: 8px;
    height: 8px;
    background: var(--primary-green);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.status-text {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-title-premium {
    font-size: 64px;
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: var(--space-4);
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: var(--space-8);
    max-width: 600px;
}

.hero-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-4);
    margin-bottom: var(--space-10);
}

.meta-item-premium {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-5);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.meta-item-premium:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(16, 124, 16, 0.5);
    transform: translateY(-2px);
}

.meta-icon {
    width: 48px;
    height: 48px;
    background: rgba(16, 124, 16, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green);
    font-size: 20px;
    flex-shrink: 0;
}

.meta-icon i,
.meta-icon .fas,
.meta-icon .fa {
    font-size: 20px !important;
    color: inherit !important;
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
    display: inline-block !important;
    visibility: visible !important;
}

.meta-content {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.meta-label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    font-size: 16px;
    color: var(--color-white);
    font-weight: 700;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-8);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: float 2s ease-in-out infinite;
    z-index: 2;
}

.scroll-indicator i {
    font-size: 20px;
}

.quick-stats-section {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    padding: 0 0 var(--space-16);
}

.stats-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: var(--space-5);
}

.stat-card-premium {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    padding: var(--space-6);
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.stat-card-premium:hover {
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.stat-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(
        135deg,
        var(--primary-light) 0%,
        rgba(16, 124, 16, 0.08) 100%
    );
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.stat-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: var(--color-gray-600);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-content-section {
    padding: var(--space-16) 0;
    background: var(--color-gray-100);
}

.content-grid-premium {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-10);
    align-items: start;
}

.content-main {
    display: flex;
    flex-direction: column;
    gap: var(--space-8);
}

.content-block {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.content-block:hover {
    box-shadow: var(--shadow-md);
}

.block-header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-5);
    border-bottom: 2px solid var(--color-gray-100);
}

.block-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(
        135deg,
        var(--primary-light) 0%,
        rgba(16, 124, 16, 0.05) 100%
    );
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--primary-green);
    flex-shrink: 0;
}

.block-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-dark);
    margin: 0;
    flex: 1;
}

.photo-count {
    padding: var(--space-2) var(--space-4);
    background: var(--color-gray-100);
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 700;
    color: var(--color-gray-700);
}

.block-content {
    line-height: 1.8;
}

.overview-text {
    font-size: 17px;
    color: var(--color-gray-700);
    line-height: 1.9;
    margin: 0;
}

.photo-gallery-premium {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: var(--space-5);
    animation: fadeIn 0.6s ease;
}

.gallery-photo-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
}

.gallery-photo-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.gallery-photo-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-photo-item:hover img {
    transform: scale(1.12);
}

.gallery-overlay-hover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to top,
        rgba(15, 20, 25, 0.85) 0%,
        transparent 50%
    );
    display: flex;
    align-items: flex-end;
    padding: var(--space-5);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-photo-item:hover .gallery-overlay-hover {
    opacity: 1;
}

.gallery-photo-caption {
    color: var(--color-white);
    font-size: 14px;
    font-weight: 600;
}

.gallery-photo-zoom {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    width: 40px;
    height: 40px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    opacity: 0;
    transform: scale(0.8);
    transition: all var(--transition-base);
}

.gallery-photo-item:hover .gallery-photo-zoom {
    opacity: 1;
    transform: scale(1);
}

.highlights-list-premium {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.highlights-list-premium li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--color-gray-50);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.highlights-list-premium li:hover {
    background: var(--primary-light);
    transform: translateX(4px);
    box-shadow: var(--shadow-sm);
}

.highlights-list-premium li i {
    color: var(--primary-green);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlights-list-premium li span {
    font-size: 16px;
    color: var(--color-gray-700);
    line-height: 1.7;
}

.schedule-premium {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.schedule-day-item {
    padding: var(--space-6);
    background: linear-gradient(
        135deg,
        var(--color-gray-50) 0%,
        var(--color-white) 100%
    );
    border-left: 4px solid var(--primary-green);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.schedule-day-item:hover {
    background: var(--primary-light);
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}

.schedule-day-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: var(--space-3);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.schedule-day-title i {
    color: var(--primary-green);
    font-size: 18px;
}

.schedule-day-activities {
    font-size: 15px;
    color: var(--color-gray-700);
    line-height: 1.8;
}

.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--space-6);
}

.sidebar-card-premium {
    background: var(--color-white);
    border: 1px solid var(--color-gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.sidebar-card-premium:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green);
}

.card-header-premium {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-5);
    background: linear-gradient(
        135deg,
        var(--primary-light) 0%,
        rgba(16, 124, 16, 0.05) 100%
    );
    border-bottom: 1px solid var(--color-gray-200);
}

.card-header-premium i {
    font-size: 20px;
    color: var(--primary-green);
}

.card-header-premium h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-dark);
    margin: 0;
}

.card-body-premium {
    padding: var(--space-6);
}

.info-list-premium {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.info-item-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--color-gray-100);
}

.info-item-premium:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.info-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--color-gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-dark);
}

.badge-status {
    padding: var(--space-1) var(--space-3);
    background: var(--primary-light);
    color: var(--primary-green);
    border-radius: var(--radius-full);
    font-size: 12px;
}

.badge-status.completed {
    background: rgba(100, 116, 139, 0.15);
    color: var(--status-completed);
}

.badge-status.upcoming {
    background: rgba(59, 130, 246, 0.15);
    color: var(--status-upcoming);
}

.contact-description {
    font-size: 14px;
    color: var(--color-gray-600);
    line-height: 1.6;
    margin-bottom: var(--space-5);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-3);
    background: var(--color-gray-50);
    border-radius: var(--radius-md);
    font-size: 14px;
    color: var(--color-gray-700);
    transition: all var(--transition-base);
}

.contact-item:hover {
    background: var(--primary-light);
    color: var(--primary-green);
}

.contact-item i {
    color: var(--primary-green);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

.btn-contact-full {
    width: 100%;
    padding: 12px;
    background: linear-gradient(
        135deg,
        var(--primary-green) 0%,
        var(--primary-dark) 100%
    );
    color: var(--color-white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    transition: all var(--transition-base);
    text-decoration: none;
}

.btn-contact-full:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--color-white);
}

.share-buttons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-3);
}

.share-btn-premium {
    aspect-ratio: 1;
    background: var(--color-gray-100);
    border: 1px solid var(--color-gray-300);
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--color-gray-700);
    transition: all var(--transition-base);
    text-decoration: none;
}

.share-btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.share-btn-premium.facebook:hover {
    background: #1877f2;
    color: var(--color-white);
    border-color: #1877f2;
}

.share-btn-premium.twitter:hover {
    background: #1da1f2;
    color: var(--color-white);
    border-color: #1da1f2;
}

.share-btn-premium.linkedin:hover {
    background: #0a66c2;
    color: var(--color-white);
    border-color: #0a66c2;
}

.share-btn-premium.instagram:hover {
    background: #e4405f;
    color: var(--color-white);
    border-color: #e4405f;
}

.share-btn-premium.youtube:hover {
    background: #ff0000;
    color: var(--color-white);
    border-color: #ff0000;
}

.share-btn-premium.tiktok:hover {
    background: #000000;
    color: var(--color-white);
    border-color: #000000;
}

.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.tag-premium {
    padding: var(--space-2) var(--space-4);
    background: var(--primary-light);
    color: var(--primary-green);
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(16, 124, 16, 0.2);
    transition: all var(--transition-fast);
    cursor: pointer;
}

.tag-premium:hover {
    background: var(--primary-green);
    color: var(--color-white);
    transform: scale(1.05);
}

@media (max-width: 1200px) {
    .content-grid-premium {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        order: -1;
    }
}

@media (max-width: 1023px) {
    .hero-title-premium {
        font-size: 48px;
    }

    .hero-meta-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .detail-hero-premium {
        min-height: 500px;
    }

    .hero-content-wrapper {
        padding: 80px 0 40px;
    }

    .hero-title-premium {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-meta-grid {
        grid-template-columns: 1fr;
    }

    .stats-cards-grid {
        grid-template-columns: 1fr;
    }

    .photo-gallery-premium {
        grid-template-columns: repeat(2, 1fr);
    }

    .block-header h2 {
        font-size: 22px;
    }
}

@media (max-width: 479px) {
    .hero-title-premium {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .photo-gallery-premium {
        grid-template-columns: 1fr;
    }

    .swiper-button-next,
    .swiper-button-prev {
        display: none;
    }

    .stat-card-premium {
        gap: var(--space-3);
        padding: var(--space-4);
    }

    .stat-number {
        font-size: 20px;
    }

    .stat-icon-wrapper {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
}
