:root{

    --primary:#C41E1E;
    --primary-dark:#A31616;
    --primary-light:#D93333;

    --dark:#0B0B0D;
    --darker:#050506;

    --light:#F5F5F5;

    --gray:#9CA3AF;

    --white:#FFFFFF;

    --radius:14px;

    --transition:.3s;

}

html{
    scroll-behavior:smooth;
}

/* Reset */

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

/* Page */

body{
    font-family:Inter, sans-serif;
    background:var(--dark);
    color:var(--white);
}

/* BRAND TYPOGRAPHY */

h1,
h2,
.logo,
.price h3{

    font-family:"Michroma", sans-serif;

    font-weight:400;

    letter-spacing:.5px;

}

h3,
h4{

    font-family:Inter, sans-serif;

}

/* Global */

section{

    position:relative;

}

/* NAVIGATION */

nav{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:14px 70px;

    position:sticky;

    top:0;

    z-index:1000;

    background:rgba(255,255,255,.97);

    backdrop-filter:blur(16px);

    border-bottom:1px solid rgba(0,0,0,.10);

    box-shadow:0 4px 20px rgba(0,0,0,.08);

}

.logo{

    display:flex;

    align-items:center;

}

.logo a{

    display:block;

}

.logo img{

    display:block;

    width:175px;

    height:65px;

    object-fit:contain;

    object-position:left center;

    transition:.35s ease;

}

.logo img:hover{

    transform:scale(1.03);

}

nav ul{

    display:flex;

    align-items:center;

    list-style:none;

}

nav li{

    margin-left:36px;

}

nav a{

    color:var(--dark);

    text-decoration:none;

    font-weight:700;

    transition:.3s;

    position:relative;

}

nav a::after{

    content:"";

    position:absolute;

    left:0;

    bottom:-8px;

    width:0;

    height:2px;

    background:var(--primary-dark);

    transition:.3s;

}

nav a:hover{

    color:var(--primary-dark);

}

nav a:hover::after{

    width:100%;

}

/* Hero */

.hero{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:110px 20px;

    background:linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.65)),
        url("images/hero.jpg");

    background-size:cover;
    background-position:center;

}

.hero-content{

    max-width:900px;

    width:100%;

    margin:auto;

}

.hero h1{

    font-size:72px;

    line-height:1.1;

    margin:35px 0 25px;

}

.hero h1 span{

    color:var(--primary-dark);

}

.hero p{

    max-width:760px;

    margin:0 auto;

    color:#CBD5E1;

    font-size:24px;

    line-height:1.7;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    margin-top:35px;

}

.primary-btn{

    display:inline-block;

    background:linear-gradient(
        135deg,
        var(--primary-dark),
        var(--primary)
    );

    color:var(--white);

    border:none;

    padding:18px 30px;

    border-radius:12px;

    font-size:18px;

    font-weight:700;

    cursor:pointer;

    text-decoration:none;

    text-align:center;

    transition:.35s;

    box-shadow:0 15px 35px rgba(242,13,26,.30);

}

.primary-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 20px 45px rgba(242,13,26,.42);

}

.secondary-btn{

    background:transparent;

    color:var(--white);

    border:2px solid var(--primary-dark);

    padding:18px 0;

    border-radius:10px;

    cursor:pointer;

    font-size:19px;

    display:inline-block;


}

.secondary-btn:hover{

    background:var(--primary-dark);

    transform:translateY(-4px);

}

.primary-btn,
.secondary-btn{

    text-decoration:none;

    width:260px;

    text-align:center;

}

/* SERVICES */

.services{

    background:var(--light);

    color:var(--dark);

    padding:100px 40px;

    text-align:center;

}

.services h2{

    font-size:48px;

    margin-bottom:20px;

}

.services-text{

    color:var(--dark);

    font-size:20px;

    margin-bottom:60px;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    max-width:1200px;

    margin:auto;

}

.service-card{

    background:var(--primary-dark);

    border-radius:18px;

    padding:45px;

    transition:.35s;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.service-card:hover{

    transform:translateY(-12px) scale(1.02);

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.service-icon{

    font-size:60px;

    margin-bottom:25px;

}

.service-card h3{
    font-size:28px;
    margin-bottom:20px;
    color:var(--light);
}

.service-card p{

    color:var(--light);

    line-height:1.8;

}

/* PORTFOLIO */

.portfolio{

    background:var(--dark);

    color:var(--white);

    padding:100px 40px;

    text-align:center;

}

.portfolio h2{

    font-size:48px;

    margin-bottom:20px;

}

.portfolio-text{

    color:var(--light);

    font-size:20px;

    margin-bottom:60px;

}

.portfolio-grid{

    display:grid;

    grid-template-columns:repeat(3, 1fr);

    gap:35px;

    max-width:1200px;

    margin:60px auto 0;

}

.project-card{

    background:#ffffff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    display:flex;

    flex-direction:column;

    transition:.35s ease;

    height:100%;

}

.portfolio-more{

    display:flex;

    justify-content:center;

    align-items:center;

    width:100%;

    margin-top:60px;

}

.portfolio-more-button{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    padding:16px 36px;

    background:transparent;

    color:var(--primary-dark);

    border:2px solid var(--primary-dark);

    border-radius:12px;

    font-weight:700;

    text-decoration:none;

    transition:.3s ease;

}

.portfolio-more-button:hover{

    background:var(--primary-dark);

    color:var(--white);

    transform:translateY(-4px);

    box-shadow:0 12px 30px rgba(242,13,26,.30);

}

.project-actions{

    display:flex;

    flex-direction:column;

    gap:12px;

    margin-top:auto;

    padding-top:25px;

}

.project-secondary-button{

    display:inline-block;

    width:100%;

    padding:14px;

    border:2px solid var(--primary-dark);

    border-radius:10px;

    color:var(--primary-dark);

    text-align:center;

    text-decoration:none;

    font-weight:700;

    transition:.3s ease;

}

.project-secondary-button:hover{

    background:var(--primary-dark);

    color:var(--white);

    transform:translateY(-3px);

}

.project-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.30);

}

