 .js-roofing-video-section {
            font-family: 'Montserrat', sans-serif;
            background: linear-gradient(135deg, #014085 0%, #000c41 100%);
            color: white;
            padding: 80px 0;
			margin: 60px 0;
            position: relative;
            overflow: hidden;
        }

        .js-roofing-video-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                /* Subtle tile pattern */
                repeating-linear-gradient(
                    45deg,
                    rgba(255, 255, 255, 0.01) 0px,
                    rgba(255, 255, 255, 0.01) 2px,
                    transparent 2px,
                    transparent 20px,
                    rgba(255, 255, 255, 0.015) 20px,
                    rgba(255, 255, 255, 0.015) 22px,
                    transparent 22px,
                    transparent 40px
                ),
                repeating-linear-gradient(
                    -45deg,
                    rgba(255, 255, 255, 0.008) 0px,
                    rgba(255, 255, 255, 0.008) 2px,
                    transparent 2px,
                    transparent 20px,
                    rgba(255, 255, 255, 0.012) 20px,
                    rgba(255, 255, 255, 0.012) 22px,
                    transparent 22px,
                    transparent 40px
                ),
                /* Soft radial highlights */
                radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.02) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
            pointer-events: none;
        }

        .js-roofing-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .js-roofing-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .js-roofing-text-content h2 {
            font-size: 2.8em;
            font-weight: 700;
            margin-bottom: 24px;
            line-height: 1.2;
            background: linear-gradient(45deg, #ffffff, #e8f4ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .js-roofing-text-content p {
            font-size: 1.1em;
            line-height: 1.7;
            margin-bottom: 20px;
            opacity: 0.95;
        }

        .js-roofing-highlight {
            color: #ffffff;
            font-weight: 600;
        }

        .js-roofing-cta-container {
            display: flex;
            gap: 20px;
            margin-top: 32px;
            flex-wrap: wrap;
        }

        .js-roofing-btn {
            padding: 16px 32px;
            border: none;
            border-radius: 8px;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            font-size: 1em;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .js-roofing-btn-primary {
            background: white;
            color: #014085;
            box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
        }

        .js-roofing-btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 25px rgba(255, 255, 255, 0.4);
            background: #f8f9fa;
        }

        .js-roofing-btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .js-roofing-btn-secondary:hover {
            background: white;
            color: #014085;
            transform: translateY(-2px);
        }

        .js-roofing-video-container {
            position: relative;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .js-roofing-video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 aspect ratio */
            height: 0;
        }

        .js-roofing-video-wrapper iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
            border-radius: 16px;
        }

        .js-roofing-video-overlay {
            position: absolute;
            top: 16px;
            right: 16px;
            background: rgba(1, 64, 133, 0.9);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            backdrop-filter: blur(10px);
        }

        /* Responsive Design */
        @media (max-width: 968px) {
            .js-roofing-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .js-roofing-text-content h2 {
                font-size: 2.2em;
            }

            .js-roofing-video-section {
                padding: 60px 0;
            }
        }

        @media (max-width: 640px) {
            .js-roofing-text-content h2 {
                font-size: 1.9em;
            }

            .js-roofing-cta-container {
                justify-content: center;
                flex-direction: column;
                align-items: center;
            }

            .js-roofing-btn {
                width: 100%;
                max-width: 280px;
                justify-content: center;
            }

            .js-roofing-container {
                padding: 0 16px;
            }
        }