:root {
    --primary: #1a1a18;
    --primary-mid: #112847;
    --primary-light: #1a3a60;
    --accent: #ffcc00;
    --accent-light: #e0a93e;
    --accent-glow: rgba(255, 204, 0, 0.18);
    --white: #ffffff;
    --off-white: #f5f7fb;
    --light-bg: #edf0f7;
    --dark-text: #0d1b2a;
    --gray: #5a6778;
    --gray-light: #8fa0b5;
    --border: rgba(11, 29, 53, 0.08);
    --font: 'Outfit', sans-serif;
    --heading: 'Outfit', sans-serif;
    --display: 'Playfair Display', serif;
    --shadow-xs: 0 1px 4px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 4px 16px rgba(11, 29, 53, 0.07);
    --shadow: 0 8px 32px rgba(11, 29, 53, 0.12);
    --shadow-lg: 0 24px 60px rgba(11, 29, 53, 0.18);
    --shadow-gold: 0 8px 32px rgba(255, 204, 0, 0.22);
    --ease: cubic-bezier(.25, .46, .45, .94);
    --ease-out: cubic-bezier(0, .55, .45, 1);
    --radius-sm: 4px;
    --radius: 6px;
    --radius-lg: 8px;
    --radius-xl: 10px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth;
    font-size: 16px
}

body {
    font-family: var(--font);
    color: var(--dark-text);
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased
}

a {
    text-decoration: none;
    color: inherit;
    transition: all .3s var(--ease)
}

img {
    max-width: 100%;
    height: auto;
    display: block
}

::selection {
    background: var(--accent);
    color: #fff
}

/* ===== TOP BAR ===== */
.top-bar {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-mid) 100%);
    padding: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05)
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
    padding: 0 20px
}

@media(min-width:1400px) {
    .top-bar-inner {
        padding: 0 40px
    }
}

.top-social {
    display: flex;
    align-items: center;
    gap: 4px
}

.top-social a {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .4);
    border-radius: 0;
    font-size: .82rem;
    transition: all .3s
}

.top-social a:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, .06)
}

.top-info {
    display: flex;
    gap: 28px
}

.top-info a {
    color: rgba(255, 255, 255, .65);
    font-size: .82rem;
    display: flex;
    align-items: center;
    gap: 7px
}

.top-info a:hover {
    color: var(--white)
}

.top-info i {
    color: var(--accent);
    font-size: .75rem
}

/* ===== HEADER ===== */
.site-header {
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1050;
    transition: all .4s var(--ease);
    border-bottom: 1px solid var(--border)
}

.site-header.scrolled {
    box-shadow: var(--shadow)
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 88px;
    padding: 0 20px
}

@media(min-width:1400px) {
    .header-inner {
        padding: 0 40px
    }
}

.logo {
    display: flex;
    align-items: center;
    line-height: 1;
    flex-shrink: 0
}

.logo-img {
    height: 75px;
    width: auto;
    display: block;
    transition: opacity .3s
}

.logo-img:hover {
    opacity: .8
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px
}

.header-phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 0;
    border: 1px solid var(--border);
    color: var(--primary);
    font-size: 1rem;
    transition: all .3s
}

.header-phone-link:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-glow)
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--accent);
    color: var(--primary);
    padding: 11px 26px;
    border-radius: 0;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all .3s var(--ease)
}

.header-cta i {
    font-size: .95rem
}

.header-cta:hover {
    background: var(--primary);
    color: var(--accent)
}

.menu-toggle {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: 0;
    padding: 9px 12px;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--primary);
    transition: all .3s
}

.menu-toggle:hover {
    border-color: var(--accent);
    color: var(--accent)
}

/* ===== MAIN NAV ===== */
.main-nav {
    display: flex;
    align-items: center
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2px
}

.main-nav li {
    position: relative
}

.main-nav a {
    display: block;
    padding: 10px 13px;
    color: var(--gray);
    font-size: .84rem;
    font-weight: 600;
    letter-spacing: .2px;
    transition: all .25s;
    position: relative;
    border-radius: var(--radius-sm)
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all .3s var(--ease-out);
    transform: translateX(-50%);
    border-radius: 2px
}