.project-card img{

    width:100%;

    height:260px;

    object-fit:cover;

    object-position:top;

    display:block;

}

.project-info{

    display:flex;

    flex-direction:column;

    flex:1;

    padding:28px;

}

.project-info h3{

    color:#111827;

    margin-top:8px;

    margin-bottom:18px;

    font-size:28px;

    font-weight:700;

}

.project-info p{

    color:#4B5563;

    line-height:1.7;

    margin-bottom:22px;

}

.project-tags{

    display:flex;

    flex-wrap:wrap;

    justify-content:center;

    align-items:flex-start;

    gap:10px;

    margin:25px 0;

    min-height:90px;

}

.project-tags span{

    background:rgba(242,13,26,.10);

    color:var(--primary-dark);

    border:1px solid rgba(242,13,26,.25);

    padding:8px 14px;

    border-radius:999px;

    font-size:14px;

    font-weight:700;

}

.project-button{

    display:block;

    width:100%;

    background:var(--primary-dark);

    color:var(--white);

    padding:15px 20px;

    border-radius:10px;

    text-align:center;

    text-decoration:none;

    font-weight:700;

    transition:.3s ease;

}

.project-button:hover{

    background:var(--primary);

    transform:translateY(-3px);

}

.project-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(0,0,0,.30);

}

.project-actions{

    display:flex;

    flex-direction:column;

    gap:12px;

    margin-top:auto;

}

.project-secondary-button{

    display:block;

    width:100%;

    background:transparent;

    color:var(--primary-dark);

    border:2px solid var(--primary-dark);

    padding:13px 20px;

    border-radius:10px;

    text-align:center;

    text-decoration:none;

    font-weight:700;

    transition:.3s ease;

}

.project-secondary-button:hover{

    background:var(--primary-dark);

    color:var(--white);

    transform:translateY(-3px);

}

/* WHY US */

.why-us{

    background:var(--light);

    padding:100px 40px;

    text-align:center;

}

.why-us h2{

    font-size:48px;

    margin-bottom:60px;

    color:var(--dark);

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    max-width:1100px;

    margin:auto;

}

.why-card{

    background:var(--dark);

    padding:40px;

    border-radius:18px;

}

.why-card h3{

    color:var(--light);

    margin-bottom:20px;

    font-size:28px;

}

.why-card p{

    color:var(--light);

    line-height:1.8;

}

/* CALL TO ACTION */

.cta{

    background:var(--primary-dark);

    color:var(--white);

    text-align:center;

    padding:100px 30px;

}

.cta h2{

    font-size:52px;

    margin-bottom:25px;

}

.cta p{

    font-size:22px;

    max-width:700px;

    margin:0 auto 40px;

    line-height:1.7;

}

.cta-button{

    display:inline-block;

    background:var(--light);

    color:var(--primary-dark);

    padding:18px 40px;

    border-radius:12px;

    text-decoration:none;

    font-size:20px;

    font-weight:bold;

    transition:.3s;

}

.cta-button:hover{

    transform:scale(1.05);

}

/* FOOTER */

footer{

    background:var(--darker);

    color:var(--white);

    padding:70px 40px 30px;

}

.footer-container{

    display:grid;

    grid-template-columns:2fr 1fr 1fr;

    gap:60px;

    max-width:1200px;

    margin:auto;

}

.footer-logo h2{

    font-size:42px;

    font-weight:700;

    margin-bottom:18px;

}

.footer-nor{

    color:#FFFFFF;

}

.footer-loon{

    color:var(--primary-dark);

}

.footer-logo p{

    color:var(--gray);

    line-height:1.8;

}

.footer-links{

    display:flex;

    flex-direction:column;

}

.footer-links h3{

    margin-bottom:20px;

}

.footer-links a{

    color:var(--gray);

    text-decoration:none;

    margin-bottom:12px;

}

.footer-links a:hover{

    color:var(--white);

}

.footer-contact h3{

    margin-bottom:20px;

}

.footer-contact p{

    color:var(--gray);

    margin-bottom:12px;

}

footer hr{

    margin:50px auto 30px;

    border:none;

    border-top:1px solid var(--gray);

    max-width:1200px;

}

.copyright{

    text-align:center;

    color:var(--gray);

}

/* ==========================
   MOBILE RESPONSIVE
========================== */

@media (max-width: 900px){

    /* Navigation */

    nav{

        flex-direction:column;

        padding:20px;

    }

    nav ul{

        flex-direction:column;

        align-items:center;

        margin-top:20px;

    }

    nav li{

        margin:10px 0;

    }

    /* Hero */

    .hero h1{

        font-size:42px;

    }

    .hero p{

        font-size:20px;

    }

    .hero-buttons{

        flex-direction:column;

        align-items:center;

    }

    .primary-btn,
    .secondary-btn{

        width:250px;

    }

    /* Services */

    .services-grid{

        grid-template-columns:1fr;

    }

    /* Portfolio */

    .portfolio-grid{

        grid-template-columns:1fr;

    }

    /* Why Us */

    .why-grid{

        grid-template-columns:1fr;

    }

    /* Footer */

    .footer-container{

        grid-template-columns:1fr;

        text-align:center;

    }

    .testimonial-grid{

      grid-template-columns:1fr;

     }

}

/* FADE IN */

.fade{

    opacity:1;

    transform:none;

}

.fade.show{

    opacity:1;

}

/* HERO BADGE */

.hero-badge{

    display:inline-block;

    background:rgba(242,13,26,.15);

    border:1px solid var(--primary-dark);

    color:var(--primary-dark);

    padding:10px 22px;

    border-radius:999px;

    margin-bottom:35px;

    font-size:15px;

    font-weight:600;

}

