/********** Template CSS **********/
:root {
    --primary: #34AD54;
    --secondary: #34AD54;
    --light: #EEF9FF;
    --dark: #091E3E;
}


/*** Spinner ***/
.spinner {
    width: 40px;
    height: 40px;
    background: var(--primary);
    margin: 100px auto;
    -webkit-animation: sk-rotateplane 1.2s infinite ease-in-out;
    animation: sk-rotateplane 1.2s infinite ease-in-out;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px)
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg)
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg)
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

#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;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 800 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 700 !important;
}

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


/*** Button ***/
.btn {
    font-family: 'Nunito', sans-serif;
    font-weight: 600;
    transition: .5s;
}

.btn-primary,
.btn-secondary {
    color: #FFFFFF;
    box-shadow: inset 0 0 0 50px transparent;
}

.btn-primary:hover {
    box-shadow: inset 0 0 0 0 var(--primary);
}

.btn-secondary:hover {
    box-shadow: inset 0 0 0 0 var(--secondary);
}

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

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

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

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding-left: 0;
    padding-right: 0;
    text-align: center;
}


/*** Navbar ***/
.navbar-dark .navbar-nav .nav-link {
    font-family: 'Nunito', sans-serif;
    position: relative;
    margin-left: 25px;
    padding: 35px 0;
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-dark .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--dark);
}

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

.navbar-dark .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-dark .navbar-toggler {
    color: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-dark {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link,
    .navbar-dark .navbar-nav .nav-link.show,
    .sticky-top.navbar-dark .navbar-nav .nav-link {
        padding: 10px 0;
        color: var(--dark);
    }

    .navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}

@media (min-width: 992px) {
    .navbar-dark {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }
    
    .sticky-top.navbar-dark {
        position: fixed;
        background: #FFFFFF;
    }

    .navbar-dark .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--primary);
        transition: .5s;
    }

    .navbar-dark .navbar-nav .nav-link:hover::before,
    .navbar-dark .navbar-nav .nav-link.active::before {
        width: 100%;
        left: 0;
    }

    .navbar-dark .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }

    .sticky-top.navbar-dark .navbar-brand h1 {
        color: var(--primary);
    }
}


/*** Carousel ***/
.carousel-caption {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(9, 30, 62, .7);
    z-index: 1;
}

@media (max-width: 576px) {
    .carousel-caption h5 {
        font-size: 14px;
        font-weight: 500 !important;
    }

    .carousel-caption h1 {
        font-size: 30px;
        font-weight: 600 !important;
    }
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
}


/*** Section Title ***/
.section-title::before {
    position: absolute;
    content: "";
    width: 150px;
    height: 5px;
    left: 0;
    bottom: 0;
    background: var(--primary);
    border-radius: 2px;
}

.section-title.text-center::before {
    left: 50%;
    margin-left: -75px;
}

.section-title.section-title-sm::before {
    width: 90px;
    height: 3px;
}

.section-title::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 5px;
    bottom: 0px;
    background: #FFFFFF;
    -webkit-animation: section-title-run 5s infinite linear;
    animation: section-title-run 5s infinite linear;
}

.section-title.section-title-sm::after {
    width: 4px;
    height: 3px;
}

.section-title.text-center::after {
    -webkit-animation: section-title-run-center 5s infinite linear;
    animation: section-title-run-center 5s infinite linear;
}

.section-title.section-title-sm::after {
    -webkit-animation: section-title-run-sm 5s infinite linear;
    animation: section-title-run-sm 5s infinite linear;
}

@-webkit-keyframes section-title-run {
    0% {left: 0; } 50% { left : 145px; } 100% { left: 0; }
}

@-webkit-keyframes section-title-run-center {
    0% { left: 50%; margin-left: -75px; } 50% { left : 50%; margin-left: 45px; } 100% { left: 50%; margin-left: -75px; }
}

@-webkit-keyframes section-title-run-sm {
    0% {left: 0; } 50% { left : 85px; } 100% { left: 0; }
}


/*** Service ***/
.service-item {
    position: relative;
    height: 300px;
    padding: 0 30px;
    transition: .5s;
}

