@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');       
        :root {
            --brand-blue: #2563eb;
            --brand-dark: #0f172a;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: #f8fafc;
            color: #0f172a;
        }

        .hero-gradient {
            background: linear-gradient(rgba(15, 23, 42, 0.7), rgba(15, 23, 42, 0.85)), 
                        url('images/hero.jpg');
            background-size: cover;
            background-position: center 85%;
            background-repeat: no-repeat;
            min-height: 600px;
            height: 75vh;
        }

        .glass-nav {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(226, 232, 240, 1);
        }

        .nav-link {
            position: relative;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -4px;
            left: 50%;
            background: var(--brand-blue);
            transition: all 0.3s ease;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .bento-card {
            background: white;
            border-radius: 2.5rem;
            border: 1px solid rgba(226, 232, 240, 1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 4px 20px -10px rgba(0, 0, 0, 0.05);
        }

        .bento-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.1);
        }

        .btn-modern-primary {
            background-color: #2563eb;
            color: white;
            padding: 1.25rem 2.5rem;
            border-radius: 1.25rem;
            font-weight: 800;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 10px 25px -5px rgba(37, 99, 235, 0.4);
        }

        .btn-modern-primary:hover {
            background-color: #1d4ed8;
            transform: translateY(-3px);
            box-shadow: 0 20px 30px -10px rgba(37, 99, 235, 0.5);
        }

        .btn-modern-secondary {
            background-color: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            color: white;
            padding: 1.25rem 2.5rem;
            border-radius: 1.25rem;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            border: 1px solid rgba(255, 255, 255, 0.3);
            transition: all 0.3s ease;
        }

        .btn-modern-secondary:hover {
            background-color: rgba(255, 255, 255, 0.2);
            border-color: rgba(255, 255, 255, 0.6);
            transform: translateY(-3px);
        }

        .gallery-item {
            overflow: hidden;
            border-radius: 2rem;
            aspect-ratio: 1/1;
        }

        #lightbox {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 1000;
            background: rgba(15, 23, 42, 0.98);
            backdrop-filter: blur(15px);
        }

        .contact-icon-box {
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 1.25rem;
            background: #f1f5f9;
            color: #2563eb;
            border: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .contact-entry:hover .contact-icon-box {
            background: #2563eb;
            color: white;
            transform: scale(1.1) rotate(-5deg);
        }

        #lightbox-img {
            max-height: 80vh;
            max-width: 90vw;
            object-fit: contain;
            border-radius: 1rem;
        }