.hero-stats{

    display:flex;

    justify-content:center;

    gap:30px;

    margin-top:50px;

    margin-bottom:40px;

}

.hero-stats div{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(12px);

    border:1px solid rgba(255,255,255,.12);

    border-radius:16px;

    padding:25px 35px;

    min-width:190px;

    transition:.35s;

}

.hero-stats div:hover{

    transform:translateY(-8px);

    border-color:var(--primary-dark);

}

.hero-stats h3{

    color:var(--white);

    font-size:28px;

    margin-bottom:8px;

}

.hero-stats p{

    color:#CBD5E1;

    font-size:15px;

}

/* NAV BUTTON */

.nav-button{

    display:inline-block;

    background:var(--primary-dark);

    color:var(--white);

    padding:14px 26px;

    border-radius:10px;

    font-weight:700;

    box-shadow:0 10px 25px rgba(242,13,26,.25);

}

.nav-button:hover{

    background:var(--primary);

    color:var(--white);

    transform:translateY(-3px);

    box-shadow:0 16px 35px rgba(242,13,26,.35);

}

.nav-button::after{

    display:none;

}

.about-story{

    background:var(--light);

    color:var(--dark);

    padding:100px 40px;

}

.container{

    max-width:1100px;

    margin:auto;

}

.about-story h2{

    font-size:48px;

    margin-bottom:30px;

}

.about-story p{

    font-size:20px;

    line-height:1.8;

    color:var(--gray);

}

.contact-section{

    background:var(--light);

    padding:100px 40px;

}

.contact-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:60px;

    max-width:1200px;

    margin:auto;

}

.contact-info h2,
.contact-form h2{

    color:var(--darker);

    margin-bottom:20px;

}

.contact-info p{

    color:var(--dark);

    line-height:1.8;

    margin-bottom:20px;

}

.contact-item{

    margin-top:30px;

}

.contact-item h3{

    color:var(--dark);

    margin-bottom:8px;

}

.contact-form form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.contact-form input,
.contact-form textarea{

    padding:16px;

    border:1px solid #ddd;

    border-radius:10px;

    font-size:16px;

    font-family:inherit;

}

.contact-form textarea{

    resize:vertical;

}

/* TESTIMONIALS */

.testimonials{

    background:var(--light);

    padding:100px 40px;

    text-align:center;

}

.testimonials h2{

    font-size:48px;

    color:var(--dark);

    margin-bottom:20px;

}

.testimonial-intro{

    color:var(--gray);

    font-size:20px;

    margin-bottom:60px;

}

.testimonial-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.testimonial-card{

    background:var(--white);

    padding:35px;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.3s;

}

.testimonial-card:hover{

    transform:translateY(-8px);

}

.testimonial-card p{

    color:var(--gray);

    line-height:1.8;

    margin-bottom:20px;

}

.testimonial-card h4{

    color:var(--dark);

}

/* FAQ */

.faq{

    background:var(--light);

    padding:100px 40px;

}

.faq h2{

    text-align:center;

    color:var(--dark);

    font-size:48px;

    margin-bottom:60px;

}

.faq-item{

    background:var(--white);

    border-radius:16px;

    padding:30px;

    margin-bottom:25px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.faq-item h3{

    color:var(--dark);

    margin-bottom:15px;

}

.faq-item p{

    color:var(--gray);

    line-height:1.8;

}

/* ==========================
   PROCESS SECTION
========================== */

.process{

    background:var(--dark);

    color:var(--light);

    padding:100px 40px;

    text-align:center;

}

.process h2{

    font-size:48px;

    margin-bottom:20px;

}

.process h3{

    color:var(--dark);

    font-size:28px;

    margin-bottom:20px;

}

.process p{

    color:var(--gray);

    font-size:20px;

    margin-bottom:60px;

}

.process-text{

    max-width:700px;

    margin:0 auto 60px;

    color:var(--light);

    font-size:20px;

}

.process-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    max-width:1200px;

    margin:auto;

}

.process-card{

    background:var(--light);

    padding:40px;

    border-radius:18px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.3s;

}

.process-card:hover{

    transform:translateY(-8px);

}

.process-number{

    width:60px;

    height:60px;

    margin:0 auto 25px;

    border-radius:50%;

    background:var(--primary-dark);

    color:var(--light);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:28px;

    font-weight:700;

}

.faq{

    background:var(--dark);

    color:var(--light);

    padding:100px 40px;

}

.faq h2{

    color:var(--light);

    text-align:center;

    font-size:48px;

    margin-bottom:60px;

}

.faq-item{

    max-width:900px;

    margin:0 auto 25px;

    background:white;

    padding:30px;

    border-radius:18px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.faq-item h3{

    margin-bottom:15px;

    font-size:24px;

}

.faq-item p{

    color:var(--dark);

    line-height:1.8;

}

/* ==========================
   INDUSTRIES
========================== */

.industries{

    background:var(--dark);

    color:var(--light);

    text-align:center;

    padding:100px 40px;

}

.industries h2{

    font-size:48px;

    margin-bottom:20px;

}

.industries-text{

    max-width:750px;

    margin:0 auto 60px;

    font-size:20px;

    color:var(--light);

    line-height:1.8;

}

.industries-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    max-width:1100px;

    margin:auto;

}

.industry-card{

    background:white;

    border-radius:18px;

    padding:40px 20px;

    font-size:50px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:all .35s ease;

}

.industry-card h3{

    margin-top:20px;

    font-size:24px;

    color:var(--dark);

}

.industry-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 40px rgba(0,0,0,.15);

}

.form-group{

    color:var(--dark);  

    display:flex;

    flex-direction:column;

    margin-bottom:25px;

}

.form-group label{

    margin-bottom:8px;

    font-weight:600;

}

