
        /* ---------- CUSTOM STYLES ---------- */
        :root {
            --primary: #b83c13;
            --primary-dark: #b83c13;
            --gold: #D4AF37;
            --light-gray: #F8F9FA;
            --text-dark: #333333;
        }

        body {
            font-family: 'Open Sans', sans-serif;
            color: var(--text-dark);
            background: #fff;
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        .heading-font {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
        }

        .text-gold {
            color: var(--gold);
        }

        .bg-primary-dark {
            background-color: var(--primary);
        }

        .btn-primary-custom {
            background-color: var(--primary);
            border: 2px solid var(--primary);
            color: #fff;
            transition: 0.3s;
            font-weight: 600;
            padding: 10px 28px;
            border-radius: 40px;
        }

        .btn-primary-custom:hover {
            background-color: transparent;
            color: var(--primary);
            border-color: var(--primary);
        }

        .btn-outline-gold {
            border: 2px solid var(--gold);
            color: var(--gold);
            background: transparent;
            border-radius: 40px;
            font-weight: 600;
            padding: 10px 28px;
        }

        .btn-outline-gold:hover {
            background: var(--gold);
            color: #fff;
        }
        section{
            overflow: hidden;
        }

        .section-title {
            font-size: 2.4rem;
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 70px;
            height: 4px;
            background: var(--gold);
            border-radius: 4px;
        }

        .bg-light-custom {
            background-color: var(--light-gray);
        }

        /* top header */
        .top-header {
            background: var(--primary);
            color: #fff;
            font-size: 0.9rem;
            padding: 8px 0;
            border-bottom: 2px solid var(--gold);
        }

        .top-header a {
            color: #fff;
            text-decoration: none;
            margin: 0 10px 0 4px;
            transition: 0.2s;
        }

        .top-header a:hover {
            color: var(--gold);
        }

        .social-icons a {
            margin: 0 6px;
            font-size: 1rem;
        }

        /* navbar */
        .navbar-custom {
            background: #fff;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            transition: 0.3s;
        }

        .navbar-custom .navbar-brand {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            color: var(--primary);
            font-size: 1.7rem;
        }

        .navbar-custom .navbar-brand span {
            color: var(--gold);
        }

        .navbar-custom .nav-link {
            color: var(--text-dark);
            font-weight: 600;
            margin: 0 8px;
            transition: 0.3s;
            font-size: 1rem;
        }

        .navbar-custom .nav-link:hover {
            color: var(--primary);
        }

        .navbar-custom .btn-call {
            background: var(--primary);
            color: #fff !important;
            border-radius: 40px;
            padding: 8px 20px;
            font-weight: 700;
            transition: 0.3s;
        }

        .navbar-custom .btn-call:hover {
            background: var(--gold);
            color: #fff !important;
        }

        /* hero swiper */
        .swiper-slide {
            height: 88vh;
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            position: relative;
        }

        .swiper-slide::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: #fff;
            max-width: 750px;
            padding: 0 20px;
        }

        .hero-content h1 {
            font-size: 4.2rem;
            font-weight: 800;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.4rem;
            font-weight: 300;
        }

        /* counters */
        .counter-box {
            border-right: 1px solid #ddd;
        }

        .counter-box:last-child {
            border: none;
        }

        .counter-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: var(--primary);
        }

        /* service card */
        .service-card {
            background: #fff;
            border-radius: 20px;
            padding: 30px 20px;
            transition: 0.3s;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
            border-bottom: 4px solid transparent;
            height: 100%;
        }

        .service-card:hover {
            transform: translateY(-12px);
            border-bottom-color: var(--gold);
            box-shadow: 0 18px 40px rgba(139, 0, 0, 0.08);
        }

        .service-card i {
            font-size: 3.5rem;
            color: var(--primary);
        }

        /* feature boxes */
        .feature-box {
            background: #fff;
            padding: 30px 18px;
            border-radius: 20px;
            transition: 0.3s;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
            height: 100%;
            text-align: center;
        }

        .feature-box i {
            font-size: 2.8rem;
            color: var(--gold);
            margin-bottom: 15px;
        }

        /* gallery */
        .gallery-item {
            overflow: hidden;
            border-radius: 16px;
            position: relative;
        }

        .gallery-item img {
            transition: 0.5s;
            width: 100%;
            height: 260px;
            object-fit: cover;
        }

        .gallery-item:hover img {
            transform: scale(1.08);
        }

        .gallery-section {
    background: #f8f9fa;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: .5s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: .4s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

/* Lightbox */

#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.95);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

#lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 10px;
    animation: zoomIn .4s ease;
}

