/* Footer */
.footer {
    background: linear-gradient(135deg, #403473 0%, #2d2456 100%);
    color: white;
    
}

.footer-cta-section {
    background: linear-gradient(135deg, #403473 0%, #2d2456 100%);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
    min-height: 300px;
    display: flex;
    align-items: center;
}

.footer-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%),
                linear-gradient(45deg, transparent 40%, rgba(255,255,255,0.02) 50%, transparent 60%);
}

.footer-cta-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, rgba(0,0,0,0.1), transparent);
}

.footer-cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 95%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    align-items: center;
    width: 100%;
}

.footer-cta-left {
    text-align: left;
}

.footer-cta-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    text-align: right;
    width: auto;
}

.footer-cta-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: white;
    text-shadow: 0 4px 8px rgba(0,0,0,0.2);
    line-height: 1.1;
}

.footer-phone-cta {
    margin: 0;
}

.phone-cta-btn {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 20px 45px;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phone-cta-btn:hover {
    background: linear-gradient(135deg, #f4be0b 0%, #e6ab0a 100%);
    color: #403473;
    border-color: #f4be0b;
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(244, 190, 11, 0.2);
}

.footer-cta-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;

    font-weight: 400;
}

.footer-cta-link {
    margin-top: 25px;
}

.footer-cta-link a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
}

.footer-cta-link a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -3px;
    left: 0;
    background-color: white;
    transition: width 0.3s ease;
}

.footer-cta-link a:hover {
    color: white;
}

.footer-cta-link a:hover::after {
    width: 100%;
}

/* CTA Stats Section */
.footer-cta-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    justify-content: center;
}