.main-nav a:hover {
    color: var(--primary);
    background: var(--off-white)
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 60%
}

.main-nav a.active {
    color: var(--accent);
    background: var(--accent-glow)
}

/* ===== HERO ===== */
#hero-slider {
    position: relative
}

.carousel-item {
    height: 65vh;
    min-height: 480px;
    position: relative
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.carousel-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(11, 29, 53, .92) 0%, rgba(11, 29, 53, .6) 55%, rgba(11, 29, 53, .15) 100%)
}

.carousel-caption {
    z-index: 2;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    text-align: left;
    max-width: 680px;
    left: 7%;
    right: auto;
    padding: 0
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border-left: 3px solid var(--accent);
    padding: 6px 14px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--accent-light);
    margin-bottom: 28px
}

.hero-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite
}

@keyframes pulse {

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

    50% {
        opacity: .35;
        transform: scale(.65)
    }
}

.carousel-caption h1 {
    font-family: var(--heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 18px;
    line-height: 1.05;
    letter-spacing: -1.5px
}

.carousel-caption h1 em {
    font-family: var(--display);
    font-style: italic;
    color: var(--accent);
    font-weight: 700
}

.carousel-caption p {
    font-size: 1rem;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 36px;
    max-width: 500px;
    line-height: 1.8
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--accent);
    color: var(--primary);
    padding: 15px 36px;
    border-radius: 0;
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid var(--accent);
    transition: all .35s
}

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

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    padding: 15px 36px;
    border-radius: 0;
    font-weight: 600;
    font-size: .82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 2px solid rgba(255, 255, 255, .4);
    transition: all .35s
}

.btn-hero-outline:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .8);
    color: #fff
}

.carousel-control-prev,
.carousel-control-next {
    width: 5%
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 46px;
    height: 46px;
    background-color: rgba(255, 255, 255, .08);
    border-radius: 50%;
    backdrop-filter: blur(6px);
    background-size: 32%;
    border: 1px solid rgba(255, 255, 255, .12)
}

.carousel-indicators {
    bottom: 28px
}

.carousel-indicators button {
    width: 32px;
    height: 3px;
    border-radius: 3px;
    border: none;
    background: rgba(255, 255, 255, .25);
    margin: 0 4px;
    transition: all .3s
}

.carousel-indicators button.active {
    background: var(--accent);
    width: 52px
}

/* ===== SECTION COMMON ===== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative
}

.section-header .label {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--accent);
    text-transform: uppercase;
    margin-bottom: 16px;
    border-left: 3px solid var(--accent);
    padding-left: 12px;
    background: transparent
}

.section-header h2 {
    font-family: var(--heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -1px;
    line-height: 1.1
}

.section-header h2 .highlight {
    color: var(--accent)
}

.section-header p {
    font-size: 1.02rem;
    color: var(--gray);
    max-width: 520px;
    margin: 16px auto 0;
    line-height: 1.85;
    font-weight: 400
}

.section-header .line {
    width: 0;
    height: 0;
    display: none
}

/* ===== PROJECT CATEGORIES ===== */
.project-categories {
    padding: 100px 0;
    background: var(--off-white);
    position: relative
}

.project-categories::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent))
}

.category-card {
    display: block;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all .45s var(--ease);
    background: var(--white);
    border: 1px solid var(--border)
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg)
}

.category-img {
    position: relative;
    height: 230px;
    overflow: hidden
}

.category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .7s var(--ease)
}

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

.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 29, 53, .65) 0%, rgba(11, 29, 53, .05) 60%);
    transition: all .4s
}

.category-card:hover .category-overlay {
    background: linear-gradient(to top, rgba(255, 204, 0, .55) 0%, rgba(255, 204, 0, .05) 70%)
}

.category-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 18px 16px;
    z-index: 1
}

.category-name h4 {
    font-family: var(--heading);
    font-size: .92rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between
}

.category-name h4 i {
    font-size: 1.1rem;
    opacity: 0;
    transform: translateX(-6px);
    transition: all .35s
}