.close-btn {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
    transition: .3s;
}

.close-btn:hover {
    color: #ffc107;
}

@keyframes zoomIn {
    from{
        transform: scale(.7);
        opacity:0;
    }
    to{
        transform: scale(1);
        opacity:1;
    }
}

/* Responsive */

@media(max-width:768px){

    .gallery-item img{
        height:220px;
    }

    .close-btn{
        font-size:35px;
        right:20px;
    }

    #lightbox img{
        max-width:95%;
    }
}

        /* process timeline */
        .process-step {
            text-align: center;
            padding: 20px 10px;
        }

        .process-step .step-icon {
            width: 80px;
            height: 80px;
            background: var(--primary);
            color: #fff;
            font-size: 2.2rem;
            line-height: 80px;
            border-radius: 50%;
            margin: 0 auto 15px;
            box-shadow: 0 10px 30px rgba(139, 0, 0, 0.2);
            transition: 0.3s;
        }

        .process-step:hover .step-icon {
            background: var(--gold);
            transform: scale(1.05);
        }

        /* testimonial */
        .testimonial-card {
            background: #fff;
            border-radius: 24px;
            padding: 30px 25px;
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.04);
            margin: 15px 5px;
            transition: 0.3s;
        }

        .testimonial-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 15px 45px rgba(0, 0, 0, 0.07);
        }

        .testimonial-card .stars {
            color: var(--gold);
            letter-spacing: 2px;
        }

        /* CTA */
        .cta-section {
            background: linear-gradient(rgba(139, 0, 0, 0.85), rgba(139, 0, 0, 0.85)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?w=1200&q=80') center/cover fixed;
            padding: 80px 0;
            color: #fff;
        }

        /* contact */
        .contact-form .form-control {
            border-radius: 30px;
            padding: 14px 20px;
            border: 1px solid #ddd;
        }

        .contact-form .form-control:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 0.2rem rgba(212, 175, 55, 0.2);
        }

        /* footer */
        .footer-dark {
            background: #1a1a1a;
            color: #ccc;
        }

        .footer-dark a {
            color: #ccc;
            text-decoration: none;
            transition: 0.3s;
        }

        .footer-dark a:hover {
            color: var(--gold);
        }

        .footer-dark .social a {
            font-size: 1.4rem;
            margin-right: 15px;
        }

        /* floating buttons */
        .float-wa {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
            background: #25d366;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.4rem;
            color: #fff;
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
            transition: 0.3s;
            animation: pulse 2s infinite;
        }

        .float-wa:hover {
            transform: scale(1.1);
            color: #fff;
            background: #20b95a;
        }

        .float-call {
            position: fixed;
            bottom: 30px;
            left: 30px;
            z-index: 999;
            background: var(--primary);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: #fff;
            box-shadow: 0 6px 25px rgba(139, 0, 0, 0.4);
            transition: 0.3s;
        }

        .float-call:hover {
            transform: scale(1.1);
            color: #fff;
            background: var(--gold);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* scroll to top */
        .scroll-top {
            position: fixed;
            bottom: 110px;
            right: 30px;
            z-index: 998;
            background: var(--primary);
            color: #fff;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
            text-decoration: none;
        }

        .scroll-top.show {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background: var(--gold);
            color: #fff;
        }

        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.6rem;
            }

            .hero-content p {
                font-size: 1rem;
            }

            .counter-box {
                border: none;
            }

            .section-title {
                font-size: 2rem;
            }
        }