﻿/* ========================= */
/* :: COMMON CSS */
/* ========================= */

* {
    box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p {
    margin: 0;
}

body {
    font-family: 'Arimo', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    background-color: #fff;
    color: #333;
}

p {
    font-size: 1.1rem;
    font-family: 'Arimo', sans-serif;
}
    p a {
        font-weight: bold;
        color: #0056b3; /* standard accessible blue */
        text-decoration: none;
        transition: color 0.3s ease, text-decoration 0.3s ease;
    }

        p a:hover,
        p a:focus {
            color: #007bff; /* lighten blue on hover */
            text-decoration: underline;
        }


h1 {
    font-size: 2.6rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

h2 {
    font-size: 2.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

h3 {
    font-size: 1.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

h4 {
    font-size: 1.4rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    background: none;
    border: none;
    cursor: pointer;
}

html {
    scroll-behavior: smooth;
}



/* HEADER / MAINNAV */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: white;
}

.header-top {
    background-color: #ed008c;
    color: white;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    font-family: 'Arimo', sans-serif;
}

.header-phone {
    color: white;
    text-decoration: none;
    margin: 0 1rem;
    font-family: 'Arimo', sans-serif;
    font-weight: 700;
    letter-spacing:1px;
    font-size: 1.2rem;
}

    .header-phone .bi-telephone-fill {
        font-size: 0.9rem;
        color: white;
    }

.header-social {
    color: white;
    text-decoration: none;
    margin: 0 6.25px;
    display: none;
}

    .header-social .fa-brands {
        color: white;
        font-size: 1.2rem;
        opacity: .9;
    }

    .header-social:hover .fa-brands {
        color: white;
        opacity: 1;
    }

.header-main {
    background-color: black; /* fallback */
    background: linear-gradient(to bottom, #363535, black);
    padding: 0rem 0;
}


.header-logo {
    max-height: 80px;
}

/* ===== NAV LINK BASE STYLE ===== */
.header-main .nav-link {
    color: #fff;
    margin-left: 1rem;
    text-transform: uppercase;
    font-family: 'Arimo', sans-serif;
    font-weight:600;
    font-size:.9rem;
    text-decoration: none;
    position: relative;
    padding-bottom: 6px; /* space for underline */
}

    /* ===== UNDERLINE EFFECT (EXCLUDES BUTTON) ===== */
    .header-main .nav-link::after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: 0;
        transform: translateX(-50%) scaleX(0);
        transform-origin: center;
        width: 93%;
        height: 3px;
        background-color: white;
        transition: transform 0.3s ease 0s; /* on hover */
    }

    /* Hover effect - show underline */
    .header-main .nav-link:hover::after {
        transform: translateX(-50%) scaleX(1);
    }

/* Keep underline visible while hovering dropdown */
.navbar-nav .dropdown:hover .nav-link::after {
    transform: translateX(-50%) scaleX(1);
}


/* Don't apply underline to button link */
.nav-quote-btn::after {
    display: none !important;
}

/* Fix text color (your previous color: #white was invalid) */
.header-main .nav-link:hover {
    color: #fff;
}

/* DROPDOWN MENU CENTERED UNDER PARENT */
.header-main .dropdown-menu {
    padding: 0px 0; /* top/bottom 10px, sides 0 */
    left: auto !important;
    transform: none !important;
    margin-top: -2px;
    margin-left: 0; /* reset if previously set */
    top: 100%; /* ensure it stays below the parent */
    background-color: #fff;
    border-radius: 0;
    opacity: .9;
    border: none;
}

/* Show dropdown menu on hover */
.navbar-nav .dropdown:hover .dropdown-menu {
    display: block;
    margin-left: 42px; /* Tweak this value to nudge left/right */
}

/* DROPDOWN ITEMS */
.header-main .dropdown-item {
    color: black;
    font-family: 'Arimo', sans-serif;
    font-weight:600;
    font-size:.75rem;
    text-transform: uppercase;
    padding: 8px 15px; /* tweak these values to your liking */
}

    .header-main .dropdown-item:hover {
        background-color: #ed008c;
        color: white;
    }

/* Chevron rotation */
.dropdown-toggle .fa-chevron-down {
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown:hover .fa-chevron-down {
    transform: rotate(180deg);
}



/* GET A QUOTE button */
.nav-quote-btn {
    background-color: #ed008c;
    color: #fff !important;
    padding: 0.5rem 1.0rem !important;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
    margin-left: 1rem;
}

    .nav-quote-btn:hover {
        background-color: #f178ab; /* Lighter gold on hover */
        color: #fff !important;
        text-decoration: none;
    }
.header-main .nav-quote-btn::after {
    display: none;
}



/* Style the Financing Available link in the dropdown */
.fin.ConcurrentNav-link {
    color: #b71f25 !important;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Style the mobile contact section in the dropdown */
.header-mobile-contact {
    padding: 1rem;
    border-top: 1px solid #e8e8e8;
    margin-top: 1rem;
}

    .header-mobile-contact .header-phone {
        display: block;
        color: #333;
        margin: 0.8rem 0;
        font-size: 1.4rem;
    }

        .header-mobile-contact .header-phone .bi-telephone-fill {
            color: #333;
            font-size: 1.2rem;
        }

    .header-mobile-contact .header-social-links {
        display: flex;
        justify-content: center;
        gap: 1rem;
    }

    .header-mobile-contact .header-social .fa-brands {
        color: #333;
        font-size: 2.2rem;
    }

    .header-mobile-contact .header-social:hover .fa-brands {
        color: #b71f25;
    }

/* End HEADER / MAINNAV */

/* HERO */

.hero {
    position: relative;
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 6rem 2rem;
    text-align: left;
    min-height: 750px;
    margin-top: 100px;
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3); /* Same dark overlay */
        z-index: 1;
    }

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

    .hero-bg.active {
        opacity: 1;
    }

.bg-1 {
    background-image: url('/images/hero-1.jpg');
}

.bg-2 {
    background-image: url('/images/hero-2.jpg');
}

.bg-3 {
    background-image: url('/images/hero-3.jpg');
}

.hero-content {
    position: relative;
    z-index: 2; /* Now ABOVE the overlay (::before) */
    text-align: left; /* Restored from original */
}


.hero-title {
    font-size: 3rem;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'Montserrat', serif;
}

.hero-content h4 {
    margin-bottom: 2.5rem;
    max-width: 600px;    
    font-weight: 500; /* optional for tone */
    line-height: 1.4;
}

.hero-btn {
    background-color: #ed008c;
    border-radius: 5px;
    color: white;
    border: none;
    padding: 1.2rem 1.6rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Arimo', sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .hero-btn:hover {
        color: white;
        background-color: #f178ab;
    }

/* End HERO */

/* INTRO */

.intro {
    background-color: #fbfbfb;
    color: #37383a;
    padding: 3rem 0;
    min-height: 200px; /* Optional: Ensure the section has enough height for vertical centering */
    display: flex; /* Use Flexbox to center content vertically */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

    .intro .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

.intro-title {
    color: #4d4d4d;
    margin-bottom: 2.2rem;
    font-size: 2.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight:800;
}

.intro-text {
    max-width:950px;
    max-width:950px;
    color: #4d4d4d;
    font-size: 1rem;
    line-height: 1.8rem;
    margin-bottom: 1rem;
    font-family: 'Arimo', sans-serif;
}

.intro-btn {
    display: inline-block;
    background-color: white;
    color: #b71f25;
    border: 1px solid #b71f25;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Arimo', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

    .intro-btn:hover {
        color: #fff;
        background-color: #b71f25;
        border: 1px solid #fff;
    }
.logo-container {
    border: 1px solid #e0e0e0;
    border-radius: 18px;
    padding: 2rem;
    margin: 2rem 0;
}

.logo-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.logo-img {
    max-width: 120px;
    height: auto;
    flex: 1 1 100px;
    object-fit: contain;
}

.logo-wide {
    max-width: 190px;
}

/* Get Started Section */

.get-started-section {
    background: url('/images/bg-getstarted-v2.jpg') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
    position: relative;
    z-index: 1;
}

.get-started-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.get-started-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.step-box {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    text-decoration: none;
    color: white;
    padding: 20px 30px;
    border-radius: 25px;
    transition: background 0.3s ease;
    background-clip: padding-box;
    max-width: 800px;
    width: 100%;
    margin: 0; /* kill default spacing just in case */
}

    .step-box:hover {
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(4px);
    }

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.0rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, #ed5595, #ed008c);
    box-shadow: 0 0 0 5px #fff; /* this is your "border ring" */
    flex-shrink: 0;
}

.step-text {
    flex: 1;
    text-align: left;
}

    .step-text h4 {
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        font-size:1.8rem;
        margin-bottom: 8px;
    }

    .step-text p {
        font-family: 'Arimo', sans-serif;
        font-weight: 500;
        margin: 0;
    }


/* Services :: 3 Card w/Text */

.services {
    background-color: #fbfbfb;
    color: #37383a;
    padding: 2rem;
}
.int-services {
    background-color: #fbfbfb;
    color: #37383a;
    padding: .5rem;
}

.services-header {
    background-color: #fbfbfb;
    padding: 2rem 0;
    text-align: center;
}

.services-title {
    color: #4d4d4d;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.services-text {
    font-size: 1.1rem;
    color: #4d4d4d;
    max-width: 820px;
    margin: 0 auto; /* centers it horizontally */
    font-family: 'Arimo', sans-serif;
    text-align: center; /* ensures the actual text inside is centered */
}

.service-item {
    position: relative; /* Needed for absolutely positioned children */
    padding: 1rem;
    overflow: hidden;
}
/* Make the whole card clickable */
.service-link {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    border-radius: 10px;
}

    .service-link:hover {
        text-decoration: none;
    }
.services-btn-wrap {
    padding: 35px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Overlay styling */
.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* Default dark overlay */
    z-index: 1;
    transition: background-color 0.3s ease;
    border-radius: 10px;
}

.service-link:hover .service-overlay {
    background-color: rgba(255, 255, 255, 0.2); /* Lighter on hover */
}

/* Reuse image styling */
.service-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
    z-index: 0;
}

/* Ensure title appears above overlay */
.service-item-title {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.5rem;
    color: #fff;
    font-family: 'Montserrat', serif;
    font-weight: 700;
    margin: 0;
    z-index: 2;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.6);
}

.service-item-text {
    color: #fff;
    font-size: 1rem;
    line-height: 1.6rem;
    font-family: 'Arimo', sans-serif;
}

/* Interior */

.int-hero {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    color: white;
    margin-top: 100px;
    overflow: hidden;
}



.int-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.int-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.int-hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
}


.int-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.int-hero-subtitle {
    font-family: 'Arimo', sans-serif;
    font-family: 'Montserrat', serif;
    font-weight: 500;
    line-height: 2.0rem;
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 600px;
}

.int-hero-btn {
    background-color: #ed008c;
    border-radius: 5px;
    color: white;
    border: none;
    padding: 1.2rem 1.6rem;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Arimo', sans-serif;
    transition: background-color 0.3s ease, color 0.3s ease;
}

    .int-hero-btn:hover {
        color: white;
        background-color: #f178ab;
    }



.int-content {
    background-color: #fbfbfb;
    color: #37383a;
    padding: 4rem 0;
    min-height: 200px; /* Optional: Ensure the section has enough height for vertical centering */
    
}

    .int-content .container {
        max-width: 960px;
        margin: 0 auto;
        padding: 0 1rem;
    }


.int-title {
    text-align: center;
    color: #4d4d4d;
    margin-bottom: 2.2rem;
    font-size: 1.8rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
}

.int-text {
    max-width: 950px;
    margin: 0 auto;
    color: #444;
    font-family: 'Arimo', sans-serif;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px; 
}
    

    .int-text ul {
        margin-left: 35px;
        padding-left: 0;
    }

    .int-text li {
        padding-bottom: 10px !important;
    }

.int-content h3 {
    font-size: 1.2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom:1.5rem;
}

.shingles {
    background-color: #f7f5ef; /* very light gold */
    border-radius: 10px;
    padding: 20px 30px;
    margin-bottom: 2.0rem;
    box-shadow: 0 1px 5px rgba(0,0,0,0.05);
}

/* Siding Section Styles */
.products-showcase {
    background-color: #f6f5f5;
    color: #37383a;
    padding: 2rem 0;
}

.products-header {
    text-align: center;
    padding: 1rem 0 2rem;
}

.products-title {
    font-weight: 800;
    color: #4d4d4d;
    margin-bottom: 1rem;
}

.products-text {
    font-size: 1.1rem;
    color: #4d4d4d;
    max-width: 1000px;
    margin: 0 auto;
    font-family: 'Arimo', sans-serif;
    text-align: center;
}

.products-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

.products-card {
    position: relative;
    width: calc(25% - 1rem);
    max-width: 220px;
    flex-grow: 1;
    overflow: hidden;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.products-img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 6px;
    transition: opacity 0.3s ease;
}

.products-card:hover .products-img {
    opacity: 0.7;
}

.products-card:hover {
    transform: scale(1.02);
}


.products-title-overlay {
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.6);
    color: white;
    font-size: 1rem;
    text-align: center;
    padding: 0.4rem 0;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    border-bottom-left-radius: 6px;
    border-bottom-right-radius: 6px;
}
.modal-lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.85);
    text-align: center;
}