.category-card:hover .category-name h4 i {
    opacity: 1;
    transform: translateX(0);
    color: var(--accent-light)
}

/* ===== VIDEO ===== */
.video-section {
    padding: 90px 0;
    background: var(--white)
}

.video-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all .4s
}

.video-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg)
}

.video-thumb {
    position: relative;
    height: 320px;
    cursor: pointer;
    overflow: hidden
}

.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s
}

.video-thumb:hover img {
    transform: scale(1.05)
}

.video-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, .45)
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all .35s;
    box-shadow: 0 8px 30px rgba(255, 204, 0, .4)
}

.play-btn i {
    font-size: 2rem;
    color: var(--primary);
    margin-left: 4px
}

.video-thumb:hover .play-btn {
    transform: translate(-50%, -50%) scale(1.1);
    background: var(--white)
}

.btn-contact-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 0;
    font-weight: 700;
    font-size: .82rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all .35s;
    border: 2px solid var(--primary)
}

.btn-contact-cta:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px)
}

/* ===== STATS ===== */
.stats-section {
    position: relative;
    padding: 80px 0;
    background: url('images/hero-slide-1.png') center/cover no-repeat fixed
}

.stats-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, .92), rgba(15, 34, 64, .92))
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 30px
}

.stat-number {
    font-family: var(--heading);
    font-size: 3.8rem;
    font-weight: 800;
    color: var(--white);
    display: inline-block;
    line-height: 1
}

.stat-plus {
    font-family: var(--heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent);
    vertical-align: top
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .6);
    margin-top: 8px;
    letter-spacing: 2px;
    text-transform: uppercase
}

/* ===== ABOUT ===== */
.about-section {
    padding: 90px 0;
    background: var(--white)
}

.about-image {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative
}

.about-image::before {
    content: '';
    position: absolute;
    top: -12px;
    left: -12px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--accent);
    border-radius: var(--radius);
    z-index: -1
}

.about-image img {
    width: 100%;
    border-radius: var(--radius);
    transition: transform .6s
}

.about-image:hover img {
    transform: scale(1.02)
}

.about-content p {
    font-size: .95rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 14px
}

.about-content strong {
    color: var(--primary)
}

/* ===== FOOTER ===== */
.main-footer {
    background: var(--primary);
    padding: 60px 0 0;
    color: rgba(255, 255, 255, .7)
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 24px
}

.footer-logo-img {
    height: 48px;
    width: auto;
    display: block
}

.footer-contact-info {
    margin-bottom: 20px
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: .88rem
}

.footer-contact-item i {
    color: var(--accent);
    font-size: .9rem
}

.footer-contact-item a {
    color: rgba(255, 255, 255, .7)
}

.footer-contact-item a:hover {
    color: var(--white)
}

.footer-social {
    display: flex;
    gap: 10px
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 0;
    border: 1px solid rgba(255, 255, 255, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .5);
    transition: all .35s
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
    transform: translateY(-3px)
}

.footer-title {
    font-family: var(--heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent)
}

.footer-links {
    list-style: none;
    padding: 0
}

.footer-links li {
    margin-bottom: 10px
}

.footer-links a {
    color: rgba(255, 255, 255, .55);
    font-size: .88rem;
    display: flex;
    align-items: center;
    gap: 6px
}

.footer-links a::before {
    content: '›';
    color: var(--accent);
    font-weight: 700
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px
}

.footer-about-text {
    font-size: .88rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, .55);
    margin-bottom: 20px
}

.btn-footer-more {
    background: transparent;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 8px 24px;
    border-radius: 0;
    font-weight: 600;
    font-size: .75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all .35s
}

.btn-footer-more:hover {
    background: var(--accent);
    color: var(--white)
}

.footer-bottom {
    margin-top: 40px;
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, .08)
}

/* ===== PRELOADER ===== */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .6s var(--ease), visibility .6s var(--ease)
}

#preloader.hide {
    opacity: 0;
    visibility: hidden
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px
}

#preloader-logo {
    width: 260px;
    height: auto;
    animation: preloaderLogo 1s var(--ease-out) forwards
}