.service-item .service-icon {
    margin-bottom: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 2px;
    transform: rotate(-45deg);
}

.service-item .service-icon i {
    transform: rotate(45deg);
}

.service-item a.btn {
    position: absolute;
    width: 60px;
    bottom: -48px;
    left: 50%;
    margin-left: -30px;
    opacity: 0;
}

.service-item:hover a.btn {
    bottom: -24px;
    opacity: 1;
}


/*** Testimonial ***/
.testimonial-carousel .owl-dots {
    margin-top: 15px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.testimonial-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: #DDDDDD;
    border-radius: 2px;
    transition: .5s;
}

.testimonial-carousel .owl-dot.active {
    width: 30px;
    background: var(--primary);
}

.testimonial-carousel .owl-item.center {
    position: relative;
    z-index: 1;
}

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

.testimonial-carousel .owl-item.center .testimonial-item {
    background: #FFFFFF !important;
    box-shadow: 0 0 30px #DDDDDD;
}


/*** Team ***/
.team-item {
    transition: .5s;
}

.team-social {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: .5s;
}

.team-social a.btn {
    position: relative;
    margin: 0 3px;
    margin-top: 100px;
    opacity: 0;
}

.team-item:hover {
    box-shadow: 0 0 30px #DDDDDD;
}

.team-item:hover .team-social {
    background: rgba(9, 30, 62, .7);
}

.team-item:hover .team-social a.btn:first-child {
    opacity: 1;
    margin-top: 0;
    transition: .3s 0s;
}

.team-item:hover .team-social a.btn:nth-child(2) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .05s;
}

.team-item:hover .team-social a.btn:nth-child(3) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .1s;
}

.team-item:hover .team-social a.btn:nth-child(4) {
    opacity: 1;
    margin-top: 0;
    transition: .3s .15s;
}

.team-item .team-img img,
.blog-item .blog-img img  {
    transition: .5s;
}

.team-item:hover .team-img img,
.blog-item:hover .blog-img img {
    transform: scale(1.15);
}


/*** Miscellaneous ***/
@media (min-width: 991.98px) {
    .facts {
        position: relative;
        margin-top: -75px;
        z-index: 1;
    }
}

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