.form-group input,
.form-group select,
.form-group textarea{

    padding:16px;

    border:1px solid var(--dark);

    border-radius:10px;

    font-size:16px;

    font-family:inherit;

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{

    outline:none;

    border-color:var(--primary-dark);

    box-shadow:0 0 0 3px rgba(242,13,26,.15);

}

/* ==========================
   PRICING PAGE
========================== */

.pricing-hero{

    min-height:55vh;

    background:
    linear-gradient(rgba(17,24,39,.78),
    rgba(17,24,39,.78)),
    url("images/hero.jpg");

    background-size:cover;

    background-position:center;

    display:flex;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:40px;

}

.pricing-overlay{

    max-width:850px;

}

.pricing-hero h1{

    color:white;

    font-size:64px;

    margin-bottom:25px;

}

.pricing-hero p{

    color:#E5E7EB;

    font-size:22px;

    line-height:1.7;

}

.pricing{

    background:#F8FAFC;

    padding:100px 40px;

}

.pricing-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    max-width:1200px;

    margin:auto;

}

.pricing-card{

    background:var(--dark);

    border-radius:18px;

    padding:45px;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.pricing-card:hover{

    transform:translateY(-12px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.featured{

    border:3px solid var(--primary-dark);

}

.price{

    color:var(--primary-dark);

    font-size:36px;

    font-weight:700;

    margin:25px 0;

}

.pricing-card ul{

    list-style:none;

    margin-bottom:35px;

}

.pricing-card li{

    margin-bottom:15px;

    color:var(--light);

}

.custom-quote{

    background:var(--dark);

    color:white;

    text-align:center;

    padding:100px 30px;

}

.custom-quote h2{

    font-size:48px;

    margin-bottom:20px;

}

.custom-quote p{

    max-width:700px;

    margin:0 auto 40px;

    color:#D1D5DB;

    font-size:20px;

    line-height:1.8;

}

/* ==========================
   MOBILE MENU
========================== */

.menu-toggle{

    display:none;

    width:46px;
    height:46px;

    padding:10px;

    border:none;

    background:transparent;

    cursor:pointer;

    position:relative;

    z-index:1100;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    gap:6px;

    appearance:none;

    -webkit-tap-highlight-color:transparent;

}

.menu-toggle span{

    display:block;

    width:27px;

    height:3px;

    background:var(--dark);

    border-radius:999px;

    transform-origin:center;

    transition:
        transform .3s ease,
        opacity .2s ease;

}

/* Turn hamburger into X */

.menu-toggle.active span:nth-child(1){

    transform:translateY(9px) rotate(45deg);

}

.menu-toggle.active span:nth-child(2){

    opacity:0;

}

.menu-toggle.active span:nth-child(3){

    transform:translateY(-9px) rotate(-45deg);

}

@media (max-width:900px){

    nav{

        flex-direction:row;

        justify-content:space-between;

        align-items:center;

        padding:20px;

    }

    .menu-toggle{

        display:flex;

    }

    #nav-links{

        display:none;

        flex-direction:column;

        position:absolute;

        top:90px;

        left:0;

        width:100%;

        background:var(--white);

        padding:20px 0;

        text-align:center;

    }

    #nav-links.active{

        display:flex;

    }

    #nav-links li{

        margin:18px 0;

    }

}

@media (min-width:901px){

    #nav-links{

        display:flex !important;

        position:static;

        flex-direction:row;

        background:none;

        padding:0;

        width:auto;

    }

}

/* ==========================================
   FINAL MOBILE FIXES
   Paste at the VERY BOTTOM of style.css
========================================== */

@media (max-width:900px){

    html,
    body{
        overflow-x:hidden;
    }

    img{
        max-width:100%;
        height:auto;
    }

    /* Hero */

    .hero-buttons{
        flex-direction:column;
        align-items:center;
        gap:15px;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
        max-width:280px;
    }

    .hero-stats{
        
        display:grid;
        
        grid-template-columns:1fr;
        
        gap:15px;
    }

    .hero-stats div{
        
        min-width:0;
        
        width:100%;
        
        padding:20px;
    }

    /* All grids become one column */

    .services-grid,
    .portfolio-grid,
    .why-grid,
    .process-grid,
    .pricing-grid,
    .testimonial-grid,
    .contact-grid{

        grid-template-columns:1fr;

    }

    /* Industries = 2 cards per row */

    .industries-grid{

        grid-template-columns:repeat(2,1fr);

        gap:20px;

    }

    .industry-card{

        width:100%;

        padding:25px 15px;

        font-size:40px;

    }

    .industry-card h3{

        font-size:22px;

    }

    /* Project cards */

    .project-card{

        width:100%;

    }

    .project-card img{

        height:220px;

    }

    .project-tags{

        min-height:auto;

    }

    /* Pricing */

    .pricing-card{

        padding:30px;

    }

    /* Contact */

    .contact-grid{

        gap:40px;

    }

    /* Industries */

    .industries-grid{

        grid-template-columns:repeat(2,1fr);

        gap:18px;

    }

    .industry-card{

        padding:25px 15px;

        font-size:36px;

    }

    .industry-card h3{

        font-size:18px;

    }

}

.faq-item a{

    color:var(--primary-dark);

    font-weight:700;

    text-decoration:none;

}

.faq-item a:hover{

    text-decoration:underline;

}

/* ==========================
   THANK YOU PAGE
========================== */

.thank-you-page{
    min-height:85vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:90px 30px;
    background:
        linear-gradient(rgba(15,23,42,.88), rgba(15,23,42,.88)),
        url("images/hero.jpg");
    background-size:cover;
    background-position:center;
}

.thank-you-card{
    width:100%;
    max-width:850px;
    background:rgba(17,24,39,.95);
    border:1px solid rgba(255,255,255,.12);
    border-radius:24px;
    padding:60px;
    text-align:center;
    box-shadow:0 30px 80px rgba(0,0,0,.40);
}

.success-icon{
    width:90px;
    height:90px;
    margin:0 auto 25px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:var(--primary-dark);
    color:var(--white);
    font-size:48px;
    font-weight:800;
}