@keyframes preloaderLogo {
    0% {
        opacity: 0;
        transform: scale(.7) translateY(20px)
    }

    60% {
        opacity: 1;
        transform: scale(1.04) translateY(-4px)
    }

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

.preloader-bar {
    width: 240px;
    height: 3px;
    background: rgba(0, 0, 0, .1);
    border-radius: 3px;
    overflow: hidden
}

.preloader-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 3px;
    animation: preloaderFill 1.8s var(--ease) forwards
}

@keyframes preloaderFill {
    0% {
        width: 0
    }

    70% {
        width: 75%
    }

    100% {
        width: 100%
    }
}

/* ===== LOGO ENTRANCE ANIMATION ===== */
@keyframes logoHello {

    0%,
    100% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(8deg);
    }

    40% {
        transform: rotate(-6deg);
    }

    60% {
        transform: rotate(4deg);
    }

    80% {
        transform: rotate(-2deg);
    }
}

.logo-animate .logo-img {
    animation: logoHello 1.2s ease-in-out;
    transform-origin: center;
}

.copyright,
.credit {
    font-size: .78rem;
    color: rgba(255, 255, 255, .35);
    margin: 0
}

/* ===== SCROLL TOP ===== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 44px;
    height: 44px;
    border-radius: 0;
    background: var(--accent);
    color: var(--primary);
    border: none;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all .4s;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(255, 204, 0, .3)
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.scroll-to-top:hover {
    background: var(--primary);
    color: var(--accent);
    transform: translateY(-3px)
}

/* ===== VIDEO MODAL ===== */
.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center
}

.video-modal.active {
    display: flex
}

.video-modal-content {
    width: 90%;
    max-width: 900px;
    position: relative
}

.video-modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer
}

.video-modal-body {
    position: relative;
    padding-bottom: 56.25%;
    height: 0
}

.video-modal-body iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--radius)
}

/* ===== PAGE HERO ===== */
.page-hero {
    height: 35vh;
    min-height: 280px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/hero-slide-1.png') center/cover;
    opacity: .15
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 22, 40, .8), rgba(15, 34, 64, .7))
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center
}

.page-hero h1 {
    font-family: var(--heading);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--white)
}

.page-hero .breadcrumb {
    justify-content: center;
    margin-top: 12px
}

.page-hero .breadcrumb a {
    color: var(--accent);
    font-size: .85rem
}

.page-hero .breadcrumb span {
    color: rgba(255, 255, 255, .5);
    font-size: .85rem;
    margin: 0 8px
}

/* ===== SERVICE DETAIL ===== */
.service-detail {
    padding: 80px 0;
    background: var(--white)
}

.service-intro {
    margin-bottom: 60px
}

.service-intro h2 {
    font-family: var(--heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px
}

.service-intro p {
    font-size: .95rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 14px
}

.service-intro strong {
    color: var(--primary)
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: var(--off-white);
    border-radius: var(--radius);
    border-left: 3px solid var(--accent);
    transition: all .35s
}

.feature-item:hover {
    box-shadow: var(--shadow);
    transform: translateX(4px)
}

.feature-item i {
    font-size: 1.4rem;
    color: var(--accent);
    margin-top: 2px
}

.feature-item div h5 {
    font-family: var(--heading);
    font-size: .92rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 4px
}

.feature-item div p {
    font-size: .82rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.5
}

/* ===== REFERENCES ===== */
.references-section {
    padding: 80px 0;
    background: var(--off-white)
}

.ref-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px
}

.ref-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    background: var(--white);
    transition: all .4s var(--ease);
    border: 1px solid rgba(0, 0, 0, .04)
}

.ref-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg)
}

.ref-card-img {
    height: 240px;
    overflow: hidden;
    position: relative
}

.ref-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s var(--ease)
}

.ref-card:hover .ref-card-img img {
    transform: scale(1.06)
}

.ref-card-img .ref-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent);
    color: var(--white);
    padding: 5px 14px;
    border-radius: 4px;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .5px;
    z-index: 1
}

.ref-card-body {
    padding: 20px
}

