        :root {
            --accent: #2F369D;
            --sub-accent: #1AA8A4;
            --color-1: #D9534F;
            --color-2: #CC7000;
            --color-3: #5A943D;
            --bg: #FFFFFF;
            --insta-gradient: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            --youtube-red: #FF0000;
        }

        /* Entrance Animations */
        @keyframes heroDrop {
            0% {
                opacity: 0;
                transform: translateY(-30px);
            }

            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes staggerIn {
            0% {
                opacity: 0;
                transform: translateX(-20px);
            }

            100% {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes zoomInFade {
            0% {
                opacity: 0;
                transform: scale(0.9);
            }

            100% {
                opacity: 1;
                transform: scale(1);
            }
        }

        @keyframes bgPulse {
            0% {
                transform: scale(1) translate(0, 0);
            }

            50% {
                transform: scale(1.1) translate(15px, -15px);
            }

            100% {
                transform: scale(1) translate(0, 0);
            }
        }

        @keyframes lineGrow {
            0% {
                width: 0;
            }

            100% {
                width: 50px;
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
            -webkit-tap-highlight-color: transparent;
        }

        html,
        body {
            width: 100%;
            height: 100%;
            overflow: hidden;
            /* Prevent body scroll */
            background-color: #f0f2f5;
            background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 100%);
        }

        body {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        /* Mobile Portrait Container - Locked to Viewport Height */
        .app-shell {
            width: 100%;
            height: 100vh;
            background-color: var(--bg);
            position: relative;
            display: flex;
            flex-direction: column;
            overflow: hidden;
            /* Ensure no scroll inside shell */
            box-shadow: 0 0 60px rgba(0, 0, 0, 0.15);
            background: linear-gradient(180deg, #FFFFFF 0%, #F8FAFF 100%);
        }

        /* Dynamic Animated Background */
        .bg-canvas {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
        }

        .circle-blur {
            position: absolute;
            border-radius: 50%;
            filter: blur(60px);
            opacity: 0.15;
            animation: bgPulse 12s infinite ease-in-out;
        }

        .cb-1 {
            top: -5%;
            left: -10%;
            width: 250px;
            height: 250px;
            background: var(--sub-accent);
        }

        .cb-2 {
            top: 35%;
            right: -15%;
            width: 200px;
            height: 200px;
            background: var(--color-2);
            animation-delay: -2s;
        }

        .cb-3 {
            bottom: -5%;
            left: -5%;
            width: 250px;
            height: 250px;
            background: var(--accent);
            animation-delay: -5s;
        }

        /* Content Sections - Adjusted for Single Screen */
        header {
            padding: 7vh 25px 3vh;
            /* Responsive padding */
            text-align: center;
            z-index: 10;
            animation: heroDrop 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) both;
            background-color: var(--accent);
        }

        header::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, var(--sub-accent), var(--color-2), var(--color-1), var(--sub-accent));
            background-size: 300% 100%;
            animation: borderTransition 6s ease infinite;
        }

        .logo-container {
            width: 100%;
            max-width: 240px;
            margin: 0 auto;
            filter: drop-shadow(0 8px 15px rgba(47, 54, 157, 0.1));
        }

        .logo-container img {
            height: 100px;
            width: auto;
            border-radius: 20px;
        }

        main {
            padding: 30px 20px 0px;
            flex-grow: 1;
            z-index: 5;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            max-width: 500px;
            margin: 0 auto;
        }

        .section-tag {
            font-size: 0.65rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--accent);
            font-weight: 900;
            margin-bottom: 12px;
            display: block;
            opacity: 0.5;
            animation: staggerIn 0.8s both 0.4s;
        }

        /* Card Elements - Compressed for No Scroll */
        .glass-card {
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.25);
            border-radius: 24px;
            padding: 18px;
            margin-bottom: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
            animation: fadeInUp 1s cubic-bezier(0.2, 0.8, 0.2, 1) both;
        }

        .address-card {
            text-decoration: none;
            display: block;
            animation-delay: 0.6s;
        }

        .address-card:active {
            transform: scale(0.97);
            background: rgba(255, 255, 255, 0.9);
        }

        .address-content {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .icon-box {
            width: 42px;
            height: 42px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            flex-shrink: 0;
        }

        .icon-box svg {
            width: 22px;
            height: 22px;
        }

        .address-icon {
            background: rgba(246, 115, 92, 0.1);
            color: var(--color-1);
        }

        .email-icon {
            background: rgba(47, 200, 195, 0.1);
            color: var(--sub-accent);
        }

        .phone-icon {
            background: rgba(66, 255, 22, 0.1);
            color: var(--color-3);
        }

        .text-group b {
            color: var(--accent);
            font-size: 0.75rem;
            margin-bottom: 2px;
            display: block;
        }

        .text-group p {
            color: #555;
            font-size: 0.85rem;
            line-height: 1.3;
        }

        .contact-stack {
            animation-delay: 0.8s;
            padding: 8px;
        }

        .contact-row {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px;
            text-decoration: none;
            margin: 4px 0;
            background: white;
            border-radius: 16px;
            transition: transform 0.2s ease;
        }

        .contact-row:active {
            transform: scale(0.98);
        }

        /* Social Hub - Compact Grid */
        .social-hub {
            text-align: center;
            animation: zoomInFade 0.8s both 1s;
            margin-top: auto;
            /* Push to bottom of main */
            padding-bottom: 30px;
        }

        .social-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 12px;
            margin-top: 10px;
        }

        .social-item {
            padding: 12px 0;
            background: white;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
            border: 1px solid rgba(0, 0, 0, 0.01);
        }

        .social-item svg {
            width: 22px;
            height: 22px;
        }

        /* Authentic Brand Coloring */
        .insta-icon {
            stroke: #d62976;
        }

        /* Fallback for stroke only icons */

        /* Apply gradient to Instagram SVG specifically */
        .insta-svg {
            stroke: url(#instaGradient);
        }

        .yt-color {
            color: var(--youtube-red);
        }

        .web-color {
            color: var(--accent);
        }

        .social-item:active {
            background: #fdfdfd;
            transform: scale(0.9);
        }

        /* Footer - Minimal Height */
        footer {
            padding: 15px 30px 25px;
            text-align: center;
            z-index: 5;
            animation: fadeInUp 0.8s both 1.2s;
        }

        .footer-line {
            height: 3px;
            background: var(--accent);
            margin: 0 auto 10px;
            border-radius: 10px;
            animation: lineGrow 1.5s ease-out forwards;
        }

        .footer-text {
            font-size: 0.7rem;
            color: #bbb;
            font-weight: 500;
        }