.modal-content {
    display: block;
    margin: 0 auto;
    max-width: 750px;
    max-height: 750px;
    width: auto;
    height: auto;
    border-radius: 8px;
}

/* NEW Close Button Styling */
.close-modal {
    display: inline-block;
    color: white;
    font-size: 28px;
    font-weight: bold;
    margin: 1rem auto 0;
/*    background-color: rgba(255,255,255,0.2);
*/    padding: 0.4rem 1rem;
    border-radius: 6px;
    width: fit-content;
    cursor: pointer;
}



/* Footer */

.footer {
    background-color: black; /* fallback */
    background: linear-gradient(to bottom, #3d3d3d, #2b2b2d);
    color: white;
    padding: 3rem 0;
}

.footer-contact {
    margin-bottom: 2rem;
}

.footer-logo {
    max-width: 200px;
    height: auto;
    margin-bottom: 1.5rem;
}

.footer-address {
    font-size: 1.0rem;
    line-height: 1.6rem;
    margin-bottom: 1.5rem;
    font-family: 'Arimo', sans-serif;
}

.footer-phone {
    display: block;
    font-size: 1.4rem;
    line-height: 1.6rem;
    margin-bottom: 0.5rem;
    font-family: 'Arimo', sans-serif;
    letter-spacing: 1px;
    font-weight: bold;
}

.footer-btn {
    display: inline-block;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    padding: 0.75rem 1.5rem;
    border-radius: 15px;
    font-size: 1rem;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Arimo', sans-serif;
    margin: 1rem 0;
}

    .footer-btn:hover {
        background-color: #ed008c;
        border-color: #ed008c;
        color: white;
    }

.footer-social {
    display: flex;
    gap: 1rem;
    display: none;
}

.footer-social-link {
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
}

    .footer-social-link:hover {
        color: #b71f25;
    }

.footer-links {
    margin-bottom: 2rem;
}

.footer-links-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    font-family: 'Montserrat', serif;
    text-transform: uppercase;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0 0 0 20px;
}

    .footer-links-list li {
        margin-bottom: 0.5rem;
    }

    .footer-links-list a {
        color: #d3d4d6;
        font-size: 1rem;
        font-family: 'Arimo', sans-serif;
        font-weight: 600;
        text-decoration: none;
    }

        .footer-links-list a:hover {
            color: #fff;
        }