.bg-header {
    background: linear-gradient(rgba(9, 30, 62, .7), rgba(9, 30, 62, .7)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.link-animated a {
    transition: .5s;
}

.link-animated a:hover {
    padding-left: 10px;
}

@media (min-width: 767.98px) {
    .footer-about {
        margin-bottom: -75px;
    }
}




/* Custom Styles for Enhanced Appearance */
.special-offer .badge {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.navbar-nav .nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: all 0.3s ease;
    border-radius: 0.375rem;
    margin: 0 0.125rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background: rgba(28, 178, 210, 0.2);
    color: #34AD54 !important;
    transform: translateY(-1px);
}

.navbar-nav .dropdown-menu {
    border: none;
    margin-top: 0.5rem !important;
}

.navbar-nav .dropdown-item {
    transition: all 0.2s ease;
    border-radius: 0.25rem;
    margin: 0.125rem 0.5rem;
    width: auto;
}

.navbar-nav .dropdown-item:hover {
    background: #f8f9fa;
    color: #254b71;
    transform: translateX(5px);
}

.navbar-toggler:focus {
    box-shadow: none;
}

.hero-header {
    position: relative;
    width: 100%;
    min-height: 700px;
}

.hero-header img {
    min-height: 700px;
}

.hero-caption {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.carousel-caption,
/* for legacy or reused styles */
.hero-caption {
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
}

.btn-rounded {
    border-radius: 50px !important;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(26, 54, 88, 0.98);
        backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: 0 0 1rem 1rem;
        margin-top: 0.5rem;
    }

    .navbar-actions {
        margin-top: 1rem;
        justify-content: center;
        width: 100%;
    }

    .hero-caption {
        padding: 2rem 1rem;
        top: 55%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .hero-caption h1 {
        font-size: 2rem !important;
    }
}

@media (max-width: 768px) {
    .special-offer .badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .hero-header,
    .hero-header img {
        min-height: 420px;
        height: 420px !important;
    }

    .hero-caption h1 {
        font-size: 1.4rem !important;
    }
}




.navbar-nav .nav-link.scrolled {
    color: #fff !important;
}




/* Hover Effects */
.trust-item,
.feature-box,
.highlight-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.trust-item:hover,
.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(28, 178, 210, 0.15) !important;
}

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

/* Image Container Effects */
.about-image-wrapper .image-container {
    transition: all 0.3s ease;
}

.about-image-wrapper .image-container:hover {
    transform: scale(1.02);
}

/* Feature Icon Animations */
.feature-icon .rounded-circle,
.highlight-icon .rounded-circle {
    transition: all 0.3s ease;
}

.feature-box:hover .feature-icon .rounded-circle,
.highlight-item:hover .highlight-icon .rounded-circle {
    transform: scale(1.1) rotate(5deg);
}

/* Mission Statement Enhancement */
.mission-statement {
    position: relative;
    overflow: hidden;
}

.mission-statement::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.mission-statement:hover::before {
    animation: shine 1.5s ease;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Stats Enhancement */
.stats-section h2 {
    transition: all 0.3s ease;
}

.stats-section .col-md-3:hover h2 {
    transform: scale(1.1);
}

/* Button Hover Effects */
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28, 178, 210, 0.3) !important;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, #34AD54 0%, #254b71 100%) !important;
    color: white !important;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {

    .about-content-left,
    .about-content-right {
        text-align: center;
        margin-bottom: 40px;
    }

    .trust-item,
    .highlight-item {
        justify-content: center;
        text-align: center;
    }

    .feature-boxes-grid .row {
        justify-content: center;
    }

    .feature-box {
        max-width: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .stats-section .display-4 {
        font-size: 2.5rem !important;
    }

    .experience-badge {
        position: relative !important;
        margin: 20px auto !important;
        display: inline-block;
    }
}



/* Accordion Hover Effects */
.accordion-button:hover {
    background: linear-gradient(135deg, #f0faff 0%, #e8f7fc 100%) !important;
    color: #254b71 !important;
    transform: translateX(5px);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #34AD54 0%, #254b71 100%) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(28, 178, 210, 0.3) !important;
}

.accordion-button:not(.collapsed) i {
    color: white !important;
}

/* Smooth Transitions */
.accordion-item {
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28, 178, 210, 0.15) !important;
}

/* Support Card Hover Effects */
.support-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.support-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(28, 178, 210, 0.2) !important;
}

.support-card:hover .support-icon .rounded-circle {
    transform: scale(1.1) rotate(5deg);
}

/* Support Icon Animations */
.support-icon .rounded-circle {
    transition: all 0.3s ease;
}

/* Button Hover Effects */
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28, 178, 210, 0.3) !important;
}

/* FAQ Icon Animations */
.accordion-button i {
    transition: all 0.3s ease;
}

.accordion-button:hover i {
    transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .accordion-button {
        font-size: 1rem !important;
        padding: 1rem 1.25rem !important;
    }

    .accordion-body {
        font-size: 0.9rem;
    }

    .support-card {
        margin-bottom: 1.5rem;
    }
}

/* Animation for FAQ items */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.wow.fadeInUp {
    animation: fadeInUp 0.6s ease;
}




/* Area Column Styling */
.area-column {
    transition: all 0.3s ease;
}

.area-column:hover {
    transform: translateY(-5px);
}

.area-column h6 {
    transition: all 0.3s ease;
}

.area-column:hover h6 {
    color: #34AD54 !important;
}

