body {
    font-family: 'Inter', sans-serif;
    padding-top: 80px;
}

:root {
    --navy: #002d5b;
    --blue: #0056b3;
    --light-bg: #f8f9fa;
    --bs-primary-rgb: 214,0,27;
    --bs-btn-bg: #d6001b;
        --bs-btn-bg: #090a0b;
    --bs-btn-border-color: #d6001b;
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #7e1422;
    --bs-btn-hover-border-color: #b40f25;
    --bs-btn-focus-shadow-rgb: 49, 132, 253;
    --bs-btn-active-color: #fff;
    --bs-btn-active-bg: #7e1422
    --bs-btn-active-border-color: #7e1422;
    --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
    --bs-btn-disabled-color: #fff;
    --bs-btn-disabled-bg: #d6001b;
    --bs-btn-disabled-border-color: #d6001b;
}

/****navbar*****/

.mobile-call-action {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 2000;
    background: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px;
}
.btn-navy {
    background-color: var(--navy);
    color: white;
    border-radius: 5px;
}

@media (max-width: 767px) {
    .mobile-call-action {
        display: block;
    }
}
.logo-text span {
    font-size: 15px;
    line-height: 1;
}

.logo-text small {
    font-size: 11px;
}

 
.navbar .nav-link {
    font-weight: 500;
    color: #4a4a4a;
    padding: 0 15px;
}

.navbar .nav-link:hover {
    color: #d6001b;
}


.btn-warning {
    background: #f59e0b;
    border: none;
    border-radius: 8px;
}

.btn-warning:hover {
    background: #e48c00;
}

/******hero******/

.hero {
    background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
    padding: 80px 0 20px;
} 
.hero.bgbg {
    /* background: linear-gradient(180deg, #f7faff 0%, #ffffff 100%); */
    padding: 40px 0 40px;
    background: url(assets/img/porta-potty-for-outdoor-events.webp);
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: bottom;
}

.hero.bgbg::after{
    content: '';
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    background: #b0c8f3c4;
    top: 0;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    background: #e8f1ff;
    color: #d6001b;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 20px;
    font-weight: 600;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
}

.hero h1 span {
    color: #d6001b;
}

.fw-lb a:hover {
    color: #d6001b !important;
}

.hero-text {
    margin: 20px 0 30px;
    color: #0f172a;
    max-width: 520px;
}

.hero.bgbg h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
}

.hero h1 span {
    color: #d6001b;
}

.bgbg .hero-text{
    margin: 20px 0 30px;
    color: #0f172a;
    max-width: 520px;
}

.zip-box {
    background: #ffffff;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    max-width: 520px;
}

.input-group-text {
    border-right: 0;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 25px;
    color: #d6001b;
    font-size: 17px;
    font-weight: bold;
    /* background: #e6e6e6; */
    /* padding: 10px; */
    text-align: center;
    justify-content: center;
}

.hero-features i {
    color: #d6001b;
    margin-right: 6px;
}

.hero-image-box {
    position: relative;
    display: inline-block;
}

.hero-image-box img {
    border-radius: 18px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.rating-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #f59e0b;
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.rating-badge i {
    font-size: 13px;
    color: #fff;
}

/****service********/
.section {
    padding: 90px 0;
}

.section-badge {
    display: inline-block;
    background: #e8f1ff;
    color: #d6001b;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 22px;
    font-weight: 600;
}

.section-title {
    font-size: 36px;
    font-weight: 800;
    margin-top: 15px;
    color: #0f172a;
}

.section-subtitle {
    max-width: 680px;
    margin: 15px auto 0;
    color: #64748b;
}

.service-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (max-width:767px){
    body{
        margin-bottom: 90px;
    }
}

.btn-primary{
    background-color: #d6001b;
    border-color: #d6001b;
}
.btn-primary:hover{
    background-color: #8d081a;
    border-color: #8d081a;
}
.service-card:hover {
    transform: translateY(-8px);
}

.service-card img {
    width: 100%;
    /* height: 180px; */
    object-fit: cover;
}

.card-body {
    padding: 22px;
    text-align: left;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.card-body .desc {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 15px;
}

.features {
    list-style: none;
    padding: 0;
    margin: 0 0 18px;
}

.features li {
    font-size: 14px;
    margin-bottom: 8px;
    color: #334155;
}

.features i {
    color: #f59e0b;
    margin-right: 8px;
}

.card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: 700;
    color: #d6001b;
    font-size: 14px;
}

.card-footer a {
    font-size: 14px;
    font-weight: 600;
    color: #d6001b;
    text-decoration: none;
}

.card-footer a:hover {
    text-decoration: underline;
}


/*******steps******/
.steps-section {
    background: #ffffff;
    padding: 100px 0;
}

.steps-badge {
    display: inline-block;
    background: #e8f1ff;
    color: #d6001b;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 22px;
    font-weight: 600;
}

.steps-title {
    font-size: 36px;
    font-weight: 800;
    margin-top: 15px;
    color: #0f172a;
}

.steps-subtitle {
    max-width: 650px;
    margin: 15px auto 0;
    color: #64748b;
}

.steps-wrapper {
    position: relative;
}

.steps-line {
    position: absolute;
    top: 42px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: #e2e8f0;
    z-index: 0;
}

.step-item {
    position: relative;
    z-index: 1;
    padding: 0 15px;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #0b2e73;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: #fff;
    font-size: 28px;
}

.step-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #f59e0b;
    margin-bottom: 6px;
}

.step-item h5 {
    font-weight: 700;
    margin-bottom: 10px;
}

.step-item p {
    font-size: 14px;
    color: #64748b;
}

.steps-btn {
    background: #d6001b;
    color: #fff;
    padding: 14px 34px;
    border-radius: 10px;
    font-weight: 700;
}