.ref-card-body h4 {
    font-family: var(--heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 6px
}

.ref-card-body p {
    font-size: .82rem;
    color: var(--gray);
    margin: 0;
    line-height: 1.5
}

.ref-card-body .ref-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 0, 0, .06);
    font-size: .78rem;
    color: var(--gray)
}

.ref-card-body .ref-meta i {
    color: var(--accent);
    margin-right: 4px
}

/* ===== CONTACT ===== */
.page-content {
    padding: 80px 0
}

.page-content p {
    font-size: .95rem;
    line-height: 1.9;
    color: var(--gray);
    margin-bottom: 14px
}

.page-content strong {
    color: var(--primary)
}

.contact-form .form-control,
.contact-form .form-select {
    border: 1px solid #dde1e9;
    border-bottom: 2px solid #dde1e9;
    border-radius: 0;
    padding: 14px 18px;
    font-size: .9rem;
    transition: all .3s;
    background: var(--white)
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    border-color: var(--accent);
    border-bottom-color: var(--accent);
    box-shadow: none;
    outline: none
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical
}

.btn-submit {
    background: var(--accent);
    color: var(--primary);
    padding: 14px 40px;
    border: none;
    border-radius: 0;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all .35s;
    cursor: pointer
}

.btn-submit:hover {
    background: var(--primary);
    color: var(--accent)
}

.contact-info-card {
    background: var(--off-white);
    border-radius: var(--radius);
    padding: 30px;
    height: 100%;
    border: 1px solid rgba(0, 0, 0, .04)
}

.contact-info-card h4 {
    font-family: var(--heading);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 20px
}

.contact-info-item i {
    font-size: 1.2rem;
    color: var(--accent);
    margin-top: 3px
}

.contact-info-item p {
    margin: 0;
    font-size: .9rem;
    color: var(--gray)
}

.contact-info-item a {
    color: var(--blue);
    font-weight: 500
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 40px
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none
}

/* ===== LIGHTBOX ===== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .95);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center
}

.lightbox.active {
    display: flex
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5)
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2.5rem;
    cursor: pointer
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, .1);
    border: none;
    color: var(--white);
    font-size: 2rem;
    padding: 10px 16px;
    border-radius: 0;
    cursor: pointer;
    backdrop-filter: blur(4px)
}

.lightbox-prev {
    left: 20px
}

.lightbox-next {
    right: 20px
}

/* ===== RESPONSIVE ===== */
@media(max-width:1199px) {
    .menu-toggle {
        display: block !important
    }

    .header-inner {
        height: 75px
    }

    .logo-img {
        height: 50px
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 300px;
        height: 100vh;
        background: var(--primary);
        z-index: 99999;
        padding-top: 70px;
        transition: left .4s var(--ease);
        overflow-y: auto;
        flex-direction: column;
        align-items: flex-start;
        border-right: 3px solid var(--accent);
    }

    .main-nav.open {
        left: 0
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0;
        padding: 0 0 30px
    }

    .main-nav a {
        padding: 15px 28px;
        color: rgba(255, 255, 255, .85);
        font-size: .95rem;
        border-bottom: 1px solid rgba(255, 255, 255, .06);
        display: block;
        width: 100%
    }

    .main-nav a::before {
        display: none
    }

    .main-nav a:hover,
    .main-nav a.active {
        color: var(--accent);
        background: rgba(255, 255, 255, .04)
    }

    .nav-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .6);
        z-index: 1040;
        display: none
    }

    .nav-overlay.show {
        display: block
    }

    .nav-close {
        position: absolute;
        top: 16px;
        right: 16px;
        background: none;
        border: none;
        color: rgba(255, 255, 255, .7);
        font-size: 1.5rem;
        cursor: pointer;
        display: block !important
    }

    .carousel-caption h1 {
        font-size: 2.4rem
    }

    .carousel-item {
        height: 50vh
    }

    .stat-number {
        font-size: 2.8rem
    }
}

