/* Modern Footer Redesign */
.footer-1 {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
    padding: 60px 0 20px;
}

.footer-1:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 40, 50, 0.97);
    z-index: 0;
}

.footer-1 .z-5 {
    position: relative;
    z-index: 5;
}

.footer-1 .container {
    position: relative;
    z-index: 2;
}

/* Footer Top Section */
.footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

/* Company Info Section */
.footer-company-info {
    margin-bottom: 30px;
}

.logo-footer {
    margin-bottom: 25px;
}

.logo-footer img {
    max-width: 220px;
    height: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Footer Sections */
.footer-section {
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-section h3:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #4fc3f7, transparent);
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 18px;
}

.footer-links a:before {
    content: '\f105';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 22px;
}

.footer-links a:hover:before {
    left: 4px;
}

/* Contact Info */
.contact-footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-footer li {
    margin-bottom: 20px;
}

.contact-info {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-info .icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(79, 195, 247, 0.25), rgba(210, 143, 178, 0.35));
    position: relative;
    color: #ffffff;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.contact-info .icon::after {
    content: '';
    position: absolute;
    inset: 4px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.2);
}

.contact-info .icon i {
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.25));
}

.contact-info:hover .icon {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.35);
}

.contact-info .content {
    flex: 1;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    line-height: 1.6;
}

.contact-info .content a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info .content a:hover {
    color: #4fc3f7;
}

.contact-info .content .fw-bold {
    font-weight: 600;
    color: #fff;
    margin-bottom: 5px;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    text-align: right;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* Responsive */
@media (max-width: 991px) {
    .footer-section h3 {
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .footer-bottom-links {
        text-align: left;
        margin-top: 15px;
    }
}

@media (max-width: 767px) {
    .footer-1 {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    .footer-top {
        padding-bottom: 30px;
        margin-bottom: 20px;
    }
    
    .footer-section {
        margin-bottom: 35px;
    }
    
    .logo-footer img {
        max-width: 180px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .contact-footer .contact-info {
        justify-content: center;
    }
    
    .footer-bottom-links {
        text-align: center !important;
        margin-top: 15px;
    }
}

/* Additional Footer Styles */
.footer-lines {
    display: block;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #0f4c5f 0%, #d28fb2 100%);
    margin-bottom: 25px;
}

.hr-2 {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 15px 0;
}

.ny-badge {
    background: rgba(210, 143, 178, 0.8);
}

.ny-badge i {
    color: #0f4c5f;
}

.footer-widget {
    background: rgba(255,255,255,0.03);
    padding: 25px;
    border-radius: 8px;
    height: 100%;
}

.footer-widget h3 {
    position: relative;
    padding-bottom: 10px;
    font-weight: 600;
    font-size: 18px;
    color: white;
    margin-bottom: 1rem;
}

.footer-widget h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
}

.footer-widget p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.6;
}

.social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    text-align: center;
    line-height: 36px;
    margin-right: 10px;
    color: #fff;
    transition: background 0.3s;
}

.facebook-icon {
    background: rgba(59, 89, 152, 0.2);
}

.facebook-icon:hover {
    background: rgba(59, 89, 152, 0.8);
}

.instagram-icon {
    background: rgba(195, 42, 163, 0.2);
}

.instagram-icon:hover {
    background: rgba(195, 42, 163, 0.8);
}

.google-icon {
    background: rgba(219, 68, 55, 0.2);
}

.google-icon:hover {
    background: rgba(219, 68, 55, 0.8);
}

.area-badge {
    display: inline-block;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 30px;
    margin-bottom: 15px;
    color: white;
}

.ct-area-badge {
    background: rgba(15, 76, 95, 0.2);
}

.ny-area-badge {
    background: rgba(210, 143, 178, 0.2);
}

.view-all-btn {
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    font-size: 14px;
    display: inline-block;
    padding: 5px 12px;
    margin-top: 5px;
    border-radius: 30px;
}

.ct-view-all {
    background: rgba(15, 76, 95, 0.3);
}

.ct-view-all:hover {
    background: rgba(15, 76, 95, 0.5);
}

.ny-view-all {
    background: rgba(210, 143, 178, 0.3);
}

.ny-view-all:hover {
    background: rgba(210, 143, 178, 0.5);
}

.bbb-seal {
    max-width: 120px;
    border: 0;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.footer-contact li {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

.footer-contact i {
    margin-right: 10px;
    color: #0f4c5f;
    width: 20px;
    text-align: center;
}

.footer-contact a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-contact a:hover {
    color: #fff;
}

@media (max-width: 991px) {
    .footer-1 .mb-md-60 {
        margin-bottom: 60px;
    }
    .footer-1 .mb-sm-40 {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .footer-lines {
        margin-left: auto;
        margin-right: auto;
    }
}