.thank-you-label{
    color:var(--primary-dark);
    font-size:15px;
    font-weight:700;
    text-transform:uppercase;
    letter-spacing:2px;
    margin-bottom:18px;
}

.thank-you-card h1{
    color:var(--white);
    font-size:56px;
    line-height:1.15;
    margin-bottom:25px;
}

.thank-you-message{
    max-width:680px;
    margin:0 auto 45px;
    color:#CBD5E1;
    font-size:20px;
    line-height:1.8;
}

.thank-you-details{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:25px;
    margin-bottom:45px;
    text-align:left;
}

.thank-you-detail{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    padding:28px;
}

.thank-you-detail h3{
    color:var(--white);
    font-size:21px;
    margin-bottom:12px;
}

.thank-you-detail p{
    color:#CBD5E1;
    line-height:1.7;
}

.thank-you-detail a{
    color:var(--primary-dark);
    font-weight:700;
    text-decoration:none;
}

.thank-you-detail a:hover{
    text-decoration:underline;
}

.thank-you-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

@media (max-width:700px){

    .thank-you-page{
        padding:60px 20px;
    }

    .thank-you-card{
        padding:40px 22px;
    }

    .thank-you-card h1{
        font-size:38px;
    }

    .thank-you-message{
        font-size:18px;
    }

    .thank-you-details{
        grid-template-columns:1fr;
    }

    .thank-you-buttons{
        flex-direction:column;
        align-items:center;
    }
}

#form-status{

    margin-top:18px;

    color:#DC2626;

    font-weight:600;

    line-height:1.5;

}

.contact-form button:disabled{

    opacity:.7;

    cursor:not-allowed;

    transform:none;

}

/* ==========================
   SERVICES PAGE IMPROVEMENTS
========================== */

.services-page{

    background:var(--dark);

    padding:110px 40px 120px;

}

.services-page .container{

    max-width:1200px;

    margin:0 auto;

}

.services-page h2{

    color:var(--white);

    text-align:center;

    font-size:58px;

    margin-bottom:75px;

    line-height:1.2;

}

.services-page .services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:20px;

}

.services-page .service-card{

    background:#F5F5F5;

    color:var(--dark);

    border:3px solid transparent;

    border-radius:18px;

    padding:45px 35px;

    box-shadow:0 14px 35px rgba(0,0,0,.25);

    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;

}

.services-page .service-card:hover{

    transform:translateY(-8px);

    border-color:var(--primary-dark);

    box-shadow:
        0 0 30px rgba(242,13,26,.35),
        0 22px 50px rgba(0,0,0,.35);

}

.services-page .service-card h3{

    color:var(--dark);

    font-size:27px;

    margin-bottom:18px;

}

.services-page .service-card p{

    color:#4B5563;

    line-height:1.8;

}

.services-page .service-icon{

    font-size:55px;

    margin-bottom:24px;

}

@media (max-width:900px){

    .services-page{

        padding:80px 20px;

    }

    .services-page h2{

        font-size:42px;

        margin-bottom:55px;

    }

    .services-page .services-grid{

        grid-template-columns:1fr;

        gap:25px;

    }

    .services-page .service-card{

        padding:35px 25px;

    }

}

/* ==========================================
   GLOBAL NORLOON CARD STYLE
========================================== */

.service-card,
.project-card,
.why-card,
.process-card,
.testimonial-card,
.faq-item,
.industry-card,
.pricing-card,
.hero-stats > div,
.thank-you-detail{

    border:2px solid rgba(242,13,26,.45);

    transition:
        transform .35s ease,
        border-color .35s ease,
        box-shadow .35s ease;

}


/* Card hover effect */

.service-card:hover,
.project-card:hover,
.why-card:hover,
.process-card:hover,
.testimonial-card:hover,
.faq-item:hover,
.industry-card:hover,
.pricing-card:hover,
.hero-stats > div:hover,
.thank-you-detail:hover{

    transform:translateY(-7px);

    border-color:var(--primary-dark);

    box-shadow:
        0 0 22px rgba(242,13,26,.28),
        0 18px 45px rgba(0,0,0,.28);

}


/* Keep the featured pricing card more noticeable */

.pricing-card.featured{

    border:3px solid var(--primary-dark);

    box-shadow:
        0 0 24px rgba(242,13,26,.20),
        0 14px 35px rgba(0,0,0,.20);

}


/* Reduce movement on phones and tablets */

@media (max-width:900px){

    .service-card:hover,
    .project-card:hover,
    .why-card:hover,
    .process-card:hover,
    .testimonial-card:hover,
    .faq-item:hover,
    .industry-card:hover,
    .pricing-card:hover,
    .hero-stats > div:hover,
    .thank-you-detail:hover{

        transform:translateY(-4px);

    }

}

/*=========================
LEGAL PAGES
=========================*/

.legal-page{

    background:#090909;

    min-height:100vh;

    padding:120px 25px;

}

.legal-container{

    max-width:900px;

    margin:auto;

    background:#f5f5f5;

    border-radius:20px;

    padding:60px;

    border:2px solid rgba(255,0,0,.35);

}

.legal-container h1{

    font-size:52px;

    margin-bottom:15px;

    color:#111;

}

.legal-updated{

    color:#666;

    margin-bottom:40px;

}

.legal-container h2{

    margin-top:35px;

    color:#111;

}

.legal-container p{

    color:#555;

    line-height:1.8;

}

.legal-container a{

    color:#e11d2e;

    font-weight:700;

}

/* ==========================
   404 PAGE
========================== */

.error-page{

    min-height:85vh;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:90px 25px;

    text-align:center;

    background:
        linear-gradient(
            rgba(5,5,6,.92),
            rgba(5,5,6,.92)
        ),
        url("images/hero.jpg");

    background-size:cover;

    background-position:center;

}

