:root {
            --blue: #1565C0;
            --blue-dark: #0D47A1;
            --blue-light: #42A5F5;
            --orange: #FF6F00;
            --orange-light: #FFA726;
            --yellow: #FFD600;
            --white: #FFFFFF;
            --gray-light: #F5F7FA;
            --gray: #64748b;
            --dark: #0A1628;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth
        }

        body {
            font-family: 'Poppins', sans-serif;
            overflow-x: hidden;
            background: #fff
        }

        /* NAVBAR */
        #navbar {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            transition: all .3s
        }

        #navbar .nav-inner {
            background: rgba(13, 71, 161, 0.97);
            backdrop-filter: blur(10px);
            padding: 14px 0;
            transition: all .3s
        }

        #navbar.scrolled .nav-inner {
            padding: 8px 0;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3)
        }

        .nav-brand {
            font-size: 1.3rem;
            font-weight: 800;
            color: #fff;
            text-decoration: none
        }

        .nav-brand span {
            color: var(--orange-light)
        }

        .nav-link-item {
            color: rgba(255, 255, 255, 0.85) !important;
            font-weight: 500;
            font-size: .9rem;
            padding: 6px 14px !important;
            border-radius: 20px;
            transition: all .2s;
            text-decoration: none;
            display: inline-block
        }

        .nav-link-item:hover {
            color: #fff !important;
            background: rgba(255, 255, 255, 0.15)
        }

        .nav-cta {
            background: var(--orange) !important;
            color: #fff !important;
            border-radius: 25px !important;
            padding: 8px 20px !important;
            font-weight: 600 !important
        }

        .nav-cta:hover {
            background: var(--orange-light) !important
        }

        .hamburger {
            background: transparent;
            border: 2px solid rgba(255, 255, 255, 0.5);
            border-radius: 8px;
            padding: 6px 10px;
            cursor: pointer;
            color: #fff;
            font-size: 1.1rem
        }

        /* HERO */
        .hero {
            min-height: 100vh;
            background: linear-gradient(135deg, #0D47A1 0%, #1565C0 40%, #0277BD 70%, #01579B 100%);
            position: relative;
            display: flex;
            align-items: center;
            overflow: hidden;
            padding-top: 80px
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E")
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 111, 0, 0.2);
            border: 1px solid var(--orange-light);
            color: var(--orange-light);
            padding: 6px 18px;
            border-radius: 25px;
            font-size: .8rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 1.2rem
        }

        .hero-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.2rem, 5vw, 4rem);
            font-weight: 900;
            color: #fff;
            line-height: 1.15;
            margin-bottom: 1rem
        }

        .hero-title span {
            color: var(--yellow)
        }

        .hero-sub {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.05rem;
            line-height: 1.7;
            margin-bottom: 2rem;
            max-width: 520px
        }

        .hero-btns {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 2.5rem
        }

        .btn-primary-hero {
            background: var(--orange);
            color: #fff;
            border: none;
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 1rem;
            cursor: pointer;
            transition: all .3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px
        }

        .btn-primary-hero:hover {
            background: var(--orange-light);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(255, 111, 0, 0.4)
        }

        .btn-outline-hero {
            background: transparent;
            color: #fff;
            border: 2px solid rgba(255, 255, 255, 0.6);
            padding: 14px 32px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1rem;
            cursor: pointer;
            transition: all .3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px
        }

        .btn-outline-hero:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            border-color: #fff;
            transform: translateY(-3px)
        }

        .hero-stats {
            display: flex;
            gap: 32px;
            flex-wrap: wrap
        }

        .stat-num {
            font-size: 2rem;
            font-weight: 800;
            color: var(--yellow);
            display: block;
            line-height: 1
        }

        .stat-lbl {
            font-size: .78rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: .5px
        }

        .hero-img-main {
            width: 100%;
            max-width: 480px;
            border-radius: 20px;
            object-fit: cover;
            height: 450px;
            box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4)
        }

        .hero-image-wrap {
            position: relative;
            display: flex;
            justify-content: center
        }

        .hero-float-card {
            position: absolute;
            background: #fff;
            border-radius: 14px;
            padding: 12px 18px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 10px
        }

        .hero-float-card.card1 {
            bottom: 30px;
            left: -10px
        }

        .hero-float-card.card2 {
            top: 30px;
            right: -10px
        }

        .float-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem
        }

        .float-icon.blue {
            background: #e3f2fd;
            color: var(--blue)
        }

        .float-icon.orange {
            background: #fff3e0;
            color: var(--orange)
        }

        .float-text strong {
            display: block;
            font-size: .85rem;
            font-weight: 700;
            color: var(--dark);
            line-height: 1
        }

        .float-text span {
            font-size: .72rem;
            color: var(--gray)
        }

        /* MARQUEE */
        .marquee-wrap {
            background: var(--orange);
            padding: 12px 0;
            overflow: hidden
        }

        .marquee-track {
            display: flex;
            animation: marquee 25s linear infinite;
            white-space: nowrap
        }

        .marquee-item {
            color: #fff;
            font-weight: 600;
            font-size: .9rem;
            padding: 0 30px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0
        }

        .marquee-item i {
            color: var(--yellow)
        }

        @keyframes marquee {
            from {
                transform: translateX(0)
            }

            to {
                transform: translateX(-50%)
            }
        }

        /* SECTIONS */
        .section-eyebrow {
            font-size: .78rem;
            font-weight: 700;
            letter-spacing: 2px;
            text-transform: uppercase;
            color: var(--orange);
            margin-bottom: .5rem
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            font-weight: 900;
            color: var(--dark);
            line-height: 1.2;
            margin-bottom: 1rem
        }

        .section-title span {
            color: var(--blue)
        }

        .section-sub {
            color: var(--gray);
            font-size: 1rem;
            line-height: 1.7;
            max-width: 580px
        }

        /* SERVICES */
        .services-section {
            background: var(--gray-light);
            padding: 90px 0
        }

        .service-card {
            background: #fff;
            border-radius: 20px;
            padding: 32px 28px;
            height: 100%;
            border: 2px solid transparent;
            transition: all .3s;
            position: relative;
            overflow: hidden;
            cursor: pointer
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--blue), var(--orange));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .3s
        }

        .service-card:hover {
            border-color: var(--blue-light);
            transform: translateY(-8px);
            box-shadow: 0 20px 60px rgba(21, 101, 192, 0.15)
        }

        .service-card:hover::before {
            transform: scaleX(1)
        }

        .service-icon {
            width: 64px;
            height: 64px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            margin-bottom: 1.2rem;
            transition: all .3s
        }

        .service-card:hover .service-icon {
            transform: scale(1.1) rotate(-5deg)
        }

        .si-blue {
            background: #e3f2fd;
            color: var(--blue)
        }

        .si-orange {
            background: #fff3e0;
            color: var(--orange)
        }

        .si-green {
            background: #e8f5e9;
            color: #2e7d32
        }

        .si-purple {
            background: #f3e5f5;
            color: #6a1b9a
        }

        .si-red {
            background: #fce4ec;
            color: #c62828
        }

        .si-teal {
            background: #e0f2f1;
            color: #00695c
        }

        .service-card h5 {
            font-weight: 700;
            font-size: 1.05rem;
            color: var(--dark);
            margin-bottom: .6rem
        }

        .service-card p {
            color: var(--gray);
            font-size: .88rem;
            line-height: 1.6;
            margin: 0
        }

        /* WHY */
        .why-section {
            padding: 90px 0;
            background: #fff
        }

        .why-img {
            border-radius: 20px;
            width: 100%;
            height: 500px;
            object-fit: cover;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12)
        }

        .why-point {
            display: flex;
            gap: 16px;
            margin-bottom: 1.5rem;
            align-items: flex-start
        }

        .why-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: linear-gradient(135deg, var(--blue), var(--blue-light));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            flex-shrink: 0
        }

        .why-point h6 {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 3px;
            font-size: .95rem
        }

        .why-point p {
            color: var(--gray);
            font-size: .88rem;
            margin: 0
        }

        .exp-badge {
            background: linear-gradient(135deg, var(--orange), var(--orange-light));
            border-radius: 20px;
            padding: 28px;
            color: #fff;
            text-align: center;
            margin-top: 1.5rem
        }

        .exp-badge .big-num {
            font-size: 4rem;
            font-weight: 900;
            line-height: 1;
            font-family: 'Playfair Display', serif
        }

        /* GALLERY */
        .gallery-section {
            background: var(--gray-light);
            padding: 90px 0
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px
        }

        .gallery-item {
            border-radius: 16px;
            overflow: hidden;
            position: relative;
            cursor: pointer
        }

        .gallery-item img {
            width: 100%;
            height: 220px;
            object-fit: cover;
            transition: transform .4s;
            display: block
        }

        .gallery-item:hover img {
            transform: scale(1.08)
        }

        .gallery-item.tall {
            grid-row: span 2
        }

        .gallery-item.tall img {
            height: 100%;
            min-height: 456px
        }

        .gallery-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(13, 71, 161, 0.8), transparent);
            opacity: 0;
            transition: opacity .3s;
            display: flex;
            align-items: flex-end;
            padding: 16px
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1
        }

        .gallery-overlay span {
            color: #fff;
            font-weight: 600;
            font-size: .9rem
        }

        /* PROCESS */
        .process-section {
            padding: 90px 0;
            background: #fff
        }

        .process-step {
            text-align: center;
            position: relative;
            padding: 0 16px
        }

        .process-step::after {
            content: '';
            position: absolute;
            top: 40px;
            right: -50%;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, var(--blue-light), var(--orange-light));
            z-index: 0
        }

        .process-step:last-child::after {
            display: none
        }

        .process-num {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--blue), var(--blue-light));
            color: #fff;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            position: relative;
            z-index: 1;
            box-shadow: 0 8px 25px rgba(21, 101, 192, 0.3)
        }

        .process-step h6 {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: .4rem
        }

        .process-step p {
            color: var(--gray);
            font-size: .83rem;
            line-height: 1.5;
            margin: 0
        }

        /* TESTIMONIALS */
        .testimonials-section {
            background: linear-gradient(135deg, #0D47A1, #1565C0);
            padding: 90px 0
        }

        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 20px;
            padding: 28px;
            height: 100%;
            transition: all .3s
        }

        .testimonial-card:hover {
            background: rgba(255, 255, 255, 0.18);
            transform: translateY(-5px)
        }

        .stars {
            color: var(--yellow);
            font-size: .9rem;
            margin-bottom: .8rem
        }

        .testimonial-card p {
            color: rgba(255, 255, 255, 0.9);
            font-size: .9rem;
            line-height: 1.7;
            margin-bottom: 1rem;
            font-style: italic
        }

        .reviewer {
            display: flex;
            align-items: center;
            gap: 10px
        }

        .reviewer-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--orange);
            color: #fff;
            font-weight: 700;
            font-size: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0
        }

        .reviewer strong {
            color: #fff;
            font-size: .9rem;
            display: block
        }

        .reviewer span {
            color: rgba(255, 255, 255, 0.6);
            font-size: .78rem
        }

        /* CONTACT */
        .contact-section {
            padding: 90px 0;
            background: var(--gray-light)
        }

        .contact-card {
            background: #fff;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
            height: 100%
        }

        .contact-info-item {
            display: flex;
            gap: 16px;
            align-items: flex-start;
            margin-bottom: 1.5rem
        }

        .contact-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0
        }

        .ci-blue {
            background: #e3f2fd;
            color: var(--blue)
        }

        .ci-orange {
            background: #fff3e0;
            color: var(--orange)
        }

        .ci-green {
            background: #e8f5e9;
            color: #2e7d32
        }

        .contact-info-item h6 {
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 3px;
            font-size: .95rem
        }

        .contact-info-item p {
            color: var(--gray);
            font-size: .88rem;
            margin: 0
        }

        .form-label {
            font-weight: 600;
            font-size: .88rem;
            color: var(--dark);
            margin-bottom: 6px;
            display: block
        }

        .form-control,
        .form-select {
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            padding: 12px 16px;
            font-size: .9rem;
            transition: all .2s;
            font-family: 'Poppins', sans-serif;
            width: 100%;
            outline: none
        }

        .form-control:focus,
        .form-select:focus {
            border-color: var(--blue);
            box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.12)
        }

        .btn-submit {
            background: linear-gradient(135deg, var(--blue), var(--blue-dark));
            color: #fff;
            border: none;
            border-radius: 30px;
            padding: 14px 36px;
            font-weight: 700;
            font-size: 1rem;
            width: 100%;
            cursor: pointer;
            transition: all .3s;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            text-decoration: none
        }

        .btn-submit:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(13, 71, 161, 0.35);
            color: #fff
        }

        /* EMERGENCY */
        .emergency-banner {
            background: linear-gradient(135deg, var(--orange), #E65100);
            padding: 70px 0;
            text-align: center
        }

        .emergency-banner h2 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(1.8rem, 3.5vw, 2.8rem);
            color: #fff;
            font-weight: 900;
            margin-bottom: .8rem
        }

        .emergency-banner p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            margin-bottom: 1.5rem
        }

        .btn-call {
            background: #fff;
            color: var(--orange);
            border: none;
            padding: 16px 40px;
            border-radius: 30px;
            font-weight: 800;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all .3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px
        }

        .btn-call:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
            color: var(--orange)
        }

        .pulse {
            animation: pulse 1.5s infinite
        }

        @keyframes pulse {

            0%,
            100% {
                transform: scale(1)
            }

            50% {
                transform: scale(1.2)
            }
        }

        /* FOOTER */
        footer {
            background: var(--dark);
            padding: 60px 0 20px;
            color: rgba(255, 255, 255, 0.7)
        }

        .footer-brand {
            font-size: 1.4rem;
            font-weight: 800;
            color: #fff;
            margin-bottom: .8rem
        }

        .footer-brand span {
            color: var(--orange-light)
        }

        .footer-link {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            font-size: .88rem;
            display: block;
            margin-bottom: .4rem;
            transition: color .2s
        }

        .footer-link:hover {
            color: var(--orange-light)
        }

        .social-icon {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.08);
            color: rgba(255, 255, 255, 0.7);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1rem;
            margin-right: 8px;
            transition: all .2s;
            text-decoration: none
        }

        .social-icon:hover {
            background: var(--orange);
            color: #fff;
            transform: translateY(-3px)
        }

        .footer-title {
            color: #fff;
            font-weight: 700;
            font-size: .95rem;
            margin-bottom: 1.2rem
        }

        /* FLOAT BUTTONS */
        .wa-float {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 999;
            width: 58px;
            height: 58px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.6rem;
            color: #fff;
            text-decoration: none;
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
            animation: wabounce 2s infinite
        }

        @keyframes wabounce {

            0%,
            100% {
                transform: translateY(0)
            }

            50% {
                transform: translateY(-8px)
            }
        }

        #backTop {
            position: fixed;
            bottom: 28px;
            left: 28px;
            z-index: 999;
            width: 44px;
            height: 44px;
            background: var(--blue);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 1rem;
            cursor: pointer;
            opacity: 0;
            transition: all .3s;
            border: none;
            box-shadow: 0 4px 15px rgba(21, 101, 192, 0.35)
        }

        #backTop.show {
            opacity: 1
        }

        #backTop:hover {
            background: var(--blue-dark);
            transform: translateY(-3px)
        }

        /* REVEAL */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: all .6s ease
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0)
        }

        @media(max-width:768px) {
            .hero-float-card {
                display: none
            }

            .gallery-grid {
                grid-template-columns: repeat(2, 1fr)
            }

            .gallery-item.tall {
                grid-row: span 1
            }

            .gallery-item.tall img {
                min-height: 220px
            }

            .process-step::after {
                display: none
            }

            .hero-stats {
                gap: 16px
            }

            .contact-card {
                padding: 24px
            }

            .hero-img-main {
                height: 300px
            }
        }