@media(max-width:767px) {
    .top-bar {
        display: none
    }

    .header-inner {
        height: 65px;
        padding: 0 16px
    }

    .logo-img {
        height: 42px
    }

    .carousel-caption {
        left: 5%
    }

    .carousel-caption h1 {
        font-size: 1.9rem
    }

    .section-header h2 {
        font-size: 1.8rem
    }

    .category-img {
        height: 180px
    }

    .video-thumb {
        height: 200px
    }

    .about-image::before {
        display: none
    }

    .ref-grid {
        grid-template-columns: 1fr
    }

    .service-features {
        grid-template-columns: 1fr
    }

    .page-hero h1 {
        font-size: 2rem
    }

    body {
        padding-bottom: 0
    }
}


/* ===== WIZARD MODAL ===== */
.wizard-modal .modal-content {
    border: none;
    border-radius: 0;
    box-shadow: var(--shadow-lg);
}

.wizard-modal .modal-header {
    background: var(--primary);
    color: var(--white);
    border-bottom: none;
    padding: 20px 30px;
    border-radius: 0;
}

.wizard-modal .modal-title {
    font-family: var(--heading);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.wizard-progress {
    height: 4px;
    background: var(--border);
    width: 100%;
    position: relative;
}

.wizard-progress .progress-bar {
    background: var(--accent);
    transition: width 0.4s var(--ease);
}

.wizard-step-indicators {
    display: flex;
    justify-content: space-between;
    padding: 15px 40px;
    border-bottom: 1px solid var(--border);
    background: var(--off-white);
}

.step-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid #dde1e9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: .85rem;
    color: var(--gray);
    transition: all 0.3s;
}

.step-dot.active {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--primary);
    box-shadow: 0 0 0 4px rgba(255, 204, 0, .15);
}

.step-dot.completed {
    border-color: var(--primary);
    background: var(--primary);
    color: var(--accent);
}

.wizard-step {
    display: none;
}

.wizard-step.active {
    display: block;
    animation: fadeInStep 0.4s var(--ease-out);
}