.error-card{

    width:100%;

    max-width:760px;

    padding:60px 40px;

    background:rgba(11,11,13,.96);

    border:2px solid rgba(242,13,26,.55);

    border-radius:24px;

    box-shadow:
        0 0 30px rgba(242,13,26,.18),
        0 30px 80px rgba(0,0,0,.45);

}

.error-number{

    color:var(--primary-dark);

    font-family:"Michroma", sans-serif;

    font-size:92px;

    line-height:1;

    margin-bottom:20px;

}

.error-card h1{

    color:var(--white);

    font-family:"Michroma", sans-serif;

    font-size:48px;

    margin-bottom:24px;

}

.error-message{

    max-width:600px;

    margin:0 auto 40px;

    color:#CBD5E1;

    font-size:19px;

    line-height:1.8;

}

.error-buttons{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:18px;

}

@media (max-width:700px){

    .error-card{

        padding:45px 22px;

    }

    .error-number{

        font-size:68px;

    }

    .error-card h1{

        font-size:34px;

    }

    .error-buttons{

        flex-direction:column;

        align-items:center;

    }

}

/* ==========================
   FOOTER LEGAL LINKS
========================== */

.footer-legal{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:24px;

    flex-wrap:wrap;

    margin:25px 0 15px;

}

.footer-legal a{

    color:#9CA3AF;

    text-decoration:none;

    font-size:15px;

    transition:.3s ease;

}

.footer-legal a:hover{

    color:var(--primary-dark);

}

/* ==========================
   DEMO WEBSITE NOTICE
========================== */

.demo-notice{

    max-width:900px;

    margin:20px auto 50px;

    padding:16px 24px;

    background:rgba(255,255,255,.05);

    border:2px solid rgba(242,13,26,.55);

    border-radius:14px;

    color:#f5f5f5;

    text-align:center;

    font-size:17px;

    line-height:1.7;

}

.demo-notice span{

    color:var(--primary-dark);

    font-size:22px;

    margin-right:8px;

}

.demo-notice strong{

    color:#ffffff;

}

/* ==========================================
   AI AND LLM INFORMATION PAGE
========================================== */

.ai-info-hero{

    min-height:520px;

    display:flex;

    align-items:center;

    justify-content:center;

    padding:100px 30px;

    text-align:center;

    background:
        linear-gradient(
            rgba(5,5,6,.90),
            rgba(5,5,6,.94)
        ),
        url("images/hero.jpg");

    background-size:cover;

    background-position:center;

}

.ai-info-hero-content{

    width:100%;

    max-width:1000px;

}

.ai-info-label{

    display:inline-block;

    margin-bottom:25px;

    padding:10px 18px;

    color:#FF4A55;

    background:rgba(242,13,26,.12);

    border:1px solid rgba(242,13,26,.55);

    border-radius:999px;

    font-size:14px;

    font-weight:800;

    letter-spacing:1.5px;

    text-transform:uppercase;

}

.ai-info-hero h1{

    max-width:950px;

    margin:0 auto 28px;

    color:#FFFFFF;

    font-family:"Michroma", sans-serif;

    font-size:52px;

    line-height:1.25;

}

.ai-info-hero-content > p:last-child{

    max-width:820px;

    margin:0 auto;

    color:#CBD5E1;

    font-size:19px;

    line-height:1.8;

}

.ai-info-page{

    padding:100px 25px;

    background:#080809;

}

.ai-info-container{

    max-width:1150px;

    margin:0 auto;

}

.ai-info-section{

    padding:70px 0;

    border-bottom:1px solid rgba(255,255,255,.10);

}

.ai-info-heading{

    display:flex;

    align-items:center;

    gap:20px;

    margin-bottom:40px;

}

.ai-info-number{

    color:var(--primary-dark);

    font-family:"Michroma", sans-serif;

    font-size:16px;

    font-weight:700;

}

.ai-info-heading h2{

    color:#FFFFFF;

    font-family:"Michroma", sans-serif;

    font-size:36px;

    line-height:1.3;

}

.ai-info-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:20px;

}

.ai-info-card{

    min-width:0;

    padding:26px;

    background:#F5F5F5;

    border:2px solid rgba(242,13,26,.38);

    border-radius:16px;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;

}

.ai-info-card:hover{

    transform:translateY(-5px);

    border-color:var(--primary-dark);

    box-shadow:
        0 0 24px rgba(242,13,26,.22),
        0 18px 40px rgba(0,0,0,.28);

}

.ai-info-card-label{

    display:block;

    margin-bottom:10px;

    color:#6B7280;

    font-size:13px;

    font-weight:800;

    letter-spacing:1px;

    text-transform:uppercase;

}

.ai-info-card strong,
.ai-info-card a{

    color:#111827;

    font-size:18px;

    line-height:1.5;

    overflow-wrap:anywhere;

}

.ai-info-card a{

    color:var(--primary-dark);

    font-weight:700;

    text-decoration:none;

}

.ai-info-card a:hover{

    text-decoration:underline;

}

.ai-info-statement{

    margin-top:28px;

    padding:35px;

    background:#111114;

    border-left:5px solid var(--primary-dark);

    border-radius:0 16px 16px 0;

}

.ai-info-statement h3{

    margin-bottom:14px;

    color:#FFFFFF;

    font-size:23px;

}

.ai-info-statement p{

    color:#CBD5E1;

    line-height:1.85;

    margin-bottom:14px;

}

.ai-info-statement p:last-child{

    margin-bottom:0;

}

.ai-value-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:22px;

}

.ai-value-card{

    padding:34px;

    background:#F5F5F5;

    border:2px solid rgba(242,13,26,.38);

    border-radius:18px;

    transition:.3s ease;

}

.ai-value-card:hover{

    transform:translateY(-6px);

    border-color:var(--primary-dark);

    box-shadow:
        0 0 22px rgba(242,13,26,.20),
        0 18px 40px rgba(0,0,0,.30);

}

.ai-value-card h3{

    margin-bottom:14px;

    color:#111827;

    font-size:24px;

}

