/* Premium Enterprise Footer Styles */
:root {
    --footer-bg: #f8f9fa;
    --footer-bg-lighter: #ffffff;
    --footer-accent: #3E969E;
    --footer-accent-hover: #2db3be;
    --footer-text: #475569;
    --footer-text-light: #1e293b;
    --footer-border: rgba(0, 0, 0, 0.08);
}

.enterprise-footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    font-family: 'Inter', 'Roboto', sans-serif;
    position: relative;
    overflow: hidden;
}

/* SECTION 1: TOP CTA STRIP */
.footer-cta-strip {
    background: linear-gradient(135deg, var(--footer-accent) 0%, #2a696e 100%);
    padding: 40px 0;
    position: relative;
}

.footer-cta-strip::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI0IiBoZWlnaHQ9IjQiPgo8cmVjdCB3aWR0aD0iNCIgaGVpZ2h0PSI0IiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMDUiLz4KPC9zdmc+') repeat;
    opacity: 0.3;
}

.footer-cta-strip .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.cta-content {
    flex: 1;
    min-width: 300px;
}

.cta-heading {
    color: #ffffff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    letter-spacing: -0.5px;
}

.cta-subheading {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin: 0;
}

.btn-premium-accent {
    background: #ffffff;
    color: var(--footer-accent);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.btn-premium-accent:hover {
    background: var(--footer-bg);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.2);
    text-decoration: none;
}

/* MAIN FOOTER */
.footer-main {
    padding: 80px 0 50px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
}

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

.company-desc {
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 15px;
}

.footer-title {
    color: var(--footer-text-light);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 12px;
}

.footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: var(--footer-accent);
}

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

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

.footer-links a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-links a::before {
    content: '\f105'; /* FontAwesome right arrow */
    font-family: 'FontAwesome';
    font-size: 12px;
    margin-right: 8px;
    color: var(--footer-accent);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--footer-accent);
    transform: translateX(5px);
    text-decoration: none;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* CONTACT INFO */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.contact-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 15px;
}

.contact-list i {
    color: var(--footer-accent);
    font-size: 20px;
    margin-right: 15px;
    margin-top: 2px;
}

.contact-list a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-list a:hover {
    color: var(--footer-accent);
    text-decoration: none;
}

/* SOCIAL MEDIA */
.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--footer-bg-lighter);
    color: var(--footer-text-light);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid var(--footer-border);
}

.social-links a:hover {
    background: var(--footer-accent);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(62, 150, 158, 0.4);
}

/* NEWSLETTER */
.mt-4 { margin-top: 30px; }
.newsletter-desc { font-size: 14px; margin-bottom: 15px; }

.newsletter-form {
    display: flex;
    position: relative;
}

.newsletter-form input {
    width: 100%;
    padding: 12px 15px;
    padding-right: 50px;
    background: var(--footer-bg-lighter);
    border: 1px solid var(--footer-border);
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.newsletter-form input:focus {
    border-color: var(--footer-accent);
}

.newsletter-form button {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--footer-accent);
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    width: 45px;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-form button:hover {
    background: var(--footer-accent-hover);
}

/* CITIES SEO SECTION */
.footer-cities {
    border-top: 1px solid var(--footer-border);
    padding-top: 40px;
    margin-bottom: 40px;
}

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

.cities-list a {
    color: var(--footer-text);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.3s;
}

.cities-list a:hover {
    color: var(--footer-accent);
    text-decoration: none;
}

.view-all-cities {
    color: var(--footer-accent) !important;
    font-weight: 600;
}

/* TRUST STATS */
.footer-trust {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    background: var(--footer-bg-lighter);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--footer-border);
}

.trust-stat {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-stat i {
    font-size: 36px;
    color: var(--footer-accent);
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-info strong {
    color: var(--footer-text-light);
    font-size: 20px;
    line-height: 1.2;
}

.stat-info span {
    font-size: 13px;
    color: var(--footer-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 992px) {
    .footer-trust { flex-direction: column; }
}

/* BOTTOM BAR */
.footer-bottom {
    background: #e2e8f0;
    padding: 25px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    margin: 0;
    font-size: 14px;
}

.bottom-links {
    display: flex;
    gap: 20px;
}

.bottom-links a {
    color: var(--footer-text);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.bottom-links a:hover {
    color: var(--footer-accent);
    text-decoration: none;
}

@media (max-width: 768px) {
    .bottom-content {
        flex-direction: column;
        text-align: center;
    }
}