@keyframes fadeInStep {
    0% {
        opacity: 0;
        transform: translateY(10px)
    }

    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.step-title {
    font-family: var(--heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.step-desc {
    font-size: .9rem;
    color: var(--gray);
    margin-bottom: 24px;
}

.service-radio-card {
    display: block;
    position: relative;
    cursor: pointer;
}

.service-radio-card input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.service-radio-card .card-content {
    border: 1px solid #dde1e9;
    padding: 20px;
    text-align: center;
    background: var(--white);
    transition: all 0.3s;
}

.service-radio-card .card-content i {
    font-size: 2.2rem;
    color: var(--gray-light);
    display: block;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.service-radio-card .card-content span {
    display: block;
    font-weight: 600;
    font-size: .95rem;
    color: var(--primary);
}

.service-radio-card:hover .card-content {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.service-radio-card input:checked~.card-content {
    border-color: var(--accent);
    background: var(--off-white);
    border-width: 2px;
    padding: 19px;
}

.service-radio-card input:checked~.card-content i {
    color: var(--accent);
}

.wizard-footer {
    border-top: 1px solid var(--border);
    padding: 20px 30px;
    justify-content: space-between;
}

.btn-wizard-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    padding: 12px 30px;
    font-weight: 700;
    font-size: .8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-wizard-outline:hover {
    background: var(--off-white);
}

.success-icon {
    font-size: 4rem;
    color: var(--accent);
}


/* ===== SIDEBAR MENU ===== */
.sidebar-links {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.sidebar-links li {
    margin-bottom: 8px;
}

.sidebar-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: var(--white);
    color: var(--gray);
    font-size: .95rem;
    font-weight: 600;
    border: 1px solid var(--border);
    transition: all 0.35s ease;
}

.sidebar-links a:hover,
.sidebar-links a.active {
    background: var(--primary);
    color: var(--accent);
    border-color: var(--primary);
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.sidebar-links a::after {
    content: '\F138';
    font-family: 'bootstrap-icons';
    font-size: 1.1rem;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.35s ease;
}

.sidebar-links a:hover::after,
.sidebar-links a.active::after {
    opacity: 1;
    transform: translateX(0);
}
/* ===== REF CARD HOVER OVERLAY ===== */
.ref-card-clickable { cursor: pointer; }
.ref-card-clickable .ref-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 22, 40, .72);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity .35s ease;
    z-index: 2;
}
.ref-card-clickable:hover .ref-card-overlay { opacity: 1; }
.ref-card-overlay i {
    font-size: 2rem;
    color: var(--accent);
}
.ref-card-overlay span {
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

/* ===== PROJECT DETAIL MODAL ===== */
.project-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 20, 40, .86);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
    backdrop-filter: blur(8px);
}
.project-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.project-modal-box {
    background: #fff;
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 1020px;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 80px rgba(0,0,0,.5);
    transform: scale(.96) translateY(16px);
    transition: transform .35s ease;
}
.project-modal-overlay.active .project-modal-box {
    transform: scale(1) translateY(0);
}
.project-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    color: var(--primary);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-sm);
    transition: all .25s;
}
.project-modal-close:hover { background: var(--accent); color: var(--primary); }
.project-modal-inner {
    display: flex;
    height: 90vh;
    max-height: 90vh;
}

/* Gallery side */
.project-modal-gallery {
    width: 55%;
    flex-shrink: 0;
    background: var(--primary);
    display: flex;
    flex-direction: column;
    position: relative;
}
.pmod-slider {
    flex: 1;
    position: relative;
    overflow: hidden;
}
.pmod-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity .45s ease;
}
.pmod-slide.active { opacity: 1; z-index: 1; }
.pmod-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.pmod-no-img {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: rgba(255,255,255,.2);
    font-size: 4rem;
}
/* Thumbnails */
.pmod-thumbs {
    display: flex;
    gap: 6px;
    padding: 10px;
    background: rgba(0,0,0,.5);
    overflow-x: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent) transparent;
}
.pmod-thumb {
    width: 58px;
    height: 42px;
    flex-shrink: 0;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    padding: 0;
    background: none;
    transition: border-color .25s;
}
.pmod-thumb.active { border-color: var(--accent); }
.pmod-thumb img { width: 100%; height: 100%; object-fit: cover; }
/* Nav */
.pmod-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 10px;
    background: rgba(0,0,0,.6);
}
.pmod-prev, .pmod-next {
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255,255,255,.2);
    background: rgba(255,255,255,.06);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s;
    font-size: .9rem;
}
.pmod-prev:hover, .pmod-next:hover { background: var(--accent); border-color: var(--accent); color: var(--primary); }
.pmod-counter { font-size: .78rem; color: rgba(255,255,255,.6); font-weight: 600; letter-spacing: 1px; min-width: 50px; text-align: center; }

/* Info side */
.project-modal-info {
    flex: 1;
    overflow-y: auto;
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    position: relative;
}
.pmod-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}
.pmod-spinner {
    width: 42px;
    height: 42px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.pmod-badge {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    background: var(--accent-glow);
    padding: 5px 14px;
    border-radius: 30px;
    border: 1px solid rgba(255,204,0,.25);
    margin-bottom: 16px;
}
.pmod-title {
    font-family: var(--heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 14px;
}
.pmod-desc {
    font-size: .95rem;
    color: var(--gray);
    line-height: 1.85;
    margin-bottom: 24px;
}
.pmod-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: var(--off-white);
    border-radius: var(--radius);
    margin-bottom: 24px;
    border-left: 3px solid var(--accent);
}
.pmod-meta-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: .88rem;
    color: var(--gray);
}
.pmod-meta-item i { color: var(--accent); width: 16px; }
.pmod-services-title {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gray-light);
    margin-bottom: 10px;
}
.pmod-service-tag {
    display: inline-block;
    padding: 5px 12px;
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 30px;
    font-size: .78rem;
    font-weight: 600;
    color: var(--gray);
    margin: 0 6px 6px 0;
}

/* Responsive */
@media (max-width: 768px) {
    .project-modal-inner { flex-direction: column; }
    .project-modal-gallery { width: 100%; max-height: 260px; }
    .project-modal-info { padding: 24px 20px; }
    .pmod-title { font-size: 1.3rem; }
}
