/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
    color: #cfcfcf;
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(239, 84, 145, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

/* Footer About */
.footer-about {
    position: relative;
    z-index: 2;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.footer-logo:hover {
    transform: scale(1.05);
}

.footer-description {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #b0b0b0;
    margin-bottom: 25px;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #ffffff;
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: scale(1);
}

/* Hover effect */
.footer-social a:hover {
    transform: scale(1.15);
    background: #ffffff;
}

/* Brand Colors */
.footer-social a[aria-label="Facebook"] {
    color: #1877F2;
}

.footer-social a[aria-label="Instagram"] {
    color: #E4405F;
}

.footer-social a[aria-label="LinkedIn"] {
    color: #0A66C2;
}

.footer-social a[aria-label="YouTube"] {
    color: #FF0000;
}

/* Google icon already multicolor — no color override */
.icon-google svg {
    width: 20px;
    height: 20px;
}


/* Footer Widget */
.footer-widget {
    position: relative;
    z-index: 2;
}

.footer-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #ef5491 0%, #d9437e 100%);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 20px;
}

.footer-links a::before {
    content: '›';
    position: absolute;
    left: 0;
    color: #ef5491;
    font-size: 1.2rem;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #ef5491;
    padding-left: 25px;
}

.footer-links a:hover::before {
    transform: translateX(3px);
}

/* Footer Contact */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-item svg {
    color: #ef5491;
    flex-shrink: 0;
    margin-top: 3px;
}

.contact-item div {
    flex: 1;
}

.contact-item span {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.contact-item a,
.contact-item p {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ef5491;
}

/* Footer Bottom */
.footer-bottom {
    margin-top: 60px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text,
.developer-text {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
}

.developer-text a {
    color: #ef5491;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.developer-text a:hover {
    color: #d9437e;
    text-decoration: underline;
}

/* Floating Call Button */
.floating-call-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, #ef5491 0%, #d9437e 100%);
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(239, 84, 145, 0.3);
    z-index: 1000;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    animation: float-pulse 3s ease-in-out infinite;
}

@keyframes float-pulse {

    0%,
    100% {
        transform: translateY(0);
        box-shadow: 0 5px 15px rgba(239, 84, 145, 0.3);
    }

    50% {
        transform: translateY(-5px);
        box-shadow: 0 5px 15px rgba(239, 84, 145, 0.3);
    }
}

.floating-call-btn:hover {
    background: linear-gradient(135deg, #d9437e 0%, #c23567 100%);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(239, 84, 145, 0.3);
}

.floating-call-btn svg {
    flex-shrink: 0;
}

.floating-call-btn span {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .footer-section {
        padding: 60px 0 0;
    }

    .footer-bottom {
        margin-top: 40px;
        padding: 25px 0;
    }
}

@media (max-width: 768px) {
    .footer-section {
        padding: 50px 0 0;
    }

    .footer-title {
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .footer-links a {
        font-size: 0.9rem;
    }

    .contact-item {
        font-size: 0.85rem;
    }

    .footer-bottom {
        text-align: center;
    }

    .copyright-text,
    .developer-text {
        font-size: 0.85rem;
    }

    .floating-call-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
    }

    .floating-call-btn span {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .footer-social {
        justify-content: flex-start;
    }

    .footer-social a {
        width: 35px;
        height: 35px;
    }

    .floating-call-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .floating-call-btn svg {
        width: 20px;
        height: 20px;
    }
}