/* List Item Styling */
.area-column li {
    transition: all 0.2s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.area-column li:hover {
    background: #f0faff;
    transform: translateX(5px);
}

.area-column li i {
    transition: all 0.2s ease;
}

.area-column li:hover i {
    transform: scale(1.2);
}

/* CTA Section Enhancement */
.cta-section .rounded-4 {
    position: relative;
    overflow: hidden;
}

.cta-section .rounded-4::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.cta-section .rounded-4:hover::before {
    animation: shine 1.5s ease;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Button Hover Effects */
.btn-light:hover {
    background-color: #f8f9fa !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .area-column {
        text-align: center;
        margin-bottom: 2rem;
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem !important;
    }
}

@media (max-width: 576px) {
    .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}




/* Tab Styling */
.nav-link {
    transition: all 0.3s ease;
    border-left: 4px solid transparent !important;
}

.nav-link:hover {
    transform: translateX(5px);
    border-left: 4px solid #34AD54 !important;
}

.nav-link.active {
    border-left: 4px solid #34AD54 !important;
}

/* Service Card Styling */
.service-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(28, 178, 210, 0.2) !important;
}

.service-card:hover .service-icon .rounded-circle {
    transform: scale(1.1) rotate(5deg);
}

/* Service Icon Animations */
.service-icon .rounded-circle {
    transition: all 0.3s ease;
}

/* Tab Icon Animations */
.tab-icon .rounded-circle {
    transition: all 0.3s ease;
}

.nav-link:hover .tab-icon .rounded-circle {
    transform: scale(1.1);
}

/* CTA Section Enhancement */
.cta-section .rounded-4 {
    position: relative;
    overflow: hidden;
}

.cta-section .rounded-4::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.cta-section .rounded-4:hover::before {
    animation: shine 1.5s ease;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Button Hover Effects */
.btn-light:hover {
    background-color: #f8f9fa !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15) !important;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
    transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .services-tabs {
        margin-bottom: 2rem;
    }

    .nav-pills {
        flex-direction: row !important;
        overflow-x: auto;
        flex-wrap: nowrap;
    }

    .nav-link {
        min-width: 200px;
        margin-right: 1rem;
        margin-bottom: 0 !important;
    }
}

@media (max-width: 768px) {
    .service-card {
        margin-bottom: 1.5rem;
    }

    .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem !important;
    }
}




/* Service Content Styling */
.service-content {
    padding: 2rem 0;
}

.service-icon-large .rounded-circle {
    transition: all 0.3s ease;
}

.service-content:hover .service-icon-large .rounded-circle {
    transform: scale(1.1) rotate(5deg);
}

/* Features Grid Styling */
.features-grid {
    transition: all 0.3s ease;
}

.features-grid:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(28, 178, 210, 0.15) !important;
}

/* Feature Item Styling */
.feature-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.feature-item:hover {
    transform: translateY(-3px);
    background: #e8f7fc !important;
    box-shadow: 0 5px 15px rgba(28, 178, 210, 0.2);
}

.feature-item:hover i {
    transform: scale(1.2);
}

.feature-item i {
    transition: all 0.3s ease;
}

/* Badge Styling */
.emergency-badge,
.seasonal-badge,
.condo-badge,
.maintenance-badge {
    transition: all 0.3s ease;
}

.features-grid:hover .emergency-badge,
.features-grid:hover .seasonal-badge,
.features-grid:hover .condo-badge,
.features-grid:hover .maintenance-badge {
    transform: scale(1.02);
}

/* Button Hover Effects */
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28, 178, 210, 0.3) !important;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, #34AD54 0%, #254b71 100%) !important;
    color: white !important;
    transform: translateY(-2px);
}

/* Animation for Zig Zag Pattern */
.wow.fadeInLeft,
.wow.fadeInRight {
    animation-duration: 0.8s;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .service-content {
        text-align: center;
        padding: 1rem 0;
    }

    .service-cta .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

    .order-lg-1,
    .order-lg-2 {
        order: 0 !important;
    }

    .features-grid {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .service-icon-large .rounded-circle {
        width: 60px !important;
        height: 60px !important;
    }

    .service-icon-large i {
        font-size: 1.5rem !important;
    }

    .feature-item {
        margin-bottom: 1rem;
    }
}

/* Section Spacing Enhancement */
.additional-services-section .row {
    margin-bottom: 4rem;
}

.additional-services-section .row:last-child {
    margin-bottom: 0;
}




/* Contact Item Hover Effects */
.contact-item {
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(28, 178, 210, 0.15) !important;
}

/* Method Card Hover Effects */
.method-card {
    transition: all 0.3s ease;
    cursor: pointer;
}

.method-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(28, 178, 210, 0.2) !important;
}

