/********** Template CSS **********/
:root {
    --primary: #FD4D40;
    --secondary: #545454;
    --light: #FDF5EB;
    --dark: #1E1916;
}

h4,
h5,
h6,
.h4,
.h5,
.h6 {
    font-weight: 600 !important;
}

.py-6 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.my-6 {
    margin-top: 6rem;
    margin-bottom: 6rem;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    padding: 35px 15px;
    color: var(--light);
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.fixed-top {
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav {
        margin-top: 10px;
        border-top: 1px solid rgba(255, 255, 255, .3);
        background: var(--dark);
    }

    .navbar .navbar-nav .nav-link {
        padding: 10px 0;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-carousel .owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 600px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-nav {
    position: relative;
    width: 80px;
    height: 80px;
    margin: -40px auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-carousel .owl-nav::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transform: rotate(45deg);
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: relative;
    font-size: 40px;
    color: var(--primary);
    transition: .5s;
    z-index: 1;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}

.page-header {
    margin-bottom: 6rem;
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Facts ***/
.fact-item {
    transition: .5s;
}

.fact-item:hover {
    margin-top: -10px;
    background: #FFFFFF !important;
    box-shadow: 0 0 45px rgba(0, 0, 0, .07);
}


/*** About ***/
.img-twice::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    background: var(--primary);
    border: 25px solid var(--light);
    border-radius: 6px;
    z-index: -1;
}


/*** Product ***/
.product-item {
    transition: .5s;
}

.product-item:hover {
    background: var(--primary) !important;
}

.product-item:hover * {
    color: var(--light);
}

.product-item:hover .border-primary {
    border-color: var(--light) !important;
}

.product-item .product-overlay {
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
    overflow: hidden;
    opacity: 0;
    transition: .5s;
}

.product-item:hover .product-overlay {
    height: 100%;
    opacity: 1;
}


/*** Team ***/
.team-item .team-text {
    position: relative;
    height: 100px;
    overflow: hidden;
}

.team-item .team-title {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--light);
    transition: .5s;
}

.team-item:hover .team-title {
    top: -100px;
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 100px;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    transition: .5s;
}

.team-item .team-social .btn {
    margin: 0 3px;
}

.team-item:hover .team-social {
    top: 0;
}


/*** Testimonial ***/
.testimonial-carousel .owl-item .testimonial-item img {
    width: 60px;
    height: 60px;
}

.testimonial-carousel .owl-item .testimonial-item,
.testimonial-carousel .owl-item .testimonial-item * {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-item {
    background: var(--primary) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item * {
    color: #FFFFFF !important;
}

.testimonial-carousel .owl-nav {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    font-size: 22px;
    color: var(--light);
    background: var(--primary);
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--primary);
    background: var(--dark);
}


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--light);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.copyright {
    background: #111111;
}

.copyright a {
    color: var(--primary);
}

.copyright a:hover {
    color: var(--light);
}


.additional-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.section-header {
    margin-bottom: 60px;
}

.section-header p {
    color: #FD4D40;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
}

.section-header h2 {
    color: #2C3E50;
    font-weight: 700;
    font-size: 36px;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
}

.section-subtitle {
    color: #5a6c7d !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    max-width: 600px;
    margin: 0 auto;
}

.service-item {
    margin-bottom: 80px;
    padding: 30px 0;
}

.service-item:last-child {
    margin-bottom: 0;
}

.service-feature-box {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #eaeaea;
    height: 100%;
}

.feature-image {
    height: 250px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 20px;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-item:hover .feature-image img {
    transform: scale(1.05);
}

.feature-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.highlight-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
}

.highlight-item i {
    color: #FD4D40;
    margin-right: 12px;
    font-size: 14px;
}

.highlight-item span {
    color: #2C3E50;
    font-weight: 500;
    font-size: 14px;
    font-family: 'Open Sans', sans-serif;
}

.service-description {
    padding: 30px;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-badge {
    position: absolute;
    top: -15px;
    left: 30px;
    background: #FD4D40;
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-description h3 {
    color: #2C3E50;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.service-description p {
    color: #5a6c7d;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    font-family: 'Open Sans', sans-serif;
}

.service-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.detail-group h5 {
    color: #2C3E50;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 12px;
    font-family: 'Montserrat', sans-serif;
}

.detail-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-group li {
    color: #5a6c7d;
    font-size: 14px;
    padding: 6px 0;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'Open Sans', sans-serif;
    position: relative;
    padding-left: 15px;
}

.detail-group li:last-child {
    border-bottom: none;
}

.detail-group li:before {
    content: '•';
    color: #FD4D40;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.price-estimate {
    color: #2C3E50;
    font-weight: 700;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
}

.btn-outline {
    border: 2px solid #FD4D40;
    color: #FD4D40;
    padding: 10px 25px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
}

.btn-outline:hover {
    background: #FD4D40;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 77, 64, 0.2);
}

/* Zig-Zag Pattern Styling */
.service-item:nth-child(even) .service-feature-box {
    background: linear-gradient(135deg, #ffffff 0%, #fef7f6 100%);
    border-color: #FD4D40;
}

.service-item:nth-child(even) .service-badge {
    background: #2C3E50;
}

/* Responsive Design */
@media (max-width: 991px) {
    .service-item {
        margin-bottom: 60px;
    }

    .service-feature-box {
        margin-bottom: 30px;
    }

    .service-details {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-cta {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .additional-services {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .service-description h3 {
        font-size: 24px;
    }

    .feature-image {
        height: 200px;
    }

    .service-description {
        padding: 20px;
    }

    .service-badge {
        left: 20px;
    }
}

@media (max-width: 575px) {
    .feature-highlights {
        gap: 8px;
    }

    .highlight-item {
        padding: 10px 12px;
    }

    .service-description h3 {
        font-size: 22px;
    }

    .price-estimate {
        font-size: 16px;
    }

    .btn-outline {
        padding: 8px 20px;
        font-size: 13px;
    }
}
.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.section-header {
    margin-bottom: 60px;
}

.section-header p {
    color: #FD4D40;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
}

.section-header h2 {
    color: #2C3E50;
    font-weight: 700;
    font-size: 36px;
    font-family: 'Montserrat', sans-serif;
}

.service-row {
    margin-bottom: 40px;
}

.service-card {
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    margin-bottom: 30px;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
    position: relative;
}

.service-icon {
    position: absolute;
    top: -30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #FD4D40;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(253, 77, 64, 0.3);
}

.service-icon i {
    color: #ffffff;
    font-size: 24px;
}

.service-content h3 {
    color: #2C3E50;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
    padding-right: 70px;
}

.service-content p {
    color: #5a6c7d;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: #2C3E50;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    font-family: 'Open Sans', sans-serif;
    position: relative;
    padding-left: 20px;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li:before {
    content: '✓';
    color: #FD4D40;
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 8px;
}

.services-cta {
    background: linear-gradient(135deg, #2C3E50 0%, #34495e 100%);
    padding: 50px 30px;
    border-radius: 15px;
    margin-top: 30px;
    color: #ffffff;
}

.services-cta h3 {
    color: #ffffff;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.services-cta p {
    color: #bdc3c7;
    font-size: 16px;
    margin-bottom: 25px;
    font-family: 'Open Sans', sans-serif;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    background: #FD4D40;
    color: #ffffff;
    padding: 12px 30px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary:hover {
    background: #e63c30;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(253, 77, 64, 0.3);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 991px) {
    .service-row {
        margin-bottom: 20px;
    }

    .service-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .services-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .service-content h3 {
        font-size: 22px;
    }

    .service-content {
        padding: 25px;
    }

    .service-icon {
        top: -25px;
        right: 25px;
        width: 50px;
        height: 50px;
    }

    .service-icon i {
        font-size: 20px;
    }

    .services-cta {
        padding: 40px 20px;
    }

    .services-cta h3 {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .service-image {
        height: 200px;
    }

    .service-content h3 {
        padding-right: 60px;
        font-size: 20px;
    }

    .service-features li {
        font-size: 13px;
    }
}

.service-areas {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.section-header {
    margin-bottom: 60px;
}

.section-header p {
    color: #FD4D40;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
}

.section-header h2 {
    color: #2C3E50;
    font-weight: 700;
    font-size: 36px;
    font-family: 'Montserrat', sans-serif;
}

.content-header h3 {
    color: #2C3E50;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.content-description p {
    color: #5a6c7d;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

.coverage-highlights {
    margin-top: 30px;
    padding: 25px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.highlight-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: #f8f9fa;
}

.highlight-item:last-child {
    margin-bottom: 0;
}

.highlight-item i {
    color: #FD4D40;
    font-size: 24px;
    margin-right: 20px;
    width: 30px;
    text-align: center;
}

.highlight-item h5 {
    color: #2C3E50;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
    font-family: 'Montserrat', sans-serif;
}

.highlight-item p {
    color: #5a6c7d;
    font-size: 14px;
    margin-bottom: 0;
    font-family: 'Open Sans', sans-serif;
}

.service-areas-list {
    background: #ffffff;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid #eaeaea;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.area-column {
    display: flex;
    flex-direction: column;
}

.area-item {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    margin-bottom: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #f8f9fa;
    border-left: 3px solid transparent;
}

.area-item:hover {
    background: #e9ecef;
    transform: translateX(5px);
    border-left: 3px solid #FD4D40;
}

.area-item.primary {
    background: linear-gradient(135deg, #FD4D40 0%, #ff6b6b 100%);
    color: #ffffff;
    border-left: 3px solid #2C3E50;
}

.area-item.primary:hover {
    background: linear-gradient(135deg, #e63c30 0%, #ff5252 100%);
    transform: translateX(5px);
}

.area-item i {
    margin-right: 12px;
    font-size: 14px;
    width: 16px;
    text-align: center;
}

.area-item.primary i {
    color: #ffffff;
}

.area-item span {
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #2C3E50;
}

.area-item.primary span {
    color: #ffffff;
    font-weight: 600;
}

.areas-note {
    background: #e3f2fd;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #2196F3;
}

.areas-note p {
    color: #2C3E50;
    font-size: 14px;
    margin-bottom: 0;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
}

.areas-note strong {
    color: #1976D2;
}

/* Responsive Design */
@media (max-width: 991px) {
    .service-areas-content {
        margin-bottom: 40px;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .service-areas {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .content-header h3 {
        font-size: 24px;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    .service-areas-list {
        padding: 20px;
    }
}

@media (max-width: 575px) {
    .coverage-highlights {
        padding: 20px 15px;
    }

    .highlight-item {
        flex-direction: column;
        text-align: center;
        padding: 15px 10px;
    }

    .highlight-item i {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

.services {
    padding: 80px 0;
    background: #ffffff;
}

.section-header {
    margin-bottom: 50px;
}

.section-header p {
    color: #FD4D40;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
}

.section-header h2 {
    color: #2C3E50;
    font-weight: 700;
    font-size: 36px;
    font-family: 'Montserrat', sans-serif;
}

.section-header h3 {
    color: #2C3E50;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.service-left {
    padding-right: 30px;
}

.service-content p {
    color: #5a6c7d;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

.service-features {
    margin-top: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
}

.feature-item i {
    color: #FD4D40;
    margin-right: 12px;
    font-size: 18px;
}

.feature-item span {
    color: #2C3E50;
    font-size: 16px;
    font-weight: 500;
}

.service-right {
    padding-left: 30px;
}

.service-item {
    background: #ffffff;
    border-radius: 10px;
    padding: 30px 20px;
    margin-bottom: 25px;
    text-align: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #eaeaea;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.service-item.premium {
    border-top: 4px solid #FD4D40;
    background: linear-gradient(135deg, #ffffff 0%, #fef7f6 100%);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: #FD4D40;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    color: #ffffff;
    font-size: 28px;
}

.service-item h4 {
    color: #2C3E50;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.service-item p {
    color: #5a6c7d;
    font-size: 14px;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
    margin-bottom: 0;
}

.service-badge {
    position: absolute;
    top: -10px;
    right: 15px;
    background: #FD4D40;
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
}

/* Responsive Design */
@media (max-width: 991px) {
    .service-left {
        padding-right: 15px;
        margin-bottom: 50px;
    }

    .service-right {
        padding-left: 15px;
    }
}

@media (max-width: 767px) {
    .services {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .section-header h3 {
        font-size: 24px;
    }
}


     

.section-header {
    margin-bottom: 40px;
}

.section-header p {
    color: #FD4D40;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
}

.section-header h2 {
    color: #2C3E50;
    font-weight: 700;
    font-size: 36px;
    font-family: 'Montserrat', sans-serif;
}

.card {
    border: none;
    margin-bottom: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
}

.card-header {
    background-color: #ffffff;
    border-bottom: 1px solid #eaeaea;
    padding: 0;
    border-radius: 8px !important;
}

.card-link {
    color: #2C3E50;
    font-weight: 600;
    font-size: 16px;
    padding: 15px 20px;
    display: block;
    width: 100%;
    text-align: left;
    position: relative;
    font-family: 'Open Sans', sans-serif;
    text-decoration: none;
}

.card-link:after {
    content: '\002B';
    color: #FD4D40;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    font-size: 18px;
}

.card-link.collapsed:after {
    content: '\2212';
}

.card-link:hover {
    color: #FD4D40;
    text-decoration: none;
}

.card-body {
    padding: 20px;
    color: #5a6c7d;
    font-size: 15px;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
}

.collapse.show .card-body {
    border-top: 1px solid #eaeaea;
}



.contact {
    padding: 80px 0;
    background: #ffffff;
}

.section-header {
    margin-bottom: 50px;
}

.section-header p {
    color: #FD4D40;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Open Sans', sans-serif;
}

.section-header h2 {
    color: #2C3E50;
    font-weight: 700;
    font-size: 36px;
    font-family: 'Montserrat', sans-serif;
}

.contact-info-row {
    margin-bottom: 50px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    height: 100%;
    transition: all 0.3s ease;
    border-left: 4px solid #FD4D40;
}

.contact-info-item:hover {
    background: #ffffff;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #FD4D40;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.contact-icon i {
    color: #ffffff;
    font-size: 20px;
}

.contact-text h4 {
    color: #2C3E50;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
}

.contact-text p {
    color: #5a6c7d;
    font-size: 14px;
    margin-bottom: 0;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.5;
}

.contact-map {
    height: 100%;
}

.contact-map h4 {
    color: #2C3E50;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.map-container {
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.map-info {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #FD4D40;
}

.map-info p {
    color: #5a6c7d;
    font-size: 14px;
    margin-bottom: 0;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
}

.business-info {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.business-info h4 {
    color: #2C3E50;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}

.hours-list {
    margin-bottom: 30px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #eaeaea;
}

.hour-item:last-child {
    border-bottom: none;
}

.hour-item span:first-child {
    color: #2C3E50;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}

.hour-item span:last-child {
    color: #FD4D40;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
}

.emergency-contact {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 25px;
    text-align: center;
}

.emergency-icon {
    color: #e74c3c;
    font-size: 24px;
    margin-bottom: 10px;
}

.emergency-text h5 {
    color: #e74c3c;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.emergency-text p {
    color: #5a6c7d;
    font-size: 14px;
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
}

.btn-emergency {
    background: #e74c3c;
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
}

.btn-emergency:hover {
    background: #c0392b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.service-areas-cta {
    text-align: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 8px;
    border: 2px dashed #eaeaea;
}

.service-areas-cta h5 {
    color: #2C3E50;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.service-areas-cta p {
    color: #5a6c7d;
    font-size: 14px;
    margin-bottom: 15px;
    font-family: 'Open Sans', sans-serif;
}

.btn-outline {
    border: 2px solid #FD4D40;
    color: #FD4D40;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: #FD4D40;
    color: #ffffff;
    text-decoration: none;
}

/* Footer Styles */
.footer {
    background: #2C3E50;
    color: #ffffff;
    padding: 50px 0 20px;
}

.footer-info h3 {
    color: #ffffff;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer-address {
    color: #bdc3c7;
    font-size: 16px;
    margin-bottom: 20px;
    font-family: 'Open Sans', sans-serif;
}

.footer-address i {
    color: #FD4D40;
    margin-right: 10px;
}

.footer-contact p {
    color: #bdc3c7;
    font-size: 14px;
    margin-bottom: 8px;
    font-family: 'Open Sans', sans-serif;
}

.footer-contact i {
    color: #FD4D40;
    margin-right: 10px;
    width: 16px;
}

.footer-contact strong {
    color: #ffffff;
}

.footer-services h5 {
    color: #ffffff;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.services-list span {
    background: #34495e;
    color: #bdc3c7;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-family: 'Open Sans', sans-serif;
    transition: all 0.3s ease;
}

.services-list span:hover {
    background: #FD4D40;
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    margin-top: 40px;
    padding-top: 20px;
}

.copyright {
    text-align: center;
}

.copyright p {
    color: #95a5a6;
    font-size: 14px;
    margin-bottom: 0;
    font-family: 'Open Sans', sans-serif;
}

/* Responsive Design */
@media (max-width: 991px) {
    .contact-info-item {
        margin-bottom: 20px;
    }

    .business-info {
        margin-top: 30px;
    }

    .footer-info {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .contact {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 30px;
    }

    .contact-map h4,
    .business-info h4 {
        font-size: 20px;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-info h3 {
        font-size: 24px;
    }
}

@media (max-width: 575px) {
    .contact-icon {
        width: 40px;
        height: 40px;
        margin-right: 12px;
    }

    .contact-icon i {
        font-size: 16px;
    }

    .contact-text h4 {
        font-size: 16px;
    }

    .services-list {
        justify-content: center;
    }
}