.steps-btn:hover {
    background: #a40117;
    color: #fff;
}

.steps-note {
    margin-top: 10px;
    font-size: 13px;
    color: #64748b;
}


@media (max-width: 768px) {
    .steps-line {
        display: none;
    }

    .step-item {
        margin-bottom: 40px;
    }
}

/***** testimonial******/
.testimonials-section {
    background: linear-gradient(180deg, #123c8a 0%, #0b2e73 100%);
    padding: 100px 0;
}

.testimonials-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 22px;
    font-weight: 600;
}

.testimonials-title {
    font-size: 38px;
    font-weight: 800;
    margin-top: 15px;
}

.testimonials-subtitle {
    max-width: 700px;
    margin: 15px auto 0;
    color: #cbd5f5;
}

.stats-row h3 {
    color: #f59e0b;
    font-weight: 800;
}

.stats-row p {
    color: #cbd5f5;
    font-size: 14px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 28px;
    border-radius: 16px;
    position: relative;
    height: 100%;
}

.stars i {
    color: #f59e0b;
    margin-right: 2px;
}

.quote {
    color: #e0e7ff;
    font-size: 14px;
    margin: 15px 0 20px;
}

.author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.avatar {
    width: 40px;
    height: 40px;
    background: #f59e0b;
    color: #0b2e73;
    border-radius: 50%;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.author small {
    display: block;
    font-size: 12px;
    color: #cbd5f5;
}

.quote-icon {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 36px;
    color: rgba(255, 255, 255, 0.15);
}

.testimonial-footer {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 18px;
    border-radius: 30px;
    font-size: 13px;
}

.testimonial-footer i {
    color: #f59e0b;
}


@media (max-width: 768px) {
    .testimonials-title {
        font-size: 30px;
    }
}

/************ faq *****************/

.faq-section {
    background: #f8fafc;
    padding: 100px 0;
}

.faq-badge {
    display: inline-block;
    background: #e8f1ff;
    color: #d6001b;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 22px;
    font-weight: 600;
}

.faq-title {
    font-size: 38px;
    font-weight: 800;
    margin-top: 15px;
    color: #0f172a;
}

.faq-subtitle {
    max-width: 650px;
    margin: 15px auto 40px;
    color: #64748b;
}

.faq-wrapper {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 14px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 22px;
    font-size: 15px;
    font-weight: 600;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #0f172a;
}

.faq-question .icon {
    font-size: 20px;
    transition: 0.3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 22px;
    font-size: 14px;
    color: #64748b;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 150px;
    padding: 0 22px 18px;
}

.faq-item.active .icon {
    transform: rotate(45deg);
}


.faq-cta {
    margin-top: 50px;
    background: #fff;
    padding: 22px 28px;
    border-radius: 14px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.cta-text span {
    display: block;
    font-size: 13px;
    color: #64748b;
}

.cta-btn {
    background: #d6001b;
    color: #fff;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}

.cta-btn:hover {
    background: #1746cc;
}

.faq-accordion {
    max-width: 800px;
    margin: auto;
}

.faq-accordion .accordion-item {
    border: none;
    margin-bottom: 14px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-accordion .accordion-button {
    font-weight: 600;
    font-size: 15px;
    padding: 18px 22px;
    color: #0f172a;
    background: #fff;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: #fff;
    color: #0f172a;
    box-shadow: none;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

.faq-accordion .accordion-body {
    font-size: 14px;
    color: #64748b;
    padding: 0 22px 18px;
    text-align: left;
}


.faq-accordion .accordion-button::after {
    background-image: none;
    content: '+';
    font-size: 20px;
    font-weight: 500;
    transform: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    content: '×';
}

.chat-icon {
    color: #d6001b;
}

/***** contact form ******/

.quote-section {
    padding: 90px 0;
    background: #fff;
}

.quote-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quote-features li {
        display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    color: #d6001b;
    font-size: 20px;
    font-weight: 600;
}

.quote-features .icon {
    width: 34px;
    height: 34px;
    background: #e8f1ff;
    color: #d6001b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quote-form {
    background: #fff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.quote-form .form-control,
.quote-form .form-select {
    border-radius: 10px;
    padding: 12px 14px;
}

.zip-icon {
    position: absolute;
    right: 14px;
    top: 38px;
    color: #ef4444;
}

.btn-warning {
    background: linear-gradient(90deg, #f59e0b, #f97316);
    border: none;
}

.btn-warning:hover {
    opacity: 0.95;
}

/****** footer ******/
.site-footer {
    background: linear-gradient(180deg, #0b1a33, #08142a);
    color: #cbd5f5;
    padding: 30px 0 30px;
    font-size: 14px;
}

.footer-brand .brand-icon {
    background: #f59e0b;
    color: #fff;
    font-weight: 800;
    border-radius: 10px;
    padding: 8px 10px;
    margin-right: 10px;
}

.footer-brand strong {
    color: #fff;
}

.footer-brand small {
    color: #94a3b8;
}

.footer-text {
    color: #94a3b8;
    max-width: 340px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.footer-contact li {
    margin-bottom: 10px;
}

.footer-contact i {
    margin-right: 8px;
    color: #93c5fd;
}

.footer-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 14px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 40px 0 20px;
}

.footer-bottom {
    color: #94a3b8;
}

.footer-badges span {
    margin-left: 15px;
    font-size: 13px;
    color: #cbd5f5;
}


@media (max-width: 991px){
    .hero h1{text-align: center;font-size: 38px;}
    .hero-text{text-align: center;}
}

@media (max-width: 767px){
    .flex-wrap .btn{flex: 1 1 100%;}
    .trust-badge{font-size: 15px;}
    .trust-badge{display: flex;justify-content: center;justify-self: center;}
    .quote-features li{font-size: 15px;}
}