.method-card:hover .method-icon .rounded-circle {
    transform: scale(1.1) rotate(5deg);
}

/* Map Overlay Enhancement */
.map-overlay .info-card {
    transition: all 0.3s ease;
}

.map-overlay .info-card:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2) !important;
}

/* Service Hours Enhancement */
.service-hours {
    position: relative;
    overflow: hidden;
}

.service-hours::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(45deg);
    transition: all 0.3s ease;
}

.service-hours:hover::before {
    animation: shine 1.5s ease;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }

    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

/* Contact Icon Animations */
.contact-icon .rounded-circle {
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon .rounded-circle {
    transform: scale(1.1) rotate(5deg);
}

/* Method Icon Animations */
.method-icon .rounded-circle {
    transition: all 0.3s ease;
}

/* Button Hover Effects */
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(28, 178, 210, 0.3) !important;
}

.btn-outline-primary:hover {
    background: linear-gradient(135deg, #34AD54 0%, #254b71 100%) !important;
    color: white !important;
    transform: translateY(-2px);
}

/* Service Area Badge Animation */
.service-area-badge .badge {
    transition: all 0.3s ease;
}

.service-area-badge .badge:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(28, 178, 210, 0.3);
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .contact-map-wrapper {
        border-radius: 20px 20px 0 0 !important;
        margin-bottom: 0;
        min-height: 400px;
    }

    .contact-info-wrapper {
        border-radius: 0 0 20px 20px !important;
    }

    .map-overlay,
    .service-area-badge {
        position: relative !important;
        margin: 20px !important;
    }
}

@media (max-width: 768px) {
    .contact-details .contact-item {
        text-align: center;
    }

    .contact-details .d-flex {
        flex-direction: column;
    }

    .contact-icon {
        margin-bottom: 15px;
        margin-right: 0 !important;
    }

    .service-hours .row {
        flex-direction: column;
    }

    .service-hours .col-6 {
        width: 100% !important;
        margin-bottom: 1rem;
    }
}

/* Smooth Animations */
.wow.fadeInLeft,
.wow.fadeInRight,
.wow.fadeInUp {
    animation-duration: 0.8s;
}



/* Hover Effects */
.hover-opacity-100:hover {
    opacity: 1 !important;
    transform: translateY(-1px);
}

.footer-nav a {
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 16px;
    border-radius: 6px;
}

.footer-nav a:hover {
    transform: translateY(-2px);
    background: rgba(28, 178, 210, 0.1);
}

.footer-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #1cb2d2;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.footer-nav a:hover::after {
    width: 80%;
}

/* Contact Item Hover */
.contact-item a {
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-item a:hover {
    color: #1cb2d2 !important;
    transform: translateY(-1px);
}

/* Service Badge Hover */
.service-area-badge .badge {
    transition: all 0.3s ease;
    display: inline-block;
}

.service-area-badge .badge:hover {
    background: rgba(28, 178, 210, 0.3) !important;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(28, 178, 210, 0.2);
}

/* Footer Brand Enhancement */
.footer-brand h3 {
    position: relative;
    display: inline-block;
}

.footer-brand h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(135deg, #1cb2d2 0%, #254b71 100%);
    border-radius: 2px;
}

/* Smooth Animations */
.footer-section * {
    transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .footer-brand h3 {
        font-size: 1.8rem !important;
    }

    .footer-contact .fs-4 {
        font-size: 1.3rem !important;
    }

    .footer-contact .fs-5 {
        font-size: 1rem !important;
    }

    .footer-nav .d-flex {
        flex-direction: column;
        gap: 15px !important;
    }

    .footer-nav a {
        padding: 10px 20px;
    }

    .footer-bottom .row {
        text-align: center;
    }

    .service-area-badge .badge {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}

@media (max-width: 576px) {
    .footer-brand h3 {
        font-size: 1.5rem !important;
    }

    .footer-contact .fs-4 {
        font-size: 1.1rem !important;
    }
}
