<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Guard Home Warranty - New Portal</title>
    <style>
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
            line-height: 1.6;
            color: #333;
            background: linear-gradient(135deg, #2567FF 0%, #1e4ed8 100%);
            margin: 0;
            padding: 1rem 0;
            min-height: 100vh;
            width: 100%;
            overflow-x: hidden;
        }

        html {
            height: 100%;
            width: 100%;
            overflow-x: hidden;
        }

        /* Header Styles */
        .header {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
            padding: 1rem 0;
            position: sticky;
            top: 0;
            z-index: 100;
            width: 100%;
        }

        .header-content {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 1rem;
            width: 100%;
        }

        .company-name {
            font-size: 1.5rem;
            font-weight: 700;
            color: #2567FF;
            text-decoration: none;
        }

        .nav-links {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .nav-link {
            text-decoration: none;
            color: #4b5563;
            font-weight: 500;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            transition: all 0.3s ease;
            white-space: nowrap;
        }

        .nav-link:hover {
            background: rgba(37, 103, 255, 0.1);
            color: #2567FF;
        }

        .nav-link.active {
            background: #2567FF;
            color: white;
        }

        /* Main Content */
        .main-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 1rem;
            width: 100%;
        }

        .redirect-card {
            background: white;
            border-radius: 16px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
            padding: 2rem 1.5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin-bottom: 1rem;
            width: 100%;
        }

        .redirect-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #2567FF, #1e4ed8);
        }

        /* Header with Icon */
        .inline-header {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.75rem;
            font-size: 2rem;
            font-weight: 800;
            color: #1f2937;
            margin-bottom: 1.5rem;
            flex-wrap: wrap;
            text-align: center;
        }

        .inline-icon {
            font-size: 1.8rem;
        }

        /* Main Description */
        .redirect-card > p {
            font-size: 1.125rem;
            color: #6b7280;
            margin-bottom: 2rem;
            line-height: 1.7;
            text-align: center;
        }

        /* Highlight Boxes */
        .highlight {
            background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
            border: 1px solid #d1d5db;
            border-radius: 12px;
            padding: 1.5rem;
            margin: 2rem 0;
            text-align: left;
            width: 100%;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .highlight strong {
            color: #1f2937;
            font-weight: 600;
        }

        .highlight code {
            background: #374151;
            color: #f9fafb;
            padding: 0.5rem 1rem;
            border-radius: 6px;
            font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
            font-size: 0.85rem;
            display: block;
            margin: 0.5rem 0;
            word-break: break-all;
            overflow-wrap: break-word;
            white-space: pre-wrap;
            text-align: center;
        }

        .highlight ul {
            margin: 1rem 0;
            padding-left: 1.5rem;
        }

        .highlight li {
            margin: 0.5rem 0;
            color: #4b5563;
            word-wrap: break-word;
        }

        .highlight a {
            color: #2567FF;
            text-decoration: none;
            font-weight: 500;
            word-break: break-word;
        }

        .highlight a:hover {
            text-decoration: underline;
        }

        /* Portal Buttons */
        .portal-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #2567FF, #1e4ed8);
            color: white !important;
            text-decoration: none;
            padding: 1rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 6px -1px rgba(37, 103, 255, 0.3);
            margin: 1rem 0.5rem;
            width: auto;
            max-width: 100%;
            text-align: center;
            white-space: nowrap;
        }

        .portal-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px -5px rgba(37, 103, 255, 0.4);
            background: linear-gradient(135deg, #1e4ed8, #1d4ed8);
            color: white !important;
        }

        .portal-button:active {
            transform: translateY(0);
        }

        /* Section Heading */
        .section-heading {
            font-size: 1.75rem;
            font-weight: 700;
            color: #1f2937;
            margin: 3rem 0 2rem 0;
            text-align: center;
            position: relative;
        }

        .section-heading::after {
            content: '';
            position: absolute;
            bottom: -0.5rem;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #2567FF, #1e4ed8);
            border-radius: 2px;
        }

        /* Features Grid */
        .features {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            margin: 2rem 0 0 0;
            width: 100%;
        }

        .feature {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 12px;
            padding: 1.5rem;
            text-align: left;
            transition: all 0.3s ease;
            width: 100%;
        }

        .feature:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
            border-color: #2567FF;
        }

        .feature-title {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 1rem;
        }

        .feature-icon {
            font-size: 1.5rem;
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #2567FF, #1e4ed8);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .feature h3 {
            font-size: 1.25rem;
            font-weight: 600;
            color: #1f2937;
            margin: 0;
        }

        .feature p {
            color: #6b7280;
            line-height: 1.6;
            margin: 0;
        }

        /* Footer */
        .footer {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding: 2rem 0;
            text-align: center;
            margin-top: 4rem;
            width: 100%;
        }

        .footer-links {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .footer-links a {
            color: #2567FF;
            text-decoration: none;
            font-weight: 500;
            margin: 0 0.5rem;
        }

        .footer-links a:hover {
            text-decoration: underline;
        }

        .footer-links span {
            color: #6b7280;
            margin: 0 0.5rem;
        }

        /* Mobile Responsive Design */
        @media (max-width: 768px) {
            body {
                padding: 0.5rem 0;
            }

            .header-content {
                flex-direction: column;
                gap: 1rem;
                padding: 0 1rem;
            }

            .nav-links {
                gap: 0.5rem;
                justify-content: center;
                flex-wrap: wrap;
            }

            .nav-link {
                padding: 0.4rem 0.8rem;
                font-size: 0.9rem;
            }

            .main-content {
                padding: 0.5rem;
            }

            .redirect-card {
                padding: 1.5rem 1rem;
                margin-bottom: 0.5rem;
            }

            .inline-header {
                font-size: 1.5rem;
                flex-direction: column;
                gap: 0.5rem;
            }

            .inline-icon {
                font-size: 1.5rem;
            }

            .redirect-card > p {
                font-size: 1rem;
                margin-bottom: 1.5rem;
            }

            .highlight {
                padding: 1rem;
                margin: 1.5rem 0;
            }

            .highlight code {
                font-size: 0.75rem;
                padding: 0.4rem 0.8rem;
                word-break: break-all;
            }

            .portal-button {
                padding: 0.875rem 1rem;
                font-size: 0.9rem;
                margin: 0.5rem 0;
                width: 100%;
                max-width: none;
                white-space: normal;
                text-align: center;
            }

            .section-heading {
                font-size: 1.5rem;
                margin: 2rem 0 1.5rem 0;
            }

            .features {
                gap: 1rem;
            }

            .feature {
                padding: 1rem;
            }

            .feature-title {
                gap: 0.5rem;
            }

            .feature-icon {
                width: 35px;
                height: 35px;
                font-size: 1.25rem;
            }

            .feature h3 {
                font-size: 1.1rem;
            }

            .feature p {
                font-size: 0.9rem;
            }
        }

        @media (max-width: 480px) {
            .main-content {
                padding: 0.25rem;
            }

            .redirect-card {
                padding: 1rem 0.75rem;
                border-radius: 12px;
            }

            .inline-header {
                font-size: 1.25rem;
            }

            .highlight {
                padding: 0.75rem;
            }

            .highlight ul {
                padding-left: 1rem;
            }

            .highlight li {
                font-size: 0.9rem;
            }
        }

        /* Desktop - larger screens */
        @media (min-width: 769px) {
            .features {
                grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                gap: 2rem;
            }

            .redirect-card {
                padding: 3rem;
            }

            .inline-header {
                font-size: 2.25rem;
            }

            .portal-button {
                font-size: 1.1rem;
                padding: 1rem 2rem;
                width: auto;
            }
        }

        /* Zoho-specific styles */
        .Signin__signPart .Signin__userSigin.commonStyle__dFlex:nth-child(3) {
            display: none;
        }

        .Signup__signPart .Signup__userSigin.commonStyle__dFlex:nth-child(2) {
            display: none;
        }

        .Header__menuList.Header__navactive.custom_tab,
        .ticketForm .Header__menuList.Header__navactive {
            border-bottom-color: transparent;
        }

        .ticketForm .Header__menuList.Header__navactive.custom_tab {
            border-bottom-color: #ffffff;
        }

        .Header__containerLi {
            max-width: 15rem;
        }

        .ticketForm .Layout__columnReverse {
            flex-direction: row;
        }

        .ticketForm .Layout__layout2 {
            padding-right: 0px;
            padding-left: 1.75rem;
        }

        .ticketDetail span[data-id="newReply"] {
            display: none;
        }

        .Header__searchSubCont,
        .Header__homeNavbarFixed .Header__searchSubCont {
            display: none !important;
        }

        .signedIn .Header__searchSubCont {
            display: block !important;
        }

        .signedIn .Header__homeNavbarFixed .Header__searchSubCont {
            display: flex !important;
        }

        .TicketDetailRightContainer2__wrapper span svg,
        .TicketDetailRightContainer2__wrapper .StatusPopup__select:after,
        .TicketDetailRightContainer2__wrapper .StatusPopup__statusValue:after {
            display: none;
        }

        .TicketDetailRightContainer2__wrapper span.Info__tooltipIcon svg {
            display: block;
        }

        .TicketDetailRightContainer2__wrapper .PickListField__container {
            pointer-events: none;
        }

        .Header__logotxt {
            display: none;
        }

        .DottedMenu__dottedIcon.commonStyle__cursor {
            display: none;
        }

        .signin .Signin__titleSign,
        .ForgetPasswordContainer__titleSign {
            position: relative;
        }

        .signin .Signin__userSigin:nth-child(1) .Signin__titleSign::before,
        .forgetPwd .ForgetPasswordContainer__userSigin:nth-child(1) .ForgetPasswordContainer__titleSign::before {
            content: "View Your Previous Submissions?";
            position: absolute;
            top: 0px;
            left: 0px;
            background-color: #fff;
            padding: 0px 0px;
            width: 232px;
        }

        .signin .Signin__userSigin:nth-child(1) span a,
        .forgetPwd .ForgetPasswordContainer__userSigin:nth-child(1) span a {
            margin-left: 153px;
        }

        .signin .Signin__userSigin:nth-child(1) .Signin__descriSingn {
            position: relative;
        }

        .signin .Signin__userSigin:nth-child(1) .Signin__descriSingn::before {
            left: 0px;
            top: 0px;
            position: absolute;
            background-color: #fff;
            content: "Create an account to view your open Service Requests as well as previously resolved Service Requests.";
        }

        .Upload__overflow.commonStyle__inlineBlock.commonStyle__inlineBlock::after {
            font-size: 13px;
            width: 325px !important;
        }

        .TicketFormLeftContainer__part {
            display: none !important;
        }

        #portal_tabCases {
            display: none !important;
        }

        .Header__nav li:nth-last-child(2) {
            display: none !important;
        }

        .Header__nav li:last-child {
            display: none !important;
        }

        #portal_tabaddcases a {
            background: #2567FF !important;
            color: white !important;
            padding: 8px 15px !important;
            border-radius: 5px !important;
            font-weight: bold !important;
        }

        #portal_tabaddcases a:hover {
            background: #1e4ed8 !important;
        }

        a[href*="portal.guardhomewarranty.com/claim/submit/"] {
            pointer-events: auto !important;
            cursor: pointer !important;
        }

        .Signin__loginBox {
            display: none !important;
        }

        .ErrorPageNew__container {
            display: none !important;
        }
    </style>