.footer-gaf {
    max-width: 300px;
    height: auto;
    margin-top: 1.5rem;
}

.footer-bottom {
    text-align: center;
    color: #d3d4d6;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright {
    font-size: 0.75rem;
    font-family: 'Arimo', sans-serif;
    margin-bottom: 0;
}

.footer-webpro {
    color: #d3d4d6;
    text-decoration: none;
}

    .footer-webpro:hover {
        color: white;
        text-decoration: none;
    }

.footer-veterans {
    text-align: center;
}

.veterans-img {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.veterans-text {
    font-size: 0.75rem;
    color: #d3d4d6;
    margin-top:0.8rem;
    margin-bottom:1.5rem;
    font-family: 'Arimo', sans-serif;
}




/* Contact Section */

.contact-section {
    background: url('/images/bg-contact.jpg') no-repeat top center;
    background-size: cover;
    padding: 50px 0;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(4px);
    color: white;
    font-size: .8rem;
    font-weight: 600;
}

.contact-heading {
    text-align: center;
    margin-bottom: 2rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: white;
}

.contact-form-wrapper {
    width: 100%;
    max-width: 800px;
}

.contact-form {
    text-align: left;
}

.contact-btn-wrap {
    padding: 15px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-form input,
.contact-form textarea {
    background-color: rgba(255, 255, 255, 0.55); /* Semi-transparent white */
    border: 1px solid #ccc;
    padding: 0.75rem;
    border-radius: 6px;
    font-family: 'Arimo', sans-serif;
    color: #333;
    box-shadow: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

    .contact-form input::placeholder,
    .contact-form textarea::placeholder {
        color: #666;
        opacity: 0.9;
    }
    .contact-form input:focus,
    .contact-form textarea:focus {
        background-color: rgba(255, 255, 255, 0.9);
        border-color: #f3ca22; /* match your Roof Proz gold if desired */
        outline: none;
        box-shadow: 0 0 0 0.15rem rgba(243, 202, 34, 0.3); /* subtle glow */
    }

.contact-form select {
    background-color: rgba(255, 255, 255, 0.55);
    border: 1px solid #ccc;
    padding: 0.75rem;
    border-radius: 6px;
    font-family: 'Arimo', sans-serif;
    color: #333;
    box-shadow: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    appearance: none; /* smooth over browser inconsistencies */
}

    .contact-form select:focus {
        background-color: rgba(255, 255, 255, 0.9);
        border-color: #f3ca22;
        outline: none;
        box-shadow: 0 0 0 0.15rem rgba(243, 202, 34, 0.3);
    }




/* HAMBURGER */

.navbar-toggler {
    border: none; /* optional: removes border */
    outline: none !important;
    box-shadow: none !important;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

/* Button Submit:Contact */

.btn-submit {
    background-color: #ed008c;
    border-radius: 5px;
    color: white;
    border: none;
    padding: .6rem 1.0rem;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'Arimo', sans-serif;
}

    .btn-submit:hover {
        color: white;
        background-color: #f178ab;
    }

.contact-confirmation {
    min-height: 400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


/* Media Queries for Mobile Devices */



@media (max-width: 992px) {
    .header-top {
        display: none;
    }

    .header-main {
        padding: 0.2rem 0;
    }

    .header-logo {
        max-height: 40px;
    }

    .navbar-nav {
        padding-top: 10px;
        text-align: left;
        font-size: 1.3rem;
    }

    .header-main .nav-link {
        margin-left: 0;
        padding: 0.7rem 1rem;
    }
       
    .header-mobile-contact {
        text-align: left;
    }

        .header-mobile-contact .header-social-links {
            justify-content: flex-start;
        }

    .hero {
        margin-top: 40px;
    }
    .int-hero {
        min-height: 500px;      
        margin-top: 50px;
        overflow: hidden;
    }

    .logo-img {
        max-width: 90px !important;
    }

    .logo-wide {
        max-width: 160px !important;
    }

    .get-started-steps {
        flex-direction: column;
        align-items: flex-start;
    }

    .step-box {
        justify-content: flex-start;
    }
    /* MENU MOBILE */

    .header-main .nav-link {
        color: #fff;
        margin-left: 0;
        font-size: 1.1rem;
        text-decoration: none;
    }

    .header-main .dropdown-menu {
        background-color: transparent !important;
        box-shadow: none;
        margin-left: 0;
        padding: 0;
    }

    .header-main .dropdown-item {
        color: white !important;
        font-size: .9rem;
        font-weight: 600;
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

        .header-main .dropdown-item:hover {
            background-color: rgba(255, 255, 255, 0.1);
            color: #f178ab !important;
        }

    /* REMOVE LEFT INDENT */
    .navbar-nav .dropdown-menu {
        padding-left: 0;
        margin-left: 0;
    }

    /* QUOTE BUTTON MOBILE BOOST */
    .nav-quote-btn {
        padding-top: 1rem !important;
        padding-bottom: 1rem !important;
        font-size: 1.1rem;
        width: 100%;
        margin: 1rem 0;
        text-align: center;
    }

    .header-phone {
        color: white !important;
    }

    .header-mobile-contact .header-phone .bi-telephone-fill {
        color: white;
    }

    .header-mobile-contact .header-social .fa-brands {
        color: white;
        font-size: 1.8rem;
    }
    .dropdown-menu.show {
        display: block !important;
    }

    /* Chevron rotation for active dropdowns */
    .dropdown-toggle.active-toggle .fa-chevron-down {
        transform: rotate(180deg);
    }

    /*.navbar-nav .dropdown:hover .fa-chevron-down {
        transform: rotate(180deg);
    }*/

}

@media (max-width: 767px) {
    

    .hero {
        padding: 5rem .4rem;
        margin-top: 70px;
        min-height: 450px;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .logo-wrapper {
        justify-content: center;
    }

    .logo-img {
        flex: 0 1 45%;
        max-width: 45%;
    }

    .logo-wide {
        max-width: 60%;
    }
    .logo-img {
        max-width: 90px !important;
        
    }

    .logo-wide {
        max-width: 190px !important;
    }
    .get-started-steps {
        flex-direction: column;
    }

    .service-item {
        margin-bottom: .5rem; /* Add space between stacked items */
    }

    .services {
        padding: .5rem;
    }

    .products-card {
        width: calc(50% - 1rem);
    }
    .modal-content {
        max-width: 90vw;
        max-height: 80vh;
        width: auto;
        height: auto;
    }

    .footer-contact,
    .footer-links,
    .footer-social {
        text-align: center;
    }

    .footer-social {
        display: none;
        justify-content: center; /* Centers flex items */
    }

    .footer-btn {
        margin-left: auto;
        margin-right: auto; /* Centers the Contact Us button */
    }

    .footer-links {
        display: none; /* Hide links on mobile */
    }

    .footer-logo,
    .footer-gaf {
        display: block;
        margin: 1rem auto 0 auto; /* Center images with optional top margin */
        max-width: 200px;
    }

    .footer-logo {
        margin-bottom: 25px; /* Extra spacing under logo */
    }

}


/* GLOBAL SLIDE-UP */

.fade-slide-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

    .fade-slide-up.in-view {
        opacity: 1;
        transform: translateY(0);
    }

#contact {
    scroll-margin-top: 130px; /* match or slightly exceed your navbar height */
}