.cta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.footer-btn {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.footer-btn:hover {
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.footer-divider {
    max-width: 95%;
    margin: 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    margin-bottom: 60px;
}

.footer-content {
    max-width: 95%;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-cta-left {
        text-align: center;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-nav-links {
        align-items: center;
    }
    
    .footer-contact {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-cta-section {
        padding: 60px 15px;
        min-height: 300px;
    }
    
    .footer-cta-content h2 {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .footer-cta-text p {
        font-size: 1rem;
        margin: 25px 0;
    }
    
    .phone-cta-btn {
        padding: 16px 35px;
        font-size: 1.2rem;
    }
    
    .footer-cta-stats {
        gap: 30px;
        margin-top: 30px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
        margin-bottom: 30px;
    }
    
    .footer-section h3 {
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 0.9rem;
    }
    
    .footer-contact-info {
        text-align: center;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-links ul {
        justify-content: center;
    }
    
    .footer-bottom {
        padding: 20px 15px;
        text-align: center;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        margin-bottom: 10px;
    }
}

@media (max-width: 480px) {
    .footer-cta-section {
        padding: 40px 10px;
        min-height: 250px;
    }
    
    .footer-cta-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .footer-cta-text p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin: 15px 0;
    }
    
    .phone-cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
        margin-top: 20px;
    }
    
    .footer-cta-stats {
        gap: 20px;
        margin-top: 25px;
        flex-direction: column;
    }
    
    .cta-stat {
        margin-bottom: 10px;
    }
    
    .stat-number {
        font-size: 1.6rem;
        margin-bottom: 5px;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .footer-content {
        gap: 30px;
        padding: 0 10px;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .footer-cta-right {
        align-items: center;
        text-align: center;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 40px;
    }
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: white;
}

.footer-contact p {
    margin-bottom: 10px;
    color: #ccc;
    line-height: 1.4;
}

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

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

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

.footer-business-info p {
    margin-bottom: 10px;
    color: #ccc;
    line-height: 1.4;
    font-size: 0.9rem;
}

.footer-navigation {
    display: flex;
    gap: 40px;
    text-align: left;
}

.footer-nav-column ul {
    list-style: none;
    text-align: left;
}

.footer-nav-column ul li {
    margin-bottom: 10px;
}

.footer-nav-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav-column ul li a:hover {
    color: white;
}

.newsletter-form {
    margin-bottom: 20px;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    color: #ccc;
}

.form-group input {
    width: 100%;
    padding: 15px;
    border: 1px solid #555;
    background: #222;
    color: white;
    border-radius: 0;
    margin-bottom: 15px;
}

.form-group input:focus {
    outline: none;
    border-color: #403473;
}

.newsletter-btn {
    background: #403473;
    color: white;
    border: none;
    padding: 15px 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    width: 100%;
}

.newsletter-btn:hover {
    background: #f4be0b;
}

.form-note {
    font-size: 0.9rem;
    color: #999;
}

.footer-bottom {
    width: 100%;
    margin: 0 auto;
    padding: 60px 30px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 30px 30px 0 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-main {
    display: grid;
    grid-template-columns: auto auto auto auto auto;
    gap: 60px;
    margin-bottom: 50px;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-nav-links {
        align-items: flex-start;
        text-align: left;
    }
    
    .footer-services-links {
        flex-direction: column;
        gap: 20px;
    }
}

.footer-left {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

@media (max-width: 768px) {
    .footer-left {
        flex-direction: column;
        gap: 30px;
    }
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-image {
    height: 60px;
    width: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    max-width: 200px;
    line-height: 1.4;
}

.logo-triangle {
    color: white;
    font-size: 2rem;
    font-weight: bold;
}

.footer-nav-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-services-links {
    display: flex;
    gap: 40px;
}

.footer-nav-col {
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: left;
}

.footer-nav-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
}

.footer-nav-col a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact {
    text-align: left;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 18px;
    line-height: 1.5;
    font-weight: 400;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-contact a:hover {
    color: #f4be0b;
    text-decoration: underline;
}

.footer-social {
    margin-top: 20px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #403473 0%, #2d2456 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    margin-right: 15px;
    font-size: 1.3rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(64, 52, 115, 0.3);
}

.footer-social a:hover {
    background: linear-gradient(135deg, #f4be0b 0%, #e6ab0a 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(244, 190, 11, 0.4);
}

/* Privacy Popup Styles */
.privacy-popup {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.privacy-popup.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-popup-content {
    background: white;
    border-radius: 8px;
    max-width: 90%;
    max-height: 90%;
    width: 800px;
    position: relative;
    animation: popupZoom 0.3s ease;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@keyframes popupZoom {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.privacy-popup-header {
    background: #333;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
}

.privacy-popup-header h2 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
}

.privacy-popup-close {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.privacy-popup-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.privacy-popup-body {
    padding: 30px;
    max-height: 70vh;
    overflow-y: auto;
    line-height: 1.6;
}

.privacy-popup-body h3 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
}

.privacy-popup-body p {
    color: #666;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.privacy-popup-body .company-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 25px;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.5;
}

.privacy-popup-body .company-info strong {
    color: #000;
    font-weight: 600;
}

.privacy-popup-body .company-info a {
    color: #F5821E;
    text-decoration: underline;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .footer-cta-section {
        padding: 40px 20px;
    }
    
    .footer-cta-content h2 {
        font-size: 2rem;
        margin-bottom: 25px;
    }
    
    .phone-cta-btn {
        padding: 15px 30px;
        font-size: 1.1rem;
    }
    
    .footer-cta-text p {
        font-size: 1rem;
    }
    
    .privacy-popup-content {
        width: 95%;
        max-height: 95%;
    }
    
    .privacy-popup-header {
        padding: 15px;
    }
    
    .privacy-popup-header h2 {
        font-size: 1.3rem;
    }
    
    .privacy-popup-body {
        padding: 20px;
        max-height: 60vh;
    }
}

@media (max-width: 480px) {
    .footer-cta-content h2 {
        font-size: 1.6rem;
    }
    
    .phone-cta-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
    
    .footer-cta-text p {
        font-size: 0.95rem;
    }
}

.footer-copyright {
    text-align: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    font-weight: 400;
}

.footer-copyright a {
    color: rgba(244, 190, 11, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.footer-copyright a:hover {
    color: #f4be0b;
    text-decoration: underline;
}

