
        body {
            margin: 0;
            overflow-x: hidden;
            background-color: #000;
            color: #fff;
            font-family: 'Noto Sans JP', sans-serif;
        }

        canvas {
            display: block;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 1;
        }

        .text-container {
            position: relative;
            width: 100%;
            z-index: 10;
            pointer-events: none;
            padding-top: 0;
            /* First phase appears after starfield */
        }

        .phase-section {
            position: relative;
            width: 100%;
            min-height: 110vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transition: opacity 1s ease-in-out, transform 1s ease;
            text-align: center;
            padding: 10vh 10%;
            box-sizing: border-box;
            transform: translateY(20px);
        }

        .phase-section.active, .reveal.active {
            opacity: 1 !important;
            transform: translateY(0) !important;
        }

        /* Fallback for when JS fails - approximate reveal */
        .no-js .phase-section, .no-js .reveal {
            opacity: 1 !important;
            transform: none !important;
        }

        /* Spacer for _ character (30vh scroll space) */
        .spacer-30vh {
            height: 30vh;
        }

        .reveal {
            transform: translateY(15px) scale(0.98);
            opacity: 0;
            transition: all 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            filter: blur(3px);
        }

        .active .reveal,
        .reveal.active {
            transform: translateY(0) scale(1);
            opacity: 1;
            filter: blur(0);
        }

        h1,
        h2 {
            color: #d4af37;
            background: linear-gradient(120deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 500;
            letter-spacing: 0.2em;
            line-height: 1.6;
            animation: shine 5s linear infinite;
        }

        h1 {
            font-size: clamp(1.8rem, 5vw, 3.5rem);
            margin-bottom: 0.5em;
        }

        h2 {
            font-size: clamp(1.4rem, 4vw, 2.5rem);
            margin-bottom: 1em;
        }

        p {
            color: #fff;
            font-size: clamp(1rem, 1.5vw, 1.2rem);
            line-height: 2;
            letter-spacing: 0.15em;
            max-width: 600px;
            margin: 0 auto;
        }

        .content-split {
            display: flex;
            flex-direction: column;
            width: 100%;
            max-width: 800px;
            justify-content: flex-end;
            align-items: center;
            gap: 20px;
            pointer-events: auto;
            margin-bottom: 5vh;
        }

        .media-side {
            width: 100%;
            max-width: 500px;
        }

        .text-side {
            width: 100%;
            text-align: center;
        }

        .top-right,
        .btm-right {
            align-items: flex-end;
            justify-content: flex-end;
            text-align: right;
            padding-bottom: 8vh;
            padding-right: 5%;
        }

        .btm-left,
        .top-left {
            align-items: flex-start;
            justify-content: flex-end;
            text-align: left;
            padding-bottom: 8vh;
            padding-left: 5%;
        }

        .video-container {
            width: 100%;
            aspect-ratio: 16/9;
            background: #111;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 0 50px rgba(136, 204, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        video {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        @keyframes shine {
            to {
                background-position: 200% center;
            }
        }

        .scroll-hint {
            position: fixed;
            bottom: 30px;
            left: 50%;
            margin-left: -40px;
            /* Half of width (80px) */
            width: 80px;
            /* Match SVG width */
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.8rem;
            letter-spacing: 0.2em;
            z-index: 5;
            animation: pulse 2s infinite;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.5s ease;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 0.4;
                transform: translateY(0);
            }

            50% {
                opacity: 1;
                transform: translateY(-5px);
            }
        }

        /* Additional glow effect for SVG */
        .scroll-hint svg {
            filter: drop-shadow(0 0 15px rgba(77, 208, 255, 0.6));
            animation: neonGlow 2s ease-in-out infinite;
        }

        @keyframes neonGlow {

            0%,
            100% {
                filter: drop-shadow(0 0 10px rgba(77, 208, 255, 0.4));
            }

            50% {
                filter: drop-shadow(0 0 25px rgba(77, 208, 255, 0.9));
            }
        }



        /* Scroll to Top Button */
        .scroll-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            text-align: center;
            z-index: 100;
            animation: pulse 2s infinite;
            opacity: 0;
            display: none;
            pointer-events: none;
            transition: opacity 0.5s ease;
            cursor: pointer;
        }

        .scroll-to-top.visible {
            opacity: 1;
            pointer-events: auto;
        }

        .scroll-to-top svg {
            width: 50px;
            height: 50px;
            filter: drop-shadow(0 0 15px rgba(77, 208, 255, 0.6));
            animation: neonGlow 2s ease-in-out infinite;
        }



        /* Footer Styles */
        .site-footer {
            position: relative;
            width: 100%;
            padding-top: 45vh;
            padding-bottom: 120px;
            padding-left: 20px;
            padding-right: 20px;
            min-height: 100vh;
            text-align: center;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
            z-index: 15;
            opacity: 1;
            pointer-events: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            box-sizing: border-box;
        }

        /* Company Section Styles */
        .company-section {
            position: relative;
            width: 100%;
            padding: 15vh 20px;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-top: 1px solid rgba(212, 175, 55, 0.3);
            border-bottom: 1px solid rgba(212, 175, 55, 0.3);
            z-index: 10;
            color: #fff;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 15vh;
        }

        .company-container {
            width: 100%;
            max-width: 800px;
            margin: 0 auto;
        }

        .company-title {
            font-size: 2rem;
            color: #d4af37;
            text-align: center;
            margin-bottom: 40px;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
            letter-spacing: 0.1em;
        }

        .company-table {
            width: 100%;
            border-collapse: collapse;
        }

        .company-table tr {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .company-table tr:last-child {
            border-bottom: none;
        }

        .company-table th,
        .company-table td {
            padding: 20px;
            text-align: left;
        }

        .company-table th {
            width: 30%;
            color: #d4af37;
            font-weight: bold;
            font-size: 0.95rem;
            background: rgba(212, 175, 55, 0.05);
        }

        .company-table td {
            font-size: 1rem;
            line-height: 1.6;
        }

        @media (max-width: 768px) {

            /* Mobile: reduced breathing space for smaller screens */
            .phase-section {
                min-height: 100vh;
                padding: 8vh 8%;
            }

            .phase-section+.phase-section {
                margin-top: 10vh;
            }

            .company-section {
                padding: 12vh 20px;
                margin-top: 10vh;
            }

            .company-table th {
                width: 100%;
                display: block;
                padding-bottom: 5px;
                text-align: center;
                /* Center header */
            }

            .company-table td {
                width: 100%;
                display: block;
                padding-top: 5px;
                padding-left: 0;
                /* Remove left padding */
                text-align: center;
                /* Center content */
            }

            .company-title {
                font-size: 1.5rem;
            }

            /* FORCE CENTER ALIGNMENT FOR MOBILE TEXT (User Request) */
            .top-right,
            .btm-right,
            .btm-left,
            .top-left,
            .hero-sub-text,
            .phase-section p,
            .reveal p {
                text-align: center !important;
                align-items: center !important;
                justify-content: center !important;
                margin-left: auto !important;
                margin-right: auto !important;
                /* Restore balanced padding so it doesn't touch edges */
                padding-left: 5% !important;
                padding-right: 5% !important;
                padding-bottom: 4vh !important;
                /* Keep vertical spacing */
                box-sizing: border-box !important;
            }

            /* SPECIFIC FIX FOR .reveal DIVS WITH INLINE STYLES */
            .phase-section .reveal {
                margin-left: auto !important;
                margin-right: auto !important;
                text-align: center !important;
                /* Use relative width with max-cap to ensure centering works */
                width: 90% !important;
                max-width: 500px !important;
                /* Cap width for readability */
                box-sizing: border-box !important;
            }

            /* Center CTA Button Content on Mobile */
            .cta-btn {
                justify-content: center !important;
                flex-direction: column;
                /* Stack icon and text on mobile if needed, or keep row but centered */
                text-align: center;
                gap: 10px;
                padding: 25px 15px;
            }

            .cta-text {
                text-align: center !important;
                flex: none;
                /* Remove flex-grow to allow true centering */
                width: 100%;
            }

            .cta-title {
                display: block;
                /* Ensure title is on its own line */
            }

            /* Hero Sub Text specific override if needed */
            .hero-sub-text {
                max-width: 90vw !important;
                width: 100% !important;
            }
        }

        .site-footer a {
            color: #d4af37;
            text-decoration: none;
            margin: 0 15px;
            transition: color 0.3s ease;
        }

        .site-footer a:hover {
            color: #f2d16b;
        }

        .footer-logo {
            font-size: 2rem;
            margin-bottom: 20px;
            letter-spacing: 0.2em;
            color: #d4af37;
            background: linear-gradient(120deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
            background-size: 200% auto;
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: shine 5s linear infinite;
        }

        .footer-desc {
            font-size: 0.8rem;
            line-height: 2;
            margin-bottom: 40px;
            opacity: 0.8;
            max-width: 600px;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 40px;
        }

        .footer-links a {
            color: #fff;
            text-decoration: none;
            font-size: 0.9rem;
            letter-spacing: 0.2em;
            transition: color 0.3s;
            opacity: 0.8;
        }

        .footer-links a:hover {
            color: #d4af37;
            opacity: 1;
        }

        .footer-social {
            margin-bottom: 30px;
        }

        .footer-social svg {
            opacity: 0.8;
            transition: opacity 0.3s, transform 0.3s;
        }

        .footer-social a:hover svg {
            opacity: 1;
            transform: scale(1.1);
        }

        .footer-copyright {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .footer-copyright .divider {
            width: 120px;
            height: 1px;
            background: rgba(255, 255, 255, 0.3);
        }

        .footer-copyright p {
            font-size: 0.7rem;
            letter-spacing: 0.1em;
            opacity: 0.5;
            margin: 0;
        }

        .error-msg {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            color: #ff4444;
            background: rgba(0, 0, 0, 0.9);
            padding: 30px;
            border-radius: 10px;
            text-align: center;
            z-index: 9999;
            max-width: 500px;
        }

        /* 電話CTAボタン（固定配置） */
        .phone-cta {
            position: fixed;
            top: 100px;
            right: 30px;
            z-index: 1000;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 6px;
            width: 120px;
            height: 120px;
            background: radial-gradient(circle at 30% 30%, rgba(242, 209, 107, 0.9), rgba(212, 175, 55, 0.7));
            backdrop-filter: blur(10px);
            border-radius: 50%;
            border: 2px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 32px rgba(212, 175, 55, 0.5),
                inset 0 2px 8px rgba(255, 255, 255, 0.3),
                inset 0 -2px 8px rgba(0, 0, 0, 0.2);
            text-decoration: none;
            animation: sphereFloat 3s ease-in-out infinite, sphereGlow 2s ease-in-out infinite, phonePulse 1.2s ease-in-out infinite;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .phone-cta:hover {
            transform: scale(1.1);
            box-shadow: 0 12px 40px rgba(212, 175, 55, 0.7),
                inset 0 2px 8px rgba(255, 255, 255, 0.5),
                inset 0 -2px 8px rgba(0, 0, 0, 0.2);
        }

        .phone-cta:active {
            transform: scale(1.0);
        }

        .phone-cta svg {
            width: 64px;
            height: 64px;
            fill: #ff4444;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        }

        .phone-cta span {
            color: #000;
            font-weight: bold;
            font-size: 0.7rem;
            letter-spacing: 0.05em;
            text-align: center;
            line-height: 1.2;
            text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
        }

        @keyframes sphereFloat {

            0%,
            100% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-5px);
            }
        }

        @keyframes sphereGlow {

            0%,
            100% {
                box-shadow: 0 8px 32px rgba(212, 175, 55, 0.5),
                    inset 0 2px 8px rgba(255, 255, 255, 0.3),
                    inset 0 -2px 8px rgba(0, 0, 0, 0.2);
                background-position: 100% 50%;
            }
        }

        @keyframes phonePulse {

            0%,
            100% {
                transform: scale(1);
                box-shadow: 0 8px 32px rgba(212, 175, 55, 0.5),
                    inset 0 2px 8px rgba(255, 255, 255, 0.3),
                    inset 0 -2px 8px rgba(0, 0, 0, 0.2);
            }

            50% {
                transform: scale(1.15);
                box-shadow: 0 12px 48px rgba(242, 209, 107, 1),
                    0 0 30px rgba(242, 209, 107, 0.8),
                    inset 0 2px 12px rgba(255, 255, 255, 0.6),
                    inset 0 -2px 8px rgba(0, 0, 0, 0.1);
            }
        }

        /* ========================================
           Final Contact Section
           ======================================== */
        .final-contact-section {
            padding: 80px 5% 100px;
            position: relative;
            z-index: 10;
            opacity: 1;
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .contact-container {
            max-width: 900px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 50px 30px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }

        .contact-heading {
            font-size: clamp(1.8rem, 5vw, 2.5rem);
            text-align: center;
            margin-bottom: 40px;
            color: #d4af37;
            font-weight: bold;
        }

        /* CTA Buttons Grid */
        .cta-buttons {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }

        .cta-btn {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 20px 25px;
            min-height: 100px;
            border: none;
            border-radius: 15px;
            font-size: 1rem;
            font-weight: bold;
            text-decoration: none;
            color: #fff;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }

        .cta-btn:active {
            transform: translateY(-1px);
        }

        /* Phone Button - Red/Orange */
        .cta-phone {
            background: linear-gradient(135deg, #ff6b6b 0%, #ff8c42 100%);
        }

        .cta-phone:hover {
            background: linear-gradient(135deg, #ff5252 0%, #ff7a2e 100%);
        }

        /* LINE Button - Green */
        .cta-line {
            background: #06C755;
        }

        .cta-line:hover {
            background: #05b34d;
        }

        /* Form Button - Blue */
        .cta-form {
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
        }

        .cta-form:hover {
            background: linear-gradient(135deg, #3a7dc7 0%, #2a66a3 100%);
        }

        .cta-icon {
            flex-shrink: 0;
            width: 80px;
            /* Mobile base size (approx 2x of std 40px) */
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
        }

        .cta-text {
            text-align: left;
            flex: 1;
        }

        .cta-title {
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .cta-desc {
            font-size: 0.9rem;
            opacity: 0.95;
            font-weight: normal;
        }

        /* Contact Form */
        .contact-form-wrapper {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }

        .contact-form-wrapper.active {
            max-height: 1200px;
        }

        .contact-form {
            padding-top: 30px;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: #fff;
            font-weight: bold;
            font-size: 1rem;
        }

        .required {
            color: #ff6b6b;
            font-size: 0.85rem;
        }

        .form-group input[type="text"],
        .form-group input[type="tel"],
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 15px;
            border: 2px solid rgba(255, 255, 255, 0.2);
            border-radius: 10px;
            background: rgba(255, 255, 255, 0.1);
            color: #fff;
            font-size: 1rem;
            font-family: inherit;
            transition: all 0.3s ease;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #d4af37;
            background: rgba(255, 255, 255, 0.15);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: rgba(255, 255, 255, 0.5);
        }

        .area-note {
            margin-top: 8px;
            color: #ff6b6b;
            font-weight: bold;
            font-size: 0.9rem;
        }

        /* Radio Buttons */
        .radio-group {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .radio-label {
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
            padding: 12px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            transition: background 0.2s ease;
        }

        .radio-label:hover {
            background: rgba(255, 255, 255, 0.1);
        }

        .radio-label input[type="radio"] {
            width: 20px;
            height: 20px;
            cursor: pointer;
        }

        .radio-label span {
            color: #fff;
            font-size: 1rem;
        }

        /* Submit Button */
        .submit-btn {
            width: 100%;
            padding: 20px;
            background: linear-gradient(135deg, #d4af37 0%, #f2d16b 100%);
            border: none;
            border-radius: 12px;
            color: #000;
            font-size: 1.2rem;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
            margin-top: 10px;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        /* Success Message */
        .success-message {
            display: none;
            margin-top: 20px;
            padding: 30px 20px;
            background: rgba(76, 175, 80, 0.95);
            border: 3px solid #4caf50;
            border-radius: 15px;
            color: #fff;
            font-size: 1.3rem;
            text-align: center;
            font-weight: bold;
            box-shadow: 0 8px 24px rgba(76, 175, 80, 0.4);
            position: relative;
            z-index: 9999;
            animation: successPulse 0.6s ease-out;
        }

        @keyframes successPulse {
            0% {
                transform: scale(0.8);
                opacity: 0;
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
                opacity: 1;
            }
        }

        .success-message.show {
            display: block;
        }

        /* Desktop Layout */
        @media (min-width: 768px) {
            .cta-buttons {
                grid-template-columns: repeat(3, 1fr);
            }

            .cta-btn {
                flex-direction: column;
                text-align: center;
                padding: 30px 20px;
                min-height: 180px;
            }

            .cta-text {
                text-align: center;
            }

            .cta-icon {
                width: 100px;
            }
        }

        /* === NAVIGATION HEADER === */
        .nav-blur {
            backdrop-filter: saturate(180%) blur(20px);
            -webkit-backdrop-filter: saturate(180%) blur(20px);
            background-color: rgba(0, 0, 0, 0.7);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .nav-blur a:hover {
            color: #d4af37 !important;
        }

        /* Mobile Menu */
        #mobile-menu {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0, 0, 0, 0.95);
            z-index: 2000;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            gap: 40px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s;
        }

        #mobile-menu.active {
            opacity: 1;
            pointer-events: auto;
        }

        /* Overlap fix: hide hamburger when menu is active (Robust body class version) */
        body.mobile-menu-active #mobile-menu-btn {
            opacity: 0 !important;
            pointer-events: none !important;
        }

        .mobile-link {
            color: #fff;
            font-size: 1.5rem;
            text-decoration: none;
            font-weight: 700;
        }

        /* Utility classes */
        .hidden {
            display: none !important;
        }

        /* Mobile: ハンバーガー表示、デスクトップメニュー非表示 */
        .mobile-only {
            display: block !important;
        }

        .desktop-flex {
            display: none !important;
        }

        /* Desktop: デスクトップメニュー表示、ハンバーガー非表示 */
        @media (min-width: 768px) {
            .desktop-flex {
                display: flex !important;
            }

            .mobile-only {
                display: none !important;
            }

            /* Desktop Footer Alignment */
            .site-footer {
                text-align: left !important;
                align-items: flex-start !important;
                padding-left: 5% !important;
                padding-right: 5% !important;
            }

            .site-footer .footer-content,
            .site-footer .footer-links,
            .site-footer .footer-copyright,
            .site-footer .footer-logo,
            .site-footer .footer-desc {
                text-align: left !important;
                align-items: flex-start !important;
                justify-content: flex-start !important;
                margin-left: 0 !important;
                margin-right: auto !important;
            }

            /* Enforce Left Alignment for Paragraphs in Left-aligned sections */
            .top-left p,
            .btm-left p,
            .reveal p {
                text-align: left !important;
                margin-left: 0 !important;
                margin-right: auto !important;
            }

            /* Specific Strong Overrides for Phase 1, 10, 11 to combat inline styles */
            #p1 p,
            #p1 .reveal,
            #p10 p,
            #p10 .reveal,
            #p11 p,
            #p11 .reveal {
                margin-left: 0 !important;
                margin-right: auto !important;
                text-align: left !important;
            }
        }

        /* Mobile Sticky Footer Bar */
        @media (max-width: 768px) {

            /* Remove speech bubble frame on mobile but keep text */
            #p1 .hero-bubble {
                background: none !important;
                border: none !important;
                box-shadow: none !important;
                backdrop-filter: none !important;
                padding: 0 !important;
                margin-bottom: 0.5em !important;
                animation: none !important;
            }

            #p1 .hero-bubble::after {
                display: none !important;
            }

            .scroll-to-top,
            .phone-cta {
                display: none !important;
                /* Hide redundant elements on mobile */
            }

            .mobile-sticky-footer {
                position: fixed;
                bottom: 0;
                left: 0;
                width: 100%;
                display: flex;
                z-index: 10000;
                background: rgba(0, 0, 0, 0.7);
                backdrop-filter: blur(10px);
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                height: 90px;
                /* Increased height for larger icons */
            }

            .mobile-sticky-footer>a,
            .mobile-sticky-footer>div {
                flex: 1;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                text-decoration: none;
                color: #fff;
                transition: all 0.3s ease;
                cursor: pointer;
            }

            .mobile-footer-icon {
                width: 56px;
                height: 56px;
                margin-bottom: 4px;
                animation: neon-pulse 2s infinite ease-in-out;
            }

            @keyframes neon-pulse {

                0%,
                100% {
                    opacity: 0.8;
                    filter: drop-shadow(0 0 5px currentColor);
                }

                50% {
                    opacity: 1;
                    filter: drop-shadow(0 0 12px currentColor);
                }
            }

            /* Neon effects */
            .mobile-footer-line .mobile-footer-icon {
                color: #06c755;
                filter: drop-shadow(0 0 8px rgba(6, 199, 85, 0.8));
            }

            .mobile-footer-top .mobile-footer-icon {
                color: #4dd0ff;
                filter: drop-shadow(0 0 8px rgba(77, 208, 255, 0.8));
            }

            .mobile-footer-phone .mobile-footer-icon {
                color: #ff4444;
                filter: drop-shadow(0 0 8px rgba(255, 68, 68, 0.8));
            }

            .mobile-segment-label {
                font-size: 0.65rem;
                font-weight: bold;
                letter-spacing: 0.05em;
            }
        }

        /* Hide mobile sticky footer on desktop */
        @media (min-width: 769px) {
            .mobile-sticky-footer {
                display: none;
            }
        }

        /* Hero Section Revamp Styles */
        .hero-bubble {
            /* Blue neon glow background */
            background: radial-gradient(circle at 30% 30%,
                    rgba(77, 208, 255, 0.3),
                    rgba(13, 77, 119, 0.2));
            backdrop-filter: blur(10px);
            border: 3px solid #4dd0ff;

            /* High contrast text for visibility */
            color: #fff;
            text-shadow:
                0 0 10px rgba(77, 208, 255, 0.8),
                0 0 20px rgba(77, 208, 255, 0.6),
                0 2px 4px rgba(0, 0, 0, 0.9),
                2px 2px 0 rgba(0, 0, 0, 0.5);

            /* 2x larger size */
            padding: 1.6em 3em;
            border-radius: 60px;
            font-weight: 900;
            font-size: clamp(1.8rem, 6vw, 2.8rem);
            margin-bottom: 1.5em;
            position: relative;
            display: inline-block;

            /* Enhanced neon glow effects */
            box-shadow:
                0 0 30px rgba(77, 208, 255, 0.6),
                0 0 60px rgba(77, 208, 255, 0.4),
                0 8px 32px rgba(0, 0, 0, 0.5),
                inset 0 0 20px rgba(77, 208, 255, 0.2);

            animation:
                popIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.5s both,
                neonPulse 2s ease-in-out infinite;
        }

        @keyframes neonPulse {

            0%,
            100% {
                box-shadow:
                    0 0 30px rgba(77, 208, 255, 0.6),
                    0 0 60px rgba(77, 208, 255, 0.4),
                    0 8px 32px rgba(0, 0, 0, 0.5),
                    inset 0 0 20px rgba(77, 208, 255, 0.2);
            }

            50% {
                box-shadow:
                    0 0 40px rgba(77, 208, 255, 0.8),
                    0 0 80px rgba(77, 208, 255, 0.6),
                    0 8px 32px rgba(0, 0, 0, 0.5),
                    inset 0 0 30px rgba(77, 208, 255, 0.3);
            }
        }

        .hero-bubble::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-width: 15px 15px 0;
            border-style: solid;
            border-color: #4dd0ff transparent transparent transparent;
            filter: drop-shadow(0 0 15px rgba(77, 208, 255, 0.6));
        }

        h1.hero-title-main {
            font-size: clamp(2rem, 6vw, 4rem) !important;
            line-height: 1.3 !important;
            font-weight: 900 !important;
            margin-bottom: 0.5em !important;

            /* Blue neon text effect */
            color: #4dd0ff !important;
            -webkit-text-fill-color: #4dd0ff !important;
            text-shadow:
                0 0 10px rgba(77, 208, 255, 0.8),
                0 0 20px rgba(77, 208, 255, 0.6),
                0 0 40px rgba(77, 208, 255, 0.4),
                0 2px 4px rgba(0, 0, 0, 0.9),
                2px 2px 0 rgba(0, 0, 0, 0.5) !important;

            background: none !important;
            animation: textNeonPulse 3s ease-in-out infinite;
        }

        @keyframes textNeonPulse {

            0%,
            100% {
                text-shadow:
                    0 0 10px rgba(77, 208, 255, 0.8),
                    0 0 20px rgba(77, 208, 255, 0.6),
                    0 0 40px rgba(77, 208, 255, 0.4),
                    0 2px 4px rgba(0, 0, 0, 0.9),
                    2px 2px 0 rgba(0, 0, 0, 0.5);
            }

            50% {
                text-shadow:
                    0 0 15px rgba(77, 208, 255, 1.0),
                    0 0 30px rgba(77, 208, 255, 0.8),
                    0 0 60px rgba(77, 208, 255, 0.6),
                    0 2px 4px rgba(0, 0, 0, 0.9),
                    2px 2px 0 rgba(0, 0, 0, 0.5);
            }
        }

        .text-highlight-red {
            color: #ff4444;
            background: linear-gradient(180deg, transparent 60%, rgba(255, 68, 68, 0.3) 60%);
            padding: 0 5px;
            font-weight: 900;
        }

        .text-highlight-gold-marker {
            background: linear-gradient(180deg, transparent 60%, rgba(212, 175, 55, 0.4) 60%);
            padding: 0 5px;
        }

        .hero-sub-box {
            background: rgba(0, 0, 0, 0.75);
            border: 2px solid rgba(212, 175, 55, 0.5);
            padding: 2em;
            border-radius: 20px;
            max-width: 700px;
            margin: 2em auto;
            backdrop-filter: blur(8px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
        }

        .hero-sub-text {
            font-size: clamp(0.95rem, 1.3vw, 1.1rem);
            line-height: 1.8;
            margin-bottom: 1.5em;
            text-align: left;
            color: #eee;
        }

        .hero-cta-wrapper {
            margin-top: 2em;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 10px;
        }

        .transport-note {
            font-weight: bold;
            color: #fff;
            margin-bottom: 5px;
            display: block;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
            font-size: 1.1rem;
        }

        .hero-phone-btn {
            background: linear-gradient(135deg, #FFD700 0%, #FDB931 50%, #d4af37 100%);
            color: #000;
            color: #000;
            padding: 0.8em 1.2em;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 900;
            font-size: clamp(1.3rem, 6vw, 2.2rem);
            display: inline-flex;
            max-width: 95vw;
            justify-content: center;
            box-sizing: border-box;
            align-items: center;
            gap: 15px;
            box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 2px solid #fff;
            z-index: 10;
            /* Ensure button is above canvas */
            pointer-events: auto !important;
            /* Force clickable */
            cursor: pointer;
        }

        .hero-phone-btn svg {
            width: 64px;
            height: 64px;
            fill: #ff4444;
            /* Black outline */
            stroke: #000000;
            stroke-width: 2px;
            paint-order: stroke;
            margin-right: 15px;
            filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
        }

        #hero-phone-c2a {
            pointer-events: auto !important;
            z-index: 20000 !important;
            position: relative;
        }

        .hero-phone-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
        }

        @keyframes pulse-gold {
            0% {
                transform: scale(1);
                box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
            }

            50% {
                transform: scale(1.05);
                box-shadow: 0 0 40px rgba(255, 215, 0, 0.8);
            }

            100% {
                transform: scale(1);
                box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
            }
        }

        @media (max-width: 768px) {
            .hero-phone-btn {
                flex-direction: column;
                /* Stack vertically to maximize width */
                font-size: 1.8rem !important;
                /* Reduced from 2.2rem to prevent overflow */
                padding: 15px 5px !important;
                gap: 5px !important;
                width: 90vw;
                /* Reduced from 95vw to prevent scroll */
                max-width: 400px;
                /* Cap width */
                white-space: nowrap;
                justify-content: center;
                animation: pulse-gold 2s infinite;
                box-sizing: border-box;
                /* Ensure padding doesn't add to width */
            }

            .hero-phone-btn span:first-child {
                font-size: 1.5rem !important;
                margin-right: 0 !important;
                margin-bottom: 5px !important;
            }

            #p1 {
                padding-bottom: 220px !important;
                /* Ensure clearance from footer */
            }
        }

        .hero-phone-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
            animation: shine-btn 3s infinite;
        }

        @keyframes shine-btn {
            0% {
                left: -100%;
            }

            10% {
                left: 100%;
            }

            100% {
                left: 100%;
            }
        }

        @keyframes popIn {
            from {
                opacity: 0;
                transform: scale(0.5) translateY(20px);
            }

            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }
    

                .category-block {
                    width: 100%;
                    max-width: 900px;
                    margin: 0 auto;
                    background: rgba(0, 0, 0, 0.3);
                    border-radius: 20px;
                    padding: 2em;
                    border: 1px solid rgba(255, 255, 255, 0.05);
                }

                .cat-header {
                    margin-bottom: 1.5em;
                    text-align: left;
                    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
                    padding-bottom: 0.5em;
                }

                .cat-title {
                    font-size: clamp(1.2rem, 3vw, 1.6rem);
                    color: #fff;
                    margin: 0;
                    letter-spacing: 0.05em;
                }

                .img-placeholder {
                    width: 100%;
                    height: 250px;
                    background: rgba(255, 255, 255, 0.03);
                    border: 2px dashed rgba(212, 175, 55, 0.3);
                    border-radius: 10px;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    margin-bottom: 2em;
                    color: rgba(255, 255, 255, 0.3);
                    font-size: 0.9em;
                    letter-spacing: 0.1em;
                }

                .items-grid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                    gap: 1.5em;
                }

                .item-card {
                    background: rgba(255, 255, 255, 0.03);
                    padding: 1.2em;
                    border-radius: 10px;
                    text-align: left;
                    transition: transform 0.3s ease, background 0.3s ease;
                }

                .item-card:hover {
                    background: rgba(255, 255, 255, 0.07);
                    transform: translateY(-3px);
                }

                .item-name {
                    font-weight: bold;
                    color: #d4af37;
                    font-size: 1.1rem;
                    margin-bottom: 0.4em;
                }

                .item-desc {
                    font-size: 0.85rem;
                    color: rgba(255, 255, 255, 0.7);
                    margin: 0;
                    line-height: 1.5;
                }

                @media (max-width: 768px) {
                    .category-block {
                        padding: 1.5em 1em;
                    }

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

                    .img-placeholder {
                        height: 180px;
                    }
                }
            

                /* Updated Button & Caption Styles */
                /* Groups */
                .cta-group {
                    display: flex;
                    flex-direction: column;
                    gap: 12px;
                }

                /* Buttons */
                .cta-btn {
                    padding: 25px 20px !important;
                    min-height: auto !important;
                    height: auto;
                    flex-direction: column;
                    /* Icon top, Text bottom */
                    justify-content: center;
                    text-align: center;
                }


                .cta-text {
                    display: flex;
                    flex-direction: column;
                    justify-content: center;
                    text-align: center;
                }


                .cta-main {
                    font-size: 1.5rem;
                    font-weight: 900;
                    line-height: 1.1;
                    margin-bottom: 2px;
                    letter-spacing: -0.02em;
                }

                .cta-sub {
                    font-size: 0.95rem;
                    opacity: 0.95;
                    font-weight: bold;
                }

                /* Captions - Gold, Bold, No Break */
                .cta-caption {
                    color: #d4af37;
                    font-size: 0.9rem;
                    line-height: 1.5;
                    font-weight: bold;
                    text-align: center;

                    padding: 0 5px;
                    white-space: normal;
                    /* Allow wrap but prefer long lines */
                }

                /* Phone Number Specific */
                .cta-phone .cta-main {
                    font-family: "Roboto", sans-serif;
                    /* Clear numbers */
                }

                /* Layout Adjustments */
                @media (min-width: 768px) {
                    .cta-buttons {
                        display: grid;
                        grid-template-columns: repeat(3, 1fr);
                        align-items: start;
                        gap: 30px;
                    }

                    /* Desktop: Icon top, Text center */
                    .cta-btn {
                        flex-direction: column;
                        text-align: center;
                        padding: 30px 20px !important;
                    }

                    .cta-text {
                        text-align: center;
                    }

                    .cta-main {
                        font-size: 1.6rem;
                        margin-top: 10px;
                    }

                    .cta-caption {
                        text-align: center;
                        font-size: 0.95rem;
                    }
                }
            

        @media (min-width: 768px) {

            /* Force Left Alignment for Specific Phase Sections */
            #p1,
            #p10,
            #p11,
            #p1 .text-container,
            #p10 .text-container,
            #p11 .text-container,
            .phase-section.top-left,
            .phase-section.btm-left {
                align-items: flex-start !important;
                text-align: left !important;
                justify-content: flex-start !important;
            }

            /* Reset Text Margins for Left Alignment */
            #p1 p,
            #p10 p,
            #p11 p,
            #p1 .reveal,
            #p10 .reveal,
            #p11 .reveal,
            .phase-section.top-left p,
            .phase-section.btm-left p,
            .phase-section.top-left .reveal,
            .phase-section.btm-left .reveal {
                margin-left: 0 !important;
                margin-right: auto !important;
                text-align: left !important;
                max-width: 100% !important;
                /* Allow width to expand if needed, or stick to 600px but align left */
            }

            /* Specifically fix the paragraphs that were centered */
            p {
                margin-left: 0 !important;
            }

            /* Footer Alignment Fix */
            .site-footer {
                align-items: center !important;
                text-align: center !important;
                padding-left: 5% !important;
                display: flex !important;
                flex-direction: column !important;
            }

            .site-footer .footer-logo {
                align-self: center !important;
                text-align: center !important;
                margin-left: auto !important;
                margin-right: auto !important;
            }

            .site-footer .footer-desc {
                align-self: center !important;
                text-align: center !important;
                margin-left: auto !important;
                margin-right: auto !important;
                width: 100% !important;
            }

            .site-footer .footer-links {
                justify-content: center !important;
                text-align: center !important;
                width: 100% !important;
                display: flex !important;
                flex-direction: column !important;
                /* Vertical layout */
                align-items: center !important;
                /* Center the vertical items */
                gap: 15px !important;
            }

            .site-footer .footer-copyright {
                align-self: center !important;
                text-align: center !important;
                margin-left: auto !important;
                margin-right: auto !important;
            }

            .footer-copyright {
                width: 100% !important;
                align-items: center !important;
                justify-content: center !important;
                text-align: center !important;
                display: flex !important;
                flex-direction: column !important;
            }

            .divider {
                margin-left: auto !important;
                margin-right: auto !important;
            }

            .footer-copyright p {
                text-align: center !important;
                margin-left: auto !important;
                margin-right: auto !important;
            }
        }
    

        @media (max-width: 768px) {

            /* 1. Force Flex Container Centering */
            .phase-section,
            #p1,
            #p2,
            #p3,
            #p4,
            #p5,
            #p6,
            #p7,
            #p8,
            #p9,
            #p10,
            #p11,
            .top-left,
            .top-right,
            .btm-left,
            .btm-right {
                align-items: center !important;
                text-align: center !important;
                padding-left: 5% !important;
                /* Safety zone */
                padding-right: 5% !important;
                /* Safety zone */
            }

            /* 2. Force Content Block Centering */
            .reveal,
            .phase-section .reveal,
            .text-container,
            .content-split {
                width: 90% !important;
                max-width: 500px !important;
                margin-left: auto !important;
                margin-right: auto !important;
                text-align: center !important;
                box-sizing: border-box !important;
            }

            /* 3. Override Inline HTML Styles for Text */
            .reveal p,
            .reveal div,
            .phase-section p {
                text-align: center !important;
                margin-left: auto !important;
                margin-right: auto !important;
            }

            /* 4. Ensure no overflow */
            body,
            html {
                overflow-x: hidden;
            }
        }
    