/* Footer CSS Fixes */
/* Subscribe Area Styling */
.subscribe-area.style-two {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 40px 0;
    margin-top: 60px;
}
.subscribe-area.style-two .subscribe {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.subscribe-area.style-two .subscribe-title h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    margin: 0;
    line-height: 1.3;
}
.subscribe-area.style-two .subscribe-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    color: #fff;
    font-size: 24px;
    margin-right: 20px;
    transition: all 0.3s ease;
}
.subscribe-area.style-two .subscribe-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.subscribe-area.style-two .subscribe-title2 h3 {
    margin: 0 0 10px 0;
}
.subscribe-area.style-two .subscribe-title2 h3 a {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}
.subscribe-area.style-two .subscribe-title2 h3 a:hover {
    color: var(--secondary-color);
}
.subscribe-area.style-two .subscribe-title2 p {
    margin: 0;
}
.subscribe-area.style-two .subscribe-title2 p a {
    color: #fff;
    opacity: 0.9;
    text-decoration: none;
    transition: all 0.3s ease;
}
.subscribe-area.style-two .subscribe-title2 p a:hover {
    color: var(--secondary-color);
    opacity: 1;
}

/* Counter Section Enhancements */


.counter-vip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.counter-single-box {
    position: relative;
    z-index: 2;
    padding: 20px;
    transition: all 0.3s ease;
}

.counter-single-box:hover {
    transform: translateY(-5px);
}