.ai-value-card p{

    color:#4B5563;

    line-height:1.75;

}

.ai-service-list{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.ai-service-item{

    display:grid;

    grid-template-columns:300px 1fr;

    gap:40px;

    padding:34px;

    background:#F5F5F5;

    border:2px solid rgba(242,13,26,.35);

    border-radius:18px;

}

.ai-service-title{

    display:flex;

    gap:16px;

    align-items:flex-start;

}

.ai-service-title span{

    color:var(--primary-dark);

    font-family:"Michroma", sans-serif;

    font-weight:700;

}

.ai-service-title h3{

    color:#111827;

    font-size:24px;

}

.ai-service-item > p{

    color:#4B5563;

    line-height:1.8;

}

.ai-info-intro{

    max-width:850px;

    margin-bottom:30px;

    color:#CBD5E1;

    font-size:18px;

    line-height:1.8;

}

.ai-check-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:16px;

}

.ai-check-grid > div{

    padding:20px 22px;

    background:#111114;

    color:#E5E7EB;

    border:1px solid rgba(242,13,26,.35);

    border-radius:12px;

    line-height:1.6;

}

.ai-check-grid span{

    margin-right:10px;

    color:var(--primary-dark);

    font-weight:800;

}

.ai-tag-list{

    display:flex;

    flex-wrap:wrap;

    gap:13px;

}

.ai-tag-list span{

    padding:11px 17px;

    color:#FF4A55;

    background:rgba(242,13,26,.10);

    border:1px solid rgba(242,13,26,.42);

    border-radius:999px;

    font-weight:700;

}

.ai-disclosure-card{

    padding:38px;

    background:rgba(242,13,26,.08);

    border:2px solid rgba(242,13,26,.58);

    border-radius:18px;

}

.ai-disclosure-card h3{

    margin-bottom:18px;

    color:#FFFFFF;

    font-size:26px;

}

.ai-disclosure-card p{

    margin-bottom:15px;

    color:#CBD5E1;

    line-height:1.8;

}

.ai-disclosure-card p:last-child{

    margin-bottom:0;

}

.ai-positioning-table{

    overflow:hidden;

    border:2px solid rgba(242,13,26,.38);

    border-radius:16px;

}

.ai-positioning-row{

    display:grid;

    grid-template-columns:1fr 1.5fr;

    background:#F5F5F5;

    border-bottom:1px solid #D1D5DB;

}

.ai-positioning-row:last-child{

    border-bottom:none;

}

.ai-positioning-row span{

    padding:20px 24px;

    color:#374151;

    line-height:1.6;

}

.ai-positioning-row span:first-child{

    color:#111827;

    font-weight:800;

    border-right:1px solid #D1D5DB;

}

.ai-positioning-header{

    background:#171719;

}

.ai-positioning-header span,
.ai-positioning-header span:first-child{

    color:#FFFFFF;

    font-weight:800;

}

.ai-link-list{

    display:flex;

    flex-direction:column;

    gap:13px;

}

.ai-link-list a{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:25px;

    padding:20px 24px;

    background:#F5F5F5;

    border:2px solid rgba(242,13,26,.30);

    border-radius:13px;

    text-decoration:none;

    transition:.3s ease;

}

.ai-link-list a:hover{

    transform:translateX(5px);

    border-color:var(--primary-dark);

}

.ai-link-list span{

    color:#111827;

    font-weight:800;

}

.ai-link-list strong{

    color:var(--primary-dark);

    overflow-wrap:anywhere;

    text-align:right;

}

.ai-category-title{

    margin:38px 0 22px;

    color:#FFFFFF;

    font-size:24px;

}

.ai-info-cta{

    margin-top:80px;

    padding:65px 35px;

    text-align:center;

    background:
        linear-gradient(
            135deg,
            rgba(242,13,26,.16),
            rgba(5,5,6,.96)
        );

    border:2px solid rgba(242,13,26,.55);

    border-radius:24px;

}

.ai-info-cta p{

    margin-bottom:15px;

    color:#FF4A55;

    font-weight:800;

    text-transform:uppercase;

    letter-spacing:1px;

}

.ai-info-cta h2{

    max-width:700px;

    margin:0 auto 30px;

    color:#FFFFFF;

    font-family:"Michroma", sans-serif;

    font-size:38px;

    line-height:1.35;

}

@media (max-width:900px){

    .ai-info-hero{

        min-height:auto;

        padding:80px 22px;

    }

    .ai-info-hero h1{

        font-size:38px;

    }

    .ai-info-page{

        padding:70px 20px;

    }

    .ai-info-grid,
    .ai-value-grid,
    .ai-check-grid{

        grid-template-columns:1fr;

    }

    .ai-service-item{

        grid-template-columns:1fr;

        gap:20px;

    }

    .ai-link-list a{

        flex-direction:column;

        align-items:flex-start;

    }

    .ai-link-list strong{

        text-align:left;

    }

}

@media (max-width:600px){

    .ai-info-hero h1{

        font-size:30px;

    }

    .ai-info-heading{

        align-items:flex-start;

    }

    .ai-info-heading h2{

        font-size:28px;

    }

    .ai-info-section{

        padding:55px 0;

    }

    .ai-positioning-row{

        grid-template-columns:1fr;

    }

    .ai-positioning-row span:first-child{

        border-right:none;

        border-bottom:1px solid #D1D5DB;

    }

    .ai-info-cta{

        padding:48px 22px;

    }

    .ai-info-cta h2{

        font-size:29px;

    }

}

/* LEGAL PAGE LISTS */

.legal-container ul,
.legal-container ol{

    margin:15px 0 24px 24px;

    padding-left:18px;

}

.legal-container li{

    color:#4B5563;

    line-height:1.8;

    margin-bottom:10px;

}

.legal-container strong{

    color:#111827;

}

/* ==========================================
   MOBILE TEXT + PRICING OVERFLOW FIXES
========================================== */

