:root{
            --asa-blue:#0f79b8;
            --asa-blue-dark:#0b5f90;
            --asa-green:#67d339;
            --asa-dark:#1f2937;
            --asa-text:#5b6575;
            --asa-soft:#f4f8fb; 
            --asa-border:#dce6ef;
            --asa-white:#ffffff;
        }

        html{scroll-behavior:smooth;}

        body{
            font-family:Arial, Helvetica, sans-serif;
            color:var(--asa-dark);
            background:#fff;
        }

        a{text-decoration:none;}

        .section-space{
            padding:90px 0;
        }

        .topbar{
            background:#fff;
            border-bottom:1px solid rgba(15,121,184,0.08);
            font-size:14px;
        }

        .topbar a,
        .topbar span{
            color:var(--asa-text);
        }

        .main-navbar{
            background:rgba(255,255,255,0.96);
            backdrop-filter:blur(10px);
            border-bottom:1px solid rgba(15,121,184,0.08);
        }

        .navbar-brand{
            display:flex;
            align-items:center;
            gap:14px;
        }

        .brand-logo{
            width:56px;
            height:56px;
            object-fit:contain;
            border-radius:14px;
            background:#fff;
            padding:5px;
            box-shadow:0 8px 22px rgba(0,0,0,0.08);
        }

        .brand-text strong{
            display:block;
            font-size:1.15rem;
            color:var(--asa-dark);
            line-height:1.1;
        }

        .brand-text span{
            display:block;
            font-size:.82rem;
            color:var(--asa-text);
            line-height:1.2;
        }

        .navbar-nav .nav-link{
            color:var(--asa-dark);
            font-weight:600;
            padding-left:14px !important;
            padding-right:14px !important;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active{
            color:var(--asa-blue);
        }

        .btn-asa{
            background:linear-gradient(135deg, var(--asa-blue), var(--asa-blue-dark));
            color:#fff;
            border:none;
            border-radius:14px;
            padding:12px 20px;
            font-weight:700;
        }

        .btn-asa:hover{
            color:#fff;
            opacity:.95;
        }

        .title-hero{
            position:relative;
            overflow:hidden;
            background:
                radial-gradient(circle at top left, rgba(103,211,57,.10), transparent 32%),
                radial-gradient(circle at bottom right, rgba(15,121,184,.12), transparent 34%),
                linear-gradient(180deg, #f8fbfe 0%, #ffffff 100%);
            padding:72px 0 56px;
        }

        .title-card{
            position:relative;
            overflow:hidden;
            border-radius:34px;
            padding:42px;
            color:#fff;
            background:
                linear-gradient(rgba(15,121,184,.90), rgba(11,95,144,.82)),
                url("../img/hero.webp");
            background-size:cover;
            background-position:right center;
            background-repeat:no-repeat;
            box-shadow:0 28px 60px rgba(11,95,144,.20);
        }

        .title-card::before{
            content:"";
            position:absolute;
            width:220px;
            height:220px;
            border-radius:50%;
            background:rgba(255,255,255,.08);
            top:-80px;
            right:-70px;
        }

        .title-card::after{
            content:"";
            position:absolute;
            width:140px;
            height:140px;
            border-radius:50%;
            background:rgba(255,255,255,.06);
            bottom:-50px;
            left:-35px;
        }

        .title-card > *{
            position:relative;
            z-index:2;
        }

        .title-badge{
            display:inline-flex;
            align-items:center;
            gap:10px;
            padding:10px 16px;
            border-radius:999px;
            background:rgba(255,255,255,.12);
            color:rgba(255,255,255,.94);
            font-size:13px;
            font-weight:700;
            margin-bottom:18px;
        }

        .title-card h1{
            font-size:3rem;
            font-weight:800;
            line-height:1.08;
            margin-bottom:16px;
        }

        .title-card p{
            max-width:760px;
            color:rgba(255,255,255,.88);
            line-height:1.9;
            font-size:1.05rem;
            margin:0;
        }

        .breadcrumb-line{
            display:flex;
            flex-wrap:wrap;
            gap:10px;
            align-items:center;
            margin-top:20px;
            color:rgba(255,255,255,.78);
            font-size:14px;
        }

        .breadcrumb-line a{
            color:#fff;
        }

        .section-title{
            margin-bottom:42px;
        }

        .section-title .mini-title{
            display:inline-block;
            font-size:13px;
            font-weight:700;
            letter-spacing:.8px;
            text-transform:uppercase;
            color:var(--asa-blue);
            margin-bottom:12px;
        }

        .section-title h2{
            font-size:2.2rem;
            font-weight:800;
            margin-bottom:14px;
        }

        .section-title p{
            color:var(--asa-text);
            line-height:1.9;
            max-width:760px;
            margin:0 auto;
        }

        .gallery-grid{
            display:grid;
            grid-template-columns:repeat(4, minmax(0, 1fr));
            gap:22px;
        }

        .gallery-item{
            position:relative;
            display:block;
            border-radius:26px;
            overflow:hidden;
            background:#eef5fb;
            box-shadow:0 18px 45px rgba(15,23,42,0.06);
            border:1px solid rgba(15,121,184,0.08);
            cursor:pointer;
            transition:.28s ease;
            aspect-ratio: 1 / 1;
        }

        .gallery-item:hover{
            transform:translateY(-6px);
            box-shadow:0 26px 60px rgba(15,23,42,0.10);
            border-color:rgba(15,121,184,0.18);
        }

        .gallery-item img{
            width:100%;
            height:100%;
            object-fit:cover;
            display:block;
            transition:transform .45s ease;
        }

        .gallery-item:hover img{
            transform:scale(1.06);
        }

        .gallery-overlay{
            position:absolute;
            inset:0;
            background:linear-gradient(to top, rgba(15,23,42,.58), rgba(15,23,42,.10));
            display:flex;
            align-items:flex-end;
            justify-content:space-between;
            padding:18px;
            opacity:0;
            transition:.25s ease;
        }

        .gallery-item:hover .gallery-overlay{
            opacity:1;
        }

        .gallery-overlay strong{
            color:#fff;
            font-size:1rem;
            font-weight:800;
        }

        .gallery-overlay span{
            width:46px;
            height:46px;
            border-radius:16px;
            background:rgba(255,255,255,.14);
            color:#fff;
            display:flex;
            align-items:center;
            justify-content:center;
            font-size:1rem;
        }

        .lightbox{
            position:fixed;
            inset:0;
            background:rgba(8, 15, 24, .94);
            z-index:9999;
            display:flex;
            align-items:center;
            justify-content:center;
            padding:28px;
            opacity:0;
            visibility:hidden;
            pointer-events:none;
            transition:.25s ease;
        }

        .lightbox.show{
            opacity:1;
            visibility:visible;
            pointer-events:auto;
        }

        .lightbox-dialog{
            width:min(1180px, 100%);
            position:relative;
        }

        .lightbox-close{
            position:absolute;
            top:-14px;
            right:-14px;
            width:52px;
            height:52px;
            border:none;
            border-radius:18px;
            background:#fff;
            color:var(--asa-dark);
            box-shadow:0 15px 35px rgba(0,0,0,.25);
            z-index:4;
        }

        .lightbox-main{
            position:relative;
            border-radius:28px;
            overflow:hidden;
            background:#0c1620;
            border:1px solid rgba(255,255,255,.08);
            box-shadow:0 25px 80px rgba(0,0,0,.35);
        }

        .lightbox-main img{
            width:100%;
            height:min(72vh, 820px);
            object-fit:contain;
            display:block;
            background:#0c1620;
        }

        .lightbox-nav{
            position:absolute;
            top:50%;
            transform:translateY(-50%);
            width:58px;
            height:58px;
            border:none;
            border-radius:18px;
            background:rgba(255,255,255,.12);
            color:#fff;
            backdrop-filter:blur(8px);
            z-index:3;
            transition:.2s ease;
        }

        .lightbox-nav:hover{
            background:rgba(255,255,255,.20);
        }

        .lightbox-prev{ left:18px; }
        .lightbox-next{ right:18px; }

        .lightbox-caption{
            display:flex;
            justify-content:space-between;
            align-items:center;
            gap:18px;
            padding:18px 20px;
            background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.04));
            color:#fff;
            border-top:1px solid rgba(255,255,255,.08);
        }

        .lightbox-caption h3{
            font-size:1.05rem;
            font-weight:800;
            margin:0 0 4px;
        }

        .lightbox-caption p{
            margin:0;
            color:rgba(255,255,255,.68);
            font-size:.95rem;
        }

        .lightbox-counter{
            color:rgba(255,255,255,.72);
            font-weight:700;
            white-space:nowrap;
        }

        .lightbox-thumbs{
            display:flex;
            gap:10px;
            overflow:auto;
            padding:16px 6px 0;
        }

        .lightbox-thumbs::-webkit-scrollbar{
            height:8px;
        }

        .lightbox-thumbs::-webkit-scrollbar-thumb{
            background:rgba(255,255,255,.16);
            border-radius:999px;
        }

        .lightbox-thumb{
            min-width:88px;
            width:88px;
            height:68px;
            border-radius:16px;
            overflow:hidden;
            border:2px solid transparent;
            cursor:pointer;
            background:#fff;
            opacity:.65;
            transition:.2s ease;
            flex-shrink:0;
        }

        .lightbox-thumb.active{
            border-color:var(--asa-green);
            opacity:1;
            transform:translateY(-2px);
        }

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

        .footer{
            background:
                radial-gradient(circle at top left, rgba(15,121,184,.18), transparent 28%),
                radial-gradient(circle at bottom right, rgba(103,211,57,.10), transparent 24%),
                #0f1720;
            color:rgba(255,255,255,.76);
            padding:0;
            position:relative;
            overflow:hidden;
        }

        .footer strong{color:#fff;}

        .footer-top{
            padding:70px 0 34px;
            position:relative;
            z-index:2;
        }

        .footer-brand{
            display:flex;
            align-items:center;
            gap:16px;
            margin-bottom:18px;
        }

        .footer-brand img{
            width:64px;
            height:64px;
            object-fit:contain;
            border-radius:16px;
            background:rgba(255,255,255,.08);
            padding:6px;
            box-shadow:0 10px 24px rgba(0,0,0,.18);
        }

        .footer-brand-text strong{
            display:block;
            font-size:1.1rem;
            line-height:1.15;
        }

        .footer-brand-text span{
            display:block;
            font-size:.82rem;
            color:rgba(255,255,255,.58);
            line-height:1.3;
        }

        .footer-about{
            max-width:420px;
            line-height:1.9;
            color:rgba(255,255,255,.72);
            margin-bottom:22px;
        }

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

        .footer-social a{
            width:42px;
            height:42px;
            border-radius:14px;
            display:inline-flex;
            align-items:center;
            justify-content:center;
            background:rgba(255,255,255,.06);
            border:1px solid rgba(255,255,255,.08);
            color:#fff;
            transition:.22s ease;
        }

        .footer-social a:hover{
            background:linear-gradient(135deg, var(--asa-blue), var(--asa-blue-dark));
            border-color:transparent;
            transform:translateY(-2px);
        }

        .footer-title{
            font-size:.95rem;
            font-weight:800;
            letter-spacing:.6px;
            text-transform:uppercase;
            color:#fff;
            margin-bottom:18px;
        }

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

        .footer-links li + li,
        .footer-contact-list li + li{
            margin-top:12px;
        }

        .footer-links a{
            color:rgba(255,255,255,.72);
            transition:.2s ease;
        }

        .footer-links a:hover{
            color:#fff;
            padding-left:4px;
        }

        .footer-contact-list li{
            display:flex;
            gap:12px;
            align-items:flex-start;
            color:rgba(255,255,255,.72);
            line-height:1.7;
        }

        .footer-contact-list i{
            width:18px;
            min-width:18px;
            margin-top:4px;
            color:var(--asa-green);
        }

        .footer-contact-list a,
        .footer-contact-list span{
            color:rgba(255,255,255,.72);
        }

        .footer-contact-list a:hover{
            color:#fff;
        }

        .footer-bottom{
            border-top:1px solid rgba(255,255,255,.08);
            padding:18px 0;
            position:relative;
            z-index:2;
        }

        .footer-bottom-text,
        .footer-bottom-links span{
            color:rgba(255,255,255,.60);
            font-size:.95rem;
        }

        .footer-bottom-links{
            display:flex;
            flex-wrap:wrap;
            gap:18px;
        }

        @media (max-width: 1199px){
            .gallery-grid{
                grid-template-columns:repeat(3, minmax(0, 1fr));
            }
        }

        @media (max-width: 991px){
            .title-card h1{
                font-size:2.4rem;
            }

            .gallery-grid{
                grid-template-columns:repeat(2, minmax(0, 1fr));
            }
        }

        @media (max-width: 575px){
            .section-space{
                padding:70px 0;
            }

            .title-card{
                padding:22px;
            }

            .title-card h1{
                font-size:2rem;
            }

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

            .lightbox{
                padding:14px;
            }

            .lightbox-main img{
                height:52vh;
            }

            .lightbox-nav{
                width:48px;
                height:48px;
                border-radius:16px;
            }

            .lightbox-prev{ left:10px; }
            .lightbox-next{ right:10px; }

            .lightbox-caption{
                flex-direction:column;
                align-items:flex-start;
            }

            .lightbox-close{
                top:-8px;
                right:-4px;
                width:46px;
                height:46px;
                border-radius:14px;
            }

            .footer-top{
                padding:50px 0 28px;
            }
        }

        .lazy-host{
            position: relative;
        }

        .lazy-spinner{
            position: absolute;
            top: 50%;
            left: 50%;
            width: 34px;
            height: 34px;
            margin-top: -17px;
            margin-left: -17px;
            border-radius: 50%;
            border: 3px solid rgba(15,121,184,.14);
            border-top-color: var(--asa-blue);
            animation: asaSpin .75s linear infinite;
            z-index: 3;
            pointer-events: none;
        }

        img.lazy-media{
            opacity: 0;
            transition: opacity .28s ease;
        }

        img.lazy-media.is-loaded{
            opacity: 1;
        }

        .lazy-host.is-loaded .lazy-spinner{
            opacity: 0;
            visibility: hidden;
        }

        @keyframes asaSpin{
            from{ transform: rotate(0deg); }
            to{ transform: rotate(360deg); }
        }