</head>
<body>
    <div class="main-content">
        <div class="redirect-card">
            <h1 class="inline-header">
                <span class="inline-icon">🚀</span>
                We've Moved!
            </h1>
            <p>Our claim submission system has moved to a new and improved portal for better service and faster processing.</p>
            <a href="https://portal.guardhomewarranty.com/claim/submit/" class="portal-button" id="portalButton">
                🎯 Submit Claim on New Portal
            </a>
            
            <div class="highlight" style="margin-top: 2rem">
                <strong>New Claims Portal URL:</strong><br />
                <code>portal.guardhomewarranty.com/claim/submit</code>
            </div>
            
            <!-- Additional Info -->
            <div class="highlight" style="margin-top: 2rem">
                <p><strong>Want to view past tickets or respond to active ones?</strong></p>
                <ul>
                    <li>✅ Go to <a href="https://portal.guardhomewarranty.com" target="_blank" rel="noopener noreferrer">portal.guardhomewarranty.com</a> and sign into your account.</li>
                    <li>✅ You can also reply directly to our email updates — your response will automatically attach to your ticket.</li>
                    <li>⚠️ If you don't yet have a portal account, register your policy first using the link below.</li>
                </ul>
                <div style="margin-top: 1rem; text-align: center">
                    <a href="https://portal.guardhomewarranty.com/sign-up/homeowner/search/" class="portal-button" style="font-size: 1rem; padding: 0.875rem 1.5rem">
                        📝 Register Your Policy
                    </a>
                </div>
            </div>
            
            <!-- Features -->
            <h2 class="section-heading">🌟 Benefits of the New Portal</h2>
            
            <div class="features">
                <div class="feature">
                    <div class="feature-title">
                        <span class="feature-icon">⚡</span>
                        <h3>Faster Processing</h3>
                    </div>
                    <p>Submit and track your service requests with improved speed and efficiency</p>
                </div>
                <div class="feature">
                    <div class="feature-title">
                        <span class="feature-icon">📱</span>
                        <h3>Mobile Friendly</h3>
                    </div>
                    <p>Access your account and submit claims from any device, anywhere</p>
                </div>
                <div class="feature">
                    <div class="feature-title">
                        <span class="feature-icon">🔒</span>
                        <h3>Enhanced Security</h3>
                    </div>
                    <p>Your personal information is protected with the latest security measures</p>
                </div>
            </div>
        </div>
    </div>
</body>
</html>
