 :root {
            --color-primary: #ef8314;
            --color-dark: #111111;
            --color-black: #000000;
            --color-white: #ffffff;
            --color-gray: #6c757d;
            --color-light-gray: #f3f3f3;
            --color-border: #dcdcdc;
            --color-soft: #fafafa;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: Arial, sans-serif;
            background-color: var(--color-white);
            color: var(--color-dark);
        }

        .navbar {
            background: rgba(255,255,255,0.96);
            border-bottom: 1px solid #e5e5e5;
            padding-top: 5px;
            padding-bottom: 5px;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--color-dark) !important;
            letter-spacing: 0.5px;
        }

        .navbar-brand img {
            height: 70px;
            width: auto;
            object-fit: contain;
        }

        .nav-link {
            color: var(--color-dark) !important;
            font-weight: 500;
            margin-left: 14px;
            transition: 0.2s ease;
        }

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

        .btn-brand {
            background-color: var(--color-primary);
            border: 2px solid var(--color-primary);
            color: var(--color-white);
            font-weight: 700;
            padding: 12px 22px;
            border-radius: 4px;
            transition: 0.2s ease;
            box-shadow: none;
        }

        .btn-brand:hover {
            background-color: #d86f08;
            border-color: #d86f08;
            color: var(--color-white);
        }

        .btn-outline-brand {
            border: 2px solid var(--color-dark);
            color: var(--color-dark);
            font-weight: 700;
            padding: 12px 22px;
            border-radius: 4px;
            transition: 0.2s ease;
            background: transparent;
        }

        .btn-outline-brand:hover {
            background-color: var(--color-dark);
            color: var(--color-white);
        }

        .hero {
            min-height: 92vh;
            background:
                linear-gradient(rgba(255,255,255,0.70), rgba(255,255,255,0.80)),
                url('../images/p1.jpg') center center / cover no-repeat;
            color: var(--color-dark);
            display: flex;
            align-items: center;
            position: relative;
            padding-top: 110px;
            padding-bottom: 70px;
        }

        .hero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 10px;
            height: 100%;
            background: rgba(239,131,20,0.10);
        }

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

        .hero-badge {
            display: inline-block;
            color: var(--color-primary);
            font-size: 0.95rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 20px;
            padding-left: 14px;
            border-left: 4px solid var(--color-primary);
            background: none;
            border-radius: 0;
        }

        .hero h1 {
            font-size: clamp(2.5rem, 5vw, 4.6rem);
            font-weight: 800;
            line-height: 1.02;
            margin-bottom: 24px;
            color: var(--color-dark);
            max-width: 900px;
        }

        .hero h1 .highlight {
            color: var(--color-primary);
        }

        .hero p {
            font-size: 1.12rem;
            color: #4d4d4d;
            max-width: 760px;
            line-height: 1.9;
            margin-bottom: 0;
        }

        .hero-actions {
            margin-top: 34px;
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .hero-card {
            background: rgba(255,255,255,0.94);
            border: 1px solid var(--color-border);
            border-radius: 0;
            padding: 34px;
            box-shadow: none;
            position: relative;
        }

        .hero-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 70px;
            height: 4px;
            background: var(--color-primary);
        }

        .hero-card h4 {
            color: var(--color-dark);
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 18px;
        }

        .hero-card p {
            color: #555;
            margin-bottom: 24px;
        }

        .hero-mini-stats {
            display: block;
            margin-top: 0;
        }

        .hero-stat {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            background: none;
            border: none;
            border-top: 1px solid #e6e6e6;
            border-radius: 0;
            padding: 16px 0;
            text-align: left;
            box-shadow: none;
        }

        .hero-stat strong {
            display: block;
            color: var(--color-primary);
            font-size: 1rem;
            min-width: 95px;
            margin-bottom: 0;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .hero-stat span {
            color: #444;
            line-height: 1.6;
        }

        section {
            padding: 90px 0;
        }

        .section-tag {
            color: var(--color-primary);
            text-transform: uppercase;
            font-weight: 700;
            letter-spacing: 1px;
            font-size: 0.9rem;
            margin-bottom: 12px;
            display: inline-block;
        }

        .section-title {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 14px;
            color: var(--color-dark);
        }

        .section-subtitle {
            color: var(--color-gray);
            max-width: 760px;
            line-height: 1.8;
            margin-bottom: 0;
        }

        .project-band {
            padding: 0 0 90px 0;
            background: var(--color-white);
        }

        .project-band-box {
            min-height: 340px;
            background:
                linear-gradient(rgba(17,17,17,0.40), rgba(17,17,17,0.40)),
                url('../images/p3.jpg') center center / cover no-repeat;
            display: flex;
            align-items: end;
            padding: 42px;
            border-radius: 0;
            position: relative;
        }

        .project-band-box::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--color-primary);
        }

        .project-band-content h2 {
            color: #fff;
            font-size: 2rem;
            font-weight: 800;
            max-width: 700px;
            margin: 0;
            line-height: 1.2;
        }

        .project-band-content p {
            color: rgba(255,255,255,0.85);
            max-width: 700px;
            margin-top: 12px;
            margin-bottom: 0;
            line-height: 1.8;
        }

        .project-band-content .section-tag {
            color: #fff;
            margin-bottom: 10px;
        }

        .about {
            background: var(--color-white);
        }

        .about-box {
            background-color: var(--color-light-gray);
            border-left: 5px solid var(--color-primary);
            padding: 34px;
            border-radius: 0;
            height: 100%;
            box-shadow: none;
        }

        .about-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .about-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 16px;
            color: #333;
        }

        .about-list i {
            color: var(--color-primary);
            font-size: 1.1rem;
            margin-top: 2px;
        }

        .services {
            background: #f7f7f7;
            color: var(--color-dark);
            border-top: 1px solid #ececec;
            border-bottom: 1px solid #ececec;
        }

        .services .section-title,
        .services .section-subtitle {
            color: var(--color-dark);
        }

        .services .section-subtitle {
            color: var(--color-gray);
        }

        .service-card {
            background: var(--color-white);
            border: 1px solid #dddddd;
            border-radius: 0;
            height: 100%;
            transition: 0.2s ease;
            box-shadow: none;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--color-primary);
            z-index: 2;
        }

        .service-card:hover {
            border-color: #cfcfcf;
            transform: translateY(-4px);
        }

        .service-photo {
            width: 100%;
            height: 240px;
            object-fit: cover;
            display: block;
            border-bottom: 1px solid #e6e6e6;
        }

        .service-body {
            padding: 34px 30px;
        }

        .service-icon {
            width: auto;
            height: auto;
            border-radius: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: none;
            color: var(--color-primary);
            font-size: 2rem;
            margin-bottom: 18px;
        }

        .service-card h3 {
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 14px;
            color: var(--color-dark);
        }

        .service-card p {
            color: #555;
            line-height: 1.8;
        }

        .service-card ul {
            padding-left: 18px;
            margin-top: 18px;
            color: #444;
        }

        .service-card ul li {
            margin-bottom: 10px;
        }

        .cta {
            background: #111111;
            color: var(--color-white);
        }

        .cta-box {
            background: transparent;
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 0;
            padding: 44px;
            text-align: left;
            box-shadow: none;
        }

        .cta h2 {
            font-size: 2.1rem;
            font-weight: 800;
            margin-bottom: 14px;
        }

        .cta p {
            font-size: 1.05rem;
            margin-bottom: 28px;
            color: rgba(255,255,255,0.82);
            max-width: 760px;
        }

        .cta .btn-light {
            border-radius: 4px;
            padding: 12px 24px;
            font-weight: 700;
        }

        .contact {
            background: var(--color-white);
        }

        .contact-card {
            background: var(--color-soft);
            border: 1px solid #e3e3e3;
            border-radius: 0;
            padding: 32px;
            height: 100%;
            box-shadow: none;
        }

        .contact-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            margin-bottom: 22px;
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            border-radius: 0;
            background: rgba(239,131,20,0.10);
            color: var(--color-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
            border: 1px solid rgba(239,131,20,0.18);
        }

        .contact-item h6 {
            margin-bottom: 4px;
            font-weight: 700;
        }

        .contact-item p,
        .contact-item a {
            margin-bottom: 0;
            color: #444;
            text-decoration: none;
        }

        .footer {
            background: var(--color-white);
            color: #555;
            padding: 28px 0;
            border-top: 1px solid rgba(0,0,0,0.08);
        }

        .footer strong {
            color: var(--color-primary);
        }

        @media (max-width: 991.98px) {
            .hero {
                min-height: auto;
                padding-top: 140px;
                padding-bottom: 80px;
                background:
                    linear-gradient(rgba(255,255,255,0.70), rgba(255,255,255,0.80)),
                    url('../images/p1.jpg') center center / cover no-repeat;
            }
            .hero p{
                display:none;
            }
            .hero-actions{
                padding-top: 3rem;
            }

            .hero-card {
                margin-top: 20px;
            }

            .navbar-collapse {
                background: rgba(255,255,255,0.98);
                padding: 20px;
                border: 1px solid #e5e5e5;
                border-radius: 0;
                margin-top: 16px;
            }

            .project-band-box {
                min-height: 280px;
                padding: 28px;
            }
        }

        @media (max-width: 575.98px) {
            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-actions .btn {
                width: 100%;
            }

            .cta-box,
            .contact-card,
            .about-box,
            .service-body,
            .hero-card {
                padding: 24px;
            }

            .hero h1 {
                font-size: 2.6rem;
            }

            .service-photo {
                height: 210px;
            }

            .project-band-box {
                min-height: 240px;
                padding: 24px;
            }

            .project-band-content h2 {
                font-size: 1.6rem;
            }
        }

        .featured-projects {
    background: #ffffff;
    padding: 90px 0;
}

