        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary-color: #d53028;
            --secondary-color: #1194c6;
            --deep-black: #0A0A0A;
            --off-white: #F5F5F5;
            --steel-gray: #1A1A1A;
            --bright-white: #FFFFFF;
        }

        body {
            font-family: 'Work Sans', sans-serif;
            background: var(--deep-black);
            color: var(--off-white);
            overflow-x: hidden;
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10, 10, 10, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(247, 255, 0, 0.1);
            overflow: visible;
        }

        .nav-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 1.5rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            position: relative;
            z-index: 1001;
        }

        .logo a {
            display: block;
            text-decoration: none;
            border: none;
        }

        .logo img {
            height: 80px;
            display: block;
        }

        .nav-menu {
            display: flex;
            gap: 3rem;
            list-style: none;
            align-items: center;
        }

        .nav-menu a {
            color: var(--off-white);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-color);
            transition: width 0.3s ease;
        }

        .nav-menu a:hover {
            color: var(--primary-color);
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--primary-color);
            color: var(--deep-black) !important;
            padding: 0.75rem 1.5rem;
            border-radius: 0;
            font-weight: 700;
            clip-path: polygon(8% 0, 100% 0, 92% 100%, 0 100%);
            transition: transform 0.2s ease;
        }

        .nav-cta:hover {
            transform: translateY(-2px);
        }

        .nav-cta::after {
            display: none;
        }

        .mobile-toggle {
            display: none;
            background: none;
            border: none;
            color: var(--primary-color);
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 8rem 2rem 4rem;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 20%;
            right: -10%;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(247, 255, 0, 0.08) 0%, transparent 70%);
            animation: pulse 8s ease-in-out infinite;
        }

        @keyframes pulse {

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

            50% {
                transform: scale(1.1);
                opacity: 0.8;
            }
        }

        .diagonal-accent {
            position: absolute;
            top: 15%;
            right: 10%;
            width: 600px;
            height: 4px;
            background: var(--primary-color);
            transform: rotate(-35deg);
            opacity: 0.3;
        }

        .diagonal-accent-2 {
            position: absolute;
            bottom: 20%;
            left: 5%;
            width: 400px;
            height: 3px;
            background: var(--primary-color);
            transform: rotate(25deg);
            opacity: 0.2;
        }

        .hero-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .hero-content {
            max-width: 900px;
        }

        .hero-label {
            display: inline-block;
            background: var(--steel-gray);
            color: var(--secondary-color);
            padding: 0.5rem 1.5rem;
            font-size: 0.85rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 2rem;
            clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
            animation: slideInLeft 0.8s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }

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

        .hero h1 {
            font-family: 'Bebas Neue', cursive;
            font-size: clamp(3.5rem, 10vw, 7rem);
            line-height: 0.9;
            margin-bottom: 2rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            animation: slideInUp 0.8s ease-out 0.2s both;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }

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

        .hero h1 .highlight {
            color: var(--primary-color);
            display: block;
            position: relative;
        }

        .hero h1 .highlight::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: var(--primary-color);
            opacity: 0.2;
            transform: skewX(-10deg);
        }

        .hero-description {
            font-size: 1.3rem;
            color: #B0B0B0;
            max-width: 600px;
            margin-bottom: 3rem;
            line-height: 1.6;
            animation: slideInUp 0.8s ease-out 0.4s both;
        }

        .hero-cta {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
            animation: slideInUp 0.8s ease-out 0.6s both;
        }

        .btn {
            padding: 1rem 2rem;
            font-family: 'Work Sans', sans-serif;
            font-size: 0.95rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-primary {
            background: var(--secondary-color);
            color: var(--deep-black);
            clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--bright-white);
            transition: left 0.5s ease;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary span {
            position: relative;
            z-index: 1;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(247, 255, 0, 0.3);
        }

        .btn-secondary {
            background: transparent;
            color: var(--off-white);
            border: 2px solid var(--off-white);
            clip-path: polygon(5% 0, 100% 0, 95% 100%, 0 100%);
        }

        .btn-secondary:hover {
            background: var(--off-white);
            color: var(--deep-black);
            transform: translateY(-3px);
        }

        /* Stats Section */
        .stats {
            padding: 6rem 2rem;
            background: var(--steel-gray);
            position: relative;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 100px;
            background: linear-gradient(135deg, var(--deep-black) 0%, var(--steel-gray) 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
        }

        .stats-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
        }

        .stat-item {
            text-align: center;
            padding: 2rem;
            background: rgba(247, 255, 0, 0.03);
            border-left: 4px solid var(--secondary-color);
            transform: skewX(-2deg);
            transition: transform 0.3s ease;
        }

        .stat-item:hover {
            transform: skewX(0deg) translateY(-5px);
        }

        .stat-item>* {
            transform: skewX(2deg);
        }

        .stat-number {
            font-family: 'Bebas Neue', cursive;
            font-size: 4rem;
            color: var(--primary-color);
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            color: var(--off-white);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-weight: 500;
        }

        /* Services Section */
        .services {
            padding: 8rem 2rem;
            background: var(--deep-black);
        }

        .section-header {
            text-align: center;
            margin-bottom: 5rem;
        }

        .section-label {
            color: var(--secondary-color);
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 3px;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-title {
            font-family: 'Bebas Neue', cursive;
            font-size: clamp(2.5rem, 6vw, 4rem);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
        }

        .section-description {
            font-size: 1.2rem;
            color: #B0B0B0;
            max-width: 700px;
            margin: 0 auto;
        }

        .services-grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
        }

        .service-card {
            background-color: var(--steel-gray);
            /* Base dark gradient always present */
            background-image: linear-gradient(to bottom, rgba(26, 26, 26, 0.4), rgba(10, 10, 10, 0.95));
            padding: 3rem 2rem 0 2rem;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(247, 255, 0, 0.1);
            transition: all 0.4s ease;
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            min-height: 320px;
        }

        /* The Image Layer */
        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: var(--bg-icon);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 0;
            transition: transform 0.8s ease, opacity 0.4s ease;
            opacity: 0.6;
            /* Start slightly transparent */
        }

        /* Hover: Zoom image and make less transparent */
        .service-card:hover::before {
            transform: scale(1.1);
            opacity: 0.9;
        }

        .service-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .service-icon {
            display: none;
        }

        .service-content {
            position: relative;
            z-index: 2;
            padding: 1.5rem;
            border-radius: 4px;
            background: rgba(10, 10, 10, 0.15);
            /* 15% opacity when idle */
            transition: background 0.4s ease;
            margin: -1.5rem;
            /* Negate padding to fill width if needed, or just contain text */
            margin-bottom: 0;
            border: 1px solid transparent;
        }

        .service-card:hover .service-content {
            background: rgba(10, 10, 10, 0.35);
            /* 35% opacity on hover */
            backdrop-filter: blur(5px);
            border: 1px solid rgba(247, 255, 0, 0.1);
        }

        .service-number {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-family: 'Bebas Neue', cursive;
            font-size: 5rem;
            color: rgba(247, 255, 0, 0.1);
            line-height: 1;
            z-index: 2;
            transition: opacity 0.3s ease;
        }

        .service-card:hover .service-number {
            opacity: 0;
            /* Hide number on hover to clean up look, or keep it */
        }

        .service-title {
            font-family: 'Bebas Neue', cursive;
            font-size: 2.2rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 0.5rem;
            color: var(--primary-color);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        .service-description {
            color: #E0E0E0;
            line-height: 1.6;
            font-size: 1.05rem;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
        }

        .service-title {
            font-family: 'Bebas Neue', cursive;
            font-size: 1.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
            color: var(--primary-color);
        }

        .service-description {
            color: #B0B0B0;
            line-height: 1.7;
            font-size: 1rem;
        }

        .service-number {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            font-family: 'Bebas Neue', cursive;
            font-size: 5rem;
            color: rgba(247, 255, 0, 0.05);
            line-height: 1;
        }

        /* Process Section */
        .process {
            padding: 8rem 2rem;
            background: var(--steel-gray);
            position: relative;
            overflow: hidden;
        }

        .process::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 150px;
            background: linear-gradient(180deg, transparent 0%, var(--deep-black) 100%);
        }

        .process-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .process-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-top: 4rem;
        }

        .process-step {
            text-align: center;
            position: relative;
        }

        .step-number {
            font-family: 'Bebas Neue', cursive;
            font-size: 6rem;
            color: var(--primary-color);
            line-height: 1;
            margin-bottom: 1rem;
            opacity: 0.2;
        }

        .step-title {
            font-family: 'Bebas Neue', cursive;
            font-size: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1rem;
        }

        .step-description {
            color: #B0B0B0;
            line-height: 1.6;
        }

        .process-step::after {
            content: '→';
            position: absolute;
            top: 50px;
            right: -2rem;
            font-size: 2rem;
            color: var(--primary-color);
            opacity: 0.3;
        }

        .process-step:last-child::after {
            display: none;
        }

        /* CTA Section */
        .cta-section {
            padding: 8rem 2rem;
            background: var(--deep-black);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 1200px;
            height: 1200px;
            background: radial-gradient(circle, rgba(247, 255, 0, 0.05) 0%, transparent 70%);
        }

        .cta-container {
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            z-index: 2;
            padding: 4rem;
            border: 2px solid var(--primary-color);
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 40px), calc(100% - 40px) 100%, 0 100%);
        }

        .cta-title {
            font-family: 'Bebas Neue', cursive;
            font-size: clamp(2.5rem, 6vw, 4.5rem);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .cta-title .highlight {
            color: var(--primary-color);
        }

        .cta-description {
            font-size: 1.3rem;
            color: #B0B0B0;
            margin-bottom: 3rem;
            line-height: 1.6;
        }

        .cta-phone {
            display: inline-block;
            font-family: 'Bebas Neue', cursive;
            font-size: 3rem;
            color: var(--primary-color);
            text-decoration: none;
            margin-bottom: 2rem;
            letter-spacing: 2px;
            transition: transform 0.3s ease;
        }

        .cta-phone:hover {
            transform: scale(1.05);
        }

        /* Footer */
        footer {
            background: var(--deep-black);
            padding: 4rem 2rem 2rem;
            border-top: 1px solid rgba(247, 255, 0, 0.1);
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h3 {
            font-family: 'Bebas Neue', cursive;
            font-size: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 1.5rem;
            color: var(--primary-color);
        }

        .footer-section p,
        .footer-section a {
            color: #B0B0B0;
            line-height: 1.8;
            text-decoration: none;
            display: block;
            margin-bottom: 0.5rem;
            transition: color 0.3s ease;
        }

        .footer-section a:hover {
            color: var(--primary-color);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(247, 255, 0, 0.1);
            color: #666;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 968px) {
            .nav-menu {
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: rgba(10, 10, 10, 0.98);
                flex-direction: column;
                padding: 2rem;
                gap: 1.5rem;
                transform: translateY(-100%);
                opacity: 0;
                pointer-events: none;
                transition: all 0.3s ease;
                border-bottom: 2px solid var(--primary-color);
            }

            .nav-menu.active {
                transform: translateY(0);
                opacity: 1;
                pointer-events: all;
            }

            .mobile-toggle {
                display: block;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .process-step::after {
                display: none;
            }

            .cta-container {
                padding: 2rem;
            }
        }

        @media (max-width: 640px) {
            .hero-cta {
                flex-direction: column;
            }

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

            .stat-item {
                transform: skewX(0);
            }

            .stat-item>* {
                transform: skewX(0);
            }
        }

        /* Scroll animations */
        .reveal {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s ease;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 2000;
            align-items: center;
            justify-content: center;
        }

        .modal.active {
            display: flex;
        }

        .modal-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.8);
            backdrop-filter: blur(5px);
        }

        .modal-content {
            position: relative;
            background: var(--steel-gray);
            width: 90%;
            max-width: 500px;
            max-height: 90vh;
            overflow-y: auto;
            border: 2px solid var(--primary-color);
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%);
            animation: modalSlideIn 0.3s ease-out;
            padding: 1.5rem;
        }

        @keyframes modalSlideIn {
            from {
                opacity: 0;
                transform: translateY(-50px) scale(0.95);
            }

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

        .modal-close {
            position: absolute;
            top: 1rem;
            right: 1.5rem;
            background: none;
            border: none;
            color: var(--off-white);
            font-size: 2rem;
            cursor: pointer;
            line-height: 1;
            transition: color 0.3s ease;
            z-index: 10;
        }

        .modal-close:hover {
            color: var(--primary-color);
        }

        .modal-header {
            margin-bottom: 1.25rem;
            text-align: center;
        }

        .modal-header h2 {
            font-family: 'Bebas Neue', cursive;
            font-size: 2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 0.25rem;
            color: var(--primary-color);
        }

        .modal-header p {
            color: #B0B0B0;
            font-size: 0.9rem;
        }

        .quote-form {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.35rem;
        }

        .form-group label {
            font-size: 0.8rem;
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--off-white);
        }

        .form-group input,
        .form-group textarea {
            background: var(--deep-black);
            border: 1px solid rgba(247, 255, 0, 0.2);
            color: var(--off-white);
            padding: 0.75rem;
            font-family: 'Work Sans', sans-serif;
            font-size: 0.95rem;
            transition: border-color 0.3s ease, box-shadow 0.3s ease;
            border-radius: 0;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(213, 48, 40, 0.2);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: #666;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 60px;
        }

        .form-error {
            color: var(--primary-color);
            font-size: 0.85rem;
            text-align: center;
            min-height: 1.25rem;
            font-weight: 500;
        }

        .submit-btn {
            width: 100%;
            margin-top: 0.5rem;
        }

        /* Success message styling */
        .form-success {
            text-align: center;
            padding: 2rem;
        }

        .form-success h3 {
            font-family: 'Bebas Neue', cursive;
            font-size: 2rem;
            color: var(--secondary-color);
            margin-bottom: 1rem;
        }

        .form-success p {
            color: #B0B0B0;
            margin-bottom: 1.5rem;
        }

        /* Modal responsive */
        @media (max-width: 640px) {
            .modal-content {
                width: 95%;
                padding: 1.25rem;
            }

            .modal-header h2 {
                font-size: 1.75rem;
            }

            .modal-close {
                top: 0.5rem;
                right: 1rem;
            }
        }

        /* Carousel Section */
        .carousel {
            padding: 8rem 2rem;
            background: var(--deep-black);
            position: relative;
            overflow: hidden;
        }

        .carousel-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .carousel-track-container {
            max-width: 1000px;
            margin: 0 auto;
            position: relative;
            height: 600px;
            overflow: hidden;
            border: 1px solid rgba(247, 255, 0, 0.1);
        }

        .carousel-track {
            display: flex;
            padding: 0;
            margin: 0;
            list-style: none;
            transition: transform 0.5s ease-in-out;
            height: 100%;
        }

        .carousel-slide {
            min-width: 100%;
            height: 100%;
            position: relative;
        }

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

        .carousel-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(10, 10, 10, 0.7);
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
            padding: 1rem;
            cursor: pointer;
            z-index: 10;
            font-size: 1.5rem;
            transition: all 0.3s ease;
        }

        .carousel-btn:hover {
            background: var(--primary-color);
            color: var(--deep-black);
        }

        .carousel-btn--left {
            left: 2rem;
        }

        .carousel-btn--right {
            right: 2rem;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            padding: 1rem 0;
            gap: 0.5rem;
        }

        .carousel-indicator {
            border: none;
            width: 12px;
            height: 12px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .carousel-indicator.current-slide {
            background: var(--primary-color);
        }

        /* Landing Page Specifics */
        .landing-hero {
            min-height: 80vh;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 8rem 2rem;
            background: radial-gradient(circle at center, #1a1a1a 0%, #0a0a0a 100%);
        }

        .landing-title {
            font-family: 'Bebas Neue', cursive;
            font-size: clamp(3rem, 8vw, 6rem);
            margin-bottom: 3rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .landing-split {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            width: 100%;
            max-width: 1200px;
            margin-top: 2rem;
        }

        .landing-card {
            background-color: var(--steel-gray);
            /* Base dark gradient always present */
            background-image: linear-gradient(to bottom, rgba(26, 26, 26, 0.4), rgba(10, 10, 10, 0.95));
            padding: 3rem 2rem 0 2rem;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(247, 255, 0, 0.1);
            transition: all 0.4s ease;
            clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
            text-decoration: none;
            display: flex;
            flex-direction: column;
            justify-content: flex-end;
            min-height: 400px;
            /* Slightly taller for landing page */
        }

        /* The Image Layer */
        .landing-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: var(--bg-icon);
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            z-index: 0;
            transition: transform 0.8s ease, opacity 0.4s ease;
            opacity: 0.6;
            /* Start slightly transparent */
        }

        /* Hover: Zoom image and make less transparent */
        .landing-card:hover::before {
            transform: scale(1.1);
            opacity: 0.9;
        }

        .landing-card:hover {
            transform: translateY(-10px);
            border-color: var(--primary-color);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .landing-card-icon {
            display: none;
        }

        .landing-card-content {
            position: relative;
            z-index: 2;
            padding: 2rem;
            border-radius: 4px;
            background: rgba(10, 10, 10, 0.15);
            /* 15% opacity when idle */
            transition: background 0.4s ease;
            margin: -2rem;
            /* Negate padding to fill width */
            margin-bottom: 0;
            border-top: 1px solid transparent;
            display: flex;
            flex-direction: column;
            align-items: center;
            /* Center text for landing cards */
        }

        .landing-card:hover .landing-card-content {
            background: rgba(10, 10, 10, 0.35);
            /* 35% opacity on hover */
            backdrop-filter: blur(5px);
            border-top: 1px solid rgba(247, 255, 0, 0.1);
        }

        .landing-card h2 {
            font-family: 'Bebas Neue', cursive;
            font-size: 3rem;
            color: var(--off-white);
            margin-bottom: 1rem;
            text-transform: uppercase;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
        }

        .landing-card p {
            color: #E0E0E0;
            margin-bottom: 2rem;
            line-height: 1.6;
            text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
            font-size: 1.1rem;
        }

        .landing-card .btn {
            display: inline-block;
            margin-top: 0;
        }