.counter-title h4 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.counter-title span {
    font-size: 36px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-left: 5px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.counter-title p {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Counter Animation Enhancement */
.counter-title h4.animated {
    animation: counterPulse 0.6s ease-out;
}

@keyframes counterPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Fix footer bottom area alignment and spacing */
.footer-bottom-area {
    background: #14212a;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
/* Improve footer content alignment */
.footer-bottom-content {
    text-align: left;
    padding: 10px 0;
}
.footer-bottom-content-copy p {
    color: #fff;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}
.footer-bottom-content-copy p a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-bottom-content-copy p a:hover {
    color: #fff;
}
/* Fix footer menu alignment */
.footer-middle.new-style .footer-bottom-menu ul {
    text-align: right;
    margin: 0;
    padding: 0;
}
.footer-middle.new-style .footer-bottom-menu ul li {
    list-style: none;
    display: inline-block;
    margin-left: 25px;
}
.footer-middle.new-style .footer-bottom-menu ul li a {
    color: #fff;
    opacity: 0.7;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-middle.new-style .footer-bottom-menu ul li a:hover {
    color: var(--secondary-color);
    opacity: 1;
}
/* Fix footer widget spacing and alignment */
.footer-middle.new-style .widget {
    margin-bottom: 30px;
}
.footer-middle.new-style .widget-title {
    font-size: 20px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}
.footer-middle.new-style .widget-title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: var(--secondary-color);
}
/* Fix footer menu links */
.footer-middle.new-style ul.footer-menu li {
    margin-bottom: 12px;
}
.footer-middle.new-style ul.footer-menu li a {
    color: #fff;
    opacity: 0.7;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}
.footer-middle.new-style ul.footer-menu li a:hover {
    color: var(--secondary-color);
    opacity: 1;
    transform: translateX(5px);
}
/* Fix footer contact information */
.footer-middle.new-style .widget-location h4 {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
    margin-bottom: 8px;
    margin-top: 20px;
}
.footer-middle.new-style .widget-location span,
.footer-middle.new-style .widget-location a {
    color: #fff;
    opacity: 0.7;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer-middle.new-style .widget-location a:hover {
    color: var(--secondary-color);
    opacity: 1;
}
/* Fix social media icons */
.footer-middle.new-style .follow-company-icon {
    margin-top: 20px;
}
.footer-middle.new-style .follow-company-icon a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    color: #fff;
    margin-right: 10px;
    transition: all 0.3s ease;
    font-size: 16px;
}
.footer-middle.new-style .follow-company-icon a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
/* WhatsApp floating button enhancement */
.whatsapp.sticky-whatsapp {
    z-index: 9999;
}
.whatsapp.sticky-whatsapp a {
    display: block;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    text-align: center;
    line-height: 60px;
    color: #fff;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}
.whatsapp.sticky-whatsapp a:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    color: #fff;
    text-decoration: none;
}
@keyframes pulse {
    0% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8); }
    100% { box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4); }
}
/* Responsive fixes for footer */
@media (max-width: 991px) {
    .subscribe-area.style-two .subscribe-title h2 {
        font-size: 24px;
        text-align: center;
        margin-bottom: 20px;
    }
    .subscribe-area.style-two .subscribe {
        text-align: center;
    }
    .subscribe-area.style-two .subscribe-icon {
        margin: 0 auto 20px;
        display: block;
    }
    .footer-bottom-content {
        text-align: center;
        margin-bottom: 15px;
    }
    .footer-middle.new-style .footer-bottom-menu ul {
        text-align: center;
    }
    .footer-middle.new-style .footer-bottom-menu ul li {
        margin: 0 10px;
    }
    .footer-middle.new-style .widget {
        text-align: center;
    }
    .footer-middle.new-style .widget-title:before {
        left: 50%;
        transform: translateX(-50%);
    }
    .counter-title h4 {
        font-size: 36px;
    }
    .counter-title span {
        font-size: 28px;
    }
    .counter-title p {
        font-size: 14px;
    }
}
@media (max-width: 767px) {
    .subscribe-area.style-two {
        padding: 30px 0;
        margin-top: 40px;
    }
    .subscribe-area.style-two .subscribe {
        padding: 20px;
    }
    .subscribe-area.style-two .subscribe-title h2 {
        font-size: 20px;
    }
    .subscribe-area.style-two .subscribe-title2 h3 a {
        font-size: 18px;
    }
    .footer-bottom-area {
        padding: 20px 0;
    }
    .footer-bottom-content-copy p {
        font-size: 13px;
        text-align: center;
    }
    .footer-middle.new-style .footer-bottom-menu ul li {
        display: block;
        margin: 5px 0;
    }
    .footer-middle.new-style .widget-title {
        font-size: 18px;
    }
    .footer-middle.new-style ul.footer-menu li a {
        font-size: 13px;
    }
    .footer-middle.new-style .widget-location h4 {
        font-size: 15px;
    }
    .footer-middle.new-style .widget-location span,
    .footer-middle.new-style .widget-location a {
        font-size: 13px;
    }
    .whatsapp.sticky-whatsapp a {
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 20px;
    }
    .counter-vip {
        padding: 40px 0;
    }
    .counter-title h4 {
        font-size: 28px;
    }
    .counter-title span {
        font-size: 22px;
    }
    .counter-title p {
        font-size: 12px;
    }
}
@media (max-width: 480px) {
    .subscribe-area.style-two .subscribe-title h2 {
        font-size: 18px;
    }
    .subscribe-area.style-two .subscribe-title2 h3 a {
        font-size: 16px;
    }
    .footer-bottom-content-copy p {
        font-size: 12px;
    }
    .footer-middle.new-style .footer-bottom-menu ul li a {
        font-size: 12px;
    }
    .footer-middle.new-style .widget-title {
        font-size: 16px;
    }
    .footer-middle.new-style .follow-company-icon a {
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 14px;
        margin-right: 8px;
    }
    .whatsapp.sticky-whatsapp a {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 18px;
    }
    .counter-title h4 {
        font-size: 24px;
    }
    .counter-title span {
        font-size: 18px;
    }
    .counter-title p {
        font-size: 11px;
    }
}
/* Fix footer background and spacing */
.footer-middle.new-style {
    background: var(--primary-color);
    padding: 80px 0 0;
}
.footer-middle.new-style .footer-bg {
    padding: 0 0 40px;
}
/* Fix company info description */
.footer-middle.new-style .company-info-desc p {
    color: #fff;
    opacity: 0.7;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}
/* Fix footer logo */
.footer-middle.new-style .footer-new-logo img {
    max-width: 150px;
    height: auto;
}
/* Ensure proper container spacing */
.footer-middle.new-style .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}
/* Fix row alignment */
.footer-middle.new-style .row {
    align-items: flex-start;
}
/* Fix column spacing */
.footer-middle.new-style .col-lg-3,
.footer-middle.new-style .col-sm-6 {
    padding: 0 15px;
}
/* Enhanced hover effects */
.footer-middle.new-style .widget:hover .widget-title:before {
    width: 60px;
    transition: width 0.3s ease;
}
.footer-middle.new-style ul.footer-menu li a:before {
    content: "→";
    margin-right: 8px;
    opacity: 0;
    transition: all 0.3s ease;
}
.footer-middle.new-style ul.footer-menu li a:hover:before {
    opacity: 1;
    margin-right: 12px;
}
/* Smooth scrolling for better UX */
html {
    scroll-behavior: smooth;
}
/* Accessibility improvements */
.footer-middle.new-style a:focus,
.subscribe-area.style-two a:focus {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
}