.project-card {
    background: #ffffff;
    border: 1px solid #dddddd;
    height: 100%;
    transition: 0.2s ease;
    overflow: hidden;
}

.project-card:hover {
    transform: translateY(-4px);
    border-color: #cfcfcf;
}

.project-card-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.project-card-body {
    padding: 26px;
}

.project-category {
    display: inline-block;
    color: var(--color-primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.project-card h3 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--color-dark);
}

.project-card p {
    margin-bottom: 0;
    color: #555;
    line-height: 1.8;
}

.social-projects {
    background: #ffffff;
    padding: 20px 0 90px 0;
}

.social-box {
    background: #f7f7f7;
    border: 1px solid #dddddd;
    padding: 40px;
    position: relative;
}

.social-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: var(--color-primary);
}

.social-text {
    color: #555;
    line-height: 1.8;
    max-width: 760px;
}

.social-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: flex-start;
}

.btn-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.2s ease;
    border: 2px solid var(--color-dark);
    background: var(--color-dark);
    color: var(--color-white);
}

.btn-social:hover {
    color: var(--color-white);
}

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

.btn-youtube:hover {
    background: #cc0000;
    border-color: #cc0000;
}

@media (max-width: 991.98px) {
    .social-buttons {
        justify-content: flex-start;
    }
}

@media (max-width: 575.98px) {
    .social-box {
        padding: 24px;
    }

    .social-buttons {
        flex-direction: column;
    }

    .btn-social {
        width: 100%;
        min-width: unset;
    }
}