:root {
            --orange: #f05e1c;
            --orange-dark: #c94e00;
            --orange-light: #ff8c42;
            --gold: #fbbf24;
            --gold2: #f59e0b;
            --navy: #0b1221;
            --navy2: #151f32;
            --cream: #faf7f4;
            --white: #ffffff;
            --muted: #64748b;
            --grad: linear-gradient(135deg, #f05e1c 0%, #ff8c42 55%, #fbbf24 100%);
            --grad2: linear-gradient(135deg, #1e3a5f 0%, #0b1221 100%);
            --glass: rgba(255,255,255,0.06);
            --glass-border: rgba(255,255,255,0.12);
            --r: 20px;
            --glow: 0 0 40px rgba(240,94,28,0.35);
        }
        *,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
        html{scroll-behavior:smooth;}
        body{
            font-family:'Inter',sans-serif;
            background:var(--cream);
            color:var(--navy);
            overflow-x:hidden;
            cursor:none;
            letter-spacing:-0.01em;
        }
        h1, h2, h3, h4, h5, h6 {
            font-family:'Poppins',sans-serif;
        }
        /* CUSTOM CURSOR */
        .cursor{
            width:12px;height:12px;
            background:var(--orange);
            border-radius:50%;
            position:fixed;top:0;left:0;
            pointer-events:none;z-index:99999;
            transform:translate(-50%,-50%);
            transition:transform .1s,width .25s,height .25s,background .25s;
            mix-blend-mode:normal;
        }
        .cursor-ring{
            width:38px;height:38px;
            border:2px solid rgba(240,94,28,0.5);
            border-radius:50%;
            position:fixed;top:0;left:0;
            pointer-events:none;z-index:99998;
            transform:translate(-50%,-50%);
            transition:transform .18s ease,width .25s,height .25s;
        }
        body:hover .cursor{opacity:1;}
        /* SCROLL PROGRESS */
        #scroll-progress{
            position:fixed;top:0;left:0;height:3px;
            background:var(--grad);
            z-index:99997;width:0%;
            transition:width .1s linear;
            box-shadow:0 0 10px rgba(240,94,28,0.7);
        }

        /* NAVBAR */
        .navbar{
            background:rgba(11,18,33,0.85)!important;
            backdrop-filter:blur(24px);
            -webkit-backdrop-filter:blur(24px);
            padding:.65rem 0;
            position:fixed;top:0;width:100%;z-index:1000;
            border-bottom:1px solid rgba(255,255,255,0.07);
            transition:background .3s,box-shadow .3s;
        }
        .navbar.scrolled{
            background:rgba(11,18,33,0.97)!important;
            box-shadow:0 4px 32px rgba(0,0,0,0.4);
        }

        .nb-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .nb-logo-icon {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--grad);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.25rem;
            color: #fff;
            box-shadow: 0 4px 16px rgba(232, 93, 4, 0.45);
            flex-shrink: 0;
        }

        .nb-logo-text{
            font-family:'Poppins',sans-serif;
            font-weight:800;font-size:1.2rem;
            color:#fff;line-height:1.1;
            letter-spacing:-.3px;
        }
        .nb-logo-text span{color:var(--gold);}
        .navbar-nav .nav-link{
            position:relative;overflow:hidden;
        }
        .navbar-nav .nav-link::after{
            content:'';position:absolute;
            bottom:2px;left:50%;right:50%;
            height:2px;background:var(--grad);
            border-radius:2px;
            transition:left .25s,right .25s;
        }
        .navbar-nav .nav-link:hover::after{
            left:10%;right:10%;
        }

        .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.75) !important;
            font-weight: 600;
            font-size: 0.9rem;
            padding: 0.45rem 0.9rem !important;
            border-radius: 8px;
            transition: all 0.2s;
        }

        .navbar-nav .nav-link:hover {
            color: var(--gold) !important;
            background: rgba(255, 209, 102, 0.08);
        }

        .btn-nav-call {
            background: var(--grad);
            color: #fff !important;
            font-weight: 700;
            font-size: 0.85rem;
            border: none;
            border-radius: 50px;
            padding: 9px 22px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.25s;
            box-shadow: 0 4px 16px rgba(232, 93, 4, 0.35);
        }

        .btn-nav-call:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(232, 93, 4, 0.5);
        }

        .navbar-toggler {
            border-color: rgba(255, 255, 255, 0.2);
            padding: 4px 8px;
        }

        .navbar-toggler-icon {
            filter: invert(1);
        }

        /* HERO */
        #hero{
            min-height:100vh;
            position:relative;
            display:flex;
            align-items:center;
            overflow:hidden;
            background:var(--navy);
        }
        .hero-bg-img{
            position:absolute;inset:0;
            background-image:url('images/moving_truck.webp');
            background-size:cover;
            background-position:center;
            filter:brightness(0.18) saturate(1.2);
            transform:scale(1.05);
            animation:heroZoom 18s ease-in-out infinite alternate;
        }
        @keyframes heroZoom{
            from{transform:scale(1.05);}to{transform:scale(1.12);}
        }
        .hero-overlay{
            position:absolute;inset:0;
            background:linear-gradient(135deg,rgba(11,18,33,0.96) 0%,rgba(11,18,33,0.78) 50%,rgba(240,94,28,0.18) 100%);
        }
        .hero-dots{
            position:absolute;inset:0;
            background-image:radial-gradient(circle,rgba(255,255,255,0.05) 1px,transparent 1px);
            background-size:44px 44px;
            pointer-events:none;
            animation:driftDots 25s linear infinite;
        }
        @keyframes driftDots{
            from{background-position:0 0;}to{background-position:88px 88px;}
        }
        /* Floating orbs */
        .hero-orb{
            position:absolute;border-radius:50%;
            filter:blur(72px);pointer-events:none;
        }
        .hero-orb-1{
            width:480px;height:480px;
            background:rgba(240,94,28,0.18);
            top:-120px;right:-80px;
            animation:orbFloat 8s ease-in-out infinite alternate;
        }
        .hero-orb-2{
            width:320px;height:320px;
            background:rgba(251,191,36,0.1);
            bottom:-60px;left:10%;
            animation:orbFloat 11s ease-in-out infinite alternate-reverse;
        }
        @keyframes orbFloat{
            from{transform:translateY(0) scale(1);}to{transform:translateY(-40px) scale(1.08);}
        }
        .hero-inner{
            position:relative;z-index:2;
            padding:140px 0 100px;
        }

        .hero-pill {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(232, 93, 4, 0.18);
            border: 1px solid rgba(232, 93, 4, 0.35);
            color: var(--gold);
            font-size: 0.72rem;
            font-weight: 800;
            letter-spacing: 2px;
            text-transform: uppercase;
            padding: 6px 18px;
            border-radius: 50px;
            margin-bottom: 1.5rem;
        }

        .hero-h1{
            font-family:'Poppins',sans-serif;
            font-size:clamp(2.6rem,6vw,4.6rem);
            font-weight:900;color:#fff;
            line-height:1.1;
            margin-bottom:1.4rem;
            letter-spacing:-1px;
        }
        .hero-h1 .grad-text{
            background:var(--grad);
            -webkit-background-clip:text;
            -webkit-text-fill-color:transparent;
            background-clip:text;
            position:relative;
        }
        /* Typing cursor blink */
        .typing-cursor{
            display:inline-block;
            width:3px;height:.85em;
            background:var(--gold);
            margin-left:4px;
            vertical-align:middle;
            animation:blink .7s step-end infinite;
        }
        @keyframes blink{0%,100%{opacity:1;}50%{opacity:0;}}

        .hero-sub {
            font-size: 1.05rem;
            color: rgba(255, 255, 255, 0.62);
            max-width: 500px;
            line-height: 1.85;
            margin-bottom: 2.2rem;
            font-weight: 500;
        }

        .hero-btns {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            margin-bottom: 3rem;
        }

        .btn-hero-main {
            background: var(--grad);
            color: #fff;
            font-weight: 800;
            font-size: 1rem;
            border: none;
            border-radius: 50px;
            padding: 15px 34px;
            box-shadow: 0 8px 28px rgba(232, 93, 4, 0.45);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
            animation: heroPulse 2.5s ease-in-out infinite;
        }

        @keyframes heroPulse {

            0%,
            100% {
                box-shadow: 0 8px 28px rgba(232, 93, 4, 0.45);
            }

            50% {
                box-shadow: 0 12px 40px rgba(232, 93, 4, 0.65);
            }
        }

        .btn-hero-main:hover {
            transform: translateY(-4px);
            color: #fff;
        }

        .btn-hero-ghost {
            background: transparent;
            color: #fff;
            font-weight: 700;
            font-size: 0.95rem;
            border: 2px solid rgba(255, 255, 255, 0.3);
            border-radius: 50px;
            padding: 14px 28px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
        }

        .btn-hero-ghost:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        .hero-stats{
            display:flex;gap:0;
            flex-wrap:wrap;
            background:rgba(255,255,255,0.05);
            border:1px solid rgba(255,255,255,0.1);
            border-radius:18px;
            backdrop-filter:blur(12px);
            padding:.5rem;
            width:fit-content;
        }
        .h-stat{
            padding:.9rem 1.6rem;
            border-right:1px solid rgba(255,255,255,0.08);
        }
        .h-stat:last-child{border-right:none;}
        .h-stat .val{
            font-size:1.9rem;font-weight:900;
            color:var(--gold);line-height:1;
            font-family:'Playfair Display',serif;
        }
        .h-stat .lbl{
            font-size:.68rem;
            color:rgba(255,255,255,.45);
            letter-spacing:.5px;
            margin-top:4px;font-weight:700;
            text-transform:uppercase;
        }

        /* Hero image stack */
        .hero-img-stack {
            position: relative;
            height: 480px;
        }

        .hi-main {
            position: absolute;
            top: 0;
            right: 0;
            width: 86%;
            height: 72%;
            border-radius: var(--r);
            overflow: hidden;
            box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
            border: 2px solid rgba(255, 255, 255, 0.08);
        }

        .hi-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hi-small {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50%;
            height: 40%;
            border-radius: var(--r);
            overflow: hidden;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
            border: 3px solid rgba(255, 255, 255, 0.1);
        }

        .hi-small img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hi-badge {
            position: absolute;
            top: 18px;
            left: -12px;
            background: var(--grad);
            color: #fff;
            font-size: 0.77rem;
            font-weight: 800;
            padding: 10px 18px;
            border-radius: 14px;
            box-shadow: 0 6px 20px rgba(232, 93, 4, 0.45);
            z-index: 5;
        }

        .hi-tag {
            position: absolute;
            bottom: 52px;
            right: -12px;
            background: rgba(15, 23, 42, 0.92);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 12px 16px;
            border-radius: 14px;
            z-index: 5;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .hi-tag i {
            color: #6ee7b7;
            font-size: 1.1rem;
        }

        /* SECTION HELPERS */
        section{padding:100px 0;}
        .sec-tag{
            display:inline-flex;align-items:center;gap:6px;
            background:rgba(240,94,28,0.1);
            border:1px solid rgba(240,94,28,0.2);
            color:var(--orange);
            font-size:.7rem;font-weight:800;
            letter-spacing:2px;
            text-transform:uppercase;
            padding:5px 16px;
            border-radius:50px;
            margin-bottom:.75rem;
        }
        .sec-title{
            font-family:'Poppins',sans-serif;
            font-size:clamp(2rem,3.8vw,3rem);
            font-weight:800;line-height:1.15;
            color:var(--navy);
            margin-bottom:.8rem;
            letter-spacing:-0.5px;
        }
        .sec-desc{
            color:var(--muted);
            font-size:.97rem;
            line-height:1.9;
            max-width:560px;
            font-weight:500;
        }
        .divbar{
            width:56px;height:4px;
            background:var(--grad);
            border-radius:4px;
            margin:0 auto 1.5rem;
            position:relative;
        }
        .divbar::after{
            content:'';
            position:absolute;
            left:64px;top:0;
            width:20px;height:4px;
            background:var(--grad);
            border-radius:4px;
            opacity:.4;
        }

        /* ABOUT */
        #about{background:#fff;}
        /* Testimonials */
        #testimonials{
            background:var(--navy2);
            padding:100px 0;
            position:relative;overflow:hidden;
        }
        #testimonials::before{
            content:'';position:absolute;inset:0;
            background:radial-gradient(circle at 20% 50%,rgba(240,94,28,.12),transparent 55%),
                       radial-gradient(circle at 80% 20%,rgba(251,191,36,.07),transparent 50%);
            pointer-events:none;
        }
        #testimonials .sec-title{color:#fff;}
        #testimonials .sec-tag{background:rgba(251,191,36,.1);border-color:rgba(251,191,36,.2);color:var(--gold);}
        .testi-card{
            background:rgba(255,255,255,0.05);
            border:1px solid rgba(255,255,255,.1);
            border-radius:24px;
            padding:2rem;
            backdrop-filter:blur(10px);
            transition:transform .35s,box-shadow .35s,border-color .35s;
            height:100%;
        }
        .testi-card:hover{
            transform:translateY(-8px);
            border-color:rgba(240,94,28,.4);
            box-shadow:0 20px 50px rgba(240,94,28,.18);
        }
        .testi-stars{color:var(--gold);font-size:.9rem;margin-bottom:1rem;letter-spacing:2px;}
        .testi-quote{
            font-size:.95rem;
            color:rgba(255,255,255,.75);
            line-height:1.85;font-weight:500;
            margin-bottom:1.4rem;
            font-style:italic;
        }
        .testi-quote::before{content:'\201C';font-size:1.4rem;color:var(--orange);font-style:normal;line-height:0;vertical-align:-.35em;margin-right:3px;}
        .testi-name{
            font-weight:800;color:#fff;
            font-size:.95rem;
        }
        .testi-place{
            font-size:.78rem;
            color:rgba(255,255,255,.4);
            font-weight:600;
        }

        .about-img-grid {
            position: relative;
            padding-bottom: 20px;
            padding-right: 20px;
        }

        .aig-main {
            border-radius: var(--r);
            overflow: hidden;
            height: 420px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.14);
        }

        .aig-main img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .aig-overlay {
            position: absolute;
            bottom: 0;
            right: 0;
            width: 180px;
            border-radius: var(--r);
            overflow: hidden;
            box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
            border: 4px solid #fff;
        }

        .aig-overlay img {
            width: 100%;
            height: 140px;
            object-fit: cover;
            display: block;
        }

        .aig-badge-box {
            position: absolute;
            top: 24px;
            left: -16px;
            background: var(--navy);
            color: #fff;
            border-radius: 16px;
            padding: 14px 18px;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
            text-align: center;
            min-width: 100px;
        }

        .aig-badge-box .big {
            font-family: 'Outfit', sans-serif;
            font-size: 2rem;
            font-weight: 900;
            color: var(--gold);
            line-height: 1;
        }

        .aig-badge-box .sm {
            font-size: 0.67rem;
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 0.5px;
            margin-top: 3px;
            font-weight: 700;
            text-transform: uppercase;
        }

        .check-row {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 0.75rem;
            font-size: 0.95rem;
            font-weight: 700;
            color: var(--navy);
        }

        .check-row i {
            color: var(--orange);
            font-size: 1rem;
        }

        .about-strip {
            display: flex;
            align-items: center;
            gap: 14px;
            background: var(--cream);
            border-radius: 16px;
            padding: 16px 20px;
            margin-top: 1.8rem;
            border: 1px solid rgba(232, 93, 4, 0.15);
        }

        .as-icon {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: var(--grad);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #fff;
            flex-shrink: 0;
        }

        .as-txt .lbl {
            font-size: 0.7rem;
            color: var(--muted);
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .as-txt a {
            display: block;
            font-size: 1.1rem;
            font-weight: 900;
            color: var(--navy);
            text-decoration: none;
        }

        .as-txt a:hover {
            color: var(--orange);
        }

        /* SERVICES */
        #services{background:var(--cream);}
        .svc-card{
            background:#fff;
            border-radius:24px;
            overflow:hidden;
            border:1px solid rgba(0,0,0,.07);
            transition:all .4s cubic-bezier(.23,1,.32,1);
            height:100%;
            will-change:transform;
        }
        .svc-card:hover{
            transform:translateY(-12px) scale(1.02);
            box-shadow:0 28px 60px rgba(240,94,28,.18);
            border-color:rgba(240,94,28,.3);
        }
        .svc-card:hover .svc-ico{
            transform:rotateY(360deg);
        }
        .svc-ico{
            transition:transform .6s;
        }

        .svc-img-wrap {
            overflow: hidden;
            position: relative;
        }

        .svc-img {
            width: 100%;
            height: 210px;
            object-fit: cover;
            display: block;
            transition: transform 0.55s;
        }

        .svc-card:hover .svc-img {
            transform: scale(1.07);
        }

        .svc-chip {
            position: absolute;
            bottom: 12px;
            left: 12px;
            background: var(--grad);
            color: #fff;
            font-size: 0.7rem;
            font-weight: 800;
            padding: 5px 14px;
            border-radius: 50px;
            letter-spacing: 0.5px;
        }

        .svc-body {
            padding: 1.4rem 1.5rem 1.6rem;
        }

        .svc-ico {
            font-size: 1.6rem;
            color: var(--orange);
            margin-bottom: 0.6rem;
        }

        .svc-body h5 {
            font-weight: 900;
            font-size: 1.05rem;
            color: var(--navy);
            margin-bottom: 0.4rem;
        }

        .svc-body p {
            color: var(--muted);
            font-size: 0.87rem;
            line-height: 1.75;
            margin-bottom: 1rem;
            font-weight: 500;
        }

        .svc-link {
            color: var(--orange);
            font-weight: 800;
            font-size: 0.85rem;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.2s;
        }

        .svc-link:hover {
            gap: 10px;
        }

        /* PRICING */
        #pricing {
            background: var(--navy);
            position: relative;
            overflow: hidden;
        }

        #pricing::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 15% 60%, rgba(232, 93, 4, 0.14) 0%, transparent 50%),
                radial-gradient(circle at 85% 25%, rgba(255, 209, 102, 0.06) 0%, transparent 45%);
            pointer-events: none;
        }

        #pricing .sec-title {
            color: #fff;
        }

        #pricing .sec-tag {
            background: rgba(255, 209, 102, 0.12);
            color: var(--gold);
        }

        #pricing .sec-desc {
            color: rgba(255, 255, 255, 0.5);
        }

        .pkg-card {
            background: linear-gradient(rgba(15, 23, 42, 0.88), rgba(15, 23, 42, 0.95)), url('images/packing_boxes.webp') no-repeat center center;
            background-size: cover;
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: var(--r);
            padding: 2rem 1.6rem;
            transition: all 0.35s;
            height: 100%;
            position: relative;
        }

        .pkg-card:hover:not(.pkg-feat) {
            background: linear-gradient(rgba(15, 23, 42, 0.82), rgba(15, 23, 42, 0.9)), url('images/packing_boxes.webp') no-repeat center center;
            background-size: cover;
            border-color: rgba(232, 93, 4, 0.4);
            transform: translateY(-6px);
            box-shadow: 0 20px 50px rgba(232, 93, 4, 0.2);
        }

        .pkg-feat {
            background: linear-gradient(rgba(232, 93, 4, 0.85), rgba(232, 93, 4, 0.95)), url('images/packing_boxes.webp') no-repeat center center;
            background-size: cover;
            border-color: transparent;
            box-shadow: 0 24px 60px rgba(232, 93, 4, 0.5);
        }

        .pkg-feat:hover {
            transform: translateY(-8px);
        }

        .pkg-ribbon {
            position: absolute;
            top: -13px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--gold);
            color: var(--navy);
            font-size: 0.7rem;
            font-weight: 900;
            letter-spacing: 1.2px;
            padding: 4px 18px;
            border-radius: 50px;
            white-space: nowrap;
        }

        .pkg-num {
            font-size: 0.7rem;
            font-weight: 800;
            letter-spacing: 2.5px;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 0.4rem;
        }

        .pkg-feat .pkg-num {
            color: rgba(255, 255, 255, 0.65);
        }

        .pkg-price {
            font-family: 'Poppins', sans-serif;
            font-size: 2.8rem;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            margin-bottom: 0.25rem;
            letter-spacing: -0.5px;
        }

        .pkg-price sup {
            font-size: 1.3rem;
            vertical-align: super;
            font-family: 'Inter', sans-serif;
        }

        .pkg-name {
            font-size: 0.87rem;
            color: rgba(255, 255, 255, 0.55);
            margin-bottom: 1.2rem;
            font-weight: 600;
            line-height: 1.5;
            min-height: 40px;
        }

        .pkg-feat .pkg-name {
            color: rgba(255, 255, 255, 0.8);
        }

        .pkg-ul {
            list-style: none;
            margin: 0 0 1.6rem;
            padding: 0;
        }

        .pkg-ul li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.87rem;
            padding: 5px 0;
            font-weight: 600;
        }

        .pkg-ul li i {
            color: #6ee7b7;
            font-size: 0.8rem;
        }

        .pkg-feat .pkg-ul li {
            color: rgba(255, 255, 255, 0.92);
        }

        .btn-pkg {
            display: block;
            width: 100%;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            font-weight: 800;
            font-size: 0.9rem;
            padding: 12px;
            border-radius: 12px;
            text-decoration: none;
            text-align: center;
            transition: all 0.25s;
        }

        .btn-pkg:hover {
            background: rgba(255, 255, 255, 0.2);
            color: #fff;
        }

        .pkg-feat .btn-pkg {
            background: #fff;
            color: var(--orange);
            border-color: transparent;
        }

        .pkg-feat .btn-pkg:hover {
            background: var(--gold);
            color: var(--navy);
        }

        .pricing-note {
            text-align: center;
            margin-top: 2.5rem;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.85rem;
            font-weight: 600;
        }

        .pricing-note i {
            color: #6ee7b7;
        }

        /* WHY CHOOSE US */
        #why{background:#fff;}
        .why-item{
            transition:background .25s,border-radius .25s,padding .25s;
        }
        .why-item:hover{
            background:rgba(240,94,28,.04);
            border-radius:16px;
            padding-left:.8rem!important;
        }

        .why-img-col {
            border-radius: var(--r);
            overflow: hidden;
            position: relative;
        }

        .why-img-col img {
            width: 100%;
            height: 100%;
            min-height: 480px;
            object-fit: cover;
            display: block;
        }

        .why-img-col::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.82) 0%, transparent 55%);
        }

        .why-img-caption {
            position: absolute;
            bottom: 28px;
            left: 28px;
            right: 28px;
            z-index: 2;
            color: #fff;
        }

        .why-img-caption h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 1.4rem;
            margin-bottom: 0.3rem;
            letter-spacing: -0.3px;
        }

        .why-img-caption p {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
            font-weight: 500;
        }

        .why-item {
            display: flex;
            align-items: flex-start;
            gap: 1.1rem;
            padding: 1.1rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.07);
        }

        .why-item:last-child {
            border-bottom: none;
        }

        .why-ico {
            width: 52px;
            height: 52px;
            border-radius: 15px;
            flex-shrink: 0;
            background: rgba(232, 93, 4, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            color: var(--orange);
            transition: all 0.25s;
        }

        .why-item:hover .why-ico {
            background: var(--grad);
            color: #fff;
            box-shadow: 0 6px 20px rgba(232, 93, 4, 0.35);
        }

        .why-item h6 {
            font-weight: 900;
            font-size: 0.97rem;
            color: var(--navy);
            margin-bottom: 4px;
        }

        .why-item p {
            color: var(--muted);
            font-size: 0.85rem;
            line-height: 1.7;
            margin: 0;
            font-weight: 500;
        }

        /* GALLERY */
        #gallery {
            background: var(--cream);
            padding: 80px 0;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            grid-template-rows: 230px 230px;
            gap: 14px;
            border-radius: var(--r);
        }

        .gg {
            overflow: hidden;
            border-radius: 14px;
            position: relative;
            cursor: pointer;
        }

        .gg img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.55s;
        }

        .gg:hover img {
            transform: scale(1.08);
        }

        .gg::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(15, 23, 42, 0.55) 0%, transparent 60%);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .gg:hover::after {
            opacity: 1;
        }

        .gg-span {
            grid-row: span 2;
        }

        /* CONTACT */
        #contact {
            background: var(--cream);
        }

        .contact-card {
            background: #fff;
            border-radius: var(--r);
            padding: 2.5rem 2rem;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
            height: 100%;
        }

        .contact-card h4 {
            font-family: 'Poppins', sans-serif;
            font-weight: 800;
            font-size: 1.55rem;
            color: var(--navy);
            margin-bottom: 1.6rem;
            letter-spacing: -0.3px;
        }

        .ci {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(0, 0, 0, 0.07);
        }

        .ci:last-child {
            border-bottom: none;
        }

        .ci-ico {
            width: 50px;
            height: 50px;
            border-radius: 14px;
            flex-shrink: 0;
            background: rgba(232, 93, 4, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: var(--orange);
        }

        .ci .lbl {
            font-size: 0.68rem;
            font-weight: 800;
            color: var(--muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 2px;
        }

        .ci .val {
            font-size: 0.97rem;
            font-weight: 700;
            color: var(--navy);
        }

        .ci a {
            color: var(--navy);
            text-decoration: none;
            font-weight: 700;
        }

        .ci a:hover {
            color: var(--orange);
        }

        .cta-panel {
            background: var(--grad);
            border-radius: var(--r);
            padding: 3rem 2rem;
            color: #fff;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-panel::before {
            content: '🚚';
            position: absolute;
            right: -10px;
            bottom: -20px;
            font-size: 9rem;
            opacity: 0.1;
            pointer-events: none;
        }

        .cta-panel h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            font-weight: 800;
            margin-bottom: 0.7rem;
            letter-spacing: -0.5px;
        }

        .cta-panel p {
            opacity: 0.85;
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .btn-cta-w {
            background: #fff;
            color: var(--orange);
            font-weight: 900;
            font-size: 1rem;
            border: none;
            border-radius: 50px;
            padding: 14px 30px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.25s;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

        .btn-cta-w:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
            color: var(--orange-dark);
        }

        .btn-cta-o {
            background: transparent;
            color: #fff;
            font-weight: 800;
            border: 2px solid rgba(255, 255, 255, 0.45);
            border-radius: 50px;
            padding: 13px 26px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 9px;
            transition: all 0.25s;
        }

        .btn-cta-o:hover {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            border-color: rgba(255, 255, 255, 0.7);
        }

        /* FOOTER */
        footer{
            background:linear-gradient(180deg,var(--navy2) 0%,var(--navy) 100%);
            color:rgba(255,255,255,.55);
            padding:70px 0 0;
            border-top:1px solid rgba(255,255,255,.06);
        }

        .foot-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1rem;
        }

        .foot-logo-icon {
            width: 40px;
            height: 40px;
            border-radius: 11px;
            background: var(--grad);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.1rem;
            color: #fff;
        }

        .foot-logo-name {
            font-weight: 900;
            font-size: 1.1rem;
            color: #fff;
        }

        .foot-logo-name span {
            color: var(--gold);
        }

        .foot-p {
            font-size: 0.87rem;
            line-height: 1.85;
            max-width: 270px;
            font-weight: 500;
        }

        .foot-socials {
            display: flex;
            gap: 9px;
            margin-top: 1.2rem;
        }

        .foot-socials a {
            width: 38px;
            height: 38px;
            border-radius: 11px;
            background: rgba(255, 255, 255, 0.07);
            color: rgba(255, 255, 255, 0.55);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.95rem;
            text-decoration: none;
            transition: all 0.2s;
        }

        .foot-socials a:hover {
            background: var(--orange);
            color: #fff;
            transform: translateY(-2px);
        }

        .foot-h {
            color: #fff;
            font-weight: 900;
            font-size: 0.92rem;
            margin-bottom: 1.2rem;
        }

        .foot-ul {
            list-style: none;
            padding: 0;
        }

        .foot-ul li {
            margin-bottom: 0.55rem;
        }

        .foot-ul a {
            color: rgba(255, 255, 255, 0.5);
            font-size: 0.87rem;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 7px;
            transition: color 0.2s;
            font-weight: 600;
        }

        .foot-ul a:hover {
            color: var(--gold);
        }

        .foot-ul a i {
            font-size: 0.65rem;
            color: var(--orange);
        }

        .foot-ci {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 0.85rem;
            font-size: 0.87rem;
            font-weight: 600;
        }

        .foot-ci i {
            color: var(--orange);
            margin-top: 2px;
            flex-shrink: 0;
        }

        .foot-bottom {
            margin-top: 3rem;
            border-top: 1px solid rgba(255, 255, 255, 0.07);
            padding: 1.2rem 0;
            text-align: center;
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.3);
        }

        .foot-bottom span {
            color: var(--orange);
        }

        /* WHATSAPP */
        .wa-btn {
            position: fixed;
            bottom: 28px;
            right: 28px;
            z-index: 9999;
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #25d366;
            color: #fff;
            font-size: 1.7rem;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            animation: wapulse 2.5s infinite;
        }

        .wa-btn:hover {
            color: #fff;
            transform: scale(1.1);
        }

        @keyframes wapulse {

            0%,
            100% {
                box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
            }

            50% {
                box-shadow: 0 6px 42px rgba(37, 211, 102, 0.85);
            }
        }

        .wa-label {
            position: fixed;
            bottom: 40px;
            right: 100px;
            z-index: 9998;
            background: #fff;
            color: var(--navy);
            font-size: 0.8rem;
            font-weight: 800;
            padding: 8px 14px;
            border-radius: 10px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s;
        }

        .wa-btn:hover+.wa-label {
            opacity: 1;
        }

        /* FADE */
        .fade-up{opacity:0;transform:translateY(36px);transition:opacity .65s ease,transform .65s ease;}
        .fade-up.in{opacity:1;transform:translateY(0);}
        .fade-left{opacity:0;transform:translateX(-36px);transition:opacity .65s ease,transform .65s ease;}
        .fade-left.in{opacity:1;transform:translateX(0);}
        .fade-right{opacity:0;transform:translateX(36px);transition:opacity .65s ease,transform .65s ease;}
        .fade-right.in{opacity:1;transform:translateX(0);}
        /* GLOW BADGE */
        .glow-badge{
            display:inline-flex;align-items:center;gap:8px;
            background:rgba(240,94,28,.15);
            border:1px solid rgba(240,94,28,.3);
            color:var(--gold);
            font-size:.7rem;font-weight:800;
            letter-spacing:2px;text-transform:uppercase;
            padding:6px 18px;border-radius:50px;
            margin-bottom:1.5rem;
            animation:glowPulse 2.5s ease-in-out infinite;
        }
        @keyframes glowPulse{
            0%,100%{box-shadow:0 0 12px rgba(240,94,28,.3);}
            50%{box-shadow:0 0 28px rgba(240,94,28,.6);}
        }
        /* COUNTER */
        .counter-val{font-family:'Poppins',sans-serif;font-weight:800;letter-spacing:-0.5px;}
        /* pkg card enhanced */
        .pkg-card{
            border-radius:24px!important;
            transition:transform .35s,box-shadow .35s!important;
        }

        @media(max-width:991px) {
            .hero-inner {
                text-align: center;
                padding: 110px 0 70px;
            }

            .hero-btns {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-sub {
                margin: 0 auto 2.2rem;
            }

            .hi-main,
            .hi-small,
            .hi-badge,
            .hi-tag {
                display: none;
            }

            .gallery-grid {
                grid-template-columns: 1fr 1fr;
                grid-template-rows: auto;
            }

            .gg-span {
                grid-row: span 1;
            }

            .aig-overlay {
                display: none;
            }

            .sec-title[style*="text-align:left"] {
                text-align: center !important;
            }

            #about .divbar,
            #why .divbar {
                margin: 1rem auto 1.4rem !important;
            }

            #about p {
                text-align: center;
            }

            .check-row {
                justify-content: center;
            }

            .about-strip {
                justify-content: center;
            }
        }

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

            .hero-stats {
                gap: 1.5rem;
            }

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

            .contact-card {
                padding: 1.5rem;
            }

            .cta-panel {
                padding: 2rem 1.5rem;
            }

            .pkg-card {
                padding: 1.5rem 1.2rem;
            }
        }

        @media(max-width:480px) {
            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .btn-hero-main,
            .btn-hero-ghost,
            .btn-cta-w,
            .btn-cta-o {
                width: 100%;
                justify-content: center;
            }

            .hero-stats {
                gap: 1rem;
                justify-content: space-around;
            }

            .h-stat .val {
                font-size: 1.6rem;
            }
        }

        /* NETWORK SECTION */
        #network {
            background: var(--navy);
            position: relative;
            overflow: hidden;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        #network::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 85% 70%, rgba(240, 94, 28, 0.12) 0%, transparent 55%),
                        radial-gradient(circle at 15% 25%, rgba(251, 191, 36, 0.07) 0%, transparent 45%);
            pointer-events: none;
        }

        .net-card {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: var(--r);
            padding: 2.2rem;
            backdrop-filter: blur(12px);
            height: 100%;
        }

        .net-stats-box {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.2rem;
            margin: 1.8rem 0;
        }

        .net-stat-item {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 14px;
            padding: 1rem;
            text-align: center;
            transition: all 0.3s;
        }

        .net-stat-item:hover {
            background: rgba(240, 94, 28, 0.05);
            border-color: rgba(240, 94, 28, 0.2);
            transform: translateY(-3px);
        }

        .net-stat-item .num {
            font-family: 'Poppins', sans-serif;
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--gold);
            line-height: 1.2;
            letter-spacing: -0.3px;
        }

        .net-stat-item .lbl {
            font-size: 0.72rem;
            color: rgba(255, 255, 255, 0.5);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 700;
            margin-top: 4px;
        }

        /* Nav tabs design */
        .net-nav {
            border: none !important;
            gap: 10px;
            margin-bottom: 2rem;
            flex-wrap: wrap;
        }

        .net-tab-btn {
            background: rgba(255, 255, 255, 0.04) !important;
            border: 1px solid rgba(255, 255, 255, 0.08) !important;
            color: rgba(255, 255, 255, 0.7) !important;
            border-radius: 50px !important;
            padding: 10px 22px !important;
            font-weight: 700 !important;
            font-size: 0.9rem !important;
            transition: all 0.3s !important;
            display: inline-flex !important;
            align-items: center !important;
            gap: 8px !important;
        }

        .net-tab-btn:hover {
            background: rgba(255, 255, 255, 0.08) !important;
            color: #fff !important;
            border-color: rgba(255, 255, 255, 0.2) !important;
        }

        .net-tab-btn.active {
            background: var(--grad) !important;
            border-color: transparent !important;
            color: #fff !important;
            box-shadow: 0 6px 20px rgba(240, 94, 28, 0.4) !important;
        }

        /* Search input style */
        .net-search-wrapper {
            position: relative;
            margin-bottom: 1.8rem;
        }

        .net-search-input {
            background: rgba(255, 255, 255, 0.04) !important;
            border: 1px solid rgba(255, 255, 255, 0.1) !important;
            color: #fff !important;
            border-radius: 12px !important;
            padding: 12px 18px 12px 46px !important;
            font-size: 0.92rem !important;
            font-weight: 500 !important;
            transition: all 0.3s !important;
        }

        .net-search-input:focus {
            background: rgba(255, 255, 255, 0.07) !important;
            border-color: var(--orange) !important;
            box-shadow: 0 0 15px rgba(240, 94, 28, 0.25) !important;
            outline: 2px solid var(--orange) !important;
            outline-offset: 1px !important;
        }

        .net-search-icon {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.4);
            font-size: 1rem;
            pointer-events: none;
        }

        .net-search-clear {
            position: absolute;
            right: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: rgba(255, 255, 255, 0.4);
            background: none;
            border: none;
            cursor: pointer;
            display: none;
            font-size: 0.9rem;
            padding: 4px;
        }

        .net-search-clear:hover {
            color: #fff;
        }

        /* Grid systems */
        .net-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-content: flex-start;
        }

        .loc-pill {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.06);
            color: rgba(255, 255, 255, 0.8);
            padding: 8px 16px;
            border-radius: 10px;
            font-size: 0.85rem;
            font-weight: 600;
            transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            user-select: none;
        }

        .loc-pill i {
            color: var(--orange-light);
            font-size: 0.72rem;
            transition: transform 0.25s;
        }

        .loc-pill:hover {
            background: rgba(240, 94, 28, 0.08);
            border-color: rgba(240, 94, 28, 0.35);
            color: #fff;
            transform: translateY(-2px) scale(1.03);
            box-shadow: 0 4px 12px rgba(240, 94, 28, 0.15);
        }

        .loc-pill:hover i {
            transform: translateY(-1px);
            color: var(--gold);
        }

        /* Featured/Highlights Pills */
        .loc-pill.feat-pill {
            background: linear-gradient(135deg, rgba(240, 94, 28, 0.18) 0%, rgba(251, 191, 36, 0.1) 100%);
            border: 1px solid rgba(240, 94, 28, 0.4);
            color: var(--gold);
            font-weight: 800;
            font-size: 0.88rem;
        }

        .loc-pill.feat-pill i {
            color: var(--gold);
            font-size: 0.8rem;
        }

        .loc-pill.feat-pill:hover {
            background: linear-gradient(135deg, rgba(240, 94, 28, 0.28) 0%, rgba(251, 191, 36, 0.18) 100%);
            border-color: var(--gold);
            color: #fff;
            box-shadow: 0 6px 18px rgba(240, 94, 28, 0.25);
        }

        /* Scroll container for massive Chennai list */
        .loc-scroll-panel {
            max-height: 400px;
            overflow-y: auto;
            padding-right: 8px;
        }

        /* Custom Scrollbar for list */
        .loc-scroll-panel::-webkit-scrollbar {
            width: 6px;
        }
        .loc-scroll-panel::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.02);
            border-radius: 10px;
        }
        .loc-scroll-panel::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.12);
            border-radius: 10px;
        }
        .loc-scroll-panel::-webkit-scrollbar-thumb:hover {
            background: rgba(240, 94, 28, 0.4);
        }

        .net-empty-search {
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.95rem;
            padding: 2rem 0;
            text-align: center;
            width: 100%;
        }

        /* Stylized SVG path connector map background */
        .net-vector-bg {
            position: absolute;
            top: 10%;
            right: 5%;
            opacity: 0.04;
            pointer-events: none;
            width: 450px;
            height: auto;
        }