@media (max-width:900px){

    html,
    body{

        width:100%;

        max-width:100%;

        overflow-x:hidden;

    }

    section,
    .container{

        width:100%;

        max-width:100%;

    }


    /* HOME PAGE LARGE HEADINGS */

    .industries h2,
    .why-us h2{

        width:100%;

        max-width:100%;

        padding:0 10px;

        font-size:34px;

        line-height:1.35;

        text-align:center;

        overflow-wrap:anywhere;

        word-break:normal;

    }


    /* BUILT FOR BUSINESSES LIKE YOURS */

    .industries h2{

        font-size:32px;

        margin-left:auto;

        margin-right:auto;

    }


    /* WHAT BUSINESSES WANT */

    .why-us h2{

        font-size:32px;

        margin-left:auto;

        margin-right:auto;

        margin-bottom:50px;

    }


    /* PRICING PAGE */

    .pricing-hero{

        width:100%;

        min-height:auto;

        padding:75px 20px;

    }

    .pricing-overlay{

        width:100%;

        max-width:100%;

    }

    .pricing-hero h1{

        width:100%;

        max-width:100%;

        font-size:38px;

        line-height:1.3;

        overflow-wrap:anywhere;

    }

    .pricing-hero p{

        width:100%;

        max-width:100%;

        font-size:18px;

        line-height:1.7;

    }

    .pricing{

        width:100%;

        padding:75px 18px;

        overflow:hidden;

    }

    .pricing-grid{

        display:grid;

        grid-template-columns:1fr;

        width:100%;

        max-width:100%;

        gap:25px;

        margin:0 auto;

    }

    .pricing-card{

        width:100%;

        max-width:100%;

        min-width:0;

        padding:30px 22px;

        margin:0;

        overflow:hidden;

    }

    .pricing-card h2,
    .pricing-card h3{

        max-width:100%;

        font-size:25px;

        line-height:1.4;

        overflow-wrap:anywhere;

    }

    .pricing-card .price{

        max-width:100%;

        font-size:31px;

        line-height:1.3;

        overflow-wrap:anywhere;

    }

    .pricing-card ul{

        width:100%;

        max-width:100%;

    }

    .pricing-card li{

        width:100%;

        max-width:100%;

        overflow-wrap:anywhere;

        line-height:1.6;

    }

    .pricing-card .primary-btn,
    .pricing-card .secondary-btn{

        width:100%;

        max-width:100%;

    }

}

/* FIX "WHAT BUSINESSES WANT" ON MOBILE */

@media (max-width:900px){

    .testimonials h2{

        width:100%;

        max-width:100%;

        padding:0 12px;

        margin-left:auto;

        margin-right:auto;

        font-size:32px;

        line-height:1.35;

        letter-spacing:0;

        text-align:center;

        overflow-wrap:anywhere;

        word-break:normal;

    }

}

@media (max-width:500px){

    .testimonials h2{

        font-size:27px;

        line-height:1.4;

    }

}

/* ==========================================
   SIMPLIFIED HOMEPAGE
========================================== */

.benefits{

    padding:70px 25px;

    background:#0B0B0D;

}

.benefits-container{

    display:grid;

    grid-template-columns:repeat(3, 1fr);

    gap:25px;

    width:100%;

    max-width:1150px;

    margin:0 auto;

}

.benefit-card{

    padding:32px 26px;

    background:#F5F5F5;

    border:2px solid rgba(242,13,26,.40);

    border-radius:18px;

    text-align:center;

    transition:
        transform .3s ease,
        border-color .3s ease,
        box-shadow .3s ease;

}

.benefit-card:hover{

    transform:translateY(-6px);

    border-color:var(--primary-dark);

    box-shadow:
        0 0 24px rgba(242,13,26,.25),
        0 18px 40px rgba(0,0,0,.30);

}

.benefit-icon{

    margin-bottom:16px;

    font-size:42px;

}

.benefit-card h3{

    margin-bottom:10px;

    color:#111827;

    font-size:23px;

}

.benefit-card p{

    color:#4B5563;

    line-height:1.6;

}

.homepage-section-button{

    display:flex;

    justify-content:center;

    align-items:center;

    width:100%;

    margin-top:50px;

}

@media (max-width:900px){

    .benefits{

        padding:55px 20px;

    }

    .benefits-container{

        grid-template-columns:1fr;

        max-width:600px;

    }

    .benefit-card{

        padding:28px 22px;

    }

}

/* ==========================================
   HOMEPAGE SERVICES CARD POSITIONING
========================================== */

.homepage-services-grid{

    display:grid;

    grid-template-columns:repeat(3, minmax(0, 1fr));

    gap:30px;

    max-width:1200px;

    margin-left:auto;

    margin-right:auto;

}

.homepage-services-grid .service-card{

    width:100%;

    min-width:0;

}


/* First row */

.homepage-service-design{

    grid-column:1;

}

.homepage-service-redesign{

    grid-column:2;

}


/* Second row */

.homepage-service-repairs{

    grid-column:1;

}

.homepage-service-maintenance{

    grid-column:2;

}


/* Center the entire two-column arrangement */

@media (min-width:901px){

    .homepage-services-grid{

        grid-template-columns:repeat(2, minmax(0, 360px));

        justify-content:center;

    }

    .homepage-service-design,
    .homepage-service-repairs{

        grid-column:1;

    }

    .homepage-service-redesign,
    .homepage-service-maintenance{

        grid-column:2;

    }

}


/* Mobile layout */

@media (max-width:900px){

    .homepage-services-grid{

        grid-template-columns:1fr;

        max-width:600px;

    }

    .homepage-service-design,
    .homepage-service-redesign,
    .homepage-service-repairs,
    .homepage-service-maintenance{

        grid-column:auto;

    }

}

/* ==========================
   FOOTER CONTACT LINKS
========================== */

footer a{

    color:var(--primary) !important;

    text-decoration:none;

}

footer a:hover{

    color:var(--primary-light) !important;

}