.elementor-kit-6{--e-global-color-primary:#0FA34A;--e-global-color-secondary:#111111;--e-global-color-text:#222222;--e-global-color-accent:#FFD700;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-6 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ===========================================================
   GLOBAL LAYOUT – ROOFNOW 2-COLUMN PREMIUM LANDING
   =========================================================== */
.roofnow-landing {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    background: #ffffff;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* ===========================================================
   LEFT SIDE CONTENT
   =========================================================== */
.roofnow-left {
    background: #063c00; /* deep green */
    padding: 80px 60px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.roofnow-left h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.roofnow-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    font-size: 22px;
    line-height: 1.6;
}

.roofnow-bullets li {
    margin-bottom: 14px;
}

.roofnow-bottom-text {
    font-size: 18px;
    opacity: 0.9;
}

/* ===========================================================
   RIGHT SIDE FORM AREA
   =========================================================== */
.roofnow-right {
    padding: 70px 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* ===========================================================
   LOGO + SLOGAN
   =========================================================== */
.roofnow-logo-container {
    text-align: center;
    margin-bottom: 10px;
    animation: fadeDown 1.2s ease forwards;
}

.roofnow-logo {
    width: 160px; /* bigger logo */
    animation: floatLogo 4s ease-in-out infinite;
}

.roofnow-slogan {
    font-size: 15px;
    font-weight: 600;
    color: #0d4d00;
    margin-top: 8px;
    letter-spacing: 0.7px;
}

/* Floating animation */
@keyframes floatLogo {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* Fade from top */
@keyframes fadeDown {
    from { opacity: 0; transform: translateY(-15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===========================================================
   TRUST BADGES
   =========================================================== */
.trust-badges {
    text-align: center;
    margin-bottom: 25px;
    color: #444;
    font-size: 14px;
    font-weight: 600;
}

.trust-badges span {
    margin: 0 6px;
    display: inline-block;
}

/* ===========================================================
   FORM CARD
   =========================================================== */
.roofnow-form-card {
    background: #ffffff;
    padding: 30px 35px;
    border-radius: 16px;
    box-shadow: 0 20px 45px rgba(0,0,0,0.14);
    width: 100%;
    max-width: 520px;
    margin: auto;
}

.roofnow-form-card h2 {
    text-align: center;
    font-weight: 800;
    color: #0d4d00;
    font-size: 28px;
    margin-bottom: 20px;
}

.roofnow-form-card form label {
    font-weight: 600;
    margin-top: 14px;
    display: block;
}

.roofnow-form-card form input {
    width: 100%;
    padding: 12px 14px;
    margin-top: 5px;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    background: #f7f7f7;
    transition: 0.25s ease;
}

.roofnow-form-card form input:focus {
    background: #ffffff;
    border-color: #0d4d00;
    box-shadow: 0 0 0 3px rgba(13,77,0,0.20);
    outline: none;
}

/* Submit button */
.roofnow-form-card button {
    width: 100%;
    background: #0d4d00;
    color: white;
    padding: 14px;
    border: none;
    border-radius: 50px;
    margin-top: 25px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.roofnow-form-card button:hover {
    background: #0f5e00;
    transform: translateY(-2px);
}

/* ===========================================================
   ANIMATIONS for LEFT COLUMN TEXT
   =========================================================== */
.fade-in-1 {
    animation: fadeIn 1s ease forwards;
}

.fade-in-2 {
    animation: fadeIn 1.4s ease forwards;
}

.fade-in-3 {
    animation: fadeIn 1.8s ease forwards;
}

.fade-in-4 {
    animation: fadeIn 2.2s ease forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===========================================================
   RESPONSIVE
   =========================================================== */
@media (max-width: 900px) {
    .roofnow-landing {
        grid-template-columns: 1fr;
    }

    .roofnow-left {
        padding: 50px 30px;
        text-align: center;
    }

    .roofnow-right {
        padding: 40px 25px;
    }

    .roofnow-form-card {
        margin-top: 30px;
    }

    .roofnow-logo {
        width: 130px;
    }
}
roofnow-quote-page/* End